diff --git a/.gitignore b/.gitignore index bd77f411..63f54d7f 100644 --- a/.gitignore +++ b/.gitignore @@ -3,4 +3,6 @@ node_modules build package-lock.json /target/ -.build/ \ No newline at end of file +.build/ + +.vscode \ No newline at end of file diff --git a/grammar.js b/grammar.js index 482d8a9e..837f2750 100644 --- a/grammar.js +++ b/grammar.js @@ -295,6 +295,10 @@ module.exports = grammar({ choice( seq('__attribute__','(',$.argument_list,')'), seq(choice('__scanf', '__printf'), '(', commaSep($.number_literal), ')'), + '__read_mostly', + seq(choice('__must_hold'), '(', $.argument_list, ')'), + '__ro_after_init', + '__init' ), ), @@ -653,6 +657,7 @@ module.exports = grammar({ field('body', $.field_declaration_list), ), optional($.attribute_specifier), + optional(seq('__aligned', '(', $.argument_list, ')')), )), union_specifier: $ => prec.right(seq( diff --git a/src/grammar.json b/src/grammar.json index 3a1324fe..cfea89d1 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -3193,6 +3193,44 @@ "value": ")" } ] + }, + { + "type": "STRING", + "value": "__read_mostly" + }, + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "__must_hold" + } + ] + }, + { + "type": "STRING", + "value": "(" + }, + { + "type": "SYMBOL", + "name": "argument_list" + }, + { + "type": "STRING", + "value": ")" + } + ] + }, + { + "type": "STRING", + "value": "__ro_after_init" + }, + { + "type": "STRING", + "value": "__init" } ] } @@ -5067,6 +5105,35 @@ "type": "BLANK" } ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "__aligned" + }, + { + "type": "STRING", + "value": "(" + }, + { + "type": "SYMBOL", + "name": "argument_list" + }, + { + "type": "STRING", + "value": ")" + } + ] + }, + { + "type": "BLANK" + } + ] } ] } diff --git a/src/node-types.json b/src/node-types.json index 0cbea3c7..de814703 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -3412,6 +3412,10 @@ "multiple": true, "required": false, "types": [ + { + "type": "argument_list", + "named": true + }, { "type": "attribute_specifier", "named": true @@ -4111,6 +4115,10 @@ "type": "_Noreturn", "named": false }, + { + "type": "__aligned", + "named": false + }, { "type": "__alignof", "named": false @@ -4163,6 +4171,10 @@ "type": "__forceinline", "named": false }, + { + "type": "__init", + "named": false + }, { "type": "__inline", "named": false @@ -4175,14 +4187,26 @@ "type": "__leave", "named": false }, + { + "type": "__must_hold", + "named": false + }, { "type": "__printf", "named": false }, + { + "type": "__read_mostly", + "named": false + }, { "type": "__restrict__", "named": false }, + { + "type": "__ro_after_init", + "named": false + }, { "type": "__scanf", "named": false diff --git a/src/parser.c b/src/parser.c index 9458d0ff..9b901399 100644 --- a/src/parser.c +++ b/src/parser.c @@ -14,14 +14,14 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 2241 -#define LARGE_STATE_COUNT 558 -#define SYMBOL_COUNT 351 +#define STATE_COUNT 2314 +#define LARGE_STATE_COUNT 565 +#define SYMBOL_COUNT 356 #define ALIAS_COUNT 3 -#define TOKEN_COUNT 158 +#define TOKEN_COUNT 163 #define EXTERNAL_TOKEN_COUNT 0 #define FIELD_COUNT 39 -#define MAX_ALIAS_SEQUENCE_LENGTH 9 +#define MAX_ALIAS_SEQUENCE_LENGTH 10 #define PRODUCTION_ID_COUNT 125 enum { @@ -74,310 +74,315 @@ enum { anon_sym___attribute__ = 47, anon_sym___scanf = 48, anon_sym___printf = 49, - anon_sym_COLON_COLON = 50, - anon_sym_LBRACK_LBRACK = 51, - anon_sym_RBRACK_RBRACK = 52, - anon_sym___declspec = 53, - anon_sym___based = 54, - anon_sym___cdecl = 55, - anon_sym___clrcall = 56, - anon_sym___stdcall = 57, - anon_sym___fastcall = 58, - anon_sym___thiscall = 59, - anon_sym___vectorcall = 60, - sym_ms_restrict_modifier = 61, - sym_ms_unsigned_ptr_modifier = 62, - sym_ms_signed_ptr_modifier = 63, - anon_sym__unaligned = 64, - anon_sym___unaligned = 65, - anon_sym_LBRACE = 66, - anon_sym_RBRACE = 67, - anon_sym_signed = 68, - anon_sym_unsigned = 69, - anon_sym_long = 70, - anon_sym_short = 71, - anon_sym_LBRACK = 72, - anon_sym_RBRACK = 73, - anon_sym_EQ = 74, - anon_sym_static = 75, - anon_sym_auto = 76, - anon_sym_register = 77, - anon_sym_inline = 78, - anon_sym___inline = 79, - anon_sym___inline__ = 80, - anon_sym___forceinline = 81, - anon_sym_thread_local = 82, - anon_sym___thread = 83, - anon_sym_const = 84, - anon_sym_constexpr = 85, - anon_sym_volatile = 86, - anon_sym_restrict = 87, - anon_sym___restrict__ = 88, - anon_sym__Atomic = 89, - anon_sym__Noreturn = 90, - anon_sym_noreturn = 91, - sym_primitive_type = 92, - anon_sym_enum = 93, - anon_sym_COLON = 94, - anon_sym_struct = 95, - anon_sym_union = 96, - anon_sym_if = 97, - anon_sym_else = 98, - anon_sym_switch = 99, - anon_sym_case = 100, - anon_sym_default = 101, - anon_sym_while = 102, - anon_sym_do = 103, - anon_sym_for = 104, - anon_sym_return = 105, - anon_sym_break = 106, - anon_sym_continue = 107, - anon_sym_goto = 108, - anon_sym___try = 109, - anon_sym___except = 110, - anon_sym___finally = 111, - anon_sym___leave = 112, - anon_sym_QMARK = 113, - anon_sym_STAR_EQ = 114, - anon_sym_SLASH_EQ = 115, - anon_sym_PERCENT_EQ = 116, - anon_sym_PLUS_EQ = 117, - anon_sym_DASH_EQ = 118, - anon_sym_LT_LT_EQ = 119, - anon_sym_GT_GT_EQ = 120, - anon_sym_AMP_EQ = 121, - anon_sym_CARET_EQ = 122, - anon_sym_PIPE_EQ = 123, - anon_sym_DASH_DASH = 124, - anon_sym_PLUS_PLUS = 125, - anon_sym_sizeof = 126, - anon_sym___alignof__ = 127, - anon_sym___alignof = 128, - anon_sym__alignof = 129, - anon_sym_alignof = 130, - anon_sym__Alignof = 131, - anon_sym_offsetof = 132, - anon_sym__Generic = 133, - anon_sym_asm = 134, - anon_sym___asm__ = 135, - anon_sym_DOT = 136, - anon_sym_DASH_GT = 137, - sym_number_literal = 138, - anon_sym_L_SQUOTE = 139, - anon_sym_u_SQUOTE = 140, - anon_sym_U_SQUOTE = 141, - anon_sym_u8_SQUOTE = 142, - anon_sym_SQUOTE = 143, - aux_sym_char_literal_token1 = 144, - anon_sym_L_DQUOTE = 145, - anon_sym_u_DQUOTE = 146, - anon_sym_U_DQUOTE = 147, - anon_sym_u8_DQUOTE = 148, - anon_sym_DQUOTE = 149, - aux_sym_string_literal_token1 = 150, - sym_escape_sequence = 151, - sym_system_lib_string = 152, - sym_true = 153, - sym_false = 154, - anon_sym_NULL = 155, - anon_sym_nullptr = 156, - sym_comment = 157, - sym_translation_unit = 158, - sym_preproc_include = 159, - sym_preproc_def = 160, - sym_preproc_function_def = 161, - sym_preproc_params = 162, - sym_preproc_call = 163, - sym_preproc_if = 164, - sym_preproc_ifdef = 165, - sym_preproc_else = 166, - sym_preproc_elif = 167, - sym_preproc_elifdef = 168, - sym_preproc_if_in_field_declaration_list = 169, - sym_preproc_ifdef_in_field_declaration_list = 170, - sym_preproc_else_in_field_declaration_list = 171, - sym_preproc_elif_in_field_declaration_list = 172, - sym_preproc_elifdef_in_field_declaration_list = 173, - sym_preproc_if_in_enumerator_list = 174, - sym_preproc_ifdef_in_enumerator_list = 175, - sym_preproc_else_in_enumerator_list = 176, - sym_preproc_elif_in_enumerator_list = 177, - sym_preproc_elifdef_in_enumerator_list = 178, - sym_preproc_if_in_enumerator_list_no_comma = 179, - sym_preproc_ifdef_in_enumerator_list_no_comma = 180, - sym_preproc_else_in_enumerator_list_no_comma = 181, - sym_preproc_elif_in_enumerator_list_no_comma = 182, - sym_preproc_elifdef_in_enumerator_list_no_comma = 183, - sym_preproc_arg = 184, - sym__preproc_expression = 185, - sym_preproc_parenthesized_expression = 186, - sym_preproc_defined = 187, - sym_preproc_unary_expression = 188, - sym_preproc_call_expression = 189, - sym_preproc_argument_list = 190, - sym_preproc_binary_expression = 191, - sym_function_definition = 192, - sym__old_style_function_definition = 193, - sym_declaration = 194, - sym__declaration_declarator = 195, - sym_type_definition = 196, - sym__type_definition_type = 197, - sym__type_definition_declarators = 198, - sym__declaration_modifiers = 199, - sym__declaration_specifiers = 200, - sym_linkage_specification = 201, - sym_attribute_specifier = 202, - sym_attribute = 203, - sym_attribute_declaration = 204, - sym_ms_declspec_modifier = 205, - sym_ms_based_modifier = 206, - sym_ms_call_modifier = 207, - sym_ms_unaligned_ptr_modifier = 208, - sym_ms_pointer_modifier = 209, - sym_declaration_list = 210, - sym__declarator = 211, - sym__field_declarator = 212, - sym__type_declarator = 213, - sym__abstract_declarator = 214, - sym_parenthesized_declarator = 215, - sym_parenthesized_field_declarator = 216, - sym_parenthesized_type_declarator = 217, - sym_abstract_parenthesized_declarator = 218, - sym_attributed_declarator = 219, - sym_attributed_field_declarator = 220, - sym_attributed_type_declarator = 221, - sym_pointer_declarator = 222, - sym_pointer_field_declarator = 223, - sym_pointer_type_declarator = 224, - sym_abstract_pointer_declarator = 225, - sym_function_declarator = 226, - sym_function_field_declarator = 227, - sym_function_type_declarator = 228, - sym_abstract_function_declarator = 229, - sym__old_style_function_declarator = 230, - sym_array_declarator = 231, - sym_array_field_declarator = 232, - sym_array_type_declarator = 233, - sym_abstract_array_declarator = 234, - sym_init_declarator = 235, - sym_compound_statement = 236, - sym_storage_class_specifier = 237, - sym_type_qualifier = 238, - sym__type_specifier = 239, - sym_sized_type_specifier = 240, - sym_enum_specifier = 241, - sym_enumerator_list = 242, - sym_struct_specifier = 243, - sym_union_specifier = 244, - sym_field_declaration_list = 245, - sym__field_declaration_list_item = 246, - sym_field_declaration = 247, - sym__field_declaration_declarator = 248, - sym_bitfield_clause = 249, - sym_enumerator = 250, - sym_variadic_parameter = 251, - sym_parameter_list = 252, - sym__old_style_parameter_list = 253, - sym_parameter_declaration = 254, - sym_attributed_statement = 255, - sym_labeled_statement = 256, - sym__top_level_expression_statement = 257, - sym_expression_statement = 258, - sym_if_statement = 259, - sym_else_clause = 260, - sym_switch_statement = 261, - sym_case_statement = 262, - sym_while_statement = 263, - sym_do_statement = 264, - sym_for_statement = 265, - sym__for_statement_body = 266, - sym_return_statement = 267, - sym_break_statement = 268, - sym_continue_statement = 269, - sym_goto_statement = 270, - sym_seh_try_statement = 271, - sym_seh_except_clause = 272, - sym_seh_finally_clause = 273, - sym_seh_leave_statement = 274, - sym__expression = 275, - sym__expression_not_binary = 276, - sym_comma_expression = 277, - sym_conditional_expression = 278, - sym_assignment_expression = 279, - sym_pointer_expression = 280, - sym_unary_expression = 281, - sym_binary_expression = 282, - sym_update_expression = 283, - sym_cast_expression = 284, - sym_type_descriptor = 285, - sym_sizeof_expression = 286, - sym_alignof_expression = 287, - sym_offsetof_expression = 288, - sym_generic_expression = 289, - sym_subscript_expression = 290, - sym_call_expression = 291, - sym_gnu_asm_expression = 292, - sym_gnu_asm_qualifier = 293, - sym_gnu_asm_output_operand_list = 294, - sym_gnu_asm_output_operand = 295, - sym_gnu_asm_input_operand_list = 296, - sym_gnu_asm_input_operand = 297, - sym_gnu_asm_clobber_list = 298, - sym_gnu_asm_goto_list = 299, - sym_argument_list = 300, - sym_field_expression = 301, - sym_compound_literal_expression = 302, - sym_parenthesized_expression = 303, - sym_initializer_list = 304, - sym_initializer_pair = 305, - sym_subscript_designator = 306, - sym_subscript_range_designator = 307, - sym_field_designator = 308, - sym_char_literal = 309, - sym_concatenated_string = 310, - sym_string_literal = 311, - sym_null = 312, - sym__empty_declaration = 313, - sym_macro_type_specifier = 314, - aux_sym_translation_unit_repeat1 = 315, - aux_sym_preproc_params_repeat1 = 316, - aux_sym_preproc_if_repeat1 = 317, - aux_sym_preproc_if_in_field_declaration_list_repeat1 = 318, - aux_sym_preproc_if_in_enumerator_list_repeat1 = 319, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1 = 320, - aux_sym_preproc_arg_repeat1 = 321, - aux_sym_preproc_argument_list_repeat1 = 322, - aux_sym__old_style_function_definition_repeat1 = 323, - aux_sym__declaration_declarator_repeat1 = 324, - aux_sym_type_definition_repeat1 = 325, - aux_sym__type_definition_type_repeat1 = 326, - aux_sym__type_definition_declarators_repeat1 = 327, - aux_sym__declaration_specifiers_repeat1 = 328, - aux_sym_attribute_specifier_repeat1 = 329, - aux_sym_attribute_declaration_repeat1 = 330, - aux_sym_attributed_declarator_repeat1 = 331, - aux_sym_pointer_declarator_repeat1 = 332, - aux_sym_sized_type_specifier_repeat1 = 333, - aux_sym_enumerator_list_repeat1 = 334, - aux_sym__field_declaration_declarator_repeat1 = 335, - aux_sym_parameter_list_repeat1 = 336, - aux_sym__old_style_parameter_list_repeat1 = 337, - aux_sym_case_statement_repeat1 = 338, - aux_sym_generic_expression_repeat1 = 339, - aux_sym_gnu_asm_expression_repeat1 = 340, - aux_sym_gnu_asm_output_operand_list_repeat1 = 341, - aux_sym_gnu_asm_input_operand_list_repeat1 = 342, - aux_sym_gnu_asm_clobber_list_repeat1 = 343, - aux_sym_gnu_asm_goto_list_repeat1 = 344, - aux_sym_argument_list_repeat1 = 345, - aux_sym_initializer_list_repeat1 = 346, - aux_sym_initializer_pair_repeat1 = 347, - aux_sym_char_literal_repeat1 = 348, - aux_sym_concatenated_string_repeat1 = 349, - aux_sym_string_literal_repeat1 = 350, - alias_sym_field_identifier = 351, - alias_sym_statement_identifier = 352, - alias_sym_type_identifier = 353, + 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_RBRACK = 77, + anon_sym_EQ = 78, + anon_sym_static = 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, + sym_primitive_type = 96, + anon_sym_enum = 97, + anon_sym_COLON = 98, + anon_sym_struct = 99, + anon_sym___aligned = 100, + anon_sym_union = 101, + anon_sym_if = 102, + anon_sym_else = 103, + anon_sym_switch = 104, + anon_sym_case = 105, + anon_sym_default = 106, + anon_sym_while = 107, + anon_sym_do = 108, + anon_sym_for = 109, + anon_sym_return = 110, + anon_sym_break = 111, + anon_sym_continue = 112, + anon_sym_goto = 113, + anon_sym___try = 114, + anon_sym___except = 115, + anon_sym___finally = 116, + anon_sym___leave = 117, + anon_sym_QMARK = 118, + anon_sym_STAR_EQ = 119, + anon_sym_SLASH_EQ = 120, + anon_sym_PERCENT_EQ = 121, + anon_sym_PLUS_EQ = 122, + anon_sym_DASH_EQ = 123, + anon_sym_LT_LT_EQ = 124, + anon_sym_GT_GT_EQ = 125, + anon_sym_AMP_EQ = 126, + anon_sym_CARET_EQ = 127, + anon_sym_PIPE_EQ = 128, + anon_sym_DASH_DASH = 129, + anon_sym_PLUS_PLUS = 130, + anon_sym_sizeof = 131, + anon_sym___alignof__ = 132, + anon_sym___alignof = 133, + anon_sym__alignof = 134, + anon_sym_alignof = 135, + anon_sym__Alignof = 136, + anon_sym_offsetof = 137, + anon_sym__Generic = 138, + anon_sym_asm = 139, + anon_sym___asm__ = 140, + anon_sym_DOT = 141, + anon_sym_DASH_GT = 142, + sym_number_literal = 143, + anon_sym_L_SQUOTE = 144, + anon_sym_u_SQUOTE = 145, + anon_sym_U_SQUOTE = 146, + anon_sym_u8_SQUOTE = 147, + anon_sym_SQUOTE = 148, + aux_sym_char_literal_token1 = 149, + anon_sym_L_DQUOTE = 150, + anon_sym_u_DQUOTE = 151, + anon_sym_U_DQUOTE = 152, + anon_sym_u8_DQUOTE = 153, + anon_sym_DQUOTE = 154, + aux_sym_string_literal_token1 = 155, + sym_escape_sequence = 156, + sym_system_lib_string = 157, + sym_true = 158, + sym_false = 159, + anon_sym_NULL = 160, + anon_sym_nullptr = 161, + sym_comment = 162, + sym_translation_unit = 163, + sym_preproc_include = 164, + sym_preproc_def = 165, + sym_preproc_function_def = 166, + sym_preproc_params = 167, + sym_preproc_call = 168, + sym_preproc_if = 169, + sym_preproc_ifdef = 170, + sym_preproc_else = 171, + sym_preproc_elif = 172, + sym_preproc_elifdef = 173, + sym_preproc_if_in_field_declaration_list = 174, + sym_preproc_ifdef_in_field_declaration_list = 175, + sym_preproc_else_in_field_declaration_list = 176, + sym_preproc_elif_in_field_declaration_list = 177, + sym_preproc_elifdef_in_field_declaration_list = 178, + sym_preproc_if_in_enumerator_list = 179, + sym_preproc_ifdef_in_enumerator_list = 180, + sym_preproc_else_in_enumerator_list = 181, + sym_preproc_elif_in_enumerator_list = 182, + sym_preproc_elifdef_in_enumerator_list = 183, + sym_preproc_if_in_enumerator_list_no_comma = 184, + sym_preproc_ifdef_in_enumerator_list_no_comma = 185, + sym_preproc_else_in_enumerator_list_no_comma = 186, + sym_preproc_elif_in_enumerator_list_no_comma = 187, + sym_preproc_elifdef_in_enumerator_list_no_comma = 188, + sym_preproc_arg = 189, + sym__preproc_expression = 190, + sym_preproc_parenthesized_expression = 191, + sym_preproc_defined = 192, + sym_preproc_unary_expression = 193, + sym_preproc_call_expression = 194, + sym_preproc_argument_list = 195, + sym_preproc_binary_expression = 196, + sym_function_definition = 197, + sym__old_style_function_definition = 198, + sym_declaration = 199, + sym__declaration_declarator = 200, + sym_type_definition = 201, + sym__type_definition_type = 202, + sym__type_definition_declarators = 203, + sym__declaration_modifiers = 204, + sym__declaration_specifiers = 205, + sym_linkage_specification = 206, + sym_attribute_specifier = 207, + sym_attribute = 208, + sym_attribute_declaration = 209, + sym_ms_declspec_modifier = 210, + sym_ms_based_modifier = 211, + sym_ms_call_modifier = 212, + sym_ms_unaligned_ptr_modifier = 213, + sym_ms_pointer_modifier = 214, + sym_declaration_list = 215, + sym__declarator = 216, + sym__field_declarator = 217, + sym__type_declarator = 218, + sym__abstract_declarator = 219, + sym_parenthesized_declarator = 220, + sym_parenthesized_field_declarator = 221, + sym_parenthesized_type_declarator = 222, + sym_abstract_parenthesized_declarator = 223, + sym_attributed_declarator = 224, + sym_attributed_field_declarator = 225, + sym_attributed_type_declarator = 226, + sym_pointer_declarator = 227, + sym_pointer_field_declarator = 228, + sym_pointer_type_declarator = 229, + sym_abstract_pointer_declarator = 230, + sym_function_declarator = 231, + sym_function_field_declarator = 232, + sym_function_type_declarator = 233, + sym_abstract_function_declarator = 234, + sym__old_style_function_declarator = 235, + sym_array_declarator = 236, + sym_array_field_declarator = 237, + sym_array_type_declarator = 238, + sym_abstract_array_declarator = 239, + sym_init_declarator = 240, + sym_compound_statement = 241, + sym_storage_class_specifier = 242, + sym_type_qualifier = 243, + sym__type_specifier = 244, + sym_sized_type_specifier = 245, + sym_enum_specifier = 246, + sym_enumerator_list = 247, + sym_struct_specifier = 248, + sym_union_specifier = 249, + sym_field_declaration_list = 250, + sym__field_declaration_list_item = 251, + sym_field_declaration = 252, + sym__field_declaration_declarator = 253, + sym_bitfield_clause = 254, + sym_enumerator = 255, + sym_variadic_parameter = 256, + sym_parameter_list = 257, + sym__old_style_parameter_list = 258, + sym_parameter_declaration = 259, + sym_attributed_statement = 260, + sym_labeled_statement = 261, + sym__top_level_expression_statement = 262, + sym_expression_statement = 263, + sym_if_statement = 264, + sym_else_clause = 265, + sym_switch_statement = 266, + sym_case_statement = 267, + sym_while_statement = 268, + sym_do_statement = 269, + sym_for_statement = 270, + sym__for_statement_body = 271, + sym_return_statement = 272, + sym_break_statement = 273, + sym_continue_statement = 274, + sym_goto_statement = 275, + sym_seh_try_statement = 276, + sym_seh_except_clause = 277, + sym_seh_finally_clause = 278, + sym_seh_leave_statement = 279, + sym__expression = 280, + sym__expression_not_binary = 281, + sym_comma_expression = 282, + sym_conditional_expression = 283, + sym_assignment_expression = 284, + sym_pointer_expression = 285, + sym_unary_expression = 286, + sym_binary_expression = 287, + sym_update_expression = 288, + sym_cast_expression = 289, + sym_type_descriptor = 290, + sym_sizeof_expression = 291, + sym_alignof_expression = 292, + sym_offsetof_expression = 293, + sym_generic_expression = 294, + sym_subscript_expression = 295, + sym_call_expression = 296, + sym_gnu_asm_expression = 297, + sym_gnu_asm_qualifier = 298, + sym_gnu_asm_output_operand_list = 299, + sym_gnu_asm_output_operand = 300, + sym_gnu_asm_input_operand_list = 301, + sym_gnu_asm_input_operand = 302, + sym_gnu_asm_clobber_list = 303, + sym_gnu_asm_goto_list = 304, + sym_argument_list = 305, + sym_field_expression = 306, + sym_compound_literal_expression = 307, + sym_parenthesized_expression = 308, + sym_initializer_list = 309, + sym_initializer_pair = 310, + sym_subscript_designator = 311, + sym_subscript_range_designator = 312, + sym_field_designator = 313, + sym_char_literal = 314, + sym_concatenated_string = 315, + sym_string_literal = 316, + sym_null = 317, + sym__empty_declaration = 318, + sym_macro_type_specifier = 319, + aux_sym_translation_unit_repeat1 = 320, + aux_sym_preproc_params_repeat1 = 321, + aux_sym_preproc_if_repeat1 = 322, + aux_sym_preproc_if_in_field_declaration_list_repeat1 = 323, + aux_sym_preproc_if_in_enumerator_list_repeat1 = 324, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1 = 325, + aux_sym_preproc_arg_repeat1 = 326, + aux_sym_preproc_argument_list_repeat1 = 327, + aux_sym__old_style_function_definition_repeat1 = 328, + aux_sym__declaration_declarator_repeat1 = 329, + aux_sym_type_definition_repeat1 = 330, + aux_sym__type_definition_type_repeat1 = 331, + aux_sym__type_definition_declarators_repeat1 = 332, + aux_sym__declaration_specifiers_repeat1 = 333, + aux_sym_attribute_specifier_repeat1 = 334, + aux_sym_attribute_declaration_repeat1 = 335, + aux_sym_attributed_declarator_repeat1 = 336, + aux_sym_pointer_declarator_repeat1 = 337, + aux_sym_sized_type_specifier_repeat1 = 338, + aux_sym_enumerator_list_repeat1 = 339, + aux_sym__field_declaration_declarator_repeat1 = 340, + aux_sym_parameter_list_repeat1 = 341, + aux_sym__old_style_parameter_list_repeat1 = 342, + aux_sym_case_statement_repeat1 = 343, + aux_sym_generic_expression_repeat1 = 344, + aux_sym_gnu_asm_expression_repeat1 = 345, + aux_sym_gnu_asm_output_operand_list_repeat1 = 346, + aux_sym_gnu_asm_input_operand_list_repeat1 = 347, + aux_sym_gnu_asm_clobber_list_repeat1 = 348, + aux_sym_gnu_asm_goto_list_repeat1 = 349, + aux_sym_argument_list_repeat1 = 350, + aux_sym_initializer_list_repeat1 = 351, + aux_sym_initializer_pair_repeat1 = 352, + aux_sym_char_literal_repeat1 = 353, + aux_sym_concatenated_string_repeat1 = 354, + aux_sym_string_literal_repeat1 = 355, + alias_sym_field_identifier = 356, + alias_sym_statement_identifier = 357, + alias_sym_type_identifier = 358, }; static const char * const ts_symbol_names[] = { @@ -431,6 +436,10 @@ static const char * const ts_symbol_names[] = { [anon_sym___attribute__] = "__attribute__", [anon_sym___scanf] = "__scanf", [anon_sym___printf] = "__printf", + [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_COLON_COLON] = "::", [anon_sym_LBRACK_LBRACK] = "[[", [anon_sym_RBRACK_RBRACK] = "]]", @@ -477,6 +486,7 @@ static const char * const ts_symbol_names[] = { [anon_sym_enum] = "enum", [anon_sym_COLON] = ":", [anon_sym_struct] = "struct", + [anon_sym___aligned] = "__aligned", [anon_sym_union] = "union", [anon_sym_if] = "if", [anon_sym_else] = "else", @@ -788,6 +798,10 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym___attribute__] = anon_sym___attribute__, [anon_sym___scanf] = anon_sym___scanf, [anon_sym___printf] = anon_sym___printf, + [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_COLON_COLON] = anon_sym_COLON_COLON, [anon_sym_LBRACK_LBRACK] = anon_sym_LBRACK_LBRACK, [anon_sym_RBRACK_RBRACK] = anon_sym_RBRACK_RBRACK, @@ -834,6 +848,7 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_enum] = anon_sym_enum, [anon_sym_COLON] = anon_sym_COLON, [anon_sym_struct] = anon_sym_struct, + [anon_sym___aligned] = anon_sym___aligned, [anon_sym_union] = anon_sym_union, [anon_sym_if] = anon_sym_if, [anon_sym_else] = anon_sym_else, @@ -1295,6 +1310,22 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym___read_mostly] = { + .visible = true, + .named = false, + }, + [anon_sym___must_hold] = { + .visible = true, + .named = false, + }, + [anon_sym___ro_after_init] = { + .visible = true, + .named = false, + }, + [anon_sym___init] = { + .visible = true, + .named = false, + }, [anon_sym_COLON_COLON] = { .visible = true, .named = false, @@ -1479,6 +1510,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym___aligned] = { + .visible = true, + .named = false, + }, [anon_sym_union] = { .visible = true, .named = false, @@ -3153,54 +3188,54 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1] = 1, [2] = 2, [3] = 2, - [4] = 4, - [5] = 4, - [6] = 2, - [7] = 4, - [8] = 2, - [9] = 4, - [10] = 2, - [11] = 4, + [4] = 2, + [5] = 5, + [6] = 5, + [7] = 2, + [8] = 5, + [9] = 2, + [10] = 5, + [11] = 5, [12] = 12, - [13] = 12, + [13] = 13, [14] = 12, [15] = 15, - [16] = 16, - [17] = 17, - [18] = 16, + [16] = 12, + [17] = 12, + [18] = 13, [19] = 12, - [20] = 20, - [21] = 12, - [22] = 22, + [20] = 13, + [21] = 21, + [22] = 13, [23] = 23, - [24] = 16, - [25] = 16, - [26] = 16, - [27] = 15, + [24] = 24, + [25] = 13, + [26] = 26, + [27] = 23, [28] = 28, - [29] = 29, + [29] = 23, [30] = 30, - [31] = 28, - [32] = 32, - [33] = 29, - [34] = 28, - [35] = 32, - [36] = 15, - [37] = 30, - [38] = 32, - [39] = 32, + [31] = 31, + [32] = 31, + [33] = 30, + [34] = 30, + [35] = 35, + [36] = 31, + [37] = 37, + [38] = 31, + [39] = 37, [40] = 30, - [41] = 29, - [42] = 29, - [43] = 43, - [44] = 30, - [45] = 15, - [46] = 29, + [41] = 23, + [42] = 35, + [43] = 31, + [44] = 35, + [45] = 30, + [46] = 37, [47] = 47, - [48] = 32, - [49] = 28, - [50] = 30, - [51] = 28, + [48] = 37, + [49] = 37, + [50] = 35, + [51] = 35, [52] = 52, [53] = 53, [54] = 54, @@ -3208,31 +3243,31 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [56] = 56, [57] = 57, [58] = 58, - [59] = 56, - [60] = 58, - [61] = 54, - [62] = 55, - [63] = 57, - [64] = 54, - [65] = 58, - [66] = 56, - [67] = 55, + [59] = 55, + [60] = 54, + [61] = 56, + [62] = 57, + [63] = 58, + [64] = 55, + [65] = 57, + [66] = 58, + [67] = 56, [68] = 57, - [69] = 56, + [69] = 54, [70] = 58, - [71] = 54, - [72] = 58, + [71] = 55, + [72] = 56, [73] = 54, - [74] = 57, - [75] = 55, + [74] = 56, + [75] = 54, [76] = 57, - [77] = 56, - [78] = 55, - [79] = 54, - [80] = 58, - [81] = 57, + [77] = 55, + [78] = 58, + [79] = 55, + [80] = 57, + [81] = 58, [82] = 56, - [83] = 55, + [83] = 54, [84] = 84, [85] = 84, [86] = 84, @@ -3263,7 +3298,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [111] = 111, [112] = 112, [113] = 113, - [114] = 94, + [114] = 114, [115] = 115, [116] = 116, [117] = 117, @@ -3276,13 +3311,13 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [124] = 124, [125] = 125, [126] = 126, - [127] = 91, - [128] = 128, + [127] = 127, + [128] = 125, [129] = 129, [130] = 130, [131] = 131, [132] = 132, - [133] = 133, + [133] = 99, [134] = 134, [135] = 135, [136] = 136, @@ -3305,639 +3340,639 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [153] = 153, [154] = 154, [155] = 155, - [156] = 90, + [156] = 156, [157] = 157, [158] = 158, [159] = 159, - [160] = 160, - [161] = 99, - [162] = 92, - [163] = 102, - [164] = 115, - [165] = 132, - [166] = 131, - [167] = 110, - [168] = 108, - [169] = 107, - [170] = 106, - [171] = 105, - [172] = 104, - [173] = 101, - [174] = 120, - [175] = 119, - [176] = 103, - [177] = 116, + [160] = 90, + [161] = 110, + [162] = 98, + [163] = 112, + [164] = 93, + [165] = 111, + [166] = 109, + [167] = 108, + [168] = 107, + [169] = 91, + [170] = 115, + [171] = 102, + [172] = 101, + [173] = 104, + [174] = 114, + [175] = 113, + [176] = 94, + [177] = 118, [178] = 95, - [179] = 133, - [180] = 109, - [181] = 111, - [182] = 128, - [183] = 100, - [184] = 98, - [185] = 97, - [186] = 113, - [187] = 130, - [188] = 96, - [189] = 129, - [190] = 126, - [191] = 94, - [192] = 93, - [193] = 112, - [194] = 123, + [179] = 96, + [180] = 116, + [181] = 97, + [182] = 100, + [183] = 106, + [184] = 103, + [185] = 92, + [186] = 119, + [187] = 121, + [188] = 122, + [189] = 123, + [190] = 124, + [191] = 125, + [192] = 126, + [193] = 127, + [194] = 120, [195] = 117, - [196] = 121, - [197] = 118, - [198] = 122, - [199] = 124, - [200] = 125, - [201] = 91, - [202] = 149, - [203] = 141, - [204] = 139, - [205] = 143, - [206] = 140, - [207] = 159, - [208] = 90, + [196] = 105, + [197] = 129, + [198] = 130, + [199] = 131, + [200] = 132, + [201] = 99, + [202] = 151, + [203] = 137, + [204] = 136, + [205] = 156, + [206] = 138, + [207] = 140, + [208] = 149, [209] = 142, - [210] = 144, - [211] = 138, - [212] = 134, - [213] = 145, - [214] = 148, - [215] = 152, - [216] = 146, - [217] = 147, - [218] = 153, - [219] = 158, - [220] = 154, - [221] = 155, - [222] = 157, - [223] = 160, - [224] = 150, - [225] = 151, - [226] = 90, - [227] = 137, + [210] = 148, + [211] = 90, + [212] = 158, + [213] = 155, + [214] = 154, + [215] = 153, + [216] = 152, + [217] = 134, + [218] = 159, + [219] = 144, + [220] = 146, + [221] = 145, + [222] = 150, + [223] = 90, + [224] = 141, + [225] = 139, + [226] = 157, + [227] = 147, [228] = 135, - [229] = 90, - [230] = 136, - [231] = 103, - [232] = 102, - [233] = 118, + [229] = 143, + [230] = 90, + [231] = 113, + [232] = 130, + [233] = 104, [234] = 101, - [235] = 133, - [236] = 128, - [237] = 91, - [238] = 125, - [239] = 124, - [240] = 122, - [241] = 120, - [242] = 118, - [243] = 119, - [244] = 122, - [245] = 124, - [246] = 116, - [247] = 125, - [248] = 131, - [249] = 112, - [250] = 93, - [251] = 112, - [252] = 93, - [253] = 94, - [254] = 96, - [255] = 97, - [256] = 98, - [257] = 99, - [258] = 100, - [259] = 132, - [260] = 102, - [261] = 133, - [262] = 130, - [263] = 129, - [264] = 116, - [265] = 126, - [266] = 123, - [267] = 119, - [268] = 128, - [269] = 120, - [270] = 121, - [271] = 117, - [272] = 113, - [273] = 92, - [274] = 111, - [275] = 109, - [276] = 131, - [277] = 132, - [278] = 95, - [279] = 102, - [280] = 103, - [281] = 130, - [282] = 129, - [283] = 126, - [284] = 96, - [285] = 123, - [286] = 121, - [287] = 117, - [288] = 97, - [289] = 113, - [290] = 104, - [291] = 92, - [292] = 111, - [293] = 109, - [294] = 95, - [295] = 98, - [296] = 99, - [297] = 115, - [298] = 110, - [299] = 105, - [300] = 106, - [301] = 108, - [302] = 107, - [303] = 106, - [304] = 105, - [305] = 104, - [306] = 103, - [307] = 95, - [308] = 109, - [309] = 111, - [310] = 92, - [311] = 113, - [312] = 100, - [313] = 117, - [314] = 121, - [315] = 123, - [316] = 126, - [317] = 129, - [318] = 130, - [319] = 133, - [320] = 107, - [321] = 101, - [322] = 108, - [323] = 132, - [324] = 131, - [325] = 110, - [326] = 115, - [327] = 128, - [328] = 91, - [329] = 115, - [330] = 110, - [331] = 125, - [332] = 332, - [333] = 104, - [334] = 105, - [335] = 120, - [336] = 119, - [337] = 124, - [338] = 116, - [339] = 122, - [340] = 118, - [341] = 112, - [342] = 93, - [343] = 94, - [344] = 108, - [345] = 96, - [346] = 101, - [347] = 100, - [348] = 99, - [349] = 98, - [350] = 97, - [351] = 106, - [352] = 107, - [353] = 134, - [354] = 145, - [355] = 150, - [356] = 146, - [357] = 147, - [358] = 148, - [359] = 144, - [360] = 143, - [361] = 142, - [362] = 141, - [363] = 140, - [364] = 149, - [365] = 139, - [366] = 152, - [367] = 153, + [235] = 102, + [236] = 91, + [237] = 107, + [238] = 108, + [239] = 115, + [240] = 124, + [241] = 100, + [242] = 103, + [243] = 95, + [244] = 106, + [245] = 96, + [246] = 98, + [247] = 97, + [248] = 98, + [249] = 99, + [250] = 97, + [251] = 92, + [252] = 106, + [253] = 111, + [254] = 103, + [255] = 127, + [256] = 126, + [257] = 100, + [258] = 124, + [259] = 120, + [260] = 120, + [261] = 109, + [262] = 108, + [263] = 107, + [264] = 91, + [265] = 102, + [266] = 101, + [267] = 104, + [268] = 117, + [269] = 110, + [270] = 94, + [271] = 132, + [272] = 109, + [273] = 131, + [274] = 132, + [275] = 130, + [276] = 95, + [277] = 96, + [278] = 97, + [279] = 105, + [280] = 131, + [281] = 98, + [282] = 130, + [283] = 111, + [284] = 92, + [285] = 106, + [286] = 103, + [287] = 123, + [288] = 124, + [289] = 120, + [290] = 129, + [291] = 122, + [292] = 117, + [293] = 110, + [294] = 96, + [295] = 105, + [296] = 114, + [297] = 112, + [298] = 121, + [299] = 119, + [300] = 95, + [301] = 93, + [302] = 113, + [303] = 94, + [304] = 104, + [305] = 101, + [306] = 102, + [307] = 116, + [308] = 91, + [309] = 107, + [310] = 115, + [311] = 108, + [312] = 109, + [313] = 111, + [314] = 129, + [315] = 118, + [316] = 92, + [317] = 112, + [318] = 127, + [319] = 117, + [320] = 126, + [321] = 125, + [322] = 93, + [323] = 110, + [324] = 116, + [325] = 105, + [326] = 326, + [327] = 123, + [328] = 118, + [329] = 100, + [330] = 119, + [331] = 121, + [332] = 99, + [333] = 94, + [334] = 122, + [335] = 113, + [336] = 123, + [337] = 122, + [338] = 121, + [339] = 125, + [340] = 119, + [341] = 126, + [342] = 118, + [343] = 116, + [344] = 114, + [345] = 115, + [346] = 127, + [347] = 112, + [348] = 132, + [349] = 93, + [350] = 114, + [351] = 131, + [352] = 129, + [353] = 145, + [354] = 158, + [355] = 135, + [356] = 137, + [357] = 138, + [358] = 146, + [359] = 140, + [360] = 135, + [361] = 147, + [362] = 142, + [363] = 151, + [364] = 152, + [365] = 153, + [366] = 136, + [367] = 148, [368] = 154, - [369] = 151, - [370] = 155, - [371] = 157, - [372] = 158, - [373] = 160, - [374] = 138, - [375] = 135, - [376] = 136, - [377] = 138, - [378] = 159, - [379] = 137, - [380] = 150, - [381] = 141, - [382] = 151, - [383] = 143, - [384] = 159, - [385] = 136, - [386] = 135, - [387] = 160, - [388] = 157, - [389] = 155, - [390] = 154, - [391] = 153, - [392] = 137, - [393] = 152, - [394] = 149, - [395] = 148, - [396] = 145, - [397] = 134, + [369] = 155, + [370] = 149, + [371] = 156, + [372] = 144, + [373] = 150, + [374] = 157, + [375] = 143, + [376] = 134, + [377] = 159, + [378] = 137, + [379] = 150, + [380] = 153, + [381] = 154, + [382] = 158, + [383] = 159, + [384] = 138, + [385] = 139, + [386] = 136, + [387] = 139, + [388] = 141, + [389] = 145, + [390] = 146, + [391] = 140, + [392] = 134, + [393] = 141, + [394] = 142, + [395] = 147, + [396] = 155, + [397] = 143, [398] = 144, - [399] = 146, - [400] = 147, - [401] = 142, - [402] = 140, - [403] = 158, - [404] = 139, - [405] = 138, - [406] = 332, - [407] = 143, - [408] = 332, - [409] = 150, - [410] = 410, - [411] = 411, - [412] = 412, - [413] = 146, - [414] = 414, - [415] = 410, - [416] = 416, - [417] = 147, - [418] = 412, - [419] = 148, - [420] = 420, - [421] = 410, - [422] = 420, - [423] = 423, - [424] = 420, - [425] = 136, - [426] = 426, - [427] = 145, - [428] = 420, - [429] = 153, - [430] = 412, - [431] = 151, - [432] = 134, - [433] = 135, - [434] = 160, - [435] = 416, - [436] = 410, - [437] = 158, - [438] = 414, - [439] = 414, - [440] = 412, - [441] = 423, - [442] = 426, - [443] = 157, - [444] = 155, - [445] = 416, - [446] = 139, - [447] = 154, - [448] = 416, - [449] = 416, - [450] = 450, - [451] = 414, - [452] = 423, - [453] = 426, - [454] = 426, - [455] = 426, - [456] = 423, - [457] = 423, - [458] = 140, - [459] = 411, - [460] = 414, - [461] = 461, - [462] = 141, - [463] = 416, - [464] = 412, - [465] = 420, - [466] = 410, - [467] = 414, - [468] = 144, - [469] = 411, - [470] = 426, - [471] = 152, - [472] = 412, - [473] = 149, - [474] = 142, - [475] = 423, - [476] = 159, - [477] = 420, - [478] = 411, - [479] = 410, - [480] = 411, - [481] = 332, + [399] = 156, + [400] = 151, + [401] = 149, + [402] = 152, + [403] = 148, + [404] = 157, + [405] = 136, + [406] = 141, + [407] = 153, + [408] = 159, + [409] = 142, + [410] = 145, + [411] = 146, + [412] = 147, + [413] = 151, + [414] = 152, + [415] = 134, + [416] = 139, + [417] = 157, + [418] = 154, + [419] = 158, + [420] = 155, + [421] = 421, + [422] = 140, + [423] = 143, + [424] = 137, + [425] = 144, + [426] = 138, + [427] = 150, + [428] = 428, + [429] = 148, + [430] = 149, + [431] = 156, + [432] = 326, + [433] = 433, + [434] = 434, + [435] = 435, + [436] = 434, + [437] = 437, + [438] = 438, + [439] = 437, + [440] = 437, + [441] = 441, + [442] = 433, + [443] = 433, + [444] = 444, + [445] = 435, + [446] = 444, + [447] = 441, + [448] = 434, + [449] = 449, + [450] = 435, + [451] = 441, + [452] = 438, + [453] = 441, + [454] = 437, + [455] = 326, + [456] = 438, + [457] = 449, + [458] = 438, + [459] = 449, + [460] = 438, + [461] = 444, + [462] = 433, + [463] = 449, + [464] = 438, + [465] = 435, + [466] = 437, + [467] = 449, + [468] = 444, + [469] = 434, + [470] = 437, + [471] = 441, + [472] = 434, + [473] = 444, + [474] = 433, + [475] = 449, + [476] = 433, + [477] = 441, + [478] = 435, + [479] = 434, + [480] = 435, + [481] = 326, [482] = 482, [483] = 483, - [484] = 484, - [485] = 484, - [486] = 484, - [487] = 332, - [488] = 484, - [489] = 484, - [490] = 490, - [491] = 490, - [492] = 484, - [493] = 490, - [494] = 490, - [495] = 484, - [496] = 490, - [497] = 490, - [498] = 490, - [499] = 484, - [500] = 490, - [501] = 332, - [502] = 90, - [503] = 332, - [504] = 504, - [505] = 332, - [506] = 506, - [507] = 506, - [508] = 506, - [509] = 506, - [510] = 506, - [511] = 506, - [512] = 506, - [513] = 506, - [514] = 506, - [515] = 506, - [516] = 516, - [517] = 506, + [484] = 326, + [485] = 90, + [486] = 486, + [487] = 487, + [488] = 487, + [489] = 487, + [490] = 486, + [491] = 486, + [492] = 486, + [493] = 486, + [494] = 487, + [495] = 495, + [496] = 486, + [497] = 486, + [498] = 487, + [499] = 487, + [500] = 486, + [501] = 487, + [502] = 487, + [503] = 326, + [504] = 326, + [505] = 505, + [506] = 505, + [507] = 505, + [508] = 326, + [509] = 505, + [510] = 505, + [511] = 505, + [512] = 505, + [513] = 505, + [514] = 505, + [515] = 505, + [516] = 505, + [517] = 517, [518] = 518, - [519] = 519, - [520] = 520, - [521] = 521, + [519] = 518, + [520] = 518, + [521] = 518, [522] = 522, [523] = 523, - [524] = 524, - [525] = 525, - [526] = 526, + [524] = 522, + [525] = 522, + [526] = 522, [527] = 527, - [528] = 528, - [529] = 528, + [528] = 527, + [529] = 527, [530] = 530, - [531] = 528, + [531] = 531, [532] = 532, - [533] = 528, + [533] = 533, [534] = 534, - [535] = 530, - [536] = 530, - [537] = 530, - [538] = 532, + [535] = 535, + [536] = 536, + [537] = 537, + [538] = 538, [539] = 539, - [540] = 540, - [541] = 540, - [542] = 539, + [540] = 530, + [541] = 541, + [542] = 527, [543] = 543, [544] = 544, - [545] = 544, - [546] = 546, - [547] = 547, - [548] = 546, + [545] = 545, + [546] = 530, + [547] = 530, + [548] = 548, [549] = 549, - [550] = 546, - [551] = 551, - [552] = 544, - [553] = 546, + [550] = 550, + [551] = 550, + [552] = 552, + [553] = 534, [554] = 554, - [555] = 544, - [556] = 556, - [557] = 547, + [555] = 552, + [556] = 554, + [557] = 557, [558] = 558, [559] = 559, - [560] = 560, - [561] = 547, + [560] = 534, + [561] = 534, [562] = 562, - [563] = 560, + [563] = 563, [564] = 564, - [565] = 547, + [565] = 565, [566] = 566, [567] = 567, [568] = 568, - [569] = 569, - [570] = 570, - [571] = 571, - [572] = 569, - [573] = 571, - [574] = 571, + [569] = 568, + [570] = 568, + [571] = 568, + [572] = 568, + [573] = 573, + [574] = 574, [575] = 575, - [576] = 576, + [576] = 574, [577] = 577, - [578] = 571, - [579] = 571, + [578] = 578, + [579] = 579, [580] = 580, - [581] = 571, - [582] = 582, - [583] = 569, + [581] = 581, + [582] = 581, + [583] = 583, [584] = 584, - [585] = 585, + [585] = 581, [586] = 586, - [587] = 587, - [588] = 588, - [589] = 571, - [590] = 571, - [591] = 569, - [592] = 569, + [587] = 581, + [588] = 581, + [589] = 589, + [590] = 590, + [591] = 591, + [592] = 592, [593] = 593, [594] = 594, [595] = 595, - [596] = 595, - [597] = 597, + [596] = 596, + [597] = 581, [598] = 598, - [599] = 595, + [599] = 599, [600] = 600, - [601] = 598, - [602] = 602, - [603] = 603, + [601] = 592, + [602] = 592, + [603] = 581, [604] = 604, [605] = 605, - [606] = 595, - [607] = 607, + [606] = 606, + [607] = 592, [608] = 608, - [609] = 595, + [609] = 609, [610] = 610, - [611] = 598, - [612] = 598, - [613] = 595, - [614] = 602, + [611] = 611, + [612] = 592, + [613] = 581, + [614] = 614, [615] = 615, [616] = 616, - [617] = 595, - [618] = 595, + [617] = 617, + [618] = 618, [619] = 619, - [620] = 598, + [620] = 618, [621] = 621, [622] = 622, - [623] = 623, + [623] = 618, [624] = 624, - [625] = 625, + [625] = 618, [626] = 626, - [627] = 624, - [628] = 626, - [629] = 629, - [630] = 630, - [631] = 631, + [627] = 618, + [628] = 628, + [629] = 618, + [630] = 616, + [631] = 618, [632] = 632, - [633] = 624, - [634] = 634, + [633] = 633, + [634] = 618, [635] = 635, - [636] = 629, + [636] = 636, [637] = 637, [638] = 638, [639] = 639, - [640] = 623, + [640] = 640, [641] = 641, - [642] = 626, - [643] = 643, + [642] = 638, + [643] = 637, [644] = 644, - [645] = 630, + [645] = 645, [646] = 646, [647] = 647, - [648] = 630, - [649] = 647, + [648] = 648, + [649] = 640, [650] = 650, [651] = 651, [652] = 652, - [653] = 646, - [654] = 654, - [655] = 644, - [656] = 641, - [657] = 622, - [658] = 643, - [659] = 659, - [660] = 623, - [661] = 626, + [653] = 640, + [654] = 639, + [655] = 638, + [656] = 637, + [657] = 657, + [658] = 645, + [659] = 640, + [660] = 639, + [661] = 636, [662] = 662, - [663] = 644, - [664] = 624, - [665] = 639, - [666] = 651, - [667] = 641, - [668] = 644, - [669] = 646, - [670] = 635, - [671] = 641, - [672] = 672, - [673] = 635, - [674] = 674, - [675] = 675, - [676] = 630, - [677] = 630, - [678] = 516, - [679] = 630, - [680] = 638, - [681] = 635, - [682] = 647, - [683] = 651, - [684] = 646, - [685] = 643, - [686] = 634, - [687] = 629, - [688] = 688, - [689] = 689, - [690] = 690, - [691] = 629, - [692] = 635, - [693] = 631, - [694] = 632, - [695] = 631, - [696] = 631, - [697] = 629, - [698] = 635, + [663] = 663, + [664] = 662, + [665] = 663, + [666] = 636, + [667] = 648, + [668] = 647, + [669] = 669, + [670] = 670, + [671] = 645, + [672] = 647, + [673] = 650, + [674] = 648, + [675] = 636, + [676] = 651, + [677] = 677, + [678] = 662, + [679] = 652, + [680] = 657, + [681] = 681, + [682] = 663, + [683] = 657, + [684] = 644, + [685] = 650, + [686] = 639, + [687] = 681, + [688] = 650, + [689] = 651, + [690] = 638, + [691] = 652, + [692] = 692, + [693] = 693, + [694] = 693, + [695] = 657, + [696] = 650, + [697] = 637, + [698] = 517, [699] = 652, - [700] = 646, - [701] = 644, - [702] = 632, - [703] = 643, - [704] = 634, - [705] = 641, - [706] = 626, - [707] = 639, - [708] = 638, - [709] = 641, - [710] = 647, - [711] = 711, - [712] = 626, - [713] = 652, - [714] = 637, - [715] = 634, - [716] = 632, - [717] = 631, - [718] = 641, - [719] = 650, - [720] = 624, - [721] = 632, - [722] = 634, - [723] = 637, - [724] = 646, - [725] = 644, - [726] = 643, - [727] = 624, - [728] = 623, - [729] = 639, - [730] = 638, - [731] = 637, - [732] = 637, - [733] = 638, - [734] = 634, - [735] = 641, - [736] = 638, - [737] = 632, - [738] = 631, - [739] = 711, - [740] = 635, - [741] = 639, - [742] = 629, - [743] = 639, - [744] = 630, - [745] = 623, - [746] = 623, - [747] = 643, - [748] = 644, - [749] = 637, - [750] = 646, - [751] = 643, - [752] = 624, - [753] = 624, - [754] = 630, - [755] = 631, - [756] = 632, - [757] = 634, - [758] = 629, - [759] = 635, - [760] = 637, - [761] = 638, - [762] = 631, - [763] = 639, - [764] = 632, - [765] = 634, - [766] = 637, - [767] = 638, - [768] = 639, - [769] = 623, - [770] = 643, - [771] = 644, - [772] = 646, - [773] = 652, - [774] = 672, - [775] = 629, - [776] = 623, - [777] = 777, - [778] = 778, - [779] = 779, - [780] = 780, - [781] = 781, - [782] = 782, - [783] = 783, - [784] = 784, - [785] = 785, - [786] = 786, - [787] = 787, - [788] = 788, + [700] = 700, + [701] = 645, + [702] = 702, + [703] = 647, + [704] = 648, + [705] = 645, + [706] = 639, + [707] = 636, + [708] = 681, + [709] = 657, + [710] = 681, + [711] = 637, + [712] = 712, + [713] = 662, + [714] = 714, + [715] = 652, + [716] = 677, + [717] = 663, + [718] = 644, + [719] = 719, + [720] = 702, + [721] = 693, + [722] = 692, + [723] = 650, + [724] = 681, + [725] = 651, + [726] = 693, + [727] = 651, + [728] = 652, + [729] = 640, + [730] = 677, + [731] = 731, + [732] = 650, + [733] = 693, + [734] = 681, + [735] = 651, + [736] = 639, + [737] = 640, + [738] = 663, + [739] = 638, + [740] = 677, + [741] = 662, + [742] = 636, + [743] = 648, + [744] = 700, + [745] = 647, + [746] = 637, + [747] = 645, + [748] = 681, + [749] = 640, + [750] = 647, + [751] = 648, + [752] = 639, + [753] = 636, + [754] = 662, + [755] = 755, + [756] = 650, + [757] = 651, + [758] = 663, + [759] = 638, + [760] = 693, + [761] = 637, + [762] = 652, + [763] = 645, + [764] = 638, + [765] = 731, + [766] = 657, + [767] = 692, + [768] = 693, + [769] = 663, + [770] = 662, + [771] = 648, + [772] = 647, + [773] = 645, + [774] = 637, + [775] = 638, + [776] = 647, + [777] = 639, + [778] = 640, + [779] = 644, + [780] = 681, + [781] = 693, + [782] = 652, + [783] = 651, + [784] = 648, + [785] = 636, + [786] = 662, + [787] = 663, + [788] = 719, [789] = 789, [790] = 790, [791] = 791, @@ -3945,42 +3980,42 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [793] = 793, [794] = 794, [795] = 795, - [796] = 796, - [797] = 797, + [796] = 794, + [797] = 791, [798] = 798, - [799] = 799, - [800] = 800, - [801] = 801, + [799] = 793, + [800] = 793, + [801] = 794, [802] = 802, [803] = 803, - [804] = 803, - [805] = 805, - [806] = 803, - [807] = 807, - [808] = 801, + [804] = 794, + [805] = 795, + [806] = 791, + [807] = 793, + [808] = 808, [809] = 809, - [810] = 807, - [811] = 801, - [812] = 812, - [813] = 803, - [814] = 807, + [810] = 810, + [811] = 811, + [812] = 795, + [813] = 791, + [814] = 794, [815] = 815, - [816] = 812, - [817] = 812, + [816] = 816, + [817] = 817, [818] = 818, - [819] = 812, - [820] = 801, + [819] = 819, + [820] = 795, [821] = 821, - [822] = 803, - [823] = 807, + [822] = 793, + [823] = 823, [824] = 824, - [825] = 807, - [826] = 812, - [827] = 801, + [825] = 791, + [826] = 826, + [827] = 795, [828] = 828, - [829] = 482, - [830] = 483, - [831] = 789, + [829] = 829, + [830] = 830, + [831] = 831, [832] = 832, [833] = 833, [834] = 834, @@ -3990,524 +4025,524 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [838] = 838, [839] = 839, [840] = 840, - [841] = 841, + [841] = 575, [842] = 842, [843] = 843, - [844] = 654, - [845] = 654, - [846] = 593, - [847] = 610, - [848] = 848, - [849] = 848, - [850] = 850, - [851] = 850, - [852] = 616, - [853] = 848, - [854] = 850, - [855] = 850, - [856] = 848, - [857] = 850, - [858] = 848, - [859] = 675, + [844] = 843, + [845] = 842, + [846] = 843, + [847] = 842, + [848] = 843, + [849] = 842, + [850] = 843, + [851] = 842, + [852] = 852, + [853] = 789, + [854] = 483, + [855] = 855, + [856] = 482, + [857] = 857, + [858] = 858, + [859] = 859, [860] = 860, [861] = 861, [862] = 862, - [863] = 654, - [864] = 654, - [865] = 778, - [866] = 777, + [863] = 863, + [864] = 864, + [865] = 865, + [866] = 866, [867] = 867, - [868] = 868, + [868] = 575, [869] = 869, [870] = 870, [871] = 871, [872] = 872, - [873] = 872, - [874] = 872, - [875] = 875, - [876] = 872, + [873] = 873, + [874] = 566, + [875] = 565, + [876] = 567, [877] = 877, - [878] = 878, - [879] = 879, - [880] = 880, - [881] = 872, - [882] = 872, + [878] = 136, + [879] = 134, + [880] = 146, + [881] = 881, + [882] = 882, [883] = 883, - [884] = 884, + [884] = 575, [885] = 885, - [886] = 886, + [886] = 139, [887] = 887, [888] = 888, [889] = 889, - [890] = 654, - [891] = 880, - [892] = 868, - [893] = 870, - [894] = 878, - [895] = 887, - [896] = 877, - [897] = 871, - [898] = 875, - [899] = 885, - [900] = 879, + [890] = 890, + [891] = 141, + [892] = 145, + [893] = 573, + [894] = 894, + [895] = 895, + [896] = 896, + [897] = 897, + [898] = 898, + [899] = 575, + [900] = 900, [901] = 901, - [902] = 867, - [903] = 889, - [904] = 835, + [902] = 577, + [903] = 903, + [904] = 579, [905] = 905, - [906] = 158, - [907] = 907, - [908] = 828, + [906] = 906, + [907] = 141, + [908] = 136, [909] = 909, - [910] = 910, - [911] = 911, - [912] = 838, - [913] = 901, - [914] = 147, - [915] = 915, - [916] = 146, - [917] = 841, - [918] = 143, - [919] = 138, - [920] = 141, - [921] = 921, - [922] = 922, - [923] = 923, + [910] = 889, + [911] = 896, + [912] = 898, + [913] = 905, + [914] = 905, + [915] = 890, + [916] = 916, + [917] = 882, + [918] = 881, + [919] = 905, + [920] = 905, + [921] = 139, + [922] = 905, + [923] = 916, [924] = 924, [925] = 925, [926] = 926, - [927] = 880, - [928] = 867, - [929] = 878, - [930] = 868, - [931] = 875, - [932] = 871, - [933] = 832, - [934] = 877, - [935] = 885, - [936] = 843, - [937] = 887, - [938] = 836, - [939] = 889, - [940] = 834, - [941] = 879, - [942] = 870, - [943] = 840, - [944] = 839, - [945] = 143, - [946] = 884, - [947] = 779, - [948] = 793, - [949] = 785, - [950] = 138, - [951] = 141, - [952] = 797, - [953] = 788, - [954] = 901, - [955] = 955, - [956] = 956, - [957] = 809, - [958] = 780, - [959] = 959, - [960] = 789, - [961] = 824, - [962] = 795, - [963] = 792, - [964] = 146, - [965] = 147, + [927] = 897, + [928] = 895, + [929] = 888, + [930] = 134, + [931] = 887, + [932] = 885, + [933] = 146, + [934] = 934, + [935] = 883, + [936] = 145, + [937] = 937, + [938] = 938, + [939] = 939, + [940] = 940, + [941] = 575, + [942] = 942, + [943] = 864, + [944] = 579, + [945] = 862, + [946] = 483, + [947] = 870, + [948] = 865, + [949] = 873, + [950] = 950, + [951] = 861, + [952] = 867, + [953] = 953, + [954] = 482, + [955] = 577, + [956] = 872, + [957] = 863, + [958] = 871, + [959] = 866, + [960] = 869, + [961] = 834, + [962] = 146, + [963] = 836, + [964] = 881, + [965] = 887, [966] = 966, - [967] = 794, - [968] = 821, - [969] = 158, - [970] = 786, - [971] = 800, - [972] = 907, - [973] = 925, - [974] = 915, - [975] = 784, + [967] = 888, + [968] = 895, + [969] = 897, + [970] = 966, + [971] = 971, + [972] = 828, + [973] = 966, + [974] = 974, + [975] = 975, [976] = 976, [977] = 977, [978] = 978, - [979] = 815, - [980] = 791, - [981] = 790, - [982] = 923, - [983] = 922, - [984] = 921, - [985] = 783, - [986] = 782, - [987] = 802, - [988] = 796, + [979] = 136, + [980] = 980, + [981] = 981, + [982] = 966, + [983] = 966, + [984] = 889, + [985] = 896, + [986] = 139, + [987] = 141, + [988] = 898, [989] = 989, - [990] = 805, - [991] = 818, - [992] = 905, - [993] = 911, - [994] = 781, - [995] = 910, - [996] = 909, - [997] = 924, - [998] = 926, - [999] = 787, - [1000] = 1000, - [1001] = 482, - [1002] = 778, - [1003] = 483, - [1004] = 777, - [1005] = 1005, - [1006] = 840, - [1007] = 1007, - [1008] = 1008, - [1009] = 1005, - [1010] = 1010, - [1011] = 138, - [1012] = 909, - [1013] = 141, - [1014] = 143, + [990] = 145, + [991] = 146, + [992] = 890, + [993] = 134, + [994] = 898, + [995] = 896, + [996] = 889, + [997] = 885, + [998] = 883, + [999] = 897, + [1000] = 882, + [1001] = 830, + [1002] = 895, + [1003] = 888, + [1004] = 877, + [1005] = 887, + [1006] = 885, + [1007] = 883, + [1008] = 882, + [1009] = 881, + [1010] = 145, + [1011] = 141, + [1012] = 1012, + [1013] = 1013, + [1014] = 1014, [1015] = 1015, - [1016] = 843, - [1017] = 910, - [1018] = 925, - [1019] = 911, - [1020] = 905, - [1021] = 146, - [1022] = 147, + [1016] = 1016, + [1017] = 139, + [1018] = 1018, + [1019] = 136, + [1020] = 1020, + [1021] = 1021, + [1022] = 1022, [1023] = 1023, - [1024] = 925, - [1025] = 1025, - [1026] = 924, - [1027] = 926, - [1028] = 1028, - [1029] = 1005, + [1024] = 1024, + [1025] = 890, + [1026] = 134, + [1027] = 1027, + [1028] = 862, + [1029] = 1029, [1030] = 1030, - [1031] = 832, - [1032] = 915, + [1031] = 1031, + [1032] = 1032, [1033] = 1033, - [1034] = 158, - [1035] = 923, + [1034] = 1034, + [1035] = 1035, [1036] = 1036, - [1037] = 922, - [1038] = 921, + [1037] = 1037, + [1038] = 1038, [1039] = 1039, [1040] = 1040, - [1041] = 905, - [1042] = 911, - [1043] = 910, - [1044] = 909, - [1045] = 924, - [1046] = 923, - [1047] = 878, - [1048] = 926, - [1049] = 870, - [1050] = 915, - [1051] = 922, - [1052] = 907, - [1053] = 871, - [1054] = 877, - [1055] = 907, - [1056] = 868, - [1057] = 880, - [1058] = 887, - [1059] = 1059, - [1060] = 921, - [1061] = 1061, - [1062] = 889, - [1063] = 867, - [1064] = 839, - [1065] = 836, - [1066] = 1066, - [1067] = 1005, - [1068] = 158, - [1069] = 147, - [1070] = 146, - [1071] = 834, - [1072] = 875, - [1073] = 885, + [1041] = 837, + [1042] = 838, + [1043] = 1043, + [1044] = 1044, + [1045] = 1045, + [1046] = 1046, + [1047] = 1047, + [1048] = 1048, + [1049] = 840, + [1050] = 833, + [1051] = 1051, + [1052] = 1052, + [1053] = 1053, + [1054] = 835, + [1055] = 872, + [1056] = 1056, + [1057] = 869, + [1058] = 867, + [1059] = 866, + [1060] = 865, + [1061] = 864, + [1062] = 1062, + [1063] = 870, + [1064] = 1064, + [1065] = 1065, + [1066] = 871, + [1067] = 1067, + [1068] = 861, + [1069] = 1069, + [1070] = 1070, + [1071] = 1071, + [1072] = 1072, + [1073] = 863, [1074] = 1074, - [1075] = 143, - [1076] = 141, - [1077] = 138, - [1078] = 1005, - [1079] = 879, + [1075] = 1075, + [1076] = 1076, + [1077] = 1077, + [1078] = 1078, + [1079] = 873, [1080] = 1080, [1081] = 1081, - [1082] = 1082, + [1082] = 829, [1083] = 1083, [1084] = 1084, [1085] = 1085, [1086] = 1086, [1087] = 1087, [1088] = 1088, - [1089] = 1089, - [1090] = 1090, - [1091] = 1091, - [1092] = 1092, - [1093] = 1093, - [1094] = 1094, - [1095] = 1095, - [1096] = 1096, - [1097] = 901, - [1098] = 1098, - [1099] = 1099, - [1100] = 1100, - [1101] = 1101, - [1102] = 1102, - [1103] = 1103, - [1104] = 1104, - [1105] = 1105, - [1106] = 1106, - [1107] = 1107, - [1108] = 1108, - [1109] = 1109, - [1110] = 1110, - [1111] = 1111, - [1112] = 1112, - [1113] = 1113, - [1114] = 1114, - [1115] = 1115, + [1089] = 818, + [1090] = 823, + [1091] = 792, + [1092] = 593, + [1093] = 600, + [1094] = 798, + [1095] = 802, + [1096] = 594, + [1097] = 605, + [1098] = 877, + [1099] = 817, + [1100] = 614, + [1101] = 606, + [1102] = 824, + [1103] = 810, + [1104] = 789, + [1105] = 583, + [1106] = 584, + [1107] = 811, + [1108] = 590, + [1109] = 808, + [1110] = 809, + [1111] = 595, + [1112] = 826, + [1113] = 819, + [1114] = 790, + [1115] = 821, [1116] = 1116, - [1117] = 1117, + [1117] = 803, [1118] = 1118, - [1119] = 1119, - [1120] = 1119, - [1121] = 1121, - [1122] = 1119, - [1123] = 101, - [1124] = 1124, - [1125] = 1119, - [1126] = 1126, - [1127] = 1119, + [1119] = 1118, + [1120] = 1120, + [1121] = 1118, + [1122] = 1118, + [1123] = 1123, + [1124] = 1118, + [1125] = 1125, + [1126] = 837, + [1127] = 867, [1128] = 1128, - [1129] = 1129, - [1130] = 1130, - [1131] = 1131, - [1132] = 1132, - [1133] = 868, - [1134] = 889, - [1135] = 101, - [1136] = 880, - [1137] = 877, - [1138] = 1138, - [1139] = 1138, - [1140] = 1138, - [1141] = 879, - [1142] = 1138, - [1143] = 870, - [1144] = 871, - [1145] = 885, - [1146] = 1146, - [1147] = 867, - [1148] = 875, - [1149] = 1149, - [1150] = 1150, - [1151] = 887, - [1152] = 878, - [1153] = 1138, - [1154] = 879, - [1155] = 889, - [1156] = 885, - [1157] = 867, - [1158] = 880, - [1159] = 1159, - [1160] = 878, - [1161] = 1161, - [1162] = 887, - [1163] = 1163, - [1164] = 877, + [1129] = 865, + [1130] = 862, + [1131] = 833, + [1132] = 866, + [1133] = 861, + [1134] = 1134, + [1135] = 829, + [1136] = 840, + [1137] = 871, + [1138] = 838, + [1139] = 835, + [1140] = 864, + [1141] = 873, + [1142] = 870, + [1143] = 863, + [1144] = 869, + [1145] = 872, + [1146] = 867, + [1147] = 1147, + [1148] = 872, + [1149] = 1147, + [1150] = 873, + [1151] = 865, + [1152] = 864, + [1153] = 863, + [1154] = 877, + [1155] = 871, + [1156] = 869, + [1157] = 1147, + [1158] = 1158, + [1159] = 870, + [1160] = 862, + [1161] = 866, + [1162] = 1147, + [1163] = 1147, + [1164] = 116, [1165] = 1165, - [1166] = 875, - [1167] = 871, - [1168] = 870, - [1169] = 868, + [1166] = 861, + [1167] = 1167, + [1168] = 1168, + [1169] = 1169, [1170] = 1170, - [1171] = 871, - [1172] = 870, - [1173] = 868, + [1171] = 1171, + [1172] = 116, + [1173] = 1173, [1174] = 1174, - [1175] = 1159, - [1176] = 880, + [1175] = 1175, + [1176] = 1176, [1177] = 1177, - [1178] = 879, - [1179] = 877, - [1180] = 885, - [1181] = 887, - [1182] = 889, - [1183] = 878, - [1184] = 867, - [1185] = 875, - [1186] = 1186, - [1187] = 1187, - [1188] = 1188, - [1189] = 1189, - [1190] = 1190, - [1191] = 1191, - [1192] = 1192, - [1193] = 1193, - [1194] = 1194, - [1195] = 1195, - [1196] = 1195, - [1197] = 1197, - [1198] = 1198, - [1199] = 1199, - [1200] = 1197, - [1201] = 1194, - [1202] = 1199, - [1203] = 1203, - [1204] = 1159, + [1178] = 862, + [1179] = 867, + [1180] = 861, + [1181] = 872, + [1182] = 866, + [1183] = 863, + [1184] = 1184, + [1185] = 873, + [1186] = 865, + [1187] = 864, + [1188] = 869, + [1189] = 870, + [1190] = 871, + [1191] = 1134, + [1192] = 1125, + [1193] = 866, + [1194] = 865, + [1195] = 867, + [1196] = 869, + [1197] = 1184, + [1198] = 873, + [1199] = 872, + [1200] = 863, + [1201] = 861, + [1202] = 871, + [1203] = 870, + [1204] = 862, [1205] = 1205, - [1206] = 1206, - [1207] = 868, + [1206] = 864, + [1207] = 1207, [1208] = 1208, - [1209] = 880, + [1209] = 1209, [1210] = 1210, - [1211] = 887, - [1212] = 1212, + [1211] = 1211, + [1212] = 1171, [1213] = 1213, - [1214] = 1205, - [1215] = 1212, - [1216] = 1212, + [1214] = 1169, + [1215] = 1215, + [1216] = 1168, [1217] = 1217, - [1218] = 871, - [1219] = 870, - [1220] = 1206, + [1218] = 1218, + [1219] = 1219, + [1220] = 1219, [1221] = 1221, - [1222] = 889, - [1223] = 867, - [1224] = 875, - [1225] = 1221, - [1226] = 1203, - [1227] = 1221, + [1222] = 1218, + [1223] = 1223, + [1224] = 1224, + [1225] = 1223, + [1226] = 1224, + [1227] = 1227, [1228] = 1228, - [1229] = 1221, - [1230] = 1221, - [1231] = 1231, + [1229] = 1229, + [1230] = 1230, + [1231] = 873, [1232] = 1232, - [1233] = 1212, - [1234] = 877, - [1235] = 1203, - [1236] = 1206, - [1237] = 1206, + [1233] = 1233, + [1234] = 1234, + [1235] = 1229, + [1236] = 863, + [1237] = 1237, [1238] = 1238, - [1239] = 1212, - [1240] = 885, - [1241] = 1241, - [1242] = 1242, - [1243] = 1243, - [1244] = 1244, - [1245] = 1245, - [1246] = 1246, - [1247] = 1208, - [1248] = 1248, - [1249] = 1249, - [1250] = 1203, - [1251] = 1251, + [1239] = 1239, + [1240] = 861, + [1241] = 871, + [1242] = 870, + [1243] = 862, + [1244] = 864, + [1245] = 865, + [1246] = 866, + [1247] = 867, + [1248] = 869, + [1249] = 872, + [1250] = 1250, + [1251] = 1250, [1252] = 1252, - [1253] = 1253, - [1254] = 1254, - [1255] = 879, - [1256] = 878, - [1257] = 1257, - [1258] = 1258, - [1259] = 1208, - [1260] = 1126, - [1261] = 1203, - [1262] = 1206, - [1263] = 1263, - [1264] = 1132, - [1265] = 1244, - [1266] = 1228, - [1267] = 1267, + [1253] = 1239, + [1254] = 1234, + [1255] = 1238, + [1256] = 1256, + [1257] = 1229, + [1258] = 1239, + [1259] = 1234, + [1260] = 1233, + [1261] = 1238, + [1262] = 1229, + [1263] = 1234, + [1264] = 1250, + [1265] = 1265, + [1266] = 1266, + [1267] = 1232, [1268] = 1268, - [1269] = 862, + [1269] = 1239, [1270] = 1270, - [1271] = 1271, - [1272] = 1271, - [1273] = 1273, - [1274] = 1274, + [1271] = 1250, + [1272] = 1239, + [1273] = 1184, + [1274] = 1234, [1275] = 1275, - [1276] = 1274, - [1277] = 1273, - [1278] = 1278, - [1279] = 1273, + [1276] = 1276, + [1277] = 1277, + [1278] = 1250, + [1279] = 1279, [1280] = 1280, [1281] = 1281, [1282] = 1282, - [1283] = 1271, - [1284] = 1271, + [1283] = 1283, + [1284] = 1229, [1285] = 1285, - [1286] = 1273, - [1287] = 1275, + [1286] = 1282, + [1287] = 1287, [1288] = 1288, - [1289] = 1273, - [1290] = 1273, + [1289] = 1289, + [1290] = 1290, [1291] = 1291, [1292] = 1292, [1293] = 1293, [1294] = 1294, - [1295] = 1295, + [1295] = 1292, [1296] = 1296, - [1297] = 1285, - [1298] = 1298, - [1299] = 1271, - [1300] = 1273, - [1301] = 1301, + [1297] = 1292, + [1298] = 1289, + [1299] = 1299, + [1300] = 1300, + [1301] = 1299, [1302] = 1302, - [1303] = 1273, - [1304] = 1271, - [1305] = 1161, + [1303] = 1303, + [1304] = 1304, + [1305] = 1305, [1306] = 1306, [1307] = 1307, - [1308] = 1165, - [1309] = 1163, + [1308] = 894, + [1309] = 1309, [1310] = 1310, [1311] = 1311, - [1312] = 1312, - [1313] = 1313, + [1312] = 1289, + [1313] = 1293, [1314] = 1314, - [1315] = 1315, + [1315] = 1289, [1316] = 1316, - [1317] = 1317, - [1318] = 1318, - [1319] = 1319, - [1320] = 1320, - [1321] = 1321, - [1322] = 1322, - [1323] = 1113, - [1324] = 1324, - [1325] = 1109, + [1317] = 1292, + [1318] = 1291, + [1319] = 1292, + [1320] = 1292, + [1321] = 1292, + [1322] = 1292, + [1323] = 1323, + [1324] = 1289, + [1325] = 1289, [1326] = 1326, [1327] = 1327, [1328] = 1328, - [1329] = 1328, + [1329] = 1329, [1330] = 1330, - [1331] = 1330, - [1332] = 1320, - [1333] = 1330, - [1334] = 1328, + [1331] = 1331, + [1332] = 1332, + [1333] = 1333, + [1334] = 1334, [1335] = 1335, - [1336] = 1336, + [1336] = 1125, [1337] = 1337, [1338] = 1338, - [1339] = 1339, + [1339] = 1085, [1340] = 1340, [1341] = 1341, [1342] = 1342, [1343] = 1343, [1344] = 1344, [1345] = 1345, - [1346] = 1346, + [1346] = 1039, [1347] = 1347, [1348] = 1348, - [1349] = 1349, + [1349] = 1348, [1350] = 1350, [1351] = 1351, - [1352] = 1340, - [1353] = 1353, - [1354] = 1336, - [1355] = 796, - [1356] = 1356, - [1357] = 1336, - [1358] = 1358, + [1352] = 1350, + [1353] = 1350, + [1354] = 1348, + [1355] = 1351, + [1356] = 1350, + [1357] = 1344, + [1358] = 1351, [1359] = 1359, [1360] = 1360, [1361] = 1361, @@ -4515,190 +4550,190 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1363] = 1363, [1364] = 1364, [1365] = 1365, - [1366] = 1343, - [1367] = 1342, - [1368] = 1348, + [1366] = 1366, + [1367] = 1367, + [1368] = 1368, [1369] = 1369, - [1370] = 1341, + [1370] = 1368, [1371] = 1371, [1372] = 1372, [1373] = 1373, [1374] = 1374, [1375] = 1375, - [1376] = 1376, + [1376] = 1367, [1377] = 1377, [1378] = 1378, [1379] = 1379, [1380] = 1380, - [1381] = 1336, - [1382] = 1382, - [1383] = 1383, - [1384] = 1384, - [1385] = 1385, - [1386] = 1386, - [1387] = 1351, - [1388] = 1353, + [1381] = 1381, + [1382] = 808, + [1383] = 1371, + [1384] = 1372, + [1385] = 1373, + [1386] = 1374, + [1387] = 1387, + [1388] = 1359, [1389] = 1389, - [1390] = 1375, - [1391] = 1384, - [1392] = 1373, + [1390] = 1390, + [1391] = 1360, + [1392] = 1392, [1393] = 1393, - [1394] = 1376, + [1394] = 1369, [1395] = 1395, - [1396] = 1340, - [1397] = 1340, - [1398] = 1350, - [1399] = 1360, - [1400] = 1340, - [1401] = 1091, + [1396] = 1396, + [1397] = 1397, + [1398] = 1398, + [1399] = 1366, + [1400] = 1400, + [1401] = 1366, [1402] = 1379, - [1403] = 1335, - [1404] = 1404, - [1405] = 1365, - [1406] = 1389, - [1407] = 1085, - [1408] = 1369, - [1409] = 1386, - [1410] = 1103, + [1403] = 1360, + [1404] = 1398, + [1405] = 1366, + [1406] = 1406, + [1407] = 1407, + [1408] = 1408, + [1409] = 1409, + [1410] = 1410, [1411] = 1411, [1412] = 1412, - [1413] = 1346, + [1413] = 1413, [1414] = 1414, - [1415] = 1110, - [1416] = 1113, + [1415] = 1415, + [1416] = 1416, [1417] = 1417, - [1418] = 1385, - [1419] = 1371, - [1420] = 1337, - [1421] = 1421, + [1418] = 1418, + [1419] = 1378, + [1420] = 1420, + [1421] = 1380, [1422] = 1422, - [1423] = 1126, - [1424] = 1372, - [1425] = 1377, - [1426] = 1426, + [1423] = 1366, + [1424] = 1424, + [1425] = 1425, + [1426] = 1360, [1427] = 1427, - [1428] = 1412, - [1429] = 796, - [1430] = 1412, - [1431] = 1412, - [1432] = 1082, - [1433] = 1414, - [1434] = 1112, - [1435] = 1116, - [1436] = 1383, - [1437] = 1339, - [1438] = 1380, - [1439] = 1412, - [1440] = 1414, - [1441] = 1349, - [1442] = 1414, - [1443] = 1347, - [1444] = 1109, - [1445] = 1359, - [1446] = 1115, + [1428] = 1428, + [1429] = 1429, + [1430] = 1411, + [1431] = 1431, + [1432] = 1033, + [1433] = 1412, + [1434] = 1407, + [1435] = 1435, + [1436] = 1425, + [1437] = 1420, + [1438] = 1429, + [1439] = 1363, + [1440] = 1413, + [1441] = 1375, + [1442] = 1084, + [1443] = 1083, + [1444] = 1444, + [1445] = 1445, + [1446] = 1445, [1447] = 1447, - [1448] = 1411, - [1449] = 1449, - [1450] = 1449, - [1451] = 1451, - [1452] = 1451, - [1453] = 1453, - [1454] = 1453, - [1455] = 1453, - [1456] = 1453, - [1457] = 1449, - [1458] = 1451, - [1459] = 1449, - [1460] = 1451, - [1461] = 1453, - [1462] = 1449, - [1463] = 1463, - [1464] = 1464, - [1465] = 1463, - [1466] = 1463, - [1467] = 1463, - [1468] = 1463, - [1469] = 1469, - [1470] = 1470, + [1448] = 1416, + [1449] = 1045, + [1450] = 1417, + [1451] = 1365, + [1452] = 1452, + [1453] = 1424, + [1454] = 1444, + [1455] = 1444, + [1456] = 1456, + [1457] = 1085, + [1458] = 1397, + [1459] = 1445, + [1460] = 1410, + [1461] = 1461, + [1462] = 1364, + [1463] = 1414, + [1464] = 1052, + [1465] = 1409, + [1466] = 1466, + [1467] = 1043, + [1468] = 1445, + [1469] = 1408, + [1470] = 808, [1471] = 1471, - [1472] = 1472, - [1473] = 1473, - [1474] = 1472, - [1475] = 1472, - [1476] = 1472, - [1477] = 1477, + [1472] = 1037, + [1473] = 1445, + [1474] = 1474, + [1475] = 1039, + [1476] = 1038, + [1477] = 1444, [1478] = 1478, [1479] = 1479, [1480] = 1480, - [1481] = 1472, + [1481] = 1481, [1482] = 1482, [1483] = 1483, - [1484] = 1484, + [1484] = 1483, [1485] = 1485, - [1486] = 1483, - [1487] = 1483, - [1488] = 1483, - [1489] = 1489, + [1486] = 1486, + [1487] = 1486, + [1488] = 1488, + [1489] = 1486, [1490] = 1483, [1491] = 1491, - [1492] = 1492, - [1493] = 1491, - [1494] = 1494, + [1492] = 1486, + [1493] = 1483, + [1494] = 1483, [1495] = 1495, - [1496] = 1496, - [1497] = 1492, - [1498] = 1492, + [1496] = 1486, + [1497] = 1497, + [1498] = 1498, [1499] = 1499, [1500] = 1500, - [1501] = 1501, - [1502] = 1492, - [1503] = 1491, + [1501] = 1497, + [1502] = 1502, + [1503] = 1503, [1504] = 1504, - [1505] = 1505, - [1506] = 1492, + [1505] = 1497, + [1506] = 1497, [1507] = 1507, [1508] = 1508, - [1509] = 1492, + [1509] = 1497, [1510] = 1510, - [1511] = 1492, - [1512] = 1491, + [1511] = 1511, + [1512] = 1510, [1513] = 1513, - [1514] = 1491, - [1515] = 1515, - [1516] = 1515, - [1517] = 1515, + [1514] = 1510, + [1515] = 1510, + [1516] = 1516, + [1517] = 1510, [1518] = 1518, [1519] = 1519, [1520] = 1520, [1521] = 1521, - [1522] = 1515, + [1522] = 1522, [1523] = 1523, - [1524] = 1524, + [1524] = 1523, [1525] = 1525, - [1526] = 1526, + [1526] = 1523, [1527] = 1527, - [1528] = 1515, + [1528] = 1523, [1529] = 1529, - [1530] = 1530, + [1530] = 1523, [1531] = 1531, - [1532] = 1529, - [1533] = 1529, - [1534] = 1529, + [1532] = 1532, + [1533] = 1531, + [1534] = 1534, [1535] = 1535, - [1536] = 1536, - [1537] = 1537, + [1536] = 1531, + [1537] = 1535, [1538] = 1538, [1539] = 1539, - [1540] = 1540, + [1540] = 1531, [1541] = 1541, - [1542] = 1542, + [1542] = 1535, [1543] = 1543, - [1544] = 1544, - [1545] = 1529, + [1544] = 1531, + [1545] = 1545, [1546] = 1546, - [1547] = 1547, - [1548] = 1548, - [1549] = 1549, + [1547] = 1535, + [1548] = 1535, + [1549] = 1531, [1550] = 1550, [1551] = 1551, [1552] = 1552, @@ -4706,429 +4741,429 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1554] = 1554, [1555] = 1555, [1556] = 1556, - [1557] = 1557, + [1557] = 1531, [1558] = 1558, [1559] = 1559, [1560] = 1560, [1561] = 1561, [1562] = 1562, - [1563] = 1563, - [1564] = 1564, - [1565] = 1565, + [1563] = 1560, + [1564] = 1560, + [1565] = 1560, [1566] = 1566, - [1567] = 1567, + [1567] = 1560, [1568] = 1568, - [1569] = 1567, - [1570] = 1564, - [1571] = 1571, + [1569] = 1569, + [1570] = 1568, + [1571] = 1568, [1572] = 1572, [1573] = 1573, [1574] = 1574, - [1575] = 1571, + [1575] = 1575, [1576] = 1576, - [1577] = 1564, - [1578] = 1564, + [1577] = 1568, + [1578] = 1568, [1579] = 1579, - [1580] = 1571, - [1581] = 1568, + [1580] = 1580, + [1581] = 1581, [1582] = 1582, - [1583] = 1571, - [1584] = 1564, - [1585] = 1571, + [1583] = 1583, + [1584] = 1584, + [1585] = 1585, [1586] = 1586, [1587] = 1587, [1588] = 1588, [1589] = 1589, - [1590] = 1590, - [1591] = 1591, + [1590] = 1589, + [1591] = 1584, [1592] = 1592, - [1593] = 1593, + [1593] = 1584, [1594] = 1594, [1595] = 1595, - [1596] = 1586, - [1597] = 1588, - [1598] = 1598, + [1596] = 1596, + [1597] = 1597, + [1598] = 1594, [1599] = 1599, [1600] = 1600, - [1601] = 1601, - [1602] = 1602, - [1603] = 1591, - [1604] = 1591, - [1605] = 1591, - [1606] = 1606, - [1607] = 1591, - [1608] = 1608, - [1609] = 1609, + [1601] = 1584, + [1602] = 1587, + [1603] = 1589, + [1604] = 1587, + [1605] = 1594, + [1606] = 1584, + [1607] = 1587, + [1608] = 1587, + [1609] = 1594, [1610] = 1610, [1611] = 1611, - [1612] = 1612, - [1613] = 1613, - [1614] = 1614, + [1612] = 1589, + [1613] = 1594, + [1614] = 1589, [1615] = 1615, [1616] = 1616, [1617] = 1617, [1618] = 1618, [1619] = 1619, - [1620] = 1620, - [1621] = 1621, - [1622] = 1622, - [1623] = 1622, - [1624] = 1624, - [1625] = 1624, - [1626] = 1626, - [1627] = 1608, - [1628] = 1628, + [1620] = 1618, + [1621] = 1619, + [1622] = 1617, + [1623] = 1617, + [1624] = 1619, + [1625] = 1625, + [1626] = 1618, + [1627] = 1617, + [1628] = 1618, [1629] = 1629, - [1630] = 1622, - [1631] = 1626, - [1632] = 1626, - [1633] = 1620, - [1634] = 1624, - [1635] = 1622, + [1630] = 1630, + [1631] = 1630, + [1632] = 1625, + [1633] = 1619, + [1634] = 1619, + [1635] = 1617, [1636] = 1636, [1637] = 1637, - [1638] = 1624, + [1638] = 1638, [1639] = 1639, [1640] = 1640, [1641] = 1641, - [1642] = 1642, - [1643] = 1636, - [1644] = 1644, + [1642] = 1641, + [1643] = 1643, + [1644] = 1641, [1645] = 1645, [1646] = 1646, [1647] = 1647, [1648] = 1648, [1649] = 1649, [1650] = 1650, - [1651] = 1651, - [1652] = 1636, - [1653] = 1609, - [1654] = 1610, - [1655] = 1655, + [1651] = 1639, + [1652] = 1641, + [1653] = 1653, + [1654] = 1654, + [1655] = 1654, [1656] = 1656, [1657] = 1657, - [1658] = 1628, - [1659] = 1636, + [1658] = 1641, + [1659] = 1659, [1660] = 1660, - [1661] = 1636, + [1661] = 1661, [1662] = 1662, [1663] = 1663, [1664] = 1664, - [1665] = 1622, - [1666] = 1624, + [1665] = 1665, + [1666] = 1666, [1667] = 1667, [1668] = 1668, [1669] = 1669, [1670] = 1670, [1671] = 1671, - [1672] = 1626, - [1673] = 1673, - [1674] = 1626, + [1672] = 1672, + [1673] = 1672, + [1674] = 1674, [1675] = 1675, [1676] = 1676, [1677] = 1677, [1678] = 1678, [1679] = 1679, - [1680] = 1678, - [1681] = 1681, - [1682] = 1677, + [1680] = 1680, + [1681] = 1643, + [1682] = 1682, [1683] = 1683, - [1684] = 1677, - [1685] = 1678, - [1686] = 1677, - [1687] = 1677, - [1688] = 1688, - [1689] = 1616, + [1684] = 1684, + [1685] = 1685, + [1686] = 1686, + [1687] = 1647, + [1688] = 1662, + [1689] = 1689, [1690] = 1690, [1691] = 1691, [1692] = 1692, [1693] = 1693, - [1694] = 1677, + [1694] = 1694, [1695] = 1695, [1696] = 1696, [1697] = 1697, - [1698] = 1698, - [1699] = 1677, + [1698] = 1696, + [1699] = 1699, [1700] = 1700, [1701] = 1701, - [1702] = 1677, - [1703] = 1677, - [1704] = 1678, + [1702] = 1702, + [1703] = 1702, + [1704] = 1704, [1705] = 1705, - [1706] = 1706, - [1707] = 1707, - [1708] = 1708, - [1709] = 1709, + [1706] = 1702, + [1707] = 1702, + [1708] = 1702, + [1709] = 1702, [1710] = 1710, - [1711] = 1640, + [1711] = 1711, [1712] = 1712, [1713] = 1713, [1714] = 1714, [1715] = 1715, [1716] = 1716, [1717] = 1717, - [1718] = 1708, - [1719] = 1709, - [1720] = 1720, - [1721] = 1721, - [1722] = 1722, + [1718] = 1702, + [1719] = 1719, + [1720] = 1668, + [1721] = 1702, + [1722] = 1702, [1723] = 1723, [1724] = 1724, [1725] = 1725, - [1726] = 1720, + [1726] = 1726, [1727] = 1727, - [1728] = 1728, - [1729] = 1708, + [1728] = 1726, + [1729] = 1729, [1730] = 1730, - [1731] = 1722, - [1732] = 1720, - [1733] = 1733, + [1731] = 1726, + [1732] = 1726, + [1733] = 1726, [1734] = 1734, - [1735] = 1709, + [1735] = 1735, [1736] = 1736, - [1737] = 1722, + [1737] = 1737, [1738] = 1738, - [1739] = 1720, - [1740] = 1709, - [1741] = 1722, - [1742] = 1722, - [1743] = 1722, - [1744] = 1708, + [1739] = 1727, + [1740] = 1740, + [1741] = 1741, + [1742] = 1738, + [1743] = 1743, + [1744] = 1727, [1745] = 1745, - [1746] = 1746, + [1746] = 1745, [1747] = 1747, - [1748] = 1748, - [1749] = 1749, + [1748] = 1677, + [1749] = 1738, [1750] = 1750, - [1751] = 1751, - [1752] = 1752, + [1751] = 1745, + [1752] = 1727, [1753] = 1753, [1754] = 1754, - [1755] = 1745, + [1755] = 1726, [1756] = 1756, - [1757] = 1753, + [1757] = 1738, [1758] = 1758, [1759] = 1759, - [1760] = 1745, + [1760] = 1760, [1761] = 1761, [1762] = 1762, - [1763] = 1763, + [1763] = 1745, [1764] = 1764, - [1765] = 1753, + [1765] = 1765, [1766] = 1766, [1767] = 1767, [1768] = 1768, [1769] = 1769, - [1770] = 1751, - [1771] = 1746, + [1770] = 1770, + [1771] = 1771, [1772] = 1772, - [1773] = 1756, + [1773] = 1773, [1774] = 1774, - [1775] = 1775, + [1775] = 1771, [1776] = 1776, - [1777] = 1745, - [1778] = 1778, - [1779] = 1745, + [1777] = 1777, + [1778] = 1764, + [1779] = 1779, [1780] = 1780, [1781] = 1781, - [1782] = 1782, + [1782] = 1767, [1783] = 1783, [1784] = 1784, - [1785] = 1753, - [1786] = 1786, - [1787] = 1787, + [1785] = 1765, + [1786] = 1776, + [1787] = 1765, [1788] = 1788, [1789] = 1789, - [1790] = 1790, - [1791] = 1791, + [1790] = 1771, + [1791] = 1776, [1792] = 1792, [1793] = 1793, [1794] = 1794, - [1795] = 1788, + [1795] = 1795, [1796] = 1796, - [1797] = 1756, - [1798] = 1798, - [1799] = 1799, - [1800] = 1753, - [1801] = 1753, - [1802] = 1790, - [1803] = 1782, + [1797] = 1797, + [1798] = 1771, + [1799] = 1776, + [1800] = 1800, + [1801] = 1801, + [1802] = 1788, + [1803] = 1771, [1804] = 1804, [1805] = 1805, - [1806] = 1806, - [1807] = 1807, - [1808] = 1808, - [1809] = 1792, - [1810] = 1810, - [1811] = 1807, - [1812] = 1810, - [1813] = 1763, - [1814] = 1758, - [1815] = 1786, - [1816] = 1753, + [1806] = 1797, + [1807] = 1776, + [1808] = 1776, + [1809] = 1809, + [1810] = 1792, + [1811] = 1811, + [1812] = 1772, + [1813] = 1813, + [1814] = 1776, + [1815] = 1811, + [1816] = 1773, [1817] = 1817, [1818] = 1818, - [1819] = 1745, + [1819] = 1819, [1820] = 1820, - [1821] = 1753, - [1822] = 1745, - [1823] = 1790, - [1824] = 1745, + [1821] = 1821, + [1822] = 1764, + [1823] = 1823, + [1824] = 1771, [1825] = 1825, - [1826] = 1826, - [1827] = 1827, + [1826] = 1809, + [1827] = 1769, [1828] = 1828, - [1829] = 1829, + [1829] = 1819, [1830] = 1830, - [1831] = 1799, - [1832] = 1756, + [1831] = 1831, + [1832] = 1832, [1833] = 1833, - [1834] = 1754, - [1835] = 1794, - [1836] = 1799, - [1837] = 1837, - [1838] = 1793, - [1839] = 1839, - [1840] = 1830, - [1841] = 1746, - [1842] = 1745, - [1843] = 1763, - [1844] = 1828, - [1845] = 1608, + [1834] = 1834, + [1835] = 1835, + [1836] = 1836, + [1837] = 1767, + [1838] = 1825, + [1839] = 1776, + [1840] = 1840, + [1841] = 1792, + [1842] = 1811, + [1843] = 1843, + [1844] = 1844, + [1845] = 1845, [1846] = 1846, - [1847] = 1761, - [1848] = 1790, - [1849] = 1790, - [1850] = 1753, + [1847] = 1847, + [1848] = 1848, + [1849] = 1771, + [1850] = 1771, [1851] = 1851, [1852] = 1852, - [1853] = 1751, + [1853] = 1853, [1854] = 1854, - [1855] = 1767, - [1856] = 1856, + [1855] = 1855, + [1856] = 1828, [1857] = 1857, [1858] = 1858, - [1859] = 1856, - [1860] = 1857, - [1861] = 1861, + [1859] = 1859, + [1860] = 1765, + [1861] = 1662, [1862] = 1862, - [1863] = 1863, - [1864] = 1864, - [1865] = 1865, - [1866] = 1866, + [1863] = 1765, + [1864] = 1851, + [1865] = 1776, + [1866] = 1853, [1867] = 1867, - [1868] = 1868, - [1869] = 1869, - [1870] = 1864, - [1871] = 1871, - [1872] = 1864, - [1873] = 1873, - [1874] = 1874, + [1868] = 1800, + [1869] = 1835, + [1870] = 1831, + [1871] = 1764, + [1872] = 1774, + [1873] = 1771, + [1874] = 1774, [1875] = 1875, - [1876] = 1863, + [1876] = 1876, [1877] = 1877, - [1878] = 1865, - [1879] = 1856, - [1880] = 1858, - [1881] = 1865, - [1882] = 1865, - [1883] = 1874, + [1878] = 1876, + [1879] = 1879, + [1880] = 1880, + [1881] = 1881, + [1882] = 1881, + [1883] = 1881, [1884] = 1884, [1885] = 1885, - [1886] = 1857, + [1886] = 1886, [1887] = 1887, - [1888] = 1864, + [1888] = 1888, [1889] = 1889, - [1890] = 1858, - [1891] = 1864, + [1890] = 1890, + [1891] = 1891, [1892] = 1892, - [1893] = 1893, + [1893] = 1884, [1894] = 1894, - [1895] = 1862, - [1896] = 1896, + [1895] = 1895, + [1896] = 1890, [1897] = 1897, [1898] = 1898, - [1899] = 1865, - [1900] = 1900, - [1901] = 1856, - [1902] = 1857, - [1903] = 1863, - [1904] = 1874, - [1905] = 1869, + [1899] = 1881, + [1900] = 1880, + [1901] = 1901, + [1902] = 1902, + [1903] = 1876, + [1904] = 1904, + [1905] = 1886, [1906] = 1906, [1907] = 1907, - [1908] = 1863, + [1908] = 1908, [1909] = 1909, - [1910] = 1862, - [1911] = 1911, - [1912] = 1874, - [1913] = 1913, - [1914] = 1868, - [1915] = 1874, - [1916] = 1858, - [1917] = 1861, + [1910] = 1890, + [1911] = 1887, + [1912] = 1898, + [1913] = 1890, + [1914] = 1914, + [1915] = 1885, + [1916] = 1916, + [1917] = 1887, [1918] = 1918, - [1919] = 1919, - [1920] = 1868, - [1921] = 1868, - [1922] = 1857, - [1923] = 1923, - [1924] = 1861, - [1925] = 1858, - [1926] = 1863, - [1927] = 1868, - [1928] = 1928, - [1929] = 1929, - [1930] = 1862, - [1931] = 1868, - [1932] = 1856, - [1933] = 1874, - [1934] = 1857, - [1935] = 1935, - [1936] = 1863, - [1937] = 1864, - [1938] = 1938, - [1939] = 1858, - [1940] = 1862, - [1941] = 1941, + [1919] = 1880, + [1920] = 1920, + [1921] = 1921, + [1922] = 1887, + [1923] = 1885, + [1924] = 1886, + [1925] = 1879, + [1926] = 1887, + [1927] = 1927, + [1928] = 1898, + [1929] = 1890, + [1930] = 1890, + [1931] = 1931, + [1932] = 1932, + [1933] = 1933, + [1934] = 1934, + [1935] = 1886, + [1936] = 1936, + [1937] = 1937, + [1938] = 1879, + [1939] = 1876, + [1940] = 1880, + [1941] = 1881, [1942] = 1942, - [1943] = 1943, + [1943] = 1884, [1944] = 1944, [1945] = 1945, - [1946] = 1946, + [1946] = 1886, [1947] = 1947, - [1948] = 1948, + [1948] = 1886, [1949] = 1949, [1950] = 1950, [1951] = 1951, - [1952] = 1952, - [1953] = 1943, - [1954] = 1944, - [1955] = 1950, - [1956] = 1951, - [1957] = 1952, - [1958] = 1943, - [1959] = 1944, - [1960] = 1950, - [1961] = 1952, - [1962] = 1944, - [1963] = 1950, - [1964] = 1952, - [1965] = 1944, + [1952] = 1879, + [1953] = 1953, + [1954] = 1954, + [1955] = 1955, + [1956] = 1956, + [1957] = 1957, + [1958] = 1958, + [1959] = 1879, + [1960] = 1960, + [1961] = 1897, + [1962] = 1885, + [1963] = 1898, + [1964] = 1898, + [1965] = 1965, [1966] = 1966, [1967] = 1967, [1968] = 1968, - [1969] = 1949, - [1970] = 1967, - [1971] = 1952, - [1972] = 1951, - [1973] = 1973, + [1969] = 1876, + [1970] = 1876, + [1971] = 1885, + [1972] = 1881, + [1973] = 1885, [1974] = 1974, - [1975] = 1975, - [1976] = 1976, + [1975] = 1880, + [1976] = 1898, [1977] = 1977, [1978] = 1978, - [1979] = 1950, + [1979] = 1979, [1980] = 1980, [1981] = 1981, [1982] = 1982, @@ -5140,256 +5175,329 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1988] = 1988, [1989] = 1989, [1990] = 1990, - [1991] = 1948, - [1992] = 1947, + [1991] = 1991, + [1992] = 1992, [1993] = 1993, - [1994] = 1974, - [1995] = 1995, - [1996] = 1943, + [1994] = 1994, + [1995] = 1984, + [1996] = 1978, [1997] = 1997, - [1998] = 1946, - [1999] = 1945, - [2000] = 1944, - [2001] = 1943, - [2002] = 1942, - [2003] = 2003, - [2004] = 1952, - [2005] = 1951, - [2006] = 1973, - [2007] = 1974, - [2008] = 1976, - [2009] = 1977, - [2010] = 1978, - [2011] = 1950, - [2012] = 1981, - [2013] = 1982, - [2014] = 1983, - [2015] = 1949, - [2016] = 1985, - [2017] = 1986, - [2018] = 1987, - [2019] = 1988, - [2020] = 1990, - [2021] = 1948, - [2022] = 1947, - [2023] = 1984, - [2024] = 1946, - [2025] = 1945, - [2026] = 1966, - [2027] = 1967, - [2028] = 1944, - [2029] = 1943, - [2030] = 1995, - [2031] = 1949, - [2032] = 1942, - [2033] = 1952, - [2034] = 1951, - [2035] = 1968, - [2036] = 1973, - [2037] = 1944, - [2038] = 1976, - [2039] = 1977, - [2040] = 1978, + [1998] = 1987, + [1999] = 1997, + [2000] = 2000, + [2001] = 1978, + [2002] = 2002, + [2003] = 1992, + [2004] = 1994, + [2005] = 1375, + [2006] = 1978, + [2007] = 1997, + [2008] = 1987, + [2009] = 2009, + [2010] = 2010, + [2011] = 1992, + [2012] = 1994, + [2013] = 1978, + [2014] = 1987, + [2015] = 2015, + [2016] = 2016, + [2017] = 1992, + [2018] = 2018, + [2019] = 2019, + [2020] = 1987, + [2021] = 2021, + [2022] = 2022, + [2023] = 2023, + [2024] = 2024, + [2025] = 2025, + [2026] = 1992, + [2027] = 2027, + [2028] = 2028, + [2029] = 2000, + [2030] = 2030, + [2031] = 2031, + [2032] = 2032, + [2033] = 2033, + [2034] = 2034, + [2035] = 2035, + [2036] = 2036, + [2037] = 2037, + [2038] = 2038, + [2039] = 2039, + [2040] = 2040, [2041] = 2041, - [2042] = 1950, + [2042] = 1989, [2043] = 2043, - [2044] = 1981, - [2045] = 1982, - [2046] = 1993, - [2047] = 1983, - [2048] = 1995, - [2049] = 1949, - [2050] = 1983, - [2051] = 1982, - [2052] = 1968, + [2044] = 2044, + [2045] = 1983, + [2046] = 2046, + [2047] = 2047, + [2048] = 2048, + [2049] = 2049, + [2050] = 2050, + [2051] = 2051, + [2052] = 2034, [2053] = 2053, - [2054] = 1966, - [2055] = 1967, + [2054] = 2054, + [2055] = 2055, [2056] = 2056, - [2057] = 2057, + [2057] = 2021, [2058] = 2058, - [2059] = 1985, - [2060] = 1986, - [2061] = 1987, - [2062] = 1968, - [2063] = 2063, - [2064] = 1988, - [2065] = 1990, - [2066] = 2066, - [2067] = 1948, - [2068] = 1947, - [2069] = 1984, - [2070] = 2070, - [2071] = 1946, - [2072] = 1993, - [2073] = 1945, - [2074] = 1995, + [2059] = 2016, + [2060] = 2060, + [2061] = 2061, + [2062] = 2060, + [2063] = 1978, + [2064] = 2064, + [2065] = 1984, + [2066] = 1979, + [2067] = 2067, + [2068] = 2068, + [2069] = 1997, + [2070] = 1397, + [2071] = 1983, + [2072] = 2072, + [2073] = 2073, + [2074] = 2074, [2075] = 2075, - [2076] = 2041, - [2077] = 2077, - [2078] = 1943, - [2079] = 1995, - [2080] = 1966, - [2081] = 1967, + [2076] = 2027, + [2077] = 1420, + [2078] = 2078, + [2079] = 1981, + [2080] = 2080, + [2081] = 2081, [2082] = 2082, - [2083] = 1942, - [2084] = 1952, - [2085] = 2085, - [2086] = 1968, - [2087] = 1951, - [2088] = 1973, - [2089] = 1974, - [2090] = 1976, - [2091] = 1977, - [2092] = 1978, - [2093] = 2041, - [2094] = 1950, - [2095] = 2095, - [2096] = 1981, - [2097] = 1982, - [2098] = 1966, - [2099] = 1983, - [2100] = 1949, - [2101] = 1966, - [2102] = 1966, - [2103] = 1966, - [2104] = 1981, - [2105] = 1950, - [2106] = 1976, - [2107] = 1978, - [2108] = 2043, - [2109] = 2109, - [2110] = 1977, - [2111] = 2053, - [2112] = 2085, - [2113] = 2113, - [2114] = 1974, - [2115] = 1978, - [2116] = 1973, - [2117] = 1951, + [2083] = 2083, + [2084] = 1987, + [2085] = 2073, + [2086] = 2086, + [2087] = 1981, + [2088] = 2088, + [2089] = 2089, + [2090] = 1994, + [2091] = 2091, + [2092] = 1997, + [2093] = 2093, + [2094] = 2000, + [2095] = 1978, + [2096] = 2096, + [2097] = 2097, + [2098] = 2098, + [2099] = 2022, + [2100] = 2023, + [2101] = 2101, + [2102] = 2102, + [2103] = 2103, + [2104] = 1994, + [2105] = 2105, + [2106] = 2015, + [2107] = 2018, + [2108] = 2031, + [2109] = 1989, + [2110] = 2019, + [2111] = 2111, + [2112] = 2112, + [2113] = 2055, + [2114] = 2036, + [2115] = 2024, + [2116] = 2054, + [2117] = 2117, [2118] = 2118, - [2119] = 2113, - [2120] = 1993, - [2121] = 1337, - [2122] = 1952, - [2123] = 1989, + [2119] = 1979, + [2120] = 1979, + [2121] = 2068, + [2122] = 2025, + [2123] = 1992, [2124] = 2124, - [2125] = 2125, - [2126] = 2126, - [2127] = 2127, - [2128] = 2128, - [2129] = 2129, - [2130] = 1942, + [2125] = 2034, + [2126] = 2028, + [2127] = 2022, + [2128] = 2023, + [2129] = 2028, + [2130] = 2130, [2131] = 2131, - [2132] = 2082, - [2133] = 2133, - [2134] = 1995, - [2135] = 2135, + [2132] = 1981, + [2133] = 2036, + [2134] = 1989, + [2135] = 2031, [2136] = 2136, - [2137] = 2077, - [2138] = 2138, - [2139] = 2138, + [2137] = 2101, + [2138] = 1992, + [2139] = 2139, [2140] = 2140, - [2141] = 1945, - [2142] = 1943, - [2143] = 778, - [2144] = 1349, - [2145] = 1944, - [2146] = 777, - [2147] = 2075, + [2141] = 2141, + [2142] = 1985, + [2143] = 2054, + [2144] = 2144, + [2145] = 2082, + [2146] = 2025, + [2147] = 2068, [2148] = 2148, - [2149] = 2149, - [2150] = 2150, + [2149] = 2055, + [2150] = 2021, [2151] = 2151, [2152] = 2152, - [2153] = 2153, - [2154] = 2154, - [2155] = 2155, + [2153] = 2022, + [2154] = 2023, + [2155] = 2015, [2156] = 2156, - [2157] = 2157, - [2158] = 2057, - [2159] = 2159, - [2160] = 2043, + [2157] = 2016, + [2158] = 2018, + [2159] = 2031, + [2160] = 2160, [2161] = 2161, - [2162] = 2162, - [2163] = 2163, - [2164] = 2113, + [2162] = 2024, + [2163] = 1984, + [2164] = 2164, [2165] = 2165, - [2166] = 2166, - [2167] = 2167, + [2166] = 1983, + [2167] = 2068, [2168] = 2168, - [2169] = 2058, + [2169] = 2073, [2170] = 2170, - [2171] = 2171, - [2172] = 2113, - [2173] = 1966, - [2174] = 2174, - [2175] = 1985, - [2176] = 2176, - [2177] = 2177, - [2178] = 2178, - [2179] = 2179, - [2180] = 2113, + [2171] = 2022, + [2172] = 2172, + [2173] = 2018, + [2174] = 2022, + [2175] = 2022, + [2176] = 2022, + [2177] = 2015, + [2178] = 1985, + [2179] = 1997, + [2180] = 2082, [2181] = 2181, - [2182] = 2182, - [2183] = 1339, + [2182] = 1987, + [2183] = 2183, [2184] = 2184, - [2185] = 2185, + [2185] = 577, [2186] = 2186, - [2187] = 2043, - [2188] = 2188, - [2189] = 2189, - [2190] = 1978, - [2191] = 2191, - [2192] = 2192, - [2193] = 2193, - [2194] = 1986, - [2195] = 1987, + [2187] = 2187, + [2188] = 2025, + [2189] = 1997, + [2190] = 2068, + [2191] = 1994, + [2192] = 2172, + [2193] = 2083, + [2194] = 2194, + [2195] = 2195, [2196] = 2196, [2197] = 2197, - [2198] = 2198, - [2199] = 2136, - [2200] = 2200, - [2201] = 2201, + [2198] = 2019, + [2199] = 2199, + [2200] = 2024, + [2201] = 1978, [2202] = 2202, - [2203] = 2203, + [2203] = 2000, [2204] = 2204, - [2205] = 2205, + [2205] = 2000, [2206] = 2206, - [2207] = 2066, - [2208] = 2208, + [2207] = 2207, + [2208] = 1985, [2209] = 2209, - [2210] = 2155, - [2211] = 2063, + [2210] = 2210, + [2211] = 2187, [2212] = 2212, [2213] = 2213, [2214] = 2214, - [2215] = 1946, - [2216] = 1988, - [2217] = 1990, - [2218] = 2218, - [2219] = 2219, + [2215] = 2215, + [2216] = 1978, + [2217] = 2217, + [2218] = 2019, + [2219] = 2068, [2220] = 2220, [2221] = 2221, - [2222] = 2222, + [2222] = 1997, [2223] = 2223, - [2224] = 1978, - [2225] = 2225, - [2226] = 2226, + [2224] = 2224, + [2225] = 2186, + [2226] = 1994, [2227] = 2227, - [2228] = 1948, - [2229] = 1383, - [2230] = 2043, - [2231] = 2003, - [2232] = 2232, - [2233] = 2043, - [2234] = 2234, - [2235] = 1947, + [2228] = 2050, + [2229] = 2229, + [2230] = 2025, + [2231] = 2015, + [2232] = 2018, + [2233] = 2181, + [2234] = 2141, + [2235] = 2235, [2236] = 2236, - [2237] = 2056, - [2238] = 1984, - [2239] = 2239, - [2240] = 2070, + [2237] = 2172, + [2238] = 1987, + [2239] = 1992, + [2240] = 2240, + [2241] = 2241, + [2242] = 2242, + [2243] = 2183, + [2244] = 579, + [2245] = 2172, + [2246] = 2246, + [2247] = 2247, + [2248] = 2082, + [2249] = 2019, + [2250] = 2082, + [2251] = 2024, + [2252] = 2252, + [2253] = 2172, + [2254] = 1981, + [2255] = 2025, + [2256] = 2256, + [2257] = 2141, + [2258] = 1992, + [2259] = 2028, + [2260] = 2181, + [2261] = 1987, + [2262] = 2028, + [2263] = 2025, + [2264] = 2264, + [2265] = 2265, + [2266] = 2073, + [2267] = 2267, + [2268] = 2268, + [2269] = 2269, + [2270] = 2270, + [2271] = 2271, + [2272] = 1983, + [2273] = 2273, + [2274] = 2034, + [2275] = 2036, + [2276] = 2276, + [2277] = 2277, + [2278] = 2278, + [2279] = 2184, + [2280] = 2031, + [2281] = 2034, + [2282] = 2036, + [2283] = 2181, + [2284] = 2284, + [2285] = 1989, + [2286] = 1989, + [2287] = 1425, + [2288] = 1984, + [2289] = 1980, + [2290] = 2016, + [2291] = 2021, + [2292] = 2049, + [2293] = 2293, + [2294] = 2055, + [2295] = 2295, + [2296] = 2296, + [2297] = 2025, + [2298] = 2054, + [2299] = 2299, + [2300] = 2105, + [2301] = 2301, + [2302] = 2276, + [2303] = 2181, + [2304] = 2304, + [2305] = 2236, + [2306] = 2181, + [2307] = 2307, + [2308] = 2023, + [2309] = 2309, + [2310] = 2278, + [2311] = 2311, + [2312] = 2022, + [2313] = 2277, }; static inline bool sym_number_literal_character_set_1(int32_t c) { @@ -9370,14 +9478,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\n') ADVANCE(170); END_STATE(); case 45: - if (lookahead == '\n') SKIP(70) - if (lookahead == '"') ADVANCE(311); - if (lookahead == '/') ADVANCE(312); - if (lookahead == '\\') ADVANCE(46); + if (lookahead == '\n') SKIP(75) + if (lookahead == '\'') ADVANCE(302); + if (lookahead == '/') ADVANCE(305); + if (lookahead == '\\') ADVANCE(304); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') ADVANCE(315); - if (lookahead != 0) ADVANCE(316); + lookahead == ' ') ADVANCE(306); + if (lookahead != 0) ADVANCE(303); END_STATE(); case 46: if (lookahead == '\n') ADVANCE(318); @@ -9389,14 +9497,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead != 0) ADVANCE(317); END_STATE(); case 47: - if (lookahead == '\n') SKIP(75) - if (lookahead == '\'') ADVANCE(302); - if (lookahead == '/') ADVANCE(305); - if (lookahead == '\\') ADVANCE(304); + if (lookahead == '\n') SKIP(70) + if (lookahead == '"') ADVANCE(311); + if (lookahead == '/') ADVANCE(312); + if (lookahead == '\\') ADVANCE(46); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') ADVANCE(306); - if (lookahead != 0) ADVANCE(303); + lookahead == ' ') ADVANCE(315); + if (lookahead != 0) ADVANCE(316); END_STATE(); case 48: if (lookahead == '\n') SKIP(76) @@ -11795,1467 +11903,1574 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { if (lookahead == 'f') ADVANCE(85); if (lookahead == 'i') ADVANCE(86); if (lookahead == 'l') ADVANCE(87); - if (lookahead == 'p') ADVANCE(88); - if (lookahead == 'r') ADVANCE(89); - if (lookahead == 's') ADVANCE(90); - if (lookahead == 't') ADVANCE(91); - if (lookahead == 'u') ADVANCE(92); - if (lookahead == 'v') ADVANCE(93); + if (lookahead == 'm') ADVANCE(88); + if (lookahead == 'p') ADVANCE(89); + if (lookahead == 'r') ADVANCE(90); + if (lookahead == 's') ADVANCE(91); + if (lookahead == 't') ADVANCE(92); + if (lookahead == 'u') ADVANCE(93); + if (lookahead == 'v') ADVANCE(94); END_STATE(); case 33: - if (lookahead == 'l') ADVANCE(94); + if (lookahead == 'l') ADVANCE(95); END_STATE(); case 34: - if (lookahead == 'n') ADVANCE(95); + if (lookahead == 'n') ADVANCE(96); END_STATE(); case 35: - if (lookahead == 'i') ADVANCE(96); + if (lookahead == 'i') ADVANCE(97); END_STATE(); case 36: - if (lookahead == 'm') ADVANCE(97); + if (lookahead == 'm') ADVANCE(98); END_STATE(); case 37: - if (lookahead == 't') ADVANCE(98); + if (lookahead == 't') ADVANCE(99); END_STATE(); case 38: - if (lookahead == 'o') ADVANCE(99); + if (lookahead == 'o') ADVANCE(100); END_STATE(); case 39: - if (lookahead == 'e') ADVANCE(100); + if (lookahead == 'e') ADVANCE(101); END_STATE(); case 40: - if (lookahead == 's') ADVANCE(101); + if (lookahead == 's') ADVANCE(102); END_STATE(); case 41: - if (lookahead == 'a') ADVANCE(102); + if (lookahead == 'a') ADVANCE(103); END_STATE(); case 42: - if (lookahead == 'n') ADVANCE(103); + if (lookahead == 'n') ADVANCE(104); END_STATE(); case 43: - if (lookahead == 'f') ADVANCE(104); + if (lookahead == 'f') ADVANCE(105); END_STATE(); case 44: ACCEPT_TOKEN(anon_sym_do); - if (lookahead == 'u') ADVANCE(105); + if (lookahead == 'u') ADVANCE(106); END_STATE(); case 45: - if (lookahead == 's') ADVANCE(106); + if (lookahead == 's') ADVANCE(107); END_STATE(); case 46: - if (lookahead == 'u') ADVANCE(107); + if (lookahead == 'u') ADVANCE(108); END_STATE(); case 47: - if (lookahead == 't') ADVANCE(108); + if (lookahead == 't') ADVANCE(109); END_STATE(); case 48: - if (lookahead == 'l') ADVANCE(109); + if (lookahead == 'l') ADVANCE(110); END_STATE(); case 49: - if (lookahead == 'o') ADVANCE(110); + if (lookahead == 'o') ADVANCE(111); END_STATE(); case 50: - if (lookahead == 'r') ADVANCE(111); + if (lookahead == 'r') ADVANCE(112); END_STATE(); case 51: - if (lookahead == 't') ADVANCE(112); + if (lookahead == 't') ADVANCE(113); END_STATE(); case 52: ACCEPT_TOKEN(anon_sym_if); END_STATE(); case 53: - if (lookahead == 'l') ADVANCE(113); - if (lookahead == 't') ADVANCE(114); + if (lookahead == 'l') ADVANCE(114); + if (lookahead == 't') ADVANCE(115); END_STATE(); case 54: - if (lookahead == 'n') ADVANCE(115); + if (lookahead == 'n') ADVANCE(116); END_STATE(); case 55: - if (lookahead == 'x') ADVANCE(116); + if (lookahead == 'x') ADVANCE(117); END_STATE(); case 56: - if (lookahead == 'r') ADVANCE(117); + if (lookahead == 'r') ADVANCE(118); END_STATE(); case 57: - if (lookahead == 'l') ADVANCE(118); + if (lookahead == 'l') ADVANCE(119); END_STATE(); case 58: - if (lookahead == 'f') ADVANCE(119); + if (lookahead == 'f') ADVANCE(120); END_STATE(); case 59: - if (lookahead == 'r') ADVANCE(120); + if (lookahead == 'r') ADVANCE(121); END_STATE(); case 60: - if (lookahead == 'g') ADVANCE(121); - if (lookahead == 's') ADVANCE(122); - if (lookahead == 't') ADVANCE(123); + if (lookahead == 'g') ADVANCE(122); + if (lookahead == 's') ADVANCE(123); + if (lookahead == 't') ADVANCE(124); END_STATE(); case 61: - if (lookahead == 'o') ADVANCE(124); + if (lookahead == 'o') ADVANCE(125); END_STATE(); case 62: - if (lookahead == 'g') ADVANCE(125); - if (lookahead == 'z') ADVANCE(126); + if (lookahead == 'g') ADVANCE(126); + if (lookahead == 'z') ADVANCE(127); END_STATE(); case 63: - if (lookahead == 'i') ADVANCE(127); + if (lookahead == 'i') ADVANCE(128); END_STATE(); case 64: - if (lookahead == 'a') ADVANCE(128); - if (lookahead == 'r') ADVANCE(129); + if (lookahead == 'a') ADVANCE(129); + if (lookahead == 'r') ADVANCE(130); END_STATE(); case 65: - if (lookahead == 'i') ADVANCE(130); + if (lookahead == 'i') ADVANCE(131); END_STATE(); case 66: - if (lookahead == 'r') ADVANCE(131); + if (lookahead == 'r') ADVANCE(132); END_STATE(); case 67: - if (lookahead == 'u') ADVANCE(132); + if (lookahead == 'u') ADVANCE(133); END_STATE(); case 68: - if (lookahead == 'p') ADVANCE(133); + if (lookahead == 'p') ADVANCE(134); END_STATE(); case 69: - if (lookahead == 'n') ADVANCE(134); + if (lookahead == 'n') ADVANCE(135); END_STATE(); case 70: - if (lookahead == 'i') ADVANCE(135); - if (lookahead == 's') ADVANCE(136); + if (lookahead == 'i') ADVANCE(136); + if (lookahead == 's') ADVANCE(137); END_STATE(); case 71: - if (lookahead == 'i') ADVANCE(137); - if (lookahead == 'l') ADVANCE(138); + if (lookahead == 'i') ADVANCE(138); + if (lookahead == 'l') ADVANCE(139); END_STATE(); case 72: - if (lookahead == 'i') ADVANCE(139); + if (lookahead == 'i') ADVANCE(140); END_STATE(); case 73: - if (lookahead == 'S') ADVANCE(140); + if (lookahead == 'S') ADVANCE(141); END_STATE(); case 74: - if (lookahead == 'L') ADVANCE(141); + if (lookahead == 'L') ADVANCE(142); END_STATE(); case 75: - if (lookahead == 'E') ADVANCE(142); + if (lookahead == 'E') ADVANCE(143); END_STATE(); case 76: - if (lookahead == 'i') ADVANCE(143); + if (lookahead == 'i') ADVANCE(144); END_STATE(); case 77: - if (lookahead == 'o') ADVANCE(144); + if (lookahead == 'o') ADVANCE(145); END_STATE(); case 78: - if (lookahead == 'n') ADVANCE(145); + if (lookahead == 'n') ADVANCE(146); END_STATE(); case 79: - if (lookahead == 'r') ADVANCE(146); + if (lookahead == 'r') ADVANCE(147); END_STATE(); case 80: - if (lookahead == 'l') ADVANCE(147); - if (lookahead == 's') ADVANCE(148); - if (lookahead == 't') ADVANCE(149); + if (lookahead == 'l') ADVANCE(148); + if (lookahead == 's') ADVANCE(149); + if (lookahead == 't') ADVANCE(150); END_STATE(); case 81: - if (lookahead == 'a') ADVANCE(150); + if (lookahead == 'a') ADVANCE(151); END_STATE(); case 82: - if (lookahead == 'd') ADVANCE(151); - if (lookahead == 'l') ADVANCE(152); + if (lookahead == 'd') ADVANCE(152); + if (lookahead == 'l') ADVANCE(153); END_STATE(); case 83: - if (lookahead == 'e') ADVANCE(153); + if (lookahead == 'e') ADVANCE(154); END_STATE(); case 84: - if (lookahead == 'x') ADVANCE(154); + if (lookahead == 'x') ADVANCE(155); END_STATE(); case 85: - if (lookahead == 'a') ADVANCE(155); - if (lookahead == 'i') ADVANCE(156); - if (lookahead == 'o') ADVANCE(157); + if (lookahead == 'a') ADVANCE(156); + if (lookahead == 'i') ADVANCE(157); + if (lookahead == 'o') ADVANCE(158); END_STATE(); case 86: - if (lookahead == 'n') ADVANCE(158); + if (lookahead == 'n') ADVANCE(159); END_STATE(); case 87: - if (lookahead == 'e') ADVANCE(159); + if (lookahead == 'e') ADVANCE(160); END_STATE(); case 88: - if (lookahead == 'r') ADVANCE(160); + if (lookahead == 'u') ADVANCE(161); END_STATE(); case 89: - if (lookahead == 'e') ADVANCE(161); + if (lookahead == 'r') ADVANCE(162); END_STATE(); case 90: - if (lookahead == 'c') ADVANCE(162); - if (lookahead == 'p') ADVANCE(163); - if (lookahead == 't') ADVANCE(164); + if (lookahead == 'e') ADVANCE(163); + if (lookahead == 'o') ADVANCE(164); END_STATE(); case 91: - if (lookahead == 'h') ADVANCE(165); - if (lookahead == 'r') ADVANCE(166); + if (lookahead == 'c') ADVANCE(165); + if (lookahead == 'p') ADVANCE(166); + if (lookahead == 't') ADVANCE(167); END_STATE(); case 92: - if (lookahead == 'n') ADVANCE(167); - if (lookahead == 'p') ADVANCE(168); + if (lookahead == 'h') ADVANCE(168); + if (lookahead == 'r') ADVANCE(169); END_STATE(); case 93: - if (lookahead == 'e') ADVANCE(169); + if (lookahead == 'n') ADVANCE(170); + if (lookahead == 'p') ADVANCE(171); END_STATE(); case 94: - if (lookahead == 'i') ADVANCE(170); + if (lookahead == 'e') ADVANCE(172); END_STATE(); case 95: - if (lookahead == 'a') ADVANCE(171); + if (lookahead == 'i') ADVANCE(173); END_STATE(); case 96: - if (lookahead == 'g') ADVANCE(172); + if (lookahead == 'a') ADVANCE(174); END_STATE(); case 97: - ACCEPT_TOKEN(anon_sym_asm); + if (lookahead == 'g') ADVANCE(175); END_STATE(); case 98: - if (lookahead == 'o') ADVANCE(173); + ACCEPT_TOKEN(anon_sym_asm); END_STATE(); case 99: - if (lookahead == 'l') ADVANCE(174); + if (lookahead == 'o') ADVANCE(176); END_STATE(); case 100: - if (lookahead == 'a') ADVANCE(175); + if (lookahead == 'l') ADVANCE(177); END_STATE(); case 101: - if (lookahead == 'e') ADVANCE(176); + if (lookahead == 'a') ADVANCE(178); END_STATE(); case 102: - if (lookahead == 'r') ADVANCE(177); + if (lookahead == 'e') ADVANCE(179); END_STATE(); case 103: - if (lookahead == 's') ADVANCE(178); - if (lookahead == 't') ADVANCE(179); + if (lookahead == 'r') ADVANCE(180); END_STATE(); case 104: - if (lookahead == 'a') ADVANCE(180); - if (lookahead == 'i') ADVANCE(181); + if (lookahead == 's') ADVANCE(181); + if (lookahead == 't') ADVANCE(182); END_STATE(); case 105: - if (lookahead == 'b') ADVANCE(182); + if (lookahead == 'a') ADVANCE(183); + if (lookahead == 'i') ADVANCE(184); END_STATE(); case 106: - if (lookahead == 'e') ADVANCE(183); + if (lookahead == 'b') ADVANCE(185); END_STATE(); case 107: - if (lookahead == 'm') ADVANCE(184); + if (lookahead == 'e') ADVANCE(186); END_STATE(); case 108: - if (lookahead == 'e') ADVANCE(185); + if (lookahead == 'm') ADVANCE(187); END_STATE(); case 109: - if (lookahead == 's') ADVANCE(186); + if (lookahead == 'e') ADVANCE(188); END_STATE(); case 110: - if (lookahead == 'a') ADVANCE(187); + if (lookahead == 's') ADVANCE(189); END_STATE(); case 111: - ACCEPT_TOKEN(anon_sym_for); + if (lookahead == 'a') ADVANCE(190); END_STATE(); case 112: - if (lookahead == 'o') ADVANCE(188); + ACCEPT_TOKEN(anon_sym_for); END_STATE(); case 113: - if (lookahead == 'i') ADVANCE(189); + if (lookahead == 'o') ADVANCE(191); END_STATE(); case 114: - ACCEPT_TOKEN(sym_primitive_type); - if (lookahead == '1') ADVANCE(190); - if (lookahead == '3') ADVANCE(191); - if (lookahead == '6') ADVANCE(192); - if (lookahead == '8') ADVANCE(193); - if (lookahead == 'p') ADVANCE(194); + if (lookahead == 'i') ADVANCE(192); END_STATE(); case 115: - if (lookahead == 'g') ADVANCE(195); + 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); END_STATE(); case 116: - if (lookahead == '_') ADVANCE(196); + if (lookahead == 'g') ADVANCE(198); END_STATE(); case 117: - if (lookahead == 'e') ADVANCE(197); + if (lookahead == '_') ADVANCE(199); END_STATE(); case 118: - if (lookahead == 'l') ADVANCE(198); + if (lookahead == 'e') ADVANCE(200); END_STATE(); case 119: - if (lookahead == 's') ADVANCE(199); + if (lookahead == 'l') ADVANCE(201); END_STATE(); case 120: - if (lookahead == 'd') ADVANCE(200); + if (lookahead == 's') ADVANCE(202); END_STATE(); case 121: - if (lookahead == 'i') ADVANCE(201); + if (lookahead == 'd') ADVANCE(203); END_STATE(); case 122: - if (lookahead == 't') ADVANCE(202); + if (lookahead == 'i') ADVANCE(204); END_STATE(); case 123: - if (lookahead == 'u') ADVANCE(203); + if (lookahead == 't') ADVANCE(205); END_STATE(); case 124: - if (lookahead == 'r') ADVANCE(204); + if (lookahead == 'u') ADVANCE(206); END_STATE(); case 125: - if (lookahead == 'n') ADVANCE(205); + if (lookahead == 'r') ADVANCE(207); END_STATE(); case 126: - if (lookahead == 'e') ADVANCE(206); + if (lookahead == 'n') ADVANCE(208); END_STATE(); case 127: - if (lookahead == 'z') ADVANCE(207); + if (lookahead == 'e') ADVANCE(209); END_STATE(); case 128: - if (lookahead == 't') ADVANCE(208); + if (lookahead == 'z') ADVANCE(210); END_STATE(); case 129: - if (lookahead == 'u') ADVANCE(209); + if (lookahead == 't') ADVANCE(211); END_STATE(); case 130: - if (lookahead == 't') ADVANCE(210); + if (lookahead == 'u') ADVANCE(212); END_STATE(); case 131: - if (lookahead == 'e') ADVANCE(211); + if (lookahead == 't') ADVANCE(213); END_STATE(); case 132: - if (lookahead == 'e') ADVANCE(142); + if (lookahead == 'e') ADVANCE(214); END_STATE(); case 133: - if (lookahead == 'e') ADVANCE(212); + if (lookahead == 'e') ADVANCE(143); END_STATE(); case 134: - if (lookahead == 't') ADVANCE(213); + if (lookahead == 'e') ADVANCE(215); END_STATE(); case 135: - if (lookahead == 'o') ADVANCE(214); + if (lookahead == 't') ADVANCE(216); END_STATE(); case 136: - if (lookahead == 'i') ADVANCE(215); + if (lookahead == 'o') ADVANCE(217); END_STATE(); case 137: - if (lookahead == 'd') ADVANCE(174); + if (lookahead == 'i') ADVANCE(218); END_STATE(); case 138: - if (lookahead == 'a') ADVANCE(216); + if (lookahead == 'd') ADVANCE(177); END_STATE(); case 139: - if (lookahead == 'l') ADVANCE(217); + if (lookahead == 'a') ADVANCE(219); END_STATE(); case 140: - if (lookahead == 'E') ADVANCE(218); + if (lookahead == 'l') ADVANCE(220); END_STATE(); case 141: - ACCEPT_TOKEN(anon_sym_NULL); + if (lookahead == 'E') ADVANCE(221); END_STATE(); case 142: - ACCEPT_TOKEN(sym_true); + ACCEPT_TOKEN(anon_sym_NULL); END_STATE(); case 143: - if (lookahead == 'g') ADVANCE(219); + ACCEPT_TOKEN(sym_true); END_STATE(); case 144: - if (lookahead == 'm') ADVANCE(220); + if (lookahead == 'g') ADVANCE(222); END_STATE(); case 145: - if (lookahead == 'e') ADVANCE(221); + if (lookahead == 'm') ADVANCE(223); END_STATE(); case 146: - if (lookahead == 'e') ADVANCE(222); + if (lookahead == 'e') ADVANCE(224); END_STATE(); case 147: - if (lookahead == 'i') ADVANCE(223); + if (lookahead == 'e') ADVANCE(225); END_STATE(); case 148: - if (lookahead == 'm') ADVANCE(224); + if (lookahead == 'i') ADVANCE(226); END_STATE(); case 149: - if (lookahead == 't') ADVANCE(225); + if (lookahead == 'm') ADVANCE(227); END_STATE(); case 150: - if (lookahead == 's') ADVANCE(226); + if (lookahead == 't') ADVANCE(228); END_STATE(); case 151: - if (lookahead == 'e') ADVANCE(227); + if (lookahead == 's') ADVANCE(229); END_STATE(); case 152: - if (lookahead == 'r') ADVANCE(228); + if (lookahead == 'e') ADVANCE(230); END_STATE(); case 153: - if (lookahead == 'c') ADVANCE(229); + if (lookahead == 'r') ADVANCE(231); END_STATE(); case 154: - if (lookahead == 'c') ADVANCE(230); - if (lookahead == 't') ADVANCE(231); + if (lookahead == 'c') ADVANCE(232); END_STATE(); case 155: - if (lookahead == 's') ADVANCE(232); + if (lookahead == 'c') ADVANCE(233); + if (lookahead == 't') ADVANCE(234); END_STATE(); case 156: - if (lookahead == 'n') ADVANCE(233); + if (lookahead == 's') ADVANCE(235); END_STATE(); case 157: - if (lookahead == 'r') ADVANCE(234); + if (lookahead == 'n') ADVANCE(236); END_STATE(); case 158: - if (lookahead == 'l') ADVANCE(235); + if (lookahead == 'r') ADVANCE(237); END_STATE(); case 159: - if (lookahead == 'a') ADVANCE(236); + if (lookahead == 'i') ADVANCE(238); + if (lookahead == 'l') ADVANCE(239); END_STATE(); case 160: - if (lookahead == 'i') ADVANCE(237); + if (lookahead == 'a') ADVANCE(240); END_STATE(); case 161: - if (lookahead == 's') ADVANCE(238); + if (lookahead == 's') ADVANCE(241); END_STATE(); case 162: - if (lookahead == 'a') ADVANCE(239); + if (lookahead == 'i') ADVANCE(242); END_STATE(); case 163: - if (lookahead == 't') ADVANCE(240); + if (lookahead == 'a') ADVANCE(243); + if (lookahead == 's') ADVANCE(244); END_STATE(); case 164: - if (lookahead == 'd') ADVANCE(241); + if (lookahead == '_') ADVANCE(245); END_STATE(); case 165: - if (lookahead == 'i') ADVANCE(242); - if (lookahead == 'r') ADVANCE(243); + if (lookahead == 'a') ADVANCE(246); END_STATE(); case 166: - if (lookahead == 'y') ADVANCE(244); + if (lookahead == 't') ADVANCE(247); END_STATE(); case 167: - if (lookahead == 'a') ADVANCE(245); + if (lookahead == 'd') ADVANCE(248); END_STATE(); case 168: - if (lookahead == 't') ADVANCE(246); + if (lookahead == 'i') ADVANCE(249); + if (lookahead == 'r') ADVANCE(250); END_STATE(); case 169: - if (lookahead == 'c') ADVANCE(247); + if (lookahead == 'y') ADVANCE(251); END_STATE(); case 170: - if (lookahead == 'g') ADVANCE(248); + if (lookahead == 'a') ADVANCE(252); END_STATE(); case 171: - if (lookahead == 'l') ADVANCE(249); + if (lookahead == 't') ADVANCE(253); END_STATE(); case 172: - if (lookahead == 'n') ADVANCE(250); + if (lookahead == 'c') ADVANCE(254); END_STATE(); case 173: - ACCEPT_TOKEN(anon_sym_auto); + if (lookahead == 'g') ADVANCE(255); END_STATE(); case 174: - ACCEPT_TOKEN(sym_primitive_type); + if (lookahead == 'l') ADVANCE(256); END_STATE(); case 175: - if (lookahead == 'k') ADVANCE(251); + if (lookahead == 'n') ADVANCE(257); END_STATE(); case 176: - ACCEPT_TOKEN(anon_sym_case); + ACCEPT_TOKEN(anon_sym_auto); END_STATE(); case 177: ACCEPT_TOKEN(sym_primitive_type); - if (lookahead == '1') ADVANCE(252); - if (lookahead == '3') ADVANCE(253); - if (lookahead == '6') ADVANCE(254); - if (lookahead == '8') ADVANCE(255); - if (lookahead == 'p') ADVANCE(256); END_STATE(); case 178: - if (lookahead == 't') ADVANCE(257); + if (lookahead == 'k') ADVANCE(258); END_STATE(); case 179: - if (lookahead == 'i') ADVANCE(258); + ACCEPT_TOKEN(anon_sym_case); END_STATE(); case 180: - if (lookahead == 'u') ADVANCE(259); + 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 == 'n') ADVANCE(260); + if (lookahead == 't') ADVANCE(264); END_STATE(); case 182: - if (lookahead == 'l') ADVANCE(261); + if (lookahead == 'i') ADVANCE(265); END_STATE(); case 183: - ACCEPT_TOKEN(anon_sym_else); + if (lookahead == 'u') ADVANCE(266); END_STATE(); case 184: - ACCEPT_TOKEN(anon_sym_enum); + if (lookahead == 'n') ADVANCE(267); END_STATE(); case 185: - if (lookahead == 'r') ADVANCE(262); + if (lookahead == 'l') ADVANCE(268); END_STATE(); case 186: - if (lookahead == 'e') ADVANCE(218); + ACCEPT_TOKEN(anon_sym_else); END_STATE(); case 187: - if (lookahead == 't') ADVANCE(174); + ACCEPT_TOKEN(anon_sym_enum); END_STATE(); case 188: - ACCEPT_TOKEN(anon_sym_goto); + if (lookahead == 'r') ADVANCE(269); END_STATE(); case 189: - if (lookahead == 'n') ADVANCE(263); + if (lookahead == 'e') ADVANCE(221); END_STATE(); case 190: - if (lookahead == '6') ADVANCE(264); + if (lookahead == 't') ADVANCE(177); END_STATE(); case 191: - if (lookahead == '2') ADVANCE(265); + ACCEPT_TOKEN(anon_sym_goto); END_STATE(); case 192: - if (lookahead == '4') ADVANCE(266); + if (lookahead == 'n') ADVANCE(270); END_STATE(); case 193: - if (lookahead == '_') ADVANCE(267); + if (lookahead == '6') ADVANCE(271); END_STATE(); case 194: - if (lookahead == 't') ADVANCE(268); + if (lookahead == '2') ADVANCE(272); END_STATE(); case 195: - ACCEPT_TOKEN(anon_sym_long); + if (lookahead == '4') ADVANCE(273); END_STATE(); case 196: - if (lookahead == 'a') ADVANCE(269); + if (lookahead == '_') ADVANCE(274); END_STATE(); case 197: - if (lookahead == 't') ADVANCE(270); + if (lookahead == 't') ADVANCE(275); END_STATE(); case 198: - if (lookahead == 'p') ADVANCE(271); + ACCEPT_TOKEN(anon_sym_long); END_STATE(); case 199: - if (lookahead == 'e') ADVANCE(272); + if (lookahead == 'a') ADVANCE(276); END_STATE(); case 200: - if (lookahead == 'i') ADVANCE(273); + if (lookahead == 't') ADVANCE(277); END_STATE(); case 201: - if (lookahead == 's') ADVANCE(274); + if (lookahead == 'p') ADVANCE(278); END_STATE(); case 202: - if (lookahead == 'r') ADVANCE(275); + if (lookahead == 'e') ADVANCE(279); END_STATE(); case 203: - if (lookahead == 'r') ADVANCE(276); + if (lookahead == 'i') ADVANCE(280); END_STATE(); case 204: - if (lookahead == 't') ADVANCE(277); + if (lookahead == 's') ADVANCE(281); END_STATE(); case 205: - if (lookahead == 'e') ADVANCE(278); + if (lookahead == 'r') ADVANCE(282); END_STATE(); case 206: - if (lookahead == '_') ADVANCE(279); - if (lookahead == 'o') ADVANCE(280); + if (lookahead == 'r') ADVANCE(283); END_STATE(); case 207: - if (lookahead == 'e') ADVANCE(281); + if (lookahead == 't') ADVANCE(284); END_STATE(); case 208: - if (lookahead == 'i') ADVANCE(282); + if (lookahead == 'e') ADVANCE(285); END_STATE(); case 209: - if (lookahead == 'c') ADVANCE(283); + if (lookahead == '_') ADVANCE(286); + if (lookahead == 'o') ADVANCE(287); END_STATE(); case 210: - if (lookahead == 'c') ADVANCE(284); + if (lookahead == 'e') ADVANCE(288); END_STATE(); case 211: - if (lookahead == 'a') ADVANCE(285); + if (lookahead == 'i') ADVANCE(289); END_STATE(); case 212: - if (lookahead == 'd') ADVANCE(286); + if (lookahead == 'c') ADVANCE(290); END_STATE(); case 213: - if (lookahead == '1') ADVANCE(287); - if (lookahead == '3') ADVANCE(288); - if (lookahead == '6') ADVANCE(289); - if (lookahead == '8') ADVANCE(290); - if (lookahead == 'p') ADVANCE(291); + if (lookahead == 'c') ADVANCE(291); END_STATE(); case 214: - if (lookahead == 'n') ADVANCE(292); + if (lookahead == 'a') ADVANCE(292); END_STATE(); case 215: - if (lookahead == 'g') ADVANCE(293); + if (lookahead == 'd') ADVANCE(293); END_STATE(); case 216: - if (lookahead == 't') ADVANCE(294); + 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); END_STATE(); case 217: - if (lookahead == 'e') ADVANCE(295); + if (lookahead == 'n') ADVANCE(299); END_STATE(); case 218: - ACCEPT_TOKEN(sym_false); + if (lookahead == 'g') ADVANCE(300); END_STATE(); case 219: - if (lookahead == 'n') ADVANCE(296); + if (lookahead == 't') ADVANCE(301); END_STATE(); case 220: - if (lookahead == 'i') ADVANCE(297); + if (lookahead == 'e') ADVANCE(302); END_STATE(); case 221: - if (lookahead == 'r') ADVANCE(298); + ACCEPT_TOKEN(sym_false); END_STATE(); case 222: - if (lookahead == 't') ADVANCE(299); + if (lookahead == 'n') ADVANCE(303); END_STATE(); case 223: - if (lookahead == 'g') ADVANCE(300); + if (lookahead == 'i') ADVANCE(304); END_STATE(); case 224: - if (lookahead == '_') ADVANCE(301); + if (lookahead == 'r') ADVANCE(305); END_STATE(); case 225: - if (lookahead == 'r') ADVANCE(302); + if (lookahead == 't') ADVANCE(306); END_STATE(); case 226: - if (lookahead == 'e') ADVANCE(303); + if (lookahead == 'g') ADVANCE(307); END_STATE(); case 227: - if (lookahead == 'c') ADVANCE(304); + if (lookahead == '_') ADVANCE(308); END_STATE(); case 228: - if (lookahead == 'c') ADVANCE(305); + if (lookahead == 'r') ADVANCE(309); END_STATE(); case 229: - if (lookahead == 'l') ADVANCE(306); + if (lookahead == 'e') ADVANCE(310); END_STATE(); case 230: - if (lookahead == 'e') ADVANCE(307); + if (lookahead == 'c') ADVANCE(311); END_STATE(); case 231: - if (lookahead == 'e') ADVANCE(308); + if (lookahead == 'c') ADVANCE(312); END_STATE(); case 232: - if (lookahead == 't') ADVANCE(309); + if (lookahead == 'l') ADVANCE(313); END_STATE(); case 233: - if (lookahead == 'a') ADVANCE(310); + if (lookahead == 'e') ADVANCE(314); END_STATE(); case 234: - if (lookahead == 'c') ADVANCE(311); + if (lookahead == 'e') ADVANCE(315); END_STATE(); case 235: - if (lookahead == 'i') ADVANCE(312); + if (lookahead == 't') ADVANCE(316); END_STATE(); case 236: - if (lookahead == 'v') ADVANCE(313); + if (lookahead == 'a') ADVANCE(317); END_STATE(); case 237: - if (lookahead == 'n') ADVANCE(314); + if (lookahead == 'c') ADVANCE(318); END_STATE(); case 238: - if (lookahead == 't') ADVANCE(315); + if (lookahead == 't') ADVANCE(319); END_STATE(); case 239: - if (lookahead == 'n') ADVANCE(316); + if (lookahead == 'i') ADVANCE(320); END_STATE(); case 240: - if (lookahead == 'r') ADVANCE(317); + if (lookahead == 'v') ADVANCE(321); END_STATE(); case 241: - if (lookahead == 'c') ADVANCE(318); + if (lookahead == 't') ADVANCE(322); END_STATE(); case 242: - if (lookahead == 's') ADVANCE(319); + if (lookahead == 'n') ADVANCE(323); END_STATE(); case 243: - if (lookahead == 'e') ADVANCE(320); + if (lookahead == 'd') ADVANCE(324); END_STATE(); case 244: - ACCEPT_TOKEN(anon_sym___try); + if (lookahead == 't') ADVANCE(325); END_STATE(); case 245: - if (lookahead == 'l') ADVANCE(321); + if (lookahead == 'a') ADVANCE(326); END_STATE(); case 246: - if (lookahead == 'r') ADVANCE(322); + if (lookahead == 'n') ADVANCE(327); END_STATE(); case 247: - if (lookahead == 't') ADVANCE(323); + if (lookahead == 'r') ADVANCE(328); END_STATE(); case 248: - if (lookahead == 'n') ADVANCE(324); + if (lookahead == 'c') ADVANCE(329); END_STATE(); case 249: - if (lookahead == 'i') ADVANCE(325); + if (lookahead == 's') ADVANCE(330); END_STATE(); case 250: - if (lookahead == 'o') ADVANCE(326); + if (lookahead == 'e') ADVANCE(331); END_STATE(); case 251: - ACCEPT_TOKEN(anon_sym_break); + ACCEPT_TOKEN(anon_sym___try); END_STATE(); case 252: - if (lookahead == '6') ADVANCE(327); + if (lookahead == 'l') ADVANCE(332); END_STATE(); case 253: - if (lookahead == '2') ADVANCE(328); + if (lookahead == 'r') ADVANCE(333); END_STATE(); case 254: - if (lookahead == '4') ADVANCE(329); + if (lookahead == 't') ADVANCE(334); END_STATE(); case 255: - if (lookahead == '_') ADVANCE(330); + if (lookahead == 'n') ADVANCE(335); END_STATE(); case 256: - if (lookahead == 't') ADVANCE(331); + if (lookahead == 'i') ADVANCE(336); END_STATE(); case 257: - ACCEPT_TOKEN(anon_sym_const); - if (lookahead == 'e') ADVANCE(332); + if (lookahead == 'o') ADVANCE(337); END_STATE(); case 258: - if (lookahead == 'n') ADVANCE(333); + ACCEPT_TOKEN(anon_sym_break); END_STATE(); case 259: - if (lookahead == 'l') ADVANCE(334); + if (lookahead == '6') ADVANCE(338); END_STATE(); case 260: - if (lookahead == 'e') ADVANCE(335); + if (lookahead == '2') ADVANCE(339); END_STATE(); case 261: - if (lookahead == 'e') ADVANCE(174); + if (lookahead == '4') ADVANCE(340); END_STATE(); case 262: - if (lookahead == 'n') ADVANCE(336); + if (lookahead == '_') ADVANCE(341); END_STATE(); case 263: - if (lookahead == 'e') ADVANCE(337); + if (lookahead == 't') ADVANCE(342); END_STATE(); case 264: - if (lookahead == '_') ADVANCE(338); + ACCEPT_TOKEN(anon_sym_const); + if (lookahead == 'e') ADVANCE(343); END_STATE(); case 265: - if (lookahead == '_') ADVANCE(339); + if (lookahead == 'n') ADVANCE(344); END_STATE(); case 266: - if (lookahead == '_') ADVANCE(340); + if (lookahead == 'l') ADVANCE(345); END_STATE(); case 267: - if (lookahead == 't') ADVANCE(174); + if (lookahead == 'e') ADVANCE(346); END_STATE(); case 268: - if (lookahead == 'r') ADVANCE(341); + if (lookahead == 'e') ADVANCE(177); END_STATE(); case 269: - if (lookahead == 'l') ADVANCE(342); + if (lookahead == 'n') ADVANCE(347); END_STATE(); case 270: - if (lookahead == 'u') ADVANCE(343); + if (lookahead == 'e') ADVANCE(348); END_STATE(); case 271: - if (lookahead == 't') ADVANCE(344); + if (lookahead == '_') ADVANCE(349); END_STATE(); case 272: - if (lookahead == 't') ADVANCE(345); + if (lookahead == '_') ADVANCE(350); END_STATE(); case 273: - if (lookahead == 'f') ADVANCE(346); + if (lookahead == '_') ADVANCE(351); END_STATE(); case 274: - if (lookahead == 't') ADVANCE(347); + if (lookahead == 't') ADVANCE(177); END_STATE(); case 275: - if (lookahead == 'i') ADVANCE(348); + if (lookahead == 'r') ADVANCE(352); END_STATE(); case 276: - if (lookahead == 'n') ADVANCE(349); + if (lookahead == 'l') ADVANCE(353); END_STATE(); case 277: - ACCEPT_TOKEN(anon_sym_short); + if (lookahead == 'u') ADVANCE(354); END_STATE(); case 278: - if (lookahead == 'd') ADVANCE(350); + if (lookahead == 't') ADVANCE(355); END_STATE(); case 279: - if (lookahead == 't') ADVANCE(174); + if (lookahead == 't') ADVANCE(356); END_STATE(); case 280: - if (lookahead == 'f') ADVANCE(351); + if (lookahead == 'f') ADVANCE(357); END_STATE(); case 281: - if (lookahead == '_') ADVANCE(352); + if (lookahead == 't') ADVANCE(358); END_STATE(); case 282: - if (lookahead == 'c') ADVANCE(353); + if (lookahead == 'i') ADVANCE(359); END_STATE(); case 283: - if (lookahead == 't') ADVANCE(354); + if (lookahead == 'n') ADVANCE(360); END_STATE(); case 284: - if (lookahead == 'h') ADVANCE(355); + ACCEPT_TOKEN(anon_sym_short); END_STATE(); case 285: - if (lookahead == 'd') ADVANCE(356); + if (lookahead == 'd') ADVANCE(361); END_STATE(); case 286: - if (lookahead == 'e') ADVANCE(357); + if (lookahead == 't') ADVANCE(177); END_STATE(); case 287: - if (lookahead == '6') ADVANCE(358); + if (lookahead == 'f') ADVANCE(362); END_STATE(); case 288: - if (lookahead == '2') ADVANCE(359); + if (lookahead == '_') ADVANCE(363); END_STATE(); case 289: - if (lookahead == '4') ADVANCE(360); + if (lookahead == 'c') ADVANCE(364); END_STATE(); case 290: - if (lookahead == '_') ADVANCE(361); + if (lookahead == 't') ADVANCE(365); END_STATE(); case 291: - if (lookahead == 't') ADVANCE(362); + if (lookahead == 'h') ADVANCE(366); END_STATE(); case 292: - ACCEPT_TOKEN(anon_sym_union); + if (lookahead == 'd') ADVANCE(367); END_STATE(); case 293: - if (lookahead == 'n') ADVANCE(363); + if (lookahead == 'e') ADVANCE(368); END_STATE(); case 294: - if (lookahead == 'i') ADVANCE(364); + if (lookahead == '6') ADVANCE(369); END_STATE(); case 295: - ACCEPT_TOKEN(anon_sym_while); + if (lookahead == '2') ADVANCE(370); END_STATE(); case 296: - if (lookahead == 'o') ADVANCE(365); + if (lookahead == '4') ADVANCE(371); END_STATE(); case 297: - if (lookahead == 'c') ADVANCE(366); + if (lookahead == '_') ADVANCE(372); END_STATE(); case 298: - if (lookahead == 'i') ADVANCE(367); + if (lookahead == 't') ADVANCE(373); END_STATE(); case 299: - if (lookahead == 'u') ADVANCE(368); + ACCEPT_TOKEN(anon_sym_union); END_STATE(); case 300: - if (lookahead == 'n') ADVANCE(369); + if (lookahead == 'n') ADVANCE(374); END_STATE(); case 301: - if (lookahead == '_') ADVANCE(370); + if (lookahead == 'i') ADVANCE(375); END_STATE(); case 302: - if (lookahead == 'i') ADVANCE(371); + ACCEPT_TOKEN(anon_sym_while); END_STATE(); case 303: - if (lookahead == 'd') ADVANCE(372); + if (lookahead == 'o') ADVANCE(376); END_STATE(); case 304: - if (lookahead == 'l') ADVANCE(373); + if (lookahead == 'c') ADVANCE(377); END_STATE(); case 305: - if (lookahead == 'a') ADVANCE(374); + if (lookahead == 'i') ADVANCE(378); END_STATE(); case 306: - if (lookahead == 's') ADVANCE(375); + if (lookahead == 'u') ADVANCE(379); END_STATE(); case 307: - if (lookahead == 'p') ADVANCE(376); + if (lookahead == 'n') ADVANCE(380); END_STATE(); case 308: - if (lookahead == 'n') ADVANCE(377); + if (lookahead == '_') ADVANCE(381); END_STATE(); case 309: - if (lookahead == 'c') ADVANCE(378); + if (lookahead == 'i') ADVANCE(382); END_STATE(); case 310: - if (lookahead == 'l') ADVANCE(379); + if (lookahead == 'd') ADVANCE(383); END_STATE(); case 311: - if (lookahead == 'e') ADVANCE(380); + if (lookahead == 'l') ADVANCE(384); END_STATE(); case 312: - if (lookahead == 'n') ADVANCE(381); + if (lookahead == 'a') ADVANCE(385); END_STATE(); case 313: - if (lookahead == 'e') ADVANCE(382); + if (lookahead == 's') ADVANCE(386); END_STATE(); case 314: - if (lookahead == 't') ADVANCE(383); + if (lookahead == 'p') ADVANCE(387); END_STATE(); case 315: - if (lookahead == 'r') ADVANCE(384); + if (lookahead == 'n') ADVANCE(388); END_STATE(); case 316: - if (lookahead == 'f') ADVANCE(385); + if (lookahead == 'c') ADVANCE(389); END_STATE(); case 317: - ACCEPT_TOKEN(sym_ms_signed_ptr_modifier); + if (lookahead == 'l') ADVANCE(390); END_STATE(); case 318: - if (lookahead == 'a') ADVANCE(386); + if (lookahead == 'e') ADVANCE(391); END_STATE(); case 319: - if (lookahead == 'c') ADVANCE(387); + ACCEPT_TOKEN(anon_sym___init); END_STATE(); case 320: - if (lookahead == 'a') ADVANCE(388); + if (lookahead == 'n') ADVANCE(392); END_STATE(); case 321: - if (lookahead == 'i') ADVANCE(389); + if (lookahead == 'e') ADVANCE(393); END_STATE(); case 322: - ACCEPT_TOKEN(sym_ms_unsigned_ptr_modifier); + if (lookahead == '_') ADVANCE(394); END_STATE(); case 323: - if (lookahead == 'o') ADVANCE(390); + if (lookahead == 't') ADVANCE(395); END_STATE(); case 324: - if (lookahead == 'o') ADVANCE(391); + if (lookahead == '_') ADVANCE(396); END_STATE(); case 325: - if (lookahead == 'g') ADVANCE(392); + if (lookahead == 'r') ADVANCE(397); END_STATE(); case 326: - if (lookahead == 'f') ADVANCE(393); + if (lookahead == 'f') ADVANCE(398); END_STATE(); case 327: - if (lookahead == '_') ADVANCE(394); + if (lookahead == 'f') ADVANCE(399); END_STATE(); case 328: - if (lookahead == '_') ADVANCE(395); + ACCEPT_TOKEN(sym_ms_signed_ptr_modifier); END_STATE(); case 329: - if (lookahead == '_') ADVANCE(396); + if (lookahead == 'a') ADVANCE(400); END_STATE(); case 330: - if (lookahead == 't') ADVANCE(174); + if (lookahead == 'c') ADVANCE(401); END_STATE(); case 331: - if (lookahead == 'r') ADVANCE(397); + if (lookahead == 'a') ADVANCE(402); END_STATE(); case 332: - if (lookahead == 'x') ADVANCE(398); + if (lookahead == 'i') ADVANCE(403); END_STATE(); case 333: - if (lookahead == 'u') ADVANCE(399); + ACCEPT_TOKEN(sym_ms_unsigned_ptr_modifier); END_STATE(); case 334: - if (lookahead == 't') ADVANCE(400); + if (lookahead == 'o') ADVANCE(404); END_STATE(); case 335: - if (lookahead == 'd') ADVANCE(401); + if (lookahead == 'o') ADVANCE(405); END_STATE(); case 336: - ACCEPT_TOKEN(anon_sym_extern); + if (lookahead == 'g') ADVANCE(406); END_STATE(); case 337: - ACCEPT_TOKEN(anon_sym_inline); + if (lookahead == 'f') ADVANCE(407); END_STATE(); case 338: - if (lookahead == 't') ADVANCE(174); + if (lookahead == '_') ADVANCE(408); END_STATE(); case 339: - if (lookahead == 't') ADVANCE(174); + if (lookahead == '_') ADVANCE(409); END_STATE(); case 340: - if (lookahead == 't') ADVANCE(174); + if (lookahead == '_') ADVANCE(410); END_STATE(); case 341: - if (lookahead == '_') ADVANCE(402); + if (lookahead == 't') ADVANCE(177); END_STATE(); case 342: - if (lookahead == 'i') ADVANCE(403); + if (lookahead == 'r') ADVANCE(411); END_STATE(); case 343: - if (lookahead == 'r') ADVANCE(404); + if (lookahead == 'x') ADVANCE(412); END_STATE(); case 344: - if (lookahead == 'r') ADVANCE(405); + if (lookahead == 'u') ADVANCE(413); END_STATE(); case 345: - if (lookahead == 'o') ADVANCE(406); + if (lookahead == 't') ADVANCE(414); END_STATE(); case 346: - if (lookahead == 'f') ADVANCE(407); + if (lookahead == 'd') ADVANCE(415); END_STATE(); case 347: - if (lookahead == 'e') ADVANCE(408); + ACCEPT_TOKEN(anon_sym_extern); END_STATE(); case 348: - if (lookahead == 'c') ADVANCE(409); + ACCEPT_TOKEN(anon_sym_inline); END_STATE(); case 349: - ACCEPT_TOKEN(anon_sym_return); + if (lookahead == 't') ADVANCE(177); END_STATE(); case 350: - ACCEPT_TOKEN(anon_sym_signed); + if (lookahead == 't') ADVANCE(177); END_STATE(); case 351: - ACCEPT_TOKEN(anon_sym_sizeof); + if (lookahead == 't') ADVANCE(177); END_STATE(); case 352: - if (lookahead == 't') ADVANCE(174); + if (lookahead == '_') ADVANCE(416); END_STATE(); case 353: - ACCEPT_TOKEN(anon_sym_static); + if (lookahead == 'i') ADVANCE(417); END_STATE(); case 354: - ACCEPT_TOKEN(anon_sym_struct); + if (lookahead == 'r') ADVANCE(418); END_STATE(); case 355: - ACCEPT_TOKEN(anon_sym_switch); + if (lookahead == 'r') ADVANCE(419); END_STATE(); case 356: - if (lookahead == '_') ADVANCE(410); + if (lookahead == 'o') ADVANCE(420); END_STATE(); case 357: - if (lookahead == 'f') ADVANCE(411); + if (lookahead == 'f') ADVANCE(421); END_STATE(); case 358: - if (lookahead == '_') ADVANCE(412); + if (lookahead == 'e') ADVANCE(422); END_STATE(); case 359: - if (lookahead == '_') ADVANCE(413); + if (lookahead == 'c') ADVANCE(423); END_STATE(); case 360: - if (lookahead == '_') ADVANCE(414); + ACCEPT_TOKEN(anon_sym_return); END_STATE(); case 361: - if (lookahead == 't') ADVANCE(174); + ACCEPT_TOKEN(anon_sym_signed); END_STATE(); case 362: - if (lookahead == 'r') ADVANCE(415); + ACCEPT_TOKEN(anon_sym_sizeof); END_STATE(); case 363: - if (lookahead == 'e') ADVANCE(416); + if (lookahead == 't') ADVANCE(177); END_STATE(); case 364: - if (lookahead == 'l') ADVANCE(417); + ACCEPT_TOKEN(anon_sym_static); END_STATE(); case 365: - if (lookahead == 'f') ADVANCE(418); + ACCEPT_TOKEN(anon_sym_struct); END_STATE(); case 366: - ACCEPT_TOKEN(anon_sym__Atomic); + ACCEPT_TOKEN(anon_sym_switch); END_STATE(); case 367: - if (lookahead == 'c') ADVANCE(419); + if (lookahead == '_') ADVANCE(424); END_STATE(); case 368: - if (lookahead == 'r') ADVANCE(420); + if (lookahead == 'f') ADVANCE(425); END_STATE(); case 369: - if (lookahead == 'o') ADVANCE(421); + if (lookahead == '_') ADVANCE(426); END_STATE(); case 370: - ACCEPT_TOKEN(anon_sym___asm__); + if (lookahead == '_') ADVANCE(427); END_STATE(); case 371: - if (lookahead == 'b') ADVANCE(422); + if (lookahead == '_') ADVANCE(428); END_STATE(); case 372: - ACCEPT_TOKEN(anon_sym___based); + if (lookahead == 't') ADVANCE(177); END_STATE(); case 373: - ACCEPT_TOKEN(anon_sym___cdecl); + if (lookahead == 'r') ADVANCE(429); END_STATE(); case 374: - if (lookahead == 'l') ADVANCE(423); + if (lookahead == 'e') ADVANCE(430); END_STATE(); case 375: - if (lookahead == 'p') ADVANCE(424); + if (lookahead == 'l') ADVANCE(431); END_STATE(); case 376: - if (lookahead == 't') ADVANCE(425); + if (lookahead == 'f') ADVANCE(432); END_STATE(); case 377: - if (lookahead == 's') ADVANCE(426); + ACCEPT_TOKEN(anon_sym__Atomic); END_STATE(); case 378: - if (lookahead == 'a') ADVANCE(427); + if (lookahead == 'c') ADVANCE(433); END_STATE(); case 379: - if (lookahead == 'l') ADVANCE(428); + if (lookahead == 'r') ADVANCE(434); END_STATE(); case 380: - if (lookahead == 'i') ADVANCE(429); + if (lookahead == 'e') ADVANCE(435); + if (lookahead == 'o') ADVANCE(436); END_STATE(); case 381: - if (lookahead == 'e') ADVANCE(430); + ACCEPT_TOKEN(anon_sym___asm__); END_STATE(); case 382: - ACCEPT_TOKEN(anon_sym___leave); + if (lookahead == 'b') ADVANCE(437); END_STATE(); case 383: - if (lookahead == 'f') ADVANCE(431); + ACCEPT_TOKEN(anon_sym___based); END_STATE(); case 384: - if (lookahead == 'i') ADVANCE(432); + ACCEPT_TOKEN(anon_sym___cdecl); END_STATE(); case 385: - ACCEPT_TOKEN(anon_sym___scanf); + if (lookahead == 'l') ADVANCE(438); END_STATE(); case 386: - if (lookahead == 'l') ADVANCE(433); + if (lookahead == 'p') ADVANCE(439); END_STATE(); case 387: - if (lookahead == 'a') ADVANCE(434); + if (lookahead == 't') ADVANCE(440); END_STATE(); case 388: - if (lookahead == 'd') ADVANCE(435); + if (lookahead == 's') ADVANCE(441); END_STATE(); case 389: - if (lookahead == 'g') ADVANCE(436); + if (lookahead == 'a') ADVANCE(442); END_STATE(); case 390: - if (lookahead == 'r') ADVANCE(437); + if (lookahead == 'l') ADVANCE(443); END_STATE(); case 391: - if (lookahead == 'f') ADVANCE(438); + if (lookahead == 'i') ADVANCE(444); END_STATE(); case 392: - if (lookahead == 'n') ADVANCE(439); + if (lookahead == 'e') ADVANCE(445); END_STATE(); case 393: - ACCEPT_TOKEN(anon_sym_alignof); + ACCEPT_TOKEN(anon_sym___leave); END_STATE(); case 394: - if (lookahead == 't') ADVANCE(174); + if (lookahead == 'h') ADVANCE(446); END_STATE(); case 395: - if (lookahead == 't') ADVANCE(174); + if (lookahead == 'f') ADVANCE(447); END_STATE(); case 396: - if (lookahead == 't') ADVANCE(174); + if (lookahead == 'm') ADVANCE(448); END_STATE(); case 397: - if (lookahead == '_') ADVANCE(440); + if (lookahead == 'i') ADVANCE(449); END_STATE(); case 398: - if (lookahead == 'p') ADVANCE(441); + if (lookahead == 't') ADVANCE(450); END_STATE(); case 399: - if (lookahead == 'e') ADVANCE(442); + ACCEPT_TOKEN(anon_sym___scanf); END_STATE(); case 400: - ACCEPT_TOKEN(anon_sym_default); + if (lookahead == 'l') ADVANCE(451); END_STATE(); case 401: - ACCEPT_TOKEN(anon_sym_defined); + if (lookahead == 'a') ADVANCE(452); END_STATE(); case 402: - if (lookahead == 't') ADVANCE(174); + if (lookahead == 'd') ADVANCE(453); END_STATE(); case 403: - if (lookahead == 'g') ADVANCE(443); + if (lookahead == 'g') ADVANCE(454); END_STATE(); case 404: - if (lookahead == 'n') ADVANCE(444); + if (lookahead == 'r') ADVANCE(455); END_STATE(); case 405: - ACCEPT_TOKEN(anon_sym_nullptr); - if (lookahead == '_') ADVANCE(445); + if (lookahead == 'f') ADVANCE(456); END_STATE(); case 406: - if (lookahead == 'f') ADVANCE(446); + if (lookahead == 'n') ADVANCE(457); END_STATE(); case 407: - if (lookahead == '_') ADVANCE(447); + ACCEPT_TOKEN(anon_sym_alignof); END_STATE(); case 408: - if (lookahead == 'r') ADVANCE(448); + if (lookahead == 't') ADVANCE(177); END_STATE(); case 409: - if (lookahead == 't') ADVANCE(449); + if (lookahead == 't') ADVANCE(177); END_STATE(); case 410: - if (lookahead == 'l') ADVANCE(450); + if (lookahead == 't') ADVANCE(177); END_STATE(); case 411: - ACCEPT_TOKEN(anon_sym_typedef); + if (lookahead == '_') ADVANCE(458); END_STATE(); case 412: - if (lookahead == 't') ADVANCE(174); + if (lookahead == 'p') ADVANCE(459); END_STATE(); case 413: - if (lookahead == 't') ADVANCE(174); + if (lookahead == 'e') ADVANCE(460); END_STATE(); case 414: - if (lookahead == 't') ADVANCE(174); + ACCEPT_TOKEN(anon_sym_default); END_STATE(); case 415: - if (lookahead == '_') ADVANCE(451); + ACCEPT_TOKEN(anon_sym_defined); END_STATE(); case 416: - if (lookahead == 'd') ADVANCE(452); + if (lookahead == 't') ADVANCE(177); END_STATE(); case 417: - if (lookahead == 'e') ADVANCE(453); + if (lookahead == 'g') ADVANCE(461); END_STATE(); case 418: - ACCEPT_TOKEN(anon_sym__Alignof); + if (lookahead == 'n') ADVANCE(462); END_STATE(); case 419: - ACCEPT_TOKEN(anon_sym__Generic); + ACCEPT_TOKEN(anon_sym_nullptr); + if (lookahead == '_') ADVANCE(463); END_STATE(); case 420: - if (lookahead == 'n') ADVANCE(454); + if (lookahead == 'f') ADVANCE(464); END_STATE(); case 421: - if (lookahead == 'f') ADVANCE(455); + if (lookahead == '_') ADVANCE(465); END_STATE(); case 422: - if (lookahead == 'u') ADVANCE(456); + if (lookahead == 'r') ADVANCE(466); END_STATE(); case 423: - if (lookahead == 'l') ADVANCE(457); + if (lookahead == 't') ADVANCE(467); END_STATE(); case 424: - if (lookahead == 'e') ADVANCE(458); + if (lookahead == 'l') ADVANCE(468); END_STATE(); case 425: - ACCEPT_TOKEN(anon_sym___except); + ACCEPT_TOKEN(anon_sym_typedef); END_STATE(); case 426: - if (lookahead == 'i') ADVANCE(459); + if (lookahead == 't') ADVANCE(177); END_STATE(); case 427: - if (lookahead == 'l') ADVANCE(460); + if (lookahead == 't') ADVANCE(177); END_STATE(); case 428: - if (lookahead == 'y') ADVANCE(461); + if (lookahead == 't') ADVANCE(177); END_STATE(); case 429: - if (lookahead == 'n') ADVANCE(462); + if (lookahead == '_') ADVANCE(469); END_STATE(); case 430: - ACCEPT_TOKEN(anon_sym___inline); - if (lookahead == '_') ADVANCE(463); + if (lookahead == 'd') ADVANCE(470); END_STATE(); case 431: - ACCEPT_TOKEN(anon_sym___printf); + if (lookahead == 'e') ADVANCE(471); END_STATE(); case 432: - if (lookahead == 'c') ADVANCE(464); + ACCEPT_TOKEN(anon_sym__Alignof); END_STATE(); case 433: - if (lookahead == 'l') ADVANCE(465); + ACCEPT_TOKEN(anon_sym__Generic); END_STATE(); case 434: - if (lookahead == 'l') ADVANCE(466); + if (lookahead == 'n') ADVANCE(472); END_STATE(); case 435: - ACCEPT_TOKEN(anon_sym___thread); + if (lookahead == 'd') ADVANCE(473); END_STATE(); case 436: - if (lookahead == 'n') ADVANCE(467); + if (lookahead == 'f') ADVANCE(474); END_STATE(); case 437: - if (lookahead == 'c') ADVANCE(468); + if (lookahead == 'u') ADVANCE(475); END_STATE(); case 438: - ACCEPT_TOKEN(anon_sym__alignof); + if (lookahead == 'l') ADVANCE(476); END_STATE(); case 439: - if (lookahead == 'e') ADVANCE(469); + if (lookahead == 'e') ADVANCE(477); END_STATE(); case 440: - if (lookahead == 't') ADVANCE(174); + ACCEPT_TOKEN(anon_sym___except); END_STATE(); case 441: - if (lookahead == 'r') ADVANCE(470); + if (lookahead == 'i') ADVANCE(478); END_STATE(); case 442: - ACCEPT_TOKEN(anon_sym_continue); + if (lookahead == 'l') ADVANCE(479); END_STATE(); case 443: - if (lookahead == 'n') ADVANCE(471); + if (lookahead == 'y') ADVANCE(480); END_STATE(); case 444: - ACCEPT_TOKEN(anon_sym_noreturn); + if (lookahead == 'n') ADVANCE(481); END_STATE(); case 445: - if (lookahead == 't') ADVANCE(174); + ACCEPT_TOKEN(anon_sym___inline); + if (lookahead == '_') ADVANCE(482); END_STATE(); case 446: - ACCEPT_TOKEN(anon_sym_offsetof); + if (lookahead == 'o') ADVANCE(483); END_STATE(); case 447: - if (lookahead == 't') ADVANCE(174); + ACCEPT_TOKEN(anon_sym___printf); END_STATE(); case 448: - ACCEPT_TOKEN(anon_sym_register); + if (lookahead == 'o') ADVANCE(484); END_STATE(); case 449: - ACCEPT_TOKEN(anon_sym_restrict); + if (lookahead == 'c') ADVANCE(485); END_STATE(); case 450: - if (lookahead == 'o') ADVANCE(472); + if (lookahead == 'e') ADVANCE(486); END_STATE(); case 451: - if (lookahead == 't') ADVANCE(174); + if (lookahead == 'l') ADVANCE(487); END_STATE(); case 452: - ACCEPT_TOKEN(anon_sym_unsigned); + if (lookahead == 'l') ADVANCE(488); END_STATE(); case 453: - ACCEPT_TOKEN(anon_sym_volatile); + ACCEPT_TOKEN(anon_sym___thread); END_STATE(); case 454: - ACCEPT_TOKEN(anon_sym__Noreturn); + if (lookahead == 'n') ADVANCE(489); END_STATE(); case 455: - ACCEPT_TOKEN(anon_sym___alignof); - if (lookahead == '_') ADVANCE(473); + if (lookahead == 'c') ADVANCE(490); END_STATE(); case 456: - if (lookahead == 't') ADVANCE(474); + ACCEPT_TOKEN(anon_sym__alignof); END_STATE(); case 457: - ACCEPT_TOKEN(anon_sym___clrcall); + if (lookahead == 'e') ADVANCE(491); END_STATE(); case 458: - if (lookahead == 'c') ADVANCE(475); + if (lookahead == 't') ADVANCE(177); END_STATE(); case 459: - if (lookahead == 'o') ADVANCE(476); + if (lookahead == 'r') ADVANCE(492); END_STATE(); case 460: - if (lookahead == 'l') ADVANCE(477); + ACCEPT_TOKEN(anon_sym_continue); END_STATE(); case 461: - ACCEPT_TOKEN(anon_sym___finally); + if (lookahead == 'n') ADVANCE(493); END_STATE(); case 462: - if (lookahead == 'l') ADVANCE(478); + ACCEPT_TOKEN(anon_sym_noreturn); END_STATE(); case 463: - if (lookahead == '_') ADVANCE(479); + if (lookahead == 't') ADVANCE(177); END_STATE(); case 464: - if (lookahead == 't') ADVANCE(480); + ACCEPT_TOKEN(anon_sym_offsetof); END_STATE(); case 465: - ACCEPT_TOKEN(anon_sym___stdcall); + if (lookahead == 't') ADVANCE(177); END_STATE(); case 466: - if (lookahead == 'l') ADVANCE(481); + ACCEPT_TOKEN(anon_sym_register); END_STATE(); case 467: - if (lookahead == 'e') ADVANCE(482); + ACCEPT_TOKEN(anon_sym_restrict); END_STATE(); case 468: - if (lookahead == 'a') ADVANCE(483); + if (lookahead == 'o') ADVANCE(494); END_STATE(); case 469: - if (lookahead == 'd') ADVANCE(484); + if (lookahead == 't') ADVANCE(177); END_STATE(); case 470: - ACCEPT_TOKEN(anon_sym_constexpr); + ACCEPT_TOKEN(anon_sym_unsigned); END_STATE(); case 471: - if (lookahead == '_') ADVANCE(485); + ACCEPT_TOKEN(anon_sym_volatile); END_STATE(); case 472: - if (lookahead == 'c') ADVANCE(486); + ACCEPT_TOKEN(anon_sym__Noreturn); END_STATE(); case 473: - if (lookahead == '_') ADVANCE(487); + ACCEPT_TOKEN(anon_sym___aligned); END_STATE(); case 474: - if (lookahead == 'e') ADVANCE(488); + ACCEPT_TOKEN(anon_sym___alignof); + if (lookahead == '_') ADVANCE(495); END_STATE(); case 475: - ACCEPT_TOKEN(anon_sym___declspec); + if (lookahead == 't') ADVANCE(496); END_STATE(); case 476: - if (lookahead == 'n') ADVANCE(489); + ACCEPT_TOKEN(anon_sym___clrcall); END_STATE(); case 477: - ACCEPT_TOKEN(anon_sym___fastcall); + if (lookahead == 'c') ADVANCE(497); END_STATE(); case 478: - if (lookahead == 'i') ADVANCE(490); + if (lookahead == 'o') ADVANCE(498); END_STATE(); case 479: - ACCEPT_TOKEN(anon_sym___inline__); + if (lookahead == 'l') ADVANCE(499); END_STATE(); case 480: - ACCEPT_TOKEN(sym_ms_restrict_modifier); - if (lookahead == '_') ADVANCE(491); + ACCEPT_TOKEN(anon_sym___finally); END_STATE(); case 481: - ACCEPT_TOKEN(anon_sym___thiscall); + if (lookahead == 'l') ADVANCE(500); END_STATE(); case 482: - if (lookahead == 'd') ADVANCE(492); + if (lookahead == '_') ADVANCE(501); END_STATE(); case 483: - if (lookahead == 'l') ADVANCE(493); + if (lookahead == 'l') ADVANCE(502); END_STATE(); case 484: - ACCEPT_TOKEN(anon_sym__unaligned); + if (lookahead == 's') ADVANCE(503); END_STATE(); case 485: - if (lookahead == 't') ADVANCE(174); + if (lookahead == 't') ADVANCE(504); END_STATE(); case 486: - if (lookahead == 'a') ADVANCE(494); + if (lookahead == 'r') ADVANCE(505); END_STATE(); case 487: - ACCEPT_TOKEN(anon_sym___alignof__); + ACCEPT_TOKEN(anon_sym___stdcall); END_STATE(); case 488: - if (lookahead == '_') ADVANCE(495); + if (lookahead == 'l') ADVANCE(506); END_STATE(); case 489: - if (lookahead == '_') ADVANCE(496); + if (lookahead == 'e') ADVANCE(507); END_STATE(); case 490: - if (lookahead == 'n') ADVANCE(497); + if (lookahead == 'a') ADVANCE(508); END_STATE(); case 491: - if (lookahead == '_') ADVANCE(498); + if (lookahead == 'd') ADVANCE(509); END_STATE(); case 492: - ACCEPT_TOKEN(anon_sym___unaligned); + ACCEPT_TOKEN(anon_sym_constexpr); END_STATE(); case 493: - if (lookahead == 'l') ADVANCE(499); + if (lookahead == '_') ADVANCE(510); END_STATE(); case 494: - if (lookahead == 'l') ADVANCE(500); + if (lookahead == 'c') ADVANCE(511); END_STATE(); case 495: - if (lookahead == '_') ADVANCE(501); + if (lookahead == '_') ADVANCE(512); END_STATE(); case 496: - if (lookahead == '_') ADVANCE(502); + if (lookahead == 'e') ADVANCE(513); END_STATE(); case 497: - if (lookahead == 'e') ADVANCE(503); + ACCEPT_TOKEN(anon_sym___declspec); END_STATE(); case 498: - ACCEPT_TOKEN(anon_sym___restrict__); + if (lookahead == 'n') ADVANCE(514); END_STATE(); case 499: - ACCEPT_TOKEN(anon_sym___vectorcall); + ACCEPT_TOKEN(anon_sym___fastcall); END_STATE(); case 500: - ACCEPT_TOKEN(anon_sym_thread_local); + if (lookahead == 'i') ADVANCE(515); END_STATE(); case 501: - ACCEPT_TOKEN(anon_sym___attribute__); + ACCEPT_TOKEN(anon_sym___inline__); END_STATE(); case 502: - ACCEPT_TOKEN(anon_sym___extension__); + if (lookahead == 'd') ADVANCE(516); END_STATE(); case 503: + if (lookahead == 't') ADVANCE(517); + END_STATE(); + case 504: + ACCEPT_TOKEN(sym_ms_restrict_modifier); + if (lookahead == '_') ADVANCE(518); + END_STATE(); + case 505: + if (lookahead == '_') ADVANCE(519); + END_STATE(); + case 506: + ACCEPT_TOKEN(anon_sym___thiscall); + END_STATE(); + case 507: + if (lookahead == 'd') ADVANCE(520); + END_STATE(); + case 508: + if (lookahead == 'l') ADVANCE(521); + END_STATE(); + case 509: + ACCEPT_TOKEN(anon_sym__unaligned); + END_STATE(); + case 510: + if (lookahead == 't') ADVANCE(177); + END_STATE(); + case 511: + if (lookahead == 'a') ADVANCE(522); + END_STATE(); + case 512: + ACCEPT_TOKEN(anon_sym___alignof__); + END_STATE(); + case 513: + if (lookahead == '_') ADVANCE(523); + END_STATE(); + case 514: + if (lookahead == '_') ADVANCE(524); + END_STATE(); + case 515: + if (lookahead == 'n') ADVANCE(525); + END_STATE(); + case 516: + ACCEPT_TOKEN(anon_sym___must_hold); + END_STATE(); + case 517: + if (lookahead == 'l') ADVANCE(526); + END_STATE(); + case 518: + if (lookahead == '_') ADVANCE(527); + END_STATE(); + case 519: + if (lookahead == 'i') ADVANCE(528); + END_STATE(); + case 520: + ACCEPT_TOKEN(anon_sym___unaligned); + END_STATE(); + case 521: + if (lookahead == 'l') ADVANCE(529); + END_STATE(); + case 522: + if (lookahead == 'l') ADVANCE(530); + END_STATE(); + case 523: + if (lookahead == '_') ADVANCE(531); + END_STATE(); + case 524: + if (lookahead == '_') ADVANCE(532); + END_STATE(); + case 525: + if (lookahead == 'e') ADVANCE(533); + END_STATE(); + case 526: + if (lookahead == 'y') ADVANCE(534); + END_STATE(); + case 527: + ACCEPT_TOKEN(anon_sym___restrict__); + END_STATE(); + case 528: + if (lookahead == 'n') ADVANCE(535); + END_STATE(); + case 529: + ACCEPT_TOKEN(anon_sym___vectorcall); + END_STATE(); + case 530: + ACCEPT_TOKEN(anon_sym_thread_local); + END_STATE(); + case 531: + ACCEPT_TOKEN(anon_sym___attribute__); + END_STATE(); + case 532: + ACCEPT_TOKEN(anon_sym___extension__); + END_STATE(); + case 533: ACCEPT_TOKEN(anon_sym___forceinline); END_STATE(); + case 534: + ACCEPT_TOKEN(anon_sym___read_mostly); + END_STATE(); + case 535: + if (lookahead == 'i') ADVANCE(536); + END_STATE(); + case 536: + if (lookahead == 't') ADVANCE(537); + END_STATE(); + case 537: + ACCEPT_TOKEN(anon_sym___ro_after_init); + END_STATE(); default: return false; } @@ -13277,7 +13492,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [12] = {.lex_state = 61}, [13] = {.lex_state = 61}, [14] = {.lex_state = 61}, - [15] = {.lex_state = 58}, + [15] = {.lex_state = 61}, [16] = {.lex_state = 61}, [17] = {.lex_state = 61}, [18] = {.lex_state = 61}, @@ -13285,13 +13500,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [20] = {.lex_state = 61}, [21] = {.lex_state = 61}, [22] = {.lex_state = 61}, - [23] = {.lex_state = 61}, + [23] = {.lex_state = 58}, [24] = {.lex_state = 61}, [25] = {.lex_state = 61}, [26] = {.lex_state = 61}, [27] = {.lex_state = 61}, - [28] = {.lex_state = 142}, - [29] = {.lex_state = 142}, + [28] = {.lex_state = 60}, + [29] = {.lex_state = 60}, [30] = {.lex_state = 142}, [31] = {.lex_state = 142}, [32] = {.lex_state = 142}, @@ -13305,9 +13520,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [40] = {.lex_state = 142}, [41] = {.lex_state = 142}, [42] = {.lex_state = 142}, - [43] = {.lex_state = 60}, + [43] = {.lex_state = 142}, [44] = {.lex_state = 142}, - [45] = {.lex_state = 60}, + [45] = {.lex_state = 142}, [46] = {.lex_state = 142}, [47] = {.lex_state = 60}, [48] = {.lex_state = 142}, @@ -13326,20 +13541,20 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [61] = {.lex_state = 61}, [62] = {.lex_state = 61}, [63] = {.lex_state = 61}, - [64] = {.lex_state = 142}, - [65] = {.lex_state = 142}, + [64] = {.lex_state = 60}, + [65] = {.lex_state = 60}, [66] = {.lex_state = 142}, [67] = {.lex_state = 142}, [68] = {.lex_state = 142}, [69] = {.lex_state = 142}, - [70] = {.lex_state = 142}, + [70] = {.lex_state = 60}, [71] = {.lex_state = 142}, - [72] = {.lex_state = 60}, + [72] = {.lex_state = 142}, [73] = {.lex_state = 60}, [74] = {.lex_state = 60}, - [75] = {.lex_state = 60}, + [75] = {.lex_state = 142}, [76] = {.lex_state = 142}, - [77] = {.lex_state = 60}, + [77] = {.lex_state = 142}, [78] = {.lex_state = 142}, [79] = {.lex_state = 142}, [80] = {.lex_state = 142}, @@ -13353,7 +13568,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [88] = {.lex_state = 142}, [89] = {.lex_state = 142}, [90] = {.lex_state = 58}, - [91] = {.lex_state = 142}, + [91] = {.lex_state = 58}, [92] = {.lex_state = 58}, [93] = {.lex_state = 58}, [94] = {.lex_state = 58}, @@ -13361,7 +13576,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [96] = {.lex_state = 58}, [97] = {.lex_state = 58}, [98] = {.lex_state = 58}, - [99] = {.lex_state = 58}, + [99] = {.lex_state = 142}, [100] = {.lex_state = 58}, [101] = {.lex_state = 58}, [102] = {.lex_state = 58}, @@ -13376,7 +13591,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [111] = {.lex_state = 58}, [112] = {.lex_state = 58}, [113] = {.lex_state = 58}, - [114] = {.lex_state = 142}, + [114] = {.lex_state = 58}, [115] = {.lex_state = 58}, [116] = {.lex_state = 58}, [117] = {.lex_state = 58}, @@ -13390,7 +13605,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [125] = {.lex_state = 58}, [126] = {.lex_state = 58}, [127] = {.lex_state = 58}, - [128] = {.lex_state = 58}, + [128] = {.lex_state = 142}, [129] = {.lex_state = 58}, [130] = {.lex_state = 58}, [131] = {.lex_state = 58}, @@ -13418,11 +13633,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [153] = {.lex_state = 58}, [154] = {.lex_state = 58}, [155] = {.lex_state = 58}, - [156] = {.lex_state = 61}, + [156] = {.lex_state = 58}, [157] = {.lex_state = 58}, [158] = {.lex_state = 58}, [159] = {.lex_state = 58}, - [160] = {.lex_state = 58}, + [160] = {.lex_state = 61}, [161] = {.lex_state = 61}, [162] = {.lex_state = 61}, [163] = {.lex_state = 61}, @@ -13470,10 +13685,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [205] = {.lex_state = 61}, [206] = {.lex_state = 61}, [207] = {.lex_state = 61}, - [208] = {.lex_state = 60}, + [208] = {.lex_state = 61}, [209] = {.lex_state = 61}, [210] = {.lex_state = 61}, - [211] = {.lex_state = 61}, + [211] = {.lex_state = 142}, [212] = {.lex_state = 61}, [213] = {.lex_state = 61}, [214] = {.lex_state = 61}, @@ -13485,54 +13700,54 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [220] = {.lex_state = 61}, [221] = {.lex_state = 61}, [222] = {.lex_state = 61}, - [223] = {.lex_state = 61}, + [223] = {.lex_state = 60}, [224] = {.lex_state = 61}, [225] = {.lex_state = 61}, - [226] = {.lex_state = 142}, + [226] = {.lex_state = 61}, [227] = {.lex_state = 61}, [228] = {.lex_state = 61}, - [229] = {.lex_state = 142}, - [230] = {.lex_state = 61}, - [231] = {.lex_state = 142}, - [232] = {.lex_state = 142}, + [229] = {.lex_state = 61}, + [230] = {.lex_state = 142}, + [231] = {.lex_state = 60}, + [232] = {.lex_state = 60}, [233] = {.lex_state = 142}, - [234] = {.lex_state = 60}, - [235] = {.lex_state = 60}, - [236] = {.lex_state = 60}, - [237] = {.lex_state = 60}, - [238] = {.lex_state = 60}, + [234] = {.lex_state = 142}, + [235] = {.lex_state = 142}, + [236] = {.lex_state = 142}, + [237] = {.lex_state = 142}, + [238] = {.lex_state = 142}, [239] = {.lex_state = 60}, - [240] = {.lex_state = 60}, + [240] = {.lex_state = 142}, [241] = {.lex_state = 142}, - [242] = {.lex_state = 60}, + [242] = {.lex_state = 142}, [243] = {.lex_state = 142}, [244] = {.lex_state = 142}, [245] = {.lex_state = 142}, [246] = {.lex_state = 142}, [247] = {.lex_state = 142}, [248] = {.lex_state = 142}, - [249] = {.lex_state = 60}, - [250] = {.lex_state = 60}, - [251] = {.lex_state = 142}, + [249] = {.lex_state = 142}, + [250] = {.lex_state = 142}, + [251] = {.lex_state = 60}, [252] = {.lex_state = 142}, [253] = {.lex_state = 60}, - [254] = {.lex_state = 60}, - [255] = {.lex_state = 60}, - [256] = {.lex_state = 60}, - [257] = {.lex_state = 60}, - [258] = {.lex_state = 60}, + [254] = {.lex_state = 142}, + [255] = {.lex_state = 142}, + [256] = {.lex_state = 142}, + [257] = {.lex_state = 142}, + [258] = {.lex_state = 142}, [259] = {.lex_state = 142}, [260] = {.lex_state = 142}, - [261] = {.lex_state = 142}, - [262] = {.lex_state = 142}, - [263] = {.lex_state = 142}, + [261] = {.lex_state = 60}, + [262] = {.lex_state = 60}, + [263] = {.lex_state = 60}, [264] = {.lex_state = 60}, - [265] = {.lex_state = 142}, - [266] = {.lex_state = 142}, + [265] = {.lex_state = 60}, + [266] = {.lex_state = 60}, [267] = {.lex_state = 60}, [268] = {.lex_state = 142}, - [269] = {.lex_state = 60}, - [270] = {.lex_state = 142}, + [269] = {.lex_state = 142}, + [270] = {.lex_state = 60}, [271] = {.lex_state = 142}, [272] = {.lex_state = 142}, [273] = {.lex_state = 142}, @@ -13540,36 +13755,36 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [275] = {.lex_state = 142}, [276] = {.lex_state = 60}, [277] = {.lex_state = 60}, - [278] = {.lex_state = 142}, - [279] = {.lex_state = 60}, + [278] = {.lex_state = 60}, + [279] = {.lex_state = 142}, [280] = {.lex_state = 142}, [281] = {.lex_state = 60}, - [282] = {.lex_state = 60}, - [283] = {.lex_state = 60}, + [282] = {.lex_state = 142}, + [283] = {.lex_state = 142}, [284] = {.lex_state = 142}, [285] = {.lex_state = 60}, [286] = {.lex_state = 60}, - [287] = {.lex_state = 60}, - [288] = {.lex_state = 142}, + [287] = {.lex_state = 142}, + [288] = {.lex_state = 60}, [289] = {.lex_state = 60}, [290] = {.lex_state = 142}, - [291] = {.lex_state = 60}, + [291] = {.lex_state = 142}, [292] = {.lex_state = 60}, [293] = {.lex_state = 60}, - [294] = {.lex_state = 60}, - [295] = {.lex_state = 142}, + [294] = {.lex_state = 142}, + [295] = {.lex_state = 60}, [296] = {.lex_state = 142}, - [297] = {.lex_state = 142}, + [297] = {.lex_state = 60}, [298] = {.lex_state = 142}, [299] = {.lex_state = 142}, [300] = {.lex_state = 142}, - [301] = {.lex_state = 142}, + [301] = {.lex_state = 60}, [302] = {.lex_state = 142}, [303] = {.lex_state = 142}, [304] = {.lex_state = 142}, [305] = {.lex_state = 142}, - [306] = {.lex_state = 60}, - [307] = {.lex_state = 142}, + [306] = {.lex_state = 142}, + [307] = {.lex_state = 60}, [308] = {.lex_state = 142}, [309] = {.lex_state = 142}, [310] = {.lex_state = 142}, @@ -13588,89 +13803,89 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [323] = {.lex_state = 142}, [324] = {.lex_state = 142}, [325] = {.lex_state = 142}, - [326] = {.lex_state = 142}, + [326] = {.lex_state = 56}, [327] = {.lex_state = 142}, - [328] = {.lex_state = 142}, + [328] = {.lex_state = 60}, [329] = {.lex_state = 60}, [330] = {.lex_state = 60}, - [331] = {.lex_state = 142}, - [332] = {.lex_state = 56}, - [333] = {.lex_state = 60}, + [331] = {.lex_state = 60}, + [332] = {.lex_state = 60}, + [333] = {.lex_state = 142}, [334] = {.lex_state = 60}, [335] = {.lex_state = 142}, - [336] = {.lex_state = 142}, + [336] = {.lex_state = 60}, [337] = {.lex_state = 142}, [338] = {.lex_state = 142}, - [339] = {.lex_state = 142}, + [339] = {.lex_state = 60}, [340] = {.lex_state = 142}, - [341] = {.lex_state = 142}, + [341] = {.lex_state = 60}, [342] = {.lex_state = 142}, [343] = {.lex_state = 142}, - [344] = {.lex_state = 60}, + [344] = {.lex_state = 142}, [345] = {.lex_state = 142}, - [346] = {.lex_state = 142}, + [346] = {.lex_state = 60}, [347] = {.lex_state = 142}, - [348] = {.lex_state = 142}, + [348] = {.lex_state = 60}, [349] = {.lex_state = 142}, - [350] = {.lex_state = 142}, + [350] = {.lex_state = 60}, [351] = {.lex_state = 60}, [352] = {.lex_state = 60}, [353] = {.lex_state = 142}, [354] = {.lex_state = 142}, - [355] = {.lex_state = 60}, - [356] = {.lex_state = 142}, - [357] = {.lex_state = 142}, + [355] = {.lex_state = 142}, + [356] = {.lex_state = 60}, + [357] = {.lex_state = 60}, [358] = {.lex_state = 142}, - [359] = {.lex_state = 142}, - [360] = {.lex_state = 142}, + [359] = {.lex_state = 60}, + [360] = {.lex_state = 60}, [361] = {.lex_state = 142}, - [362] = {.lex_state = 142}, - [363] = {.lex_state = 142}, - [364] = {.lex_state = 142}, - [365] = {.lex_state = 142}, + [362] = {.lex_state = 60}, + [363] = {.lex_state = 60}, + [364] = {.lex_state = 60}, + [365] = {.lex_state = 60}, [366] = {.lex_state = 142}, [367] = {.lex_state = 142}, - [368] = {.lex_state = 142}, + [368] = {.lex_state = 60}, [369] = {.lex_state = 60}, [370] = {.lex_state = 142}, - [371] = {.lex_state = 142}, + [371] = {.lex_state = 60}, [372] = {.lex_state = 142}, [373] = {.lex_state = 142}, - [374] = {.lex_state = 142}, + [374] = {.lex_state = 60}, [375] = {.lex_state = 142}, [376] = {.lex_state = 142}, - [377] = {.lex_state = 60}, + [377] = {.lex_state = 142}, [378] = {.lex_state = 142}, [379] = {.lex_state = 60}, [380] = {.lex_state = 142}, - [381] = {.lex_state = 60}, - [382] = {.lex_state = 142}, + [381] = {.lex_state = 142}, + [382] = {.lex_state = 60}, [383] = {.lex_state = 60}, - [384] = {.lex_state = 60}, - [385] = {.lex_state = 60}, + [384] = {.lex_state = 142}, + [385] = {.lex_state = 142}, [386] = {.lex_state = 60}, [387] = {.lex_state = 60}, [388] = {.lex_state = 60}, [389] = {.lex_state = 60}, [390] = {.lex_state = 60}, - [391] = {.lex_state = 60}, - [392] = {.lex_state = 142}, - [393] = {.lex_state = 60}, - [394] = {.lex_state = 60}, + [391] = {.lex_state = 142}, + [392] = {.lex_state = 60}, + [393] = {.lex_state = 142}, + [394] = {.lex_state = 142}, [395] = {.lex_state = 60}, - [396] = {.lex_state = 60}, + [396] = {.lex_state = 142}, [397] = {.lex_state = 60}, [398] = {.lex_state = 60}, - [399] = {.lex_state = 60}, - [400] = {.lex_state = 60}, + [399] = {.lex_state = 142}, + [400] = {.lex_state = 142}, [401] = {.lex_state = 60}, - [402] = {.lex_state = 60}, + [402] = {.lex_state = 142}, [403] = {.lex_state = 60}, - [404] = {.lex_state = 60}, + [404] = {.lex_state = 142}, [405] = {.lex_state = 142}, - [406] = {.lex_state = 56}, + [406] = {.lex_state = 142}, [407] = {.lex_state = 142}, - [408] = {.lex_state = 57}, + [408] = {.lex_state = 142}, [409] = {.lex_state = 142}, [410] = {.lex_state = 142}, [411] = {.lex_state = 142}, @@ -13694,7 +13909,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [429] = {.lex_state = 142}, [430] = {.lex_state = 142}, [431] = {.lex_state = 142}, - [432] = {.lex_state = 142}, + [432] = {.lex_state = 56}, [433] = {.lex_state = 142}, [434] = {.lex_state = 142}, [435] = {.lex_state = 142}, @@ -13717,7 +13932,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [452] = {.lex_state = 142}, [453] = {.lex_state = 142}, [454] = {.lex_state = 142}, - [455] = {.lex_state = 142}, + [455] = {.lex_state = 57}, [456] = {.lex_state = 142}, [457] = {.lex_state = 142}, [458] = {.lex_state = 142}, @@ -13746,10 +13961,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [481] = {.lex_state = 56}, [482] = {.lex_state = 142}, [483] = {.lex_state = 142}, - [484] = {.lex_state = 142}, + [484] = {.lex_state = 56}, [485] = {.lex_state = 142}, [486] = {.lex_state = 142}, - [487] = {.lex_state = 56}, + [487] = {.lex_state = 142}, [488] = {.lex_state = 142}, [489] = {.lex_state = 142}, [490] = {.lex_state = 142}, @@ -13763,14 +13978,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [498] = {.lex_state = 142}, [499] = {.lex_state = 142}, [500] = {.lex_state = 142}, - [501] = {.lex_state = 56}, + [501] = {.lex_state = 142}, [502] = {.lex_state = 142}, - [503] = {.lex_state = 57}, - [504] = {.lex_state = 142}, - [505] = {.lex_state = 56}, + [503] = {.lex_state = 56}, + [504] = {.lex_state = 57}, + [505] = {.lex_state = 63}, [506] = {.lex_state = 63}, [507] = {.lex_state = 63}, - [508] = {.lex_state = 63}, + [508] = {.lex_state = 56}, [509] = {.lex_state = 63}, [510] = {.lex_state = 63}, [511] = {.lex_state = 63}, @@ -13780,109 +13995,109 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [515] = {.lex_state = 63}, [516] = {.lex_state = 63}, [517] = {.lex_state = 63}, - [518] = {.lex_state = 142}, - [519] = {.lex_state = 142}, - [520] = {.lex_state = 142}, - [521] = {.lex_state = 142}, - [522] = {.lex_state = 142}, - [523] = {.lex_state = 142}, - [524] = {.lex_state = 142}, - [525] = {.lex_state = 142}, - [526] = {.lex_state = 142}, - [527] = {.lex_state = 142}, - [528] = {.lex_state = 67}, - [529] = {.lex_state = 67}, - [530] = {.lex_state = 67}, - [531] = {.lex_state = 67}, + [518] = {.lex_state = 67}, + [519] = {.lex_state = 67}, + [520] = {.lex_state = 67}, + [521] = {.lex_state = 67}, + [522] = {.lex_state = 67}, + [523] = {.lex_state = 67}, + [524] = {.lex_state = 67}, + [525] = {.lex_state = 67}, + [526] = {.lex_state = 67}, + [527] = {.lex_state = 68}, + [528] = {.lex_state = 68}, + [529] = {.lex_state = 68}, + [530] = {.lex_state = 68}, + [531] = {.lex_state = 68}, [532] = {.lex_state = 142}, - [533] = {.lex_state = 67}, + [533] = {.lex_state = 68}, [534] = {.lex_state = 67}, - [535] = {.lex_state = 67}, - [536] = {.lex_state = 67}, - [537] = {.lex_state = 67}, + [535] = {.lex_state = 142}, + [536] = {.lex_state = 68}, + [537] = {.lex_state = 68}, [538] = {.lex_state = 142}, [539] = {.lex_state = 142}, - [540] = {.lex_state = 142}, + [540] = {.lex_state = 68}, [541] = {.lex_state = 142}, - [542] = {.lex_state = 142}, + [542] = {.lex_state = 68}, [543] = {.lex_state = 142}, - [544] = {.lex_state = 68}, - [545] = {.lex_state = 68}, + [544] = {.lex_state = 142}, + [545] = {.lex_state = 142}, [546] = {.lex_state = 68}, - [547] = {.lex_state = 67}, - [548] = {.lex_state = 68}, - [549] = {.lex_state = 68}, - [550] = {.lex_state = 68}, - [551] = {.lex_state = 68}, - [552] = {.lex_state = 68}, + [547] = {.lex_state = 68}, + [548] = {.lex_state = 142}, + [549] = {.lex_state = 142}, + [550] = {.lex_state = 142}, + [551] = {.lex_state = 142}, + [552] = {.lex_state = 142}, [553] = {.lex_state = 68}, - [554] = {.lex_state = 68}, - [555] = {.lex_state = 68}, - [556] = {.lex_state = 68}, - [557] = {.lex_state = 68}, + [554] = {.lex_state = 142}, + [555] = {.lex_state = 142}, + [556] = {.lex_state = 142}, + [557] = {.lex_state = 142}, [558] = {.lex_state = 73}, - [559] = {.lex_state = 73}, - [560] = {.lex_state = 142}, - [561] = {.lex_state = 73}, + [559] = {.lex_state = 74}, + [560] = {.lex_state = 73}, + [561] = {.lex_state = 74}, [562] = {.lex_state = 74}, - [563] = {.lex_state = 142}, - [564] = {.lex_state = 74}, - [565] = {.lex_state = 74}, - [566] = {.lex_state = 67}, - [567] = {.lex_state = 142}, - [568] = {.lex_state = 142}, - [569] = {.lex_state = 142}, - [570] = {.lex_state = 142}, - [571] = {.lex_state = 142}, - [572] = {.lex_state = 142}, - [573] = {.lex_state = 142}, + [563] = {.lex_state = 73}, + [564] = {.lex_state = 67}, + [565] = {.lex_state = 63}, + [566] = {.lex_state = 63}, + [567] = {.lex_state = 63}, + [568] = {.lex_state = 67}, + [569] = {.lex_state = 67}, + [570] = {.lex_state = 67}, + [571] = {.lex_state = 67}, + [572] = {.lex_state = 67}, + [573] = {.lex_state = 63}, [574] = {.lex_state = 142}, - [575] = {.lex_state = 142}, + [575] = {.lex_state = 63}, [576] = {.lex_state = 142}, - [577] = {.lex_state = 142}, + [577] = {.lex_state = 63}, [578] = {.lex_state = 142}, - [579] = {.lex_state = 142}, + [579] = {.lex_state = 63}, [580] = {.lex_state = 142}, [581] = {.lex_state = 142}, [582] = {.lex_state = 142}, - [583] = {.lex_state = 142}, - [584] = {.lex_state = 142}, + [583] = {.lex_state = 65}, + [584] = {.lex_state = 65}, [585] = {.lex_state = 142}, [586] = {.lex_state = 142}, [587] = {.lex_state = 142}, [588] = {.lex_state = 142}, [589] = {.lex_state = 142}, - [590] = {.lex_state = 142}, + [590] = {.lex_state = 65}, [591] = {.lex_state = 142}, [592] = {.lex_state = 142}, - [593] = {.lex_state = 63}, - [594] = {.lex_state = 142}, - [595] = {.lex_state = 142}, + [593] = {.lex_state = 65}, + [594] = {.lex_state = 65}, + [595] = {.lex_state = 65}, [596] = {.lex_state = 142}, [597] = {.lex_state = 142}, - [598] = {.lex_state = 67}, + [598] = {.lex_state = 142}, [599] = {.lex_state = 142}, - [600] = {.lex_state = 142}, - [601] = {.lex_state = 67}, + [600] = {.lex_state = 65}, + [601] = {.lex_state = 142}, [602] = {.lex_state = 142}, [603] = {.lex_state = 142}, [604] = {.lex_state = 142}, - [605] = {.lex_state = 142}, - [606] = {.lex_state = 142}, + [605] = {.lex_state = 65}, + [606] = {.lex_state = 65}, [607] = {.lex_state = 142}, [608] = {.lex_state = 142}, [609] = {.lex_state = 142}, - [610] = {.lex_state = 63}, - [611] = {.lex_state = 67}, - [612] = {.lex_state = 67}, + [610] = {.lex_state = 142}, + [611] = {.lex_state = 142}, + [612] = {.lex_state = 142}, [613] = {.lex_state = 142}, - [614] = {.lex_state = 142}, + [614] = {.lex_state = 65}, [615] = {.lex_state = 142}, - [616] = {.lex_state = 63}, + [616] = {.lex_state = 142}, [617] = {.lex_state = 142}, [618] = {.lex_state = 142}, [619] = {.lex_state = 142}, - [620] = {.lex_state = 67}, + [620] = {.lex_state = 142}, [621] = {.lex_state = 142}, [622] = {.lex_state = 142}, [623] = {.lex_state = 142}, @@ -13916,7 +14131,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [651] = {.lex_state = 142}, [652] = {.lex_state = 142}, [653] = {.lex_state = 142}, - [654] = {.lex_state = 63}, + [654] = {.lex_state = 142}, [655] = {.lex_state = 142}, [656] = {.lex_state = 142}, [657] = {.lex_state = 142}, @@ -13937,10 +14152,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [672] = {.lex_state = 142}, [673] = {.lex_state = 142}, [674] = {.lex_state = 142}, - [675] = {.lex_state = 63}, + [675] = {.lex_state = 142}, [676] = {.lex_state = 142}, [677] = {.lex_state = 142}, - [678] = {.lex_state = 63}, + [678] = {.lex_state = 142}, [679] = {.lex_state = 142}, [680] = {.lex_state = 142}, [681] = {.lex_state = 142}, @@ -13960,7 +14175,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [695] = {.lex_state = 142}, [696] = {.lex_state = 142}, [697] = {.lex_state = 142}, - [698] = {.lex_state = 142}, + [698] = {.lex_state = 63}, [699] = {.lex_state = 142}, [700] = {.lex_state = 142}, [701] = {.lex_state = 142}, @@ -14039,375 +14254,375 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [774] = {.lex_state = 142}, [775] = {.lex_state = 142}, [776] = {.lex_state = 142}, - [777] = {.lex_state = 63}, - [778] = {.lex_state = 63}, - [779] = {.lex_state = 65}, - [780] = {.lex_state = 65}, - [781] = {.lex_state = 65}, - [782] = {.lex_state = 65}, - [783] = {.lex_state = 65}, - [784] = {.lex_state = 65}, - [785] = {.lex_state = 65}, - [786] = {.lex_state = 65}, - [787] = {.lex_state = 65}, - [788] = {.lex_state = 65}, + [777] = {.lex_state = 142}, + [778] = {.lex_state = 142}, + [779] = {.lex_state = 142}, + [780] = {.lex_state = 142}, + [781] = {.lex_state = 142}, + [782] = {.lex_state = 142}, + [783] = {.lex_state = 142}, + [784] = {.lex_state = 142}, + [785] = {.lex_state = 142}, + [786] = {.lex_state = 142}, + [787] = {.lex_state = 142}, + [788] = {.lex_state = 142}, [789] = {.lex_state = 65}, [790] = {.lex_state = 65}, - [791] = {.lex_state = 65}, + [791] = {.lex_state = 67}, [792] = {.lex_state = 65}, - [793] = {.lex_state = 65}, - [794] = {.lex_state = 65}, - [795] = {.lex_state = 65}, - [796] = {.lex_state = 65}, - [797] = {.lex_state = 65}, - [798] = {.lex_state = 67}, + [793] = {.lex_state = 67}, + [794] = {.lex_state = 67}, + [795] = {.lex_state = 67}, + [796] = {.lex_state = 67}, + [797] = {.lex_state = 67}, + [798] = {.lex_state = 65}, [799] = {.lex_state = 67}, - [800] = {.lex_state = 65}, + [800] = {.lex_state = 67}, [801] = {.lex_state = 67}, [802] = {.lex_state = 65}, - [803] = {.lex_state = 67}, + [803] = {.lex_state = 65}, [804] = {.lex_state = 67}, - [805] = {.lex_state = 65}, + [805] = {.lex_state = 67}, [806] = {.lex_state = 67}, [807] = {.lex_state = 67}, - [808] = {.lex_state = 67}, + [808] = {.lex_state = 65}, [809] = {.lex_state = 65}, - [810] = {.lex_state = 67}, - [811] = {.lex_state = 67}, + [810] = {.lex_state = 65}, + [811] = {.lex_state = 65}, [812] = {.lex_state = 67}, [813] = {.lex_state = 67}, [814] = {.lex_state = 67}, - [815] = {.lex_state = 65}, + [815] = {.lex_state = 67}, [816] = {.lex_state = 67}, - [817] = {.lex_state = 67}, + [817] = {.lex_state = 65}, [818] = {.lex_state = 65}, - [819] = {.lex_state = 67}, + [819] = {.lex_state = 65}, [820] = {.lex_state = 67}, [821] = {.lex_state = 65}, [822] = {.lex_state = 67}, - [823] = {.lex_state = 67}, + [823] = {.lex_state = 65}, [824] = {.lex_state = 65}, [825] = {.lex_state = 67}, - [826] = {.lex_state = 67}, + [826] = {.lex_state = 65}, [827] = {.lex_state = 67}, [828] = {.lex_state = 66}, - [829] = {.lex_state = 142}, - [830] = {.lex_state = 142}, - [831] = {.lex_state = 142}, - [832] = {.lex_state = 65}, - [833] = {.lex_state = 67}, - [834] = {.lex_state = 65}, - [835] = {.lex_state = 66}, - [836] = {.lex_state = 65}, - [837] = {.lex_state = 67}, - [838] = {.lex_state = 66}, - [839] = {.lex_state = 65}, + [829] = {.lex_state = 65}, + [830] = {.lex_state = 66}, + [831] = {.lex_state = 67}, + [832] = {.lex_state = 67}, + [833] = {.lex_state = 65}, + [834] = {.lex_state = 66}, + [835] = {.lex_state = 65}, + [836] = {.lex_state = 66}, + [837] = {.lex_state = 65}, + [838] = {.lex_state = 65}, + [839] = {.lex_state = 67}, [840] = {.lex_state = 65}, - [841] = {.lex_state = 66}, + [841] = {.lex_state = 63}, [842] = {.lex_state = 67}, - [843] = {.lex_state = 65}, - [844] = {.lex_state = 63}, - [845] = {.lex_state = 63}, - [846] = {.lex_state = 64}, - [847] = {.lex_state = 64}, + [843] = {.lex_state = 67}, + [844] = {.lex_state = 67}, + [845] = {.lex_state = 67}, + [846] = {.lex_state = 67}, + [847] = {.lex_state = 67}, [848] = {.lex_state = 67}, [849] = {.lex_state = 67}, [850] = {.lex_state = 67}, [851] = {.lex_state = 67}, - [852] = {.lex_state = 64}, - [853] = {.lex_state = 67}, - [854] = {.lex_state = 67}, + [852] = {.lex_state = 67}, + [853] = {.lex_state = 142}, + [854] = {.lex_state = 142}, [855] = {.lex_state = 67}, - [856] = {.lex_state = 67}, + [856] = {.lex_state = 142}, [857] = {.lex_state = 67}, [858] = {.lex_state = 67}, - [859] = {.lex_state = 64}, + [859] = {.lex_state = 67}, [860] = {.lex_state = 67}, [861] = {.lex_state = 67}, - [862] = {.lex_state = 142}, - [863] = {.lex_state = 64}, - [864] = {.lex_state = 64}, - [865] = {.lex_state = 64}, - [866] = {.lex_state = 64}, + [862] = {.lex_state = 67}, + [863] = {.lex_state = 67}, + [864] = {.lex_state = 67}, + [865] = {.lex_state = 67}, + [866] = {.lex_state = 67}, [867] = {.lex_state = 67}, - [868] = {.lex_state = 67}, + [868] = {.lex_state = 63}, [869] = {.lex_state = 67}, [870] = {.lex_state = 67}, [871] = {.lex_state = 67}, - [872] = {.lex_state = 63}, - [873] = {.lex_state = 63}, - [874] = {.lex_state = 63}, - [875] = {.lex_state = 67}, - [876] = {.lex_state = 63}, + [872] = {.lex_state = 67}, + [873] = {.lex_state = 67}, + [874] = {.lex_state = 64}, + [875] = {.lex_state = 64}, + [876] = {.lex_state = 64}, [877] = {.lex_state = 67}, [878] = {.lex_state = 67}, [879] = {.lex_state = 67}, [880] = {.lex_state = 67}, - [881] = {.lex_state = 63}, - [882] = {.lex_state = 63}, + [881] = {.lex_state = 67}, + [882] = {.lex_state = 67}, [883] = {.lex_state = 67}, - [884] = {.lex_state = 142}, + [884] = {.lex_state = 64}, [885] = {.lex_state = 67}, [886] = {.lex_state = 67}, [887] = {.lex_state = 67}, - [888] = {.lex_state = 63}, + [888] = {.lex_state = 67}, [889] = {.lex_state = 67}, - [890] = {.lex_state = 63}, - [891] = {.lex_state = 65}, - [892] = {.lex_state = 65}, - [893] = {.lex_state = 65}, - [894] = {.lex_state = 65}, - [895] = {.lex_state = 65}, - [896] = {.lex_state = 65}, - [897] = {.lex_state = 65}, - [898] = {.lex_state = 65}, - [899] = {.lex_state = 65}, - [900] = {.lex_state = 65}, + [890] = {.lex_state = 67}, + [891] = {.lex_state = 67}, + [892] = {.lex_state = 67}, + [893] = {.lex_state = 64}, + [894] = {.lex_state = 142}, + [895] = {.lex_state = 67}, + [896] = {.lex_state = 67}, + [897] = {.lex_state = 67}, + [898] = {.lex_state = 67}, + [899] = {.lex_state = 64}, + [900] = {.lex_state = 67}, [901] = {.lex_state = 67}, - [902] = {.lex_state = 65}, - [903] = {.lex_state = 65}, - [904] = {.lex_state = 69}, - [905] = {.lex_state = 67}, + [902] = {.lex_state = 64}, + [903] = {.lex_state = 67}, + [904] = {.lex_state = 64}, + [905] = {.lex_state = 63}, [906] = {.lex_state = 67}, - [907] = {.lex_state = 67}, - [908] = {.lex_state = 69}, + [907] = {.lex_state = 68}, + [908] = {.lex_state = 68}, [909] = {.lex_state = 67}, - [910] = {.lex_state = 67}, - [911] = {.lex_state = 67}, - [912] = {.lex_state = 69}, - [913] = {.lex_state = 65}, - [914] = {.lex_state = 67}, - [915] = {.lex_state = 67}, - [916] = {.lex_state = 67}, - [917] = {.lex_state = 69}, - [918] = {.lex_state = 67}, - [919] = {.lex_state = 67}, - [920] = {.lex_state = 67}, - [921] = {.lex_state = 67}, - [922] = {.lex_state = 67}, + [910] = {.lex_state = 68}, + [911] = {.lex_state = 68}, + [912] = {.lex_state = 68}, + [913] = {.lex_state = 63}, + [914] = {.lex_state = 63}, + [915] = {.lex_state = 68}, + [916] = {.lex_state = 142}, + [917] = {.lex_state = 68}, + [918] = {.lex_state = 68}, + [919] = {.lex_state = 63}, + [920] = {.lex_state = 63}, + [921] = {.lex_state = 68}, + [922] = {.lex_state = 63}, [923] = {.lex_state = 67}, [924] = {.lex_state = 67}, - [925] = {.lex_state = 67}, + [925] = {.lex_state = 63}, [926] = {.lex_state = 67}, - [927] = {.lex_state = 69}, - [928] = {.lex_state = 69}, - [929] = {.lex_state = 69}, - [930] = {.lex_state = 69}, - [931] = {.lex_state = 69}, - [932] = {.lex_state = 69}, - [933] = {.lex_state = 69}, - [934] = {.lex_state = 69}, - [935] = {.lex_state = 69}, - [936] = {.lex_state = 69}, - [937] = {.lex_state = 69}, - [938] = {.lex_state = 69}, - [939] = {.lex_state = 69}, - [940] = {.lex_state = 69}, - [941] = {.lex_state = 69}, - [942] = {.lex_state = 69}, - [943] = {.lex_state = 69}, - [944] = {.lex_state = 69}, - [945] = {.lex_state = 68}, + [927] = {.lex_state = 68}, + [928] = {.lex_state = 68}, + [929] = {.lex_state = 68}, + [930] = {.lex_state = 68}, + [931] = {.lex_state = 68}, + [932] = {.lex_state = 68}, + [933] = {.lex_state = 68}, + [934] = {.lex_state = 67}, + [935] = {.lex_state = 68}, + [936] = {.lex_state = 68}, + [937] = {.lex_state = 67}, + [938] = {.lex_state = 67}, + [939] = {.lex_state = 67}, + [940] = {.lex_state = 67}, + [941] = {.lex_state = 63}, + [942] = {.lex_state = 67}, + [943] = {.lex_state = 65}, + [944] = {.lex_state = 67}, + [945] = {.lex_state = 65}, [946] = {.lex_state = 67}, - [947] = {.lex_state = 69}, - [948] = {.lex_state = 69}, - [949] = {.lex_state = 69}, - [950] = {.lex_state = 68}, - [951] = {.lex_state = 68}, - [952] = {.lex_state = 69}, - [953] = {.lex_state = 69}, - [954] = {.lex_state = 69}, + [947] = {.lex_state = 65}, + [948] = {.lex_state = 65}, + [949] = {.lex_state = 65}, + [950] = {.lex_state = 67}, + [951] = {.lex_state = 65}, + [952] = {.lex_state = 65}, + [953] = {.lex_state = 67}, + [954] = {.lex_state = 67}, [955] = {.lex_state = 67}, - [956] = {.lex_state = 67}, - [957] = {.lex_state = 69}, - [958] = {.lex_state = 69}, - [959] = {.lex_state = 67}, - [960] = {.lex_state = 69}, + [956] = {.lex_state = 65}, + [957] = {.lex_state = 65}, + [958] = {.lex_state = 65}, + [959] = {.lex_state = 65}, + [960] = {.lex_state = 65}, [961] = {.lex_state = 69}, - [962] = {.lex_state = 69}, + [962] = {.lex_state = 74}, [963] = {.lex_state = 69}, - [964] = {.lex_state = 68}, - [965] = {.lex_state = 68}, - [966] = {.lex_state = 67}, - [967] = {.lex_state = 69}, - [968] = {.lex_state = 69}, - [969] = {.lex_state = 68}, - [970] = {.lex_state = 69}, - [971] = {.lex_state = 69}, - [972] = {.lex_state = 68}, - [973] = {.lex_state = 68}, - [974] = {.lex_state = 68}, - [975] = {.lex_state = 69}, + [964] = {.lex_state = 73}, + [965] = {.lex_state = 73}, + [966] = {.lex_state = 63}, + [967] = {.lex_state = 73}, + [968] = {.lex_state = 73}, + [969] = {.lex_state = 73}, + [970] = {.lex_state = 63}, + [971] = {.lex_state = 67}, + [972] = {.lex_state = 69}, + [973] = {.lex_state = 63}, + [974] = {.lex_state = 67}, + [975] = {.lex_state = 67}, [976] = {.lex_state = 67}, [977] = {.lex_state = 67}, [978] = {.lex_state = 67}, - [979] = {.lex_state = 69}, - [980] = {.lex_state = 69}, - [981] = {.lex_state = 69}, - [982] = {.lex_state = 68}, - [983] = {.lex_state = 68}, - [984] = {.lex_state = 68}, - [985] = {.lex_state = 69}, - [986] = {.lex_state = 69}, - [987] = {.lex_state = 69}, - [988] = {.lex_state = 69}, + [979] = {.lex_state = 73}, + [980] = {.lex_state = 67}, + [981] = {.lex_state = 67}, + [982] = {.lex_state = 63}, + [983] = {.lex_state = 63}, + [984] = {.lex_state = 73}, + [985] = {.lex_state = 73}, + [986] = {.lex_state = 73}, + [987] = {.lex_state = 73}, + [988] = {.lex_state = 73}, [989] = {.lex_state = 67}, - [990] = {.lex_state = 69}, - [991] = {.lex_state = 69}, - [992] = {.lex_state = 68}, - [993] = {.lex_state = 68}, - [994] = {.lex_state = 69}, - [995] = {.lex_state = 68}, - [996] = {.lex_state = 68}, - [997] = {.lex_state = 68}, - [998] = {.lex_state = 68}, - [999] = {.lex_state = 69}, - [1000] = {.lex_state = 67}, - [1001] = {.lex_state = 67}, - [1002] = {.lex_state = 67}, - [1003] = {.lex_state = 67}, - [1004] = {.lex_state = 67}, - [1005] = {.lex_state = 63}, - [1006] = {.lex_state = 63}, - [1007] = {.lex_state = 67}, - [1008] = {.lex_state = 67}, - [1009] = {.lex_state = 63}, - [1010] = {.lex_state = 67}, - [1011] = {.lex_state = 73}, - [1012] = {.lex_state = 73}, - [1013] = {.lex_state = 73}, - [1014] = {.lex_state = 73}, + [990] = {.lex_state = 73}, + [991] = {.lex_state = 73}, + [992] = {.lex_state = 74}, + [993] = {.lex_state = 73}, + [994] = {.lex_state = 74}, + [995] = {.lex_state = 74}, + [996] = {.lex_state = 74}, + [997] = {.lex_state = 73}, + [998] = {.lex_state = 73}, + [999] = {.lex_state = 74}, + [1000] = {.lex_state = 73}, + [1001] = {.lex_state = 69}, + [1002] = {.lex_state = 74}, + [1003] = {.lex_state = 74}, + [1004] = {.lex_state = 65}, + [1005] = {.lex_state = 74}, + [1006] = {.lex_state = 74}, + [1007] = {.lex_state = 74}, + [1008] = {.lex_state = 74}, + [1009] = {.lex_state = 74}, + [1010] = {.lex_state = 74}, + [1011] = {.lex_state = 74}, + [1012] = {.lex_state = 67}, + [1013] = {.lex_state = 67}, + [1014] = {.lex_state = 67}, [1015] = {.lex_state = 67}, - [1016] = {.lex_state = 63}, - [1017] = {.lex_state = 73}, - [1018] = {.lex_state = 73}, - [1019] = {.lex_state = 73}, - [1020] = {.lex_state = 73}, - [1021] = {.lex_state = 73}, - [1022] = {.lex_state = 73}, + [1016] = {.lex_state = 67}, + [1017] = {.lex_state = 74}, + [1018] = {.lex_state = 67}, + [1019] = {.lex_state = 74}, + [1020] = {.lex_state = 67}, + [1021] = {.lex_state = 67}, + [1022] = {.lex_state = 67}, [1023] = {.lex_state = 67}, - [1024] = {.lex_state = 74}, - [1025] = {.lex_state = 67}, - [1026] = {.lex_state = 73}, - [1027] = {.lex_state = 73}, - [1028] = {.lex_state = 67}, - [1029] = {.lex_state = 63}, + [1024] = {.lex_state = 67}, + [1025] = {.lex_state = 73}, + [1026] = {.lex_state = 74}, + [1027] = {.lex_state = 67}, + [1028] = {.lex_state = 69}, + [1029] = {.lex_state = 67}, [1030] = {.lex_state = 67}, - [1031] = {.lex_state = 63}, - [1032] = {.lex_state = 73}, + [1031] = {.lex_state = 67}, + [1032] = {.lex_state = 67}, [1033] = {.lex_state = 67}, - [1034] = {.lex_state = 73}, - [1035] = {.lex_state = 74}, + [1034] = {.lex_state = 67}, + [1035] = {.lex_state = 67}, [1036] = {.lex_state = 67}, - [1037] = {.lex_state = 74}, - [1038] = {.lex_state = 74}, + [1037] = {.lex_state = 67}, + [1038] = {.lex_state = 67}, [1039] = {.lex_state = 67}, [1040] = {.lex_state = 67}, - [1041] = {.lex_state = 74}, - [1042] = {.lex_state = 74}, - [1043] = {.lex_state = 74}, - [1044] = {.lex_state = 74}, - [1045] = {.lex_state = 74}, - [1046] = {.lex_state = 73}, - [1047] = {.lex_state = 63}, - [1048] = {.lex_state = 74}, - [1049] = {.lex_state = 63}, - [1050] = {.lex_state = 74}, - [1051] = {.lex_state = 73}, - [1052] = {.lex_state = 74}, - [1053] = {.lex_state = 63}, - [1054] = {.lex_state = 63}, - [1055] = {.lex_state = 73}, - [1056] = {.lex_state = 63}, - [1057] = {.lex_state = 63}, - [1058] = {.lex_state = 63}, - [1059] = {.lex_state = 67}, - [1060] = {.lex_state = 73}, - [1061] = {.lex_state = 67}, - [1062] = {.lex_state = 63}, - [1063] = {.lex_state = 63}, - [1064] = {.lex_state = 63}, - [1065] = {.lex_state = 63}, - [1066] = {.lex_state = 67}, - [1067] = {.lex_state = 63}, - [1068] = {.lex_state = 74}, - [1069] = {.lex_state = 74}, - [1070] = {.lex_state = 74}, - [1071] = {.lex_state = 63}, - [1072] = {.lex_state = 63}, - [1073] = {.lex_state = 63}, + [1041] = {.lex_state = 69}, + [1042] = {.lex_state = 69}, + [1043] = {.lex_state = 67}, + [1044] = {.lex_state = 67}, + [1045] = {.lex_state = 67}, + [1046] = {.lex_state = 67}, + [1047] = {.lex_state = 67}, + [1048] = {.lex_state = 67}, + [1049] = {.lex_state = 69}, + [1050] = {.lex_state = 69}, + [1051] = {.lex_state = 67}, + [1052] = {.lex_state = 67}, + [1053] = {.lex_state = 67}, + [1054] = {.lex_state = 69}, + [1055] = {.lex_state = 69}, + [1056] = {.lex_state = 67}, + [1057] = {.lex_state = 69}, + [1058] = {.lex_state = 69}, + [1059] = {.lex_state = 69}, + [1060] = {.lex_state = 69}, + [1061] = {.lex_state = 69}, + [1062] = {.lex_state = 67}, + [1063] = {.lex_state = 69}, + [1064] = {.lex_state = 67}, + [1065] = {.lex_state = 67}, + [1066] = {.lex_state = 69}, + [1067] = {.lex_state = 67}, + [1068] = {.lex_state = 69}, + [1069] = {.lex_state = 67}, + [1070] = {.lex_state = 67}, + [1071] = {.lex_state = 67}, + [1072] = {.lex_state = 67}, + [1073] = {.lex_state = 69}, [1074] = {.lex_state = 67}, - [1075] = {.lex_state = 74}, - [1076] = {.lex_state = 74}, - [1077] = {.lex_state = 74}, - [1078] = {.lex_state = 63}, - [1079] = {.lex_state = 63}, + [1075] = {.lex_state = 67}, + [1076] = {.lex_state = 67}, + [1077] = {.lex_state = 67}, + [1078] = {.lex_state = 67}, + [1079] = {.lex_state = 69}, [1080] = {.lex_state = 67}, [1081] = {.lex_state = 67}, - [1082] = {.lex_state = 67}, + [1082] = {.lex_state = 69}, [1083] = {.lex_state = 67}, [1084] = {.lex_state = 67}, [1085] = {.lex_state = 67}, [1086] = {.lex_state = 67}, [1087] = {.lex_state = 67}, [1088] = {.lex_state = 67}, - [1089] = {.lex_state = 67}, - [1090] = {.lex_state = 67}, - [1091] = {.lex_state = 67}, - [1092] = {.lex_state = 67}, - [1093] = {.lex_state = 67}, - [1094] = {.lex_state = 67}, - [1095] = {.lex_state = 67}, - [1096] = {.lex_state = 67}, - [1097] = {.lex_state = 63}, - [1098] = {.lex_state = 67}, - [1099] = {.lex_state = 67}, - [1100] = {.lex_state = 67}, - [1101] = {.lex_state = 67}, - [1102] = {.lex_state = 67}, - [1103] = {.lex_state = 67}, - [1104] = {.lex_state = 67}, - [1105] = {.lex_state = 67}, - [1106] = {.lex_state = 67}, - [1107] = {.lex_state = 67}, - [1108] = {.lex_state = 67}, - [1109] = {.lex_state = 67}, - [1110] = {.lex_state = 67}, - [1111] = {.lex_state = 67}, - [1112] = {.lex_state = 67}, - [1113] = {.lex_state = 67}, - [1114] = {.lex_state = 67}, - [1115] = {.lex_state = 67}, + [1089] = {.lex_state = 69}, + [1090] = {.lex_state = 69}, + [1091] = {.lex_state = 69}, + [1092] = {.lex_state = 69}, + [1093] = {.lex_state = 69}, + [1094] = {.lex_state = 69}, + [1095] = {.lex_state = 69}, + [1096] = {.lex_state = 69}, + [1097] = {.lex_state = 69}, + [1098] = {.lex_state = 69}, + [1099] = {.lex_state = 69}, + [1100] = {.lex_state = 69}, + [1101] = {.lex_state = 69}, + [1102] = {.lex_state = 69}, + [1103] = {.lex_state = 69}, + [1104] = {.lex_state = 69}, + [1105] = {.lex_state = 69}, + [1106] = {.lex_state = 69}, + [1107] = {.lex_state = 69}, + [1108] = {.lex_state = 69}, + [1109] = {.lex_state = 69}, + [1110] = {.lex_state = 69}, + [1111] = {.lex_state = 69}, + [1112] = {.lex_state = 69}, + [1113] = {.lex_state = 69}, + [1114] = {.lex_state = 69}, + [1115] = {.lex_state = 69}, [1116] = {.lex_state = 67}, - [1117] = {.lex_state = 67}, + [1117] = {.lex_state = 69}, [1118] = {.lex_state = 67}, [1119] = {.lex_state = 67}, [1120] = {.lex_state = 67}, [1121] = {.lex_state = 67}, [1122] = {.lex_state = 67}, - [1123] = {.lex_state = 142}, + [1123] = {.lex_state = 67}, [1124] = {.lex_state = 67}, [1125] = {.lex_state = 67}, - [1126] = {.lex_state = 67}, - [1127] = {.lex_state = 67}, + [1126] = {.lex_state = 63}, + [1127] = {.lex_state = 63}, [1128] = {.lex_state = 67}, - [1129] = {.lex_state = 67}, - [1130] = {.lex_state = 67}, - [1131] = {.lex_state = 67}, - [1132] = {.lex_state = 67}, - [1133] = {.lex_state = 67}, + [1129] = {.lex_state = 63}, + [1130] = {.lex_state = 63}, + [1131] = {.lex_state = 63}, + [1132] = {.lex_state = 63}, + [1133] = {.lex_state = 63}, [1134] = {.lex_state = 67}, - [1135] = {.lex_state = 67}, - [1136] = {.lex_state = 67}, - [1137] = {.lex_state = 67}, - [1138] = {.lex_state = 67}, - [1139] = {.lex_state = 67}, - [1140] = {.lex_state = 67}, - [1141] = {.lex_state = 67}, - [1142] = {.lex_state = 67}, - [1143] = {.lex_state = 67}, - [1144] = {.lex_state = 67}, - [1145] = {.lex_state = 67}, + [1135] = {.lex_state = 63}, + [1136] = {.lex_state = 63}, + [1137] = {.lex_state = 63}, + [1138] = {.lex_state = 63}, + [1139] = {.lex_state = 63}, + [1140] = {.lex_state = 63}, + [1141] = {.lex_state = 63}, + [1142] = {.lex_state = 63}, + [1143] = {.lex_state = 63}, + [1144] = {.lex_state = 63}, + [1145] = {.lex_state = 63}, [1146] = {.lex_state = 67}, [1147] = {.lex_state = 67}, [1148] = {.lex_state = 67}, @@ -14416,73 +14631,73 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1151] = {.lex_state = 67}, [1152] = {.lex_state = 67}, [1153] = {.lex_state = 67}, - [1154] = {.lex_state = 65}, - [1155] = {.lex_state = 65}, - [1156] = {.lex_state = 65}, - [1157] = {.lex_state = 65}, - [1158] = {.lex_state = 65}, - [1159] = {.lex_state = 65}, - [1160] = {.lex_state = 65}, + [1154] = {.lex_state = 63}, + [1155] = {.lex_state = 67}, + [1156] = {.lex_state = 67}, + [1157] = {.lex_state = 67}, + [1158] = {.lex_state = 67}, + [1159] = {.lex_state = 67}, + [1160] = {.lex_state = 67}, [1161] = {.lex_state = 67}, - [1162] = {.lex_state = 65}, + [1162] = {.lex_state = 67}, [1163] = {.lex_state = 67}, - [1164] = {.lex_state = 65}, + [1164] = {.lex_state = 67}, [1165] = {.lex_state = 67}, - [1166] = {.lex_state = 65}, - [1167] = {.lex_state = 65}, - [1168] = {.lex_state = 65}, - [1169] = {.lex_state = 65}, + [1166] = {.lex_state = 67}, + [1167] = {.lex_state = 67}, + [1168] = {.lex_state = 67}, + [1169] = {.lex_state = 67}, [1170] = {.lex_state = 67}, - [1171] = {.lex_state = 69}, - [1172] = {.lex_state = 69}, - [1173] = {.lex_state = 69}, + [1171] = {.lex_state = 67}, + [1172] = {.lex_state = 142}, + [1173] = {.lex_state = 67}, [1174] = {.lex_state = 67}, - [1175] = {.lex_state = 69}, - [1176] = {.lex_state = 69}, + [1175] = {.lex_state = 67}, + [1176] = {.lex_state = 67}, [1177] = {.lex_state = 67}, - [1178] = {.lex_state = 69}, - [1179] = {.lex_state = 69}, - [1180] = {.lex_state = 69}, - [1181] = {.lex_state = 69}, - [1182] = {.lex_state = 69}, - [1183] = {.lex_state = 69}, - [1184] = {.lex_state = 69}, - [1185] = {.lex_state = 69}, - [1186] = {.lex_state = 67}, - [1187] = {.lex_state = 67}, - [1188] = {.lex_state = 67}, - [1189] = {.lex_state = 67}, - [1190] = {.lex_state = 67}, + [1178] = {.lex_state = 65}, + [1179] = {.lex_state = 65}, + [1180] = {.lex_state = 65}, + [1181] = {.lex_state = 65}, + [1182] = {.lex_state = 65}, + [1183] = {.lex_state = 65}, + [1184] = {.lex_state = 65}, + [1185] = {.lex_state = 65}, + [1186] = {.lex_state = 65}, + [1187] = {.lex_state = 65}, + [1188] = {.lex_state = 65}, + [1189] = {.lex_state = 65}, + [1190] = {.lex_state = 65}, [1191] = {.lex_state = 67}, [1192] = {.lex_state = 67}, - [1193] = {.lex_state = 67}, - [1194] = {.lex_state = 63}, - [1195] = {.lex_state = 63}, - [1196] = {.lex_state = 63}, - [1197] = {.lex_state = 63}, - [1198] = {.lex_state = 63}, - [1199] = {.lex_state = 63}, - [1200] = {.lex_state = 63}, - [1201] = {.lex_state = 63}, - [1202] = {.lex_state = 63}, - [1203] = {.lex_state = 63}, - [1204] = {.lex_state = 63}, + [1193] = {.lex_state = 69}, + [1194] = {.lex_state = 69}, + [1195] = {.lex_state = 69}, + [1196] = {.lex_state = 69}, + [1197] = {.lex_state = 69}, + [1198] = {.lex_state = 69}, + [1199] = {.lex_state = 69}, + [1200] = {.lex_state = 69}, + [1201] = {.lex_state = 69}, + [1202] = {.lex_state = 69}, + [1203] = {.lex_state = 69}, + [1204] = {.lex_state = 69}, [1205] = {.lex_state = 67}, - [1206] = {.lex_state = 67}, - [1207] = {.lex_state = 63}, - [1208] = {.lex_state = 63}, - [1209] = {.lex_state = 63}, + [1206] = {.lex_state = 69}, + [1207] = {.lex_state = 67}, + [1208] = {.lex_state = 67}, + [1209] = {.lex_state = 67}, [1210] = {.lex_state = 67}, - [1211] = {.lex_state = 63}, + [1211] = {.lex_state = 67}, [1212] = {.lex_state = 67}, - [1213] = {.lex_state = 63}, + [1213] = {.lex_state = 67}, [1214] = {.lex_state = 67}, [1215] = {.lex_state = 67}, [1216] = {.lex_state = 67}, - [1217] = {.lex_state = 63}, + [1217] = {.lex_state = 67}, [1218] = {.lex_state = 63}, [1219] = {.lex_state = 63}, - [1220] = {.lex_state = 67}, + [1220] = {.lex_state = 63}, [1221] = {.lex_state = 63}, [1222] = {.lex_state = 63}, [1223] = {.lex_state = 63}, @@ -14490,25 +14705,25 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1225] = {.lex_state = 63}, [1226] = {.lex_state = 63}, [1227] = {.lex_state = 63}, - [1228] = {.lex_state = 67}, - [1229] = {.lex_state = 63}, - [1230] = {.lex_state = 63}, + [1228] = {.lex_state = 63}, + [1229] = {.lex_state = 67}, + [1230] = {.lex_state = 67}, [1231] = {.lex_state = 63}, - [1232] = {.lex_state = 63}, + [1232] = {.lex_state = 67}, [1233] = {.lex_state = 67}, - [1234] = {.lex_state = 63}, - [1235] = {.lex_state = 63}, - [1236] = {.lex_state = 67}, - [1237] = {.lex_state = 67}, + [1234] = {.lex_state = 67}, + [1235] = {.lex_state = 67}, + [1236] = {.lex_state = 63}, + [1237] = {.lex_state = 63}, [1238] = {.lex_state = 63}, - [1239] = {.lex_state = 67}, + [1239] = {.lex_state = 63}, [1240] = {.lex_state = 63}, [1241] = {.lex_state = 63}, [1242] = {.lex_state = 63}, [1243] = {.lex_state = 63}, - [1244] = {.lex_state = 67}, + [1244] = {.lex_state = 63}, [1245] = {.lex_state = 63}, - [1246] = {.lex_state = 67}, + [1246] = {.lex_state = 63}, [1247] = {.lex_state = 63}, [1248] = {.lex_state = 63}, [1249] = {.lex_state = 63}, @@ -14516,44 +14731,44 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1251] = {.lex_state = 63}, [1252] = {.lex_state = 63}, [1253] = {.lex_state = 63}, - [1254] = {.lex_state = 63}, + [1254] = {.lex_state = 67}, [1255] = {.lex_state = 63}, - [1256] = {.lex_state = 63}, - [1257] = {.lex_state = 63}, + [1256] = {.lex_state = 67}, + [1257] = {.lex_state = 67}, [1258] = {.lex_state = 63}, - [1259] = {.lex_state = 63}, + [1259] = {.lex_state = 67}, [1260] = {.lex_state = 67}, [1261] = {.lex_state = 63}, [1262] = {.lex_state = 67}, - [1263] = {.lex_state = 63}, - [1264] = {.lex_state = 67}, - [1265] = {.lex_state = 67}, - [1266] = {.lex_state = 67}, - [1267] = {.lex_state = 63}, + [1263] = {.lex_state = 67}, + [1264] = {.lex_state = 63}, + [1265] = {.lex_state = 63}, + [1266] = {.lex_state = 63}, + [1267] = {.lex_state = 67}, [1268] = {.lex_state = 63}, - [1269] = {.lex_state = 67}, - [1270] = {.lex_state = 67}, + [1269] = {.lex_state = 63}, + [1270] = {.lex_state = 63}, [1271] = {.lex_state = 63}, [1272] = {.lex_state = 63}, [1273] = {.lex_state = 63}, - [1274] = {.lex_state = 63}, - [1275] = {.lex_state = 67}, + [1274] = {.lex_state = 67}, + [1275] = {.lex_state = 63}, [1276] = {.lex_state = 63}, [1277] = {.lex_state = 63}, - [1278] = {.lex_state = 67}, + [1278] = {.lex_state = 63}, [1279] = {.lex_state = 63}, [1280] = {.lex_state = 63}, [1281] = {.lex_state = 63}, - [1282] = {.lex_state = 63}, + [1282] = {.lex_state = 67}, [1283] = {.lex_state = 63}, - [1284] = {.lex_state = 63}, + [1284] = {.lex_state = 67}, [1285] = {.lex_state = 63}, - [1286] = {.lex_state = 63}, - [1287] = {.lex_state = 67}, + [1286] = {.lex_state = 67}, + [1287] = {.lex_state = 63}, [1288] = {.lex_state = 63}, [1289] = {.lex_state = 63}, [1290] = {.lex_state = 63}, - [1291] = {.lex_state = 67}, + [1291] = {.lex_state = 63}, [1292] = {.lex_state = 63}, [1293] = {.lex_state = 63}, [1294] = {.lex_state = 63}, @@ -14561,185 +14776,185 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1296] = {.lex_state = 63}, [1297] = {.lex_state = 63}, [1298] = {.lex_state = 63}, - [1299] = {.lex_state = 63}, + [1299] = {.lex_state = 67}, [1300] = {.lex_state = 63}, [1301] = {.lex_state = 67}, [1302] = {.lex_state = 63}, [1303] = {.lex_state = 63}, - [1304] = {.lex_state = 63}, - [1305] = {.lex_state = 67}, + [1304] = {.lex_state = 67}, + [1305] = {.lex_state = 63}, [1306] = {.lex_state = 67}, [1307] = {.lex_state = 63}, [1308] = {.lex_state = 67}, [1309] = {.lex_state = 67}, [1310] = {.lex_state = 63}, - [1311] = {.lex_state = 67}, - [1312] = {.lex_state = 67}, - [1313] = {.lex_state = 67}, - [1314] = {.lex_state = 67}, - [1315] = {.lex_state = 67}, - [1316] = {.lex_state = 67}, - [1317] = {.lex_state = 67}, - [1318] = {.lex_state = 67}, - [1319] = {.lex_state = 67}, - [1320] = {.lex_state = 68}, - [1321] = {.lex_state = 67}, - [1322] = {.lex_state = 67}, - [1323] = {.lex_state = 67}, - [1324] = {.lex_state = 67}, - [1325] = {.lex_state = 67}, + [1311] = {.lex_state = 63}, + [1312] = {.lex_state = 63}, + [1313] = {.lex_state = 63}, + [1314] = {.lex_state = 63}, + [1315] = {.lex_state = 63}, + [1316] = {.lex_state = 63}, + [1317] = {.lex_state = 63}, + [1318] = {.lex_state = 63}, + [1319] = {.lex_state = 63}, + [1320] = {.lex_state = 63}, + [1321] = {.lex_state = 63}, + [1322] = {.lex_state = 63}, + [1323] = {.lex_state = 63}, + [1324] = {.lex_state = 63}, + [1325] = {.lex_state = 63}, [1326] = {.lex_state = 67}, [1327] = {.lex_state = 67}, - [1328] = {.lex_state = 62}, - [1329] = {.lex_state = 62}, - [1330] = {.lex_state = 68}, - [1331] = {.lex_state = 68}, - [1332] = {.lex_state = 33}, - [1333] = {.lex_state = 68}, - [1334] = {.lex_state = 62}, - [1335] = {.lex_state = 68}, - [1336] = {.lex_state = 62}, - [1337] = {.lex_state = 68}, - [1338] = {.lex_state = 62}, - [1339] = {.lex_state = 68}, - [1340] = {.lex_state = 62}, - [1341] = {.lex_state = 62}, - [1342] = {.lex_state = 62}, - [1343] = {.lex_state = 62}, - [1344] = {.lex_state = 67}, - [1345] = {.lex_state = 62}, - [1346] = {.lex_state = 68}, - [1347] = {.lex_state = 68}, + [1328] = {.lex_state = 63}, + [1329] = {.lex_state = 63}, + [1330] = {.lex_state = 67}, + [1331] = {.lex_state = 67}, + [1332] = {.lex_state = 67}, + [1333] = {.lex_state = 67}, + [1334] = {.lex_state = 67}, + [1335] = {.lex_state = 67}, + [1336] = {.lex_state = 67}, + [1337] = {.lex_state = 67}, + [1338] = {.lex_state = 67}, + [1339] = {.lex_state = 67}, + [1340] = {.lex_state = 67}, + [1341] = {.lex_state = 67}, + [1342] = {.lex_state = 67}, + [1343] = {.lex_state = 67}, + [1344] = {.lex_state = 68}, + [1345] = {.lex_state = 67}, + [1346] = {.lex_state = 67}, + [1347] = {.lex_state = 67}, [1348] = {.lex_state = 62}, - [1349] = {.lex_state = 68}, - [1350] = {.lex_state = 62}, - [1351] = {.lex_state = 62}, - [1352] = {.lex_state = 62}, - [1353] = {.lex_state = 62}, + [1349] = {.lex_state = 62}, + [1350] = {.lex_state = 67}, + [1351] = {.lex_state = 68}, + [1352] = {.lex_state = 67}, + [1353] = {.lex_state = 67}, [1354] = {.lex_state = 62}, [1355] = {.lex_state = 68}, - [1356] = {.lex_state = 62}, - [1357] = {.lex_state = 62}, - [1358] = {.lex_state = 62}, - [1359] = {.lex_state = 68}, + [1356] = {.lex_state = 67}, + [1357] = {.lex_state = 33}, + [1358] = {.lex_state = 68}, + [1359] = {.lex_state = 62}, [1360] = {.lex_state = 62}, [1361] = {.lex_state = 62}, [1362] = {.lex_state = 62}, - [1363] = {.lex_state = 67}, - [1364] = {.lex_state = 67}, + [1363] = {.lex_state = 68}, + [1364] = {.lex_state = 68}, [1365] = {.lex_state = 68}, [1366] = {.lex_state = 62}, [1367] = {.lex_state = 62}, [1368] = {.lex_state = 62}, - [1369] = {.lex_state = 68}, + [1369] = {.lex_state = 62}, [1370] = {.lex_state = 62}, - [1371] = {.lex_state = 68}, - [1372] = {.lex_state = 68}, + [1371] = {.lex_state = 62}, + [1372] = {.lex_state = 62}, [1373] = {.lex_state = 62}, - [1374] = {.lex_state = 67}, - [1375] = {.lex_state = 62}, + [1374] = {.lex_state = 62}, + [1375] = {.lex_state = 68}, [1376] = {.lex_state = 62}, - [1377] = {.lex_state = 68}, - [1378] = {.lex_state = 68}, - [1379] = {.lex_state = 68}, - [1380] = {.lex_state = 68}, - [1381] = {.lex_state = 62}, - [1382] = {.lex_state = 62}, - [1383] = {.lex_state = 68}, + [1377] = {.lex_state = 67}, + [1378] = {.lex_state = 62}, + [1379] = {.lex_state = 62}, + [1380] = {.lex_state = 62}, + [1381] = {.lex_state = 67}, + [1382] = {.lex_state = 68}, + [1383] = {.lex_state = 62}, [1384] = {.lex_state = 62}, - [1385] = {.lex_state = 68}, - [1386] = {.lex_state = 68}, - [1387] = {.lex_state = 62}, + [1385] = {.lex_state = 62}, + [1386] = {.lex_state = 62}, + [1387] = {.lex_state = 67}, [1388] = {.lex_state = 62}, - [1389] = {.lex_state = 68}, + [1389] = {.lex_state = 67}, [1390] = {.lex_state = 62}, [1391] = {.lex_state = 62}, [1392] = {.lex_state = 62}, - [1393] = {.lex_state = 67}, + [1393] = {.lex_state = 62}, [1394] = {.lex_state = 62}, [1395] = {.lex_state = 62}, - [1396] = {.lex_state = 62}, - [1397] = {.lex_state = 62}, + [1396] = {.lex_state = 67}, + [1397] = {.lex_state = 68}, [1398] = {.lex_state = 62}, [1399] = {.lex_state = 62}, [1400] = {.lex_state = 62}, - [1401] = {.lex_state = 67}, - [1402] = {.lex_state = 33}, - [1403] = {.lex_state = 33}, - [1404] = {.lex_state = 33}, - [1405] = {.lex_state = 33}, - [1406] = {.lex_state = 33}, - [1407] = {.lex_state = 67}, - [1408] = {.lex_state = 33}, - [1409] = {.lex_state = 33}, - [1410] = {.lex_state = 67}, + [1401] = {.lex_state = 62}, + [1402] = {.lex_state = 62}, + [1403] = {.lex_state = 62}, + [1404] = {.lex_state = 62}, + [1405] = {.lex_state = 62}, + [1406] = {.lex_state = 68}, + [1407] = {.lex_state = 68}, + [1408] = {.lex_state = 68}, + [1409] = {.lex_state = 68}, + [1410] = {.lex_state = 68}, [1411] = {.lex_state = 68}, - [1412] = {.lex_state = 33}, - [1413] = {.lex_state = 33}, - [1414] = {.lex_state = 33}, - [1415] = {.lex_state = 67}, - [1416] = {.lex_state = 67}, - [1417] = {.lex_state = 33}, - [1418] = {.lex_state = 33}, - [1419] = {.lex_state = 33}, - [1420] = {.lex_state = 33}, - [1421] = {.lex_state = 33}, - [1422] = {.lex_state = 33}, - [1423] = {.lex_state = 67}, - [1424] = {.lex_state = 33}, - [1425] = {.lex_state = 33}, - [1426] = {.lex_state = 33}, + [1412] = {.lex_state = 68}, + [1413] = {.lex_state = 68}, + [1414] = {.lex_state = 68}, + [1415] = {.lex_state = 62}, + [1416] = {.lex_state = 68}, + [1417] = {.lex_state = 68}, + [1418] = {.lex_state = 67}, + [1419] = {.lex_state = 62}, + [1420] = {.lex_state = 68}, + [1421] = {.lex_state = 62}, + [1422] = {.lex_state = 67}, + [1423] = {.lex_state = 62}, + [1424] = {.lex_state = 68}, + [1425] = {.lex_state = 68}, + [1426] = {.lex_state = 62}, [1427] = {.lex_state = 33}, [1428] = {.lex_state = 33}, - [1429] = {.lex_state = 33}, + [1429] = {.lex_state = 68}, [1430] = {.lex_state = 33}, [1431] = {.lex_state = 33}, [1432] = {.lex_state = 67}, [1433] = {.lex_state = 33}, - [1434] = {.lex_state = 67}, + [1434] = {.lex_state = 33}, [1435] = {.lex_state = 67}, [1436] = {.lex_state = 33}, [1437] = {.lex_state = 33}, - [1438] = {.lex_state = 33}, + [1438] = {.lex_state = 68}, [1439] = {.lex_state = 33}, [1440] = {.lex_state = 33}, [1441] = {.lex_state = 33}, - [1442] = {.lex_state = 33}, - [1443] = {.lex_state = 33}, - [1444] = {.lex_state = 67}, + [1442] = {.lex_state = 67}, + [1443] = {.lex_state = 67}, + [1444] = {.lex_state = 33}, [1445] = {.lex_state = 33}, - [1446] = {.lex_state = 67}, + [1446] = {.lex_state = 33}, [1447] = {.lex_state = 33}, - [1448] = {.lex_state = 68}, + [1448] = {.lex_state = 33}, [1449] = {.lex_state = 67}, - [1450] = {.lex_state = 67}, - [1451] = {.lex_state = 67}, - [1452] = {.lex_state = 67}, - [1453] = {.lex_state = 67}, - [1454] = {.lex_state = 67}, - [1455] = {.lex_state = 67}, + [1450] = {.lex_state = 33}, + [1451] = {.lex_state = 33}, + [1452] = {.lex_state = 33}, + [1453] = {.lex_state = 33}, + [1454] = {.lex_state = 33}, + [1455] = {.lex_state = 33}, [1456] = {.lex_state = 67}, [1457] = {.lex_state = 67}, - [1458] = {.lex_state = 67}, - [1459] = {.lex_state = 67}, - [1460] = {.lex_state = 67}, - [1461] = {.lex_state = 67}, - [1462] = {.lex_state = 67}, - [1463] = {.lex_state = 67}, + [1458] = {.lex_state = 33}, + [1459] = {.lex_state = 33}, + [1460] = {.lex_state = 33}, + [1461] = {.lex_state = 33}, + [1462] = {.lex_state = 33}, + [1463] = {.lex_state = 33}, [1464] = {.lex_state = 67}, - [1465] = {.lex_state = 67}, - [1466] = {.lex_state = 67}, + [1465] = {.lex_state = 33}, + [1466] = {.lex_state = 33}, [1467] = {.lex_state = 67}, - [1468] = {.lex_state = 67}, - [1469] = {.lex_state = 67}, - [1470] = {.lex_state = 67}, + [1468] = {.lex_state = 33}, + [1469] = {.lex_state = 33}, + [1470] = {.lex_state = 33}, [1471] = {.lex_state = 67}, [1472] = {.lex_state = 67}, - [1473] = {.lex_state = 67}, + [1473] = {.lex_state = 33}, [1474] = {.lex_state = 67}, [1475] = {.lex_state = 67}, [1476] = {.lex_state = 67}, - [1477] = {.lex_state = 65}, + [1477] = {.lex_state = 33}, [1478] = {.lex_state = 67}, [1479] = {.lex_state = 67}, [1480] = {.lex_state = 67}, @@ -14761,7 +14976,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1496] = {.lex_state = 67}, [1497] = {.lex_state = 67}, [1498] = {.lex_state = 67}, - [1499] = {.lex_state = 72}, + [1499] = {.lex_state = 67}, [1500] = {.lex_state = 67}, [1501] = {.lex_state = 67}, [1502] = {.lex_state = 67}, @@ -14772,10 +14987,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1507] = {.lex_state = 67}, [1508] = {.lex_state = 67}, [1509] = {.lex_state = 67}, - [1510] = {.lex_state = 72}, + [1510] = {.lex_state = 67}, [1511] = {.lex_state = 67}, [1512] = {.lex_state = 67}, - [1513] = {.lex_state = 67}, + [1513] = {.lex_state = 65}, [1514] = {.lex_state = 67}, [1515] = {.lex_state = 67}, [1516] = {.lex_state = 67}, @@ -14792,717 +15007,790 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1527] = {.lex_state = 67}, [1528] = {.lex_state = 67}, [1529] = {.lex_state = 67}, - [1530] = {.lex_state = 69}, + [1530] = {.lex_state = 67}, [1531] = {.lex_state = 67}, [1532] = {.lex_state = 67}, [1533] = {.lex_state = 67}, [1534] = {.lex_state = 67}, [1535] = {.lex_state = 67}, - [1536] = {.lex_state = 69}, + [1536] = {.lex_state = 67}, [1537] = {.lex_state = 67}, - [1538] = {.lex_state = 69}, - [1539] = {.lex_state = 65}, + [1538] = {.lex_state = 67}, + [1539] = {.lex_state = 67}, [1540] = {.lex_state = 67}, - [1541] = {.lex_state = 65}, - [1542] = {.lex_state = 72}, + [1541] = {.lex_state = 72}, + [1542] = {.lex_state = 67}, [1543] = {.lex_state = 67}, - [1544] = {.lex_state = 65}, + [1544] = {.lex_state = 67}, [1545] = {.lex_state = 67}, [1546] = {.lex_state = 67}, [1547] = {.lex_state = 67}, [1548] = {.lex_state = 67}, [1549] = {.lex_state = 67}, [1550] = {.lex_state = 67}, - [1551] = {.lex_state = 67}, + [1551] = {.lex_state = 72}, [1552] = {.lex_state = 67}, [1553] = {.lex_state = 67}, [1554] = {.lex_state = 67}, - [1555] = {.lex_state = 0}, + [1555] = {.lex_state = 67}, [1556] = {.lex_state = 67}, [1557] = {.lex_state = 67}, [1558] = {.lex_state = 67}, - [1559] = {.lex_state = 0}, + [1559] = {.lex_state = 67}, [1560] = {.lex_state = 67}, [1561] = {.lex_state = 67}, [1562] = {.lex_state = 67}, [1563] = {.lex_state = 67}, - [1564] = {.lex_state = 142}, + [1564] = {.lex_state = 67}, [1565] = {.lex_state = 67}, [1566] = {.lex_state = 67}, - [1567] = {.lex_state = 0}, - [1568] = {.lex_state = 0}, - [1569] = {.lex_state = 0}, - [1570] = {.lex_state = 142}, - [1571] = {.lex_state = 71}, + [1567] = {.lex_state = 67}, + [1568] = {.lex_state = 67}, + [1569] = {.lex_state = 69}, + [1570] = {.lex_state = 67}, + [1571] = {.lex_state = 67}, [1572] = {.lex_state = 67}, - [1573] = {.lex_state = 67}, + [1573] = {.lex_state = 65}, [1574] = {.lex_state = 67}, - [1575] = {.lex_state = 71}, - [1576] = {.lex_state = 67}, - [1577] = {.lex_state = 142}, - [1578] = {.lex_state = 142}, - [1579] = {.lex_state = 67}, - [1580] = {.lex_state = 71}, - [1581] = {.lex_state = 0}, - [1582] = {.lex_state = 67}, - [1583] = {.lex_state = 71}, - [1584] = {.lex_state = 142}, - [1585] = {.lex_state = 71}, - [1586] = {.lex_state = 63}, - [1587] = {.lex_state = 69}, - [1588] = {.lex_state = 63}, - [1589] = {.lex_state = 69}, - [1590] = {.lex_state = 69}, - [1591] = {.lex_state = 142}, - [1592] = {.lex_state = 69}, - [1593] = {.lex_state = 69}, - [1594] = {.lex_state = 142}, - [1595] = {.lex_state = 69}, - [1596] = {.lex_state = 63}, - [1597] = {.lex_state = 63}, - [1598] = {.lex_state = 69}, - [1599] = {.lex_state = 0}, - [1600] = {.lex_state = 0}, - [1601] = {.lex_state = 69}, - [1602] = {.lex_state = 0}, - [1603] = {.lex_state = 142}, - [1604] = {.lex_state = 142}, - [1605] = {.lex_state = 142}, - [1606] = {.lex_state = 69}, - [1607] = {.lex_state = 142}, - [1608] = {.lex_state = 65}, - [1609] = {.lex_state = 65}, - [1610] = {.lex_state = 65}, - [1611] = {.lex_state = 69}, - [1612] = {.lex_state = 69}, - [1613] = {.lex_state = 142}, - [1614] = {.lex_state = 0}, - [1615] = {.lex_state = 0}, - [1616] = {.lex_state = 65}, + [1575] = {.lex_state = 67}, + [1576] = {.lex_state = 72}, + [1577] = {.lex_state = 67}, + [1578] = {.lex_state = 67}, + [1579] = {.lex_state = 65}, + [1580] = {.lex_state = 65}, + [1581] = {.lex_state = 69}, + [1582] = {.lex_state = 69}, + [1583] = {.lex_state = 67}, + [1584] = {.lex_state = 67}, + [1585] = {.lex_state = 0}, + [1586] = {.lex_state = 67}, + [1587] = {.lex_state = 67}, + [1588] = {.lex_state = 67}, + [1589] = {.lex_state = 67}, + [1590] = {.lex_state = 67}, + [1591] = {.lex_state = 67}, + [1592] = {.lex_state = 67}, + [1593] = {.lex_state = 67}, + [1594] = {.lex_state = 67}, + [1595] = {.lex_state = 0}, + [1596] = {.lex_state = 67}, + [1597] = {.lex_state = 67}, + [1598] = {.lex_state = 67}, + [1599] = {.lex_state = 67}, + [1600] = {.lex_state = 67}, + [1601] = {.lex_state = 67}, + [1602] = {.lex_state = 67}, + [1603] = {.lex_state = 67}, + [1604] = {.lex_state = 67}, + [1605] = {.lex_state = 67}, + [1606] = {.lex_state = 67}, + [1607] = {.lex_state = 67}, + [1608] = {.lex_state = 67}, + [1609] = {.lex_state = 67}, + [1610] = {.lex_state = 67}, + [1611] = {.lex_state = 67}, + [1612] = {.lex_state = 67}, + [1613] = {.lex_state = 67}, + [1614] = {.lex_state = 67}, + [1615] = {.lex_state = 67}, + [1616] = {.lex_state = 67}, [1617] = {.lex_state = 142}, - [1618] = {.lex_state = 142}, - [1619] = {.lex_state = 142}, + [1618] = {.lex_state = 67}, + [1619] = {.lex_state = 71}, [1620] = {.lex_state = 67}, - [1621] = {.lex_state = 142}, - [1622] = {.lex_state = 67}, - [1623] = {.lex_state = 67}, - [1624] = {.lex_state = 67}, - [1625] = {.lex_state = 67}, + [1621] = {.lex_state = 71}, + [1622] = {.lex_state = 142}, + [1623] = {.lex_state = 142}, + [1624] = {.lex_state = 71}, + [1625] = {.lex_state = 0}, [1626] = {.lex_state = 67}, - [1627] = {.lex_state = 69}, + [1627] = {.lex_state = 142}, [1628] = {.lex_state = 67}, - [1629] = {.lex_state = 72}, - [1630] = {.lex_state = 67}, - [1631] = {.lex_state = 67}, - [1632] = {.lex_state = 67}, - [1633] = {.lex_state = 67}, - [1634] = {.lex_state = 67}, - [1635] = {.lex_state = 67}, - [1636] = {.lex_state = 67}, - [1637] = {.lex_state = 72}, - [1638] = {.lex_state = 67}, - [1639] = {.lex_state = 72}, - [1640] = {.lex_state = 65}, + [1629] = {.lex_state = 67}, + [1630] = {.lex_state = 0}, + [1631] = {.lex_state = 0}, + [1632] = {.lex_state = 0}, + [1633] = {.lex_state = 71}, + [1634] = {.lex_state = 71}, + [1635] = {.lex_state = 142}, + [1636] = {.lex_state = 69}, + [1637] = {.lex_state = 69}, + [1638] = {.lex_state = 69}, + [1639] = {.lex_state = 63}, + [1640] = {.lex_state = 69}, [1641] = {.lex_state = 142}, - [1642] = {.lex_state = 67}, - [1643] = {.lex_state = 67}, - [1644] = {.lex_state = 0}, - [1645] = {.lex_state = 72}, - [1646] = {.lex_state = 67}, - [1647] = {.lex_state = 67}, - [1648] = {.lex_state = 72}, - [1649] = {.lex_state = 67}, - [1650] = {.lex_state = 0}, - [1651] = {.lex_state = 67}, - [1652] = {.lex_state = 67}, - [1653] = {.lex_state = 69}, - [1654] = {.lex_state = 69}, - [1655] = {.lex_state = 142}, - [1656] = {.lex_state = 0}, - [1657] = {.lex_state = 72}, - [1658] = {.lex_state = 67}, - [1659] = {.lex_state = 67}, - [1660] = {.lex_state = 142}, - [1661] = {.lex_state = 67}, - [1662] = {.lex_state = 67}, - [1663] = {.lex_state = 72}, - [1664] = {.lex_state = 72}, - [1665] = {.lex_state = 67}, - [1666] = {.lex_state = 67}, - [1667] = {.lex_state = 67}, - [1668] = {.lex_state = 72}, - [1669] = {.lex_state = 72}, + [1642] = {.lex_state = 142}, + [1643] = {.lex_state = 65}, + [1644] = {.lex_state = 142}, + [1645] = {.lex_state = 69}, + [1646] = {.lex_state = 69}, + [1647] = {.lex_state = 65}, + [1648] = {.lex_state = 69}, + [1649] = {.lex_state = 0}, + [1650] = {.lex_state = 142}, + [1651] = {.lex_state = 63}, + [1652] = {.lex_state = 142}, + [1653] = {.lex_state = 0}, + [1654] = {.lex_state = 63}, + [1655] = {.lex_state = 63}, + [1656] = {.lex_state = 69}, + [1657] = {.lex_state = 69}, + [1658] = {.lex_state = 142}, + [1659] = {.lex_state = 69}, + [1660] = {.lex_state = 69}, + [1661] = {.lex_state = 0}, + [1662] = {.lex_state = 65}, + [1663] = {.lex_state = 142}, + [1664] = {.lex_state = 142}, + [1665] = {.lex_state = 0}, + [1666] = {.lex_state = 0}, + [1667] = {.lex_state = 142}, + [1668] = {.lex_state = 65}, + [1669] = {.lex_state = 67}, [1670] = {.lex_state = 0}, - [1671] = {.lex_state = 142}, + [1671] = {.lex_state = 72}, [1672] = {.lex_state = 67}, - [1673] = {.lex_state = 72}, - [1674] = {.lex_state = 67}, - [1675] = {.lex_state = 142}, - [1676] = {.lex_state = 67}, - [1677] = {.lex_state = 38}, - [1678] = {.lex_state = 67}, - [1679] = {.lex_state = 142}, - [1680] = {.lex_state = 67}, - [1681] = {.lex_state = 142}, - [1682] = {.lex_state = 38}, - [1683] = {.lex_state = 67}, - [1684] = {.lex_state = 38}, - [1685] = {.lex_state = 67}, - [1686] = {.lex_state = 38}, - [1687] = {.lex_state = 38}, - [1688] = {.lex_state = 58}, - [1689] = {.lex_state = 69}, + [1673] = {.lex_state = 67}, + [1674] = {.lex_state = 72}, + [1675] = {.lex_state = 72}, + [1676] = {.lex_state = 72}, + [1677] = {.lex_state = 65}, + [1678] = {.lex_state = 142}, + [1679] = {.lex_state = 72}, + [1680] = {.lex_state = 72}, + [1681] = {.lex_state = 69}, + [1682] = {.lex_state = 0}, + [1683] = {.lex_state = 0}, + [1684] = {.lex_state = 142}, + [1685] = {.lex_state = 72}, + [1686] = {.lex_state = 142}, + [1687] = {.lex_state = 69}, + [1688] = {.lex_state = 69}, + [1689] = {.lex_state = 72}, [1690] = {.lex_state = 142}, - [1691] = {.lex_state = 142}, - [1692] = {.lex_state = 142}, - [1693] = {.lex_state = 67}, - [1694] = {.lex_state = 38}, + [1691] = {.lex_state = 72}, + [1692] = {.lex_state = 72}, + [1693] = {.lex_state = 142}, + [1694] = {.lex_state = 72}, [1695] = {.lex_state = 142}, - [1696] = {.lex_state = 142}, - [1697] = {.lex_state = 142}, - [1698] = {.lex_state = 142}, - [1699] = {.lex_state = 38}, - [1700] = {.lex_state = 65}, + [1696] = {.lex_state = 67}, + [1697] = {.lex_state = 0}, + [1698] = {.lex_state = 67}, + [1699] = {.lex_state = 142}, + [1700] = {.lex_state = 142}, [1701] = {.lex_state = 142}, [1702] = {.lex_state = 38}, [1703] = {.lex_state = 38}, - [1704] = {.lex_state = 67}, + [1704] = {.lex_state = 142}, [1705] = {.lex_state = 142}, - [1706] = {.lex_state = 142}, - [1707] = {.lex_state = 0}, - [1708] = {.lex_state = 45}, - [1709] = {.lex_state = 47}, - [1710] = {.lex_state = 0}, - [1711] = {.lex_state = 69}, - [1712] = {.lex_state = 0}, - [1713] = {.lex_state = 0}, - [1714] = {.lex_state = 0}, - [1715] = {.lex_state = 65}, - [1716] = {.lex_state = 67}, - [1717] = {.lex_state = 65}, - [1718] = {.lex_state = 45}, - [1719] = {.lex_state = 47}, - [1720] = {.lex_state = 45}, - [1721] = {.lex_state = 0}, - [1722] = {.lex_state = 67}, + [1706] = {.lex_state = 38}, + [1707] = {.lex_state = 38}, + [1708] = {.lex_state = 38}, + [1709] = {.lex_state = 38}, + [1710] = {.lex_state = 142}, + [1711] = {.lex_state = 142}, + [1712] = {.lex_state = 67}, + [1713] = {.lex_state = 58}, + [1714] = {.lex_state = 67}, + [1715] = {.lex_state = 142}, + [1716] = {.lex_state = 142}, + [1717] = {.lex_state = 142}, + [1718] = {.lex_state = 38}, + [1719] = {.lex_state = 65}, + [1720] = {.lex_state = 69}, + [1721] = {.lex_state = 38}, + [1722] = {.lex_state = 38}, [1723] = {.lex_state = 142}, - [1724] = {.lex_state = 47}, - [1725] = {.lex_state = 65}, - [1726] = {.lex_state = 45}, - [1727] = {.lex_state = 65}, - [1728] = {.lex_state = 45}, - [1729] = {.lex_state = 45}, + [1724] = {.lex_state = 142}, + [1725] = {.lex_state = 142}, + [1726] = {.lex_state = 67}, + [1727] = {.lex_state = 45}, + [1728] = {.lex_state = 67}, + [1729] = {.lex_state = 0}, [1730] = {.lex_state = 0}, [1731] = {.lex_state = 67}, - [1732] = {.lex_state = 45}, - [1733] = {.lex_state = 0}, + [1732] = {.lex_state = 67}, + [1733] = {.lex_state = 67}, [1734] = {.lex_state = 58}, - [1735] = {.lex_state = 47}, - [1736] = {.lex_state = 0}, - [1737] = {.lex_state = 67}, - [1738] = {.lex_state = 0}, + [1735] = {.lex_state = 65}, + [1736] = {.lex_state = 65}, + [1737] = {.lex_state = 65}, + [1738] = {.lex_state = 47}, [1739] = {.lex_state = 45}, - [1740] = {.lex_state = 47}, - [1741] = {.lex_state = 67}, - [1742] = {.lex_state = 67}, - [1743] = {.lex_state = 67}, + [1740] = {.lex_state = 65}, + [1741] = {.lex_state = 0}, + [1742] = {.lex_state = 47}, + [1743] = {.lex_state = 0}, [1744] = {.lex_state = 45}, - [1745] = {.lex_state = 39}, - [1746] = {.lex_state = 58}, + [1745] = {.lex_state = 47}, + [1746] = {.lex_state = 47}, [1747] = {.lex_state = 67}, - [1748] = {.lex_state = 0}, - [1749] = {.lex_state = 0}, - [1750] = {.lex_state = 67}, - [1751] = {.lex_state = 58}, - [1752] = {.lex_state = 0}, - [1753] = {.lex_state = 39}, + [1748] = {.lex_state = 69}, + [1749] = {.lex_state = 47}, + [1750] = {.lex_state = 45}, + [1751] = {.lex_state = 47}, + [1752] = {.lex_state = 45}, + [1753] = {.lex_state = 0}, [1754] = {.lex_state = 0}, - [1755] = {.lex_state = 39}, - [1756] = {.lex_state = 47}, - [1757] = {.lex_state = 39}, + [1755] = {.lex_state = 67}, + [1756] = {.lex_state = 0}, + [1757] = {.lex_state = 47}, [1758] = {.lex_state = 0}, - [1759] = {.lex_state = 0}, - [1760] = {.lex_state = 39}, + [1759] = {.lex_state = 47}, + [1760] = {.lex_state = 142}, [1761] = {.lex_state = 0}, [1762] = {.lex_state = 0}, - [1763] = {.lex_state = 0}, - [1764] = {.lex_state = 0}, - [1765] = {.lex_state = 39}, + [1763] = {.lex_state = 47}, + [1764] = {.lex_state = 45}, + [1765] = {.lex_state = 40}, [1766] = {.lex_state = 0}, [1767] = {.lex_state = 0}, [1768] = {.lex_state = 0}, [1769] = {.lex_state = 0}, - [1770] = {.lex_state = 58}, - [1771] = {.lex_state = 58}, + [1770] = {.lex_state = 0}, + [1771] = {.lex_state = 39}, [1772] = {.lex_state = 0}, - [1773] = {.lex_state = 47}, - [1774] = {.lex_state = 0}, - [1775] = {.lex_state = 0}, - [1776] = {.lex_state = 0}, - [1777] = {.lex_state = 39}, - [1778] = {.lex_state = 0}, - [1779] = {.lex_state = 39}, + [1773] = {.lex_state = 0}, + [1774] = {.lex_state = 67}, + [1775] = {.lex_state = 39}, + [1776] = {.lex_state = 39}, + [1777] = {.lex_state = 0}, + [1778] = {.lex_state = 45}, + [1779] = {.lex_state = 0}, [1780] = {.lex_state = 0}, [1781] = {.lex_state = 0}, [1782] = {.lex_state = 0}, [1783] = {.lex_state = 0}, [1784] = {.lex_state = 0}, - [1785] = {.lex_state = 39}, - [1786] = {.lex_state = 0}, - [1787] = {.lex_state = 0}, + [1785] = {.lex_state = 40}, + [1786] = {.lex_state = 39}, + [1787] = {.lex_state = 40}, [1788] = {.lex_state = 0}, [1789] = {.lex_state = 0}, - [1790] = {.lex_state = 40}, - [1791] = {.lex_state = 41}, - [1792] = {.lex_state = 0}, + [1790] = {.lex_state = 39}, + [1791] = {.lex_state = 39}, + [1792] = {.lex_state = 58}, [1793] = {.lex_state = 0}, [1794] = {.lex_state = 0}, [1795] = {.lex_state = 0}, - [1796] = {.lex_state = 0}, - [1797] = {.lex_state = 47}, - [1798] = {.lex_state = 67}, - [1799] = {.lex_state = 67}, - [1800] = {.lex_state = 39}, - [1801] = {.lex_state = 39}, - [1802] = {.lex_state = 40}, - [1803] = {.lex_state = 0}, + [1796] = {.lex_state = 41}, + [1797] = {.lex_state = 0}, + [1798] = {.lex_state = 39}, + [1799] = {.lex_state = 39}, + [1800] = {.lex_state = 0}, + [1801] = {.lex_state = 0}, + [1802] = {.lex_state = 0}, + [1803] = {.lex_state = 39}, [1804] = {.lex_state = 0}, - [1805] = {.lex_state = 67}, + [1805] = {.lex_state = 0}, [1806] = {.lex_state = 0}, - [1807] = {.lex_state = 0}, - [1808] = {.lex_state = 0}, + [1807] = {.lex_state = 39}, + [1808] = {.lex_state = 39}, [1809] = {.lex_state = 0}, - [1810] = {.lex_state = 0}, - [1811] = {.lex_state = 0}, + [1810] = {.lex_state = 58}, + [1811] = {.lex_state = 58}, [1812] = {.lex_state = 0}, - [1813] = {.lex_state = 0}, - [1814] = {.lex_state = 0}, - [1815] = {.lex_state = 0}, - [1816] = {.lex_state = 39}, - [1817] = {.lex_state = 41}, - [1818] = {.lex_state = 41}, - [1819] = {.lex_state = 39}, + [1813] = {.lex_state = 41}, + [1814] = {.lex_state = 39}, + [1815] = {.lex_state = 58}, + [1816] = {.lex_state = 0}, + [1817] = {.lex_state = 0}, + [1818] = {.lex_state = 0}, + [1819] = {.lex_state = 0}, [1820] = {.lex_state = 0}, - [1821] = {.lex_state = 39}, - [1822] = {.lex_state = 39}, - [1823] = {.lex_state = 40}, + [1821] = {.lex_state = 67}, + [1822] = {.lex_state = 45}, + [1823] = {.lex_state = 0}, [1824] = {.lex_state = 39}, [1825] = {.lex_state = 0}, [1826] = {.lex_state = 0}, [1827] = {.lex_state = 0}, [1828] = {.lex_state = 0}, [1829] = {.lex_state = 0}, - [1830] = {.lex_state = 0}, - [1831] = {.lex_state = 67}, - [1832] = {.lex_state = 47}, + [1830] = {.lex_state = 41}, + [1831] = {.lex_state = 0}, + [1832] = {.lex_state = 67}, [1833] = {.lex_state = 0}, [1834] = {.lex_state = 0}, [1835] = {.lex_state = 0}, - [1836] = {.lex_state = 67}, + [1836] = {.lex_state = 0}, [1837] = {.lex_state = 0}, [1838] = {.lex_state = 0}, - [1839] = {.lex_state = 0}, - [1840] = {.lex_state = 0}, + [1839] = {.lex_state = 39}, + [1840] = {.lex_state = 67}, [1841] = {.lex_state = 58}, - [1842] = {.lex_state = 39}, + [1842] = {.lex_state = 58}, [1843] = {.lex_state = 0}, [1844] = {.lex_state = 0}, [1845] = {.lex_state = 0}, [1846] = {.lex_state = 0}, - [1847] = {.lex_state = 0}, - [1848] = {.lex_state = 40}, - [1849] = {.lex_state = 40}, + [1847] = {.lex_state = 67}, + [1848] = {.lex_state = 0}, + [1849] = {.lex_state = 39}, [1850] = {.lex_state = 39}, - [1851] = {.lex_state = 67}, - [1852] = {.lex_state = 58}, - [1853] = {.lex_state = 58}, - [1854] = {.lex_state = 0}, + [1851] = {.lex_state = 0}, + [1852] = {.lex_state = 0}, + [1853] = {.lex_state = 0}, + [1854] = {.lex_state = 67}, [1855] = {.lex_state = 0}, [1856] = {.lex_state = 0}, - [1857] = {.lex_state = 0}, - [1858] = {.lex_state = 142}, + [1857] = {.lex_state = 58}, + [1858] = {.lex_state = 0}, [1859] = {.lex_state = 0}, - [1860] = {.lex_state = 0}, - [1861] = {.lex_state = 67}, - [1862] = {.lex_state = 142}, - [1863] = {.lex_state = 0}, - [1864] = {.lex_state = 142}, - [1865] = {.lex_state = 142}, - [1866] = {.lex_state = 67}, - [1867] = {.lex_state = 58}, + [1860] = {.lex_state = 40}, + [1861] = {.lex_state = 0}, + [1862] = {.lex_state = 0}, + [1863] = {.lex_state = 40}, + [1864] = {.lex_state = 0}, + [1865] = {.lex_state = 39}, + [1866] = {.lex_state = 0}, + [1867] = {.lex_state = 0}, [1868] = {.lex_state = 0}, - [1869] = {.lex_state = 67}, - [1870] = {.lex_state = 142}, - [1871] = {.lex_state = 0}, - [1872] = {.lex_state = 142}, + [1869] = {.lex_state = 0}, + [1870] = {.lex_state = 0}, + [1871] = {.lex_state = 45}, + [1872] = {.lex_state = 67}, [1873] = {.lex_state = 39}, - [1874] = {.lex_state = 142}, - [1875] = {.lex_state = 67}, - [1876] = {.lex_state = 0}, - [1877] = {.lex_state = 58}, + [1874] = {.lex_state = 67}, + [1875] = {.lex_state = 0}, + [1876] = {.lex_state = 142}, + [1877] = {.lex_state = 0}, [1878] = {.lex_state = 142}, [1879] = {.lex_state = 0}, [1880] = {.lex_state = 142}, [1881] = {.lex_state = 142}, [1882] = {.lex_state = 142}, [1883] = {.lex_state = 142}, - [1884] = {.lex_state = 0}, + [1884] = {.lex_state = 67}, [1885] = {.lex_state = 0}, [1886] = {.lex_state = 0}, - [1887] = {.lex_state = 0}, - [1888] = {.lex_state = 142}, - [1889] = {.lex_state = 0}, + [1887] = {.lex_state = 142}, + [1888] = {.lex_state = 0}, + [1889] = {.lex_state = 142}, [1890] = {.lex_state = 142}, [1891] = {.lex_state = 142}, - [1892] = {.lex_state = 0}, - [1893] = {.lex_state = 0}, - [1894] = {.lex_state = 0}, + [1892] = {.lex_state = 142}, + [1893] = {.lex_state = 67}, + [1894] = {.lex_state = 58}, [1895] = {.lex_state = 142}, - [1896] = {.lex_state = 58}, - [1897] = {.lex_state = 0}, + [1896] = {.lex_state = 142}, + [1897] = {.lex_state = 67}, [1898] = {.lex_state = 0}, [1899] = {.lex_state = 142}, - [1900] = {.lex_state = 0}, + [1900] = {.lex_state = 142}, [1901] = {.lex_state = 0}, - [1902] = {.lex_state = 0}, - [1903] = {.lex_state = 0}, - [1904] = {.lex_state = 142}, - [1905] = {.lex_state = 67}, - [1906] = {.lex_state = 0}, - [1907] = {.lex_state = 142}, + [1902] = {.lex_state = 142}, + [1903] = {.lex_state = 142}, + [1904] = {.lex_state = 0}, + [1905] = {.lex_state = 0}, + [1906] = {.lex_state = 142}, + [1907] = {.lex_state = 39}, [1908] = {.lex_state = 0}, - [1909] = {.lex_state = 0}, + [1909] = {.lex_state = 142}, [1910] = {.lex_state = 142}, [1911] = {.lex_state = 142}, - [1912] = {.lex_state = 142}, - [1913] = {.lex_state = 0}, - [1914] = {.lex_state = 0}, - [1915] = {.lex_state = 142}, - [1916] = {.lex_state = 142}, - [1917] = {.lex_state = 67}, - [1918] = {.lex_state = 0}, - [1919] = {.lex_state = 0}, - [1920] = {.lex_state = 0}, + [1912] = {.lex_state = 0}, + [1913] = {.lex_state = 142}, + [1914] = {.lex_state = 142}, + [1915] = {.lex_state = 0}, + [1916] = {.lex_state = 67}, + [1917] = {.lex_state = 142}, + [1918] = {.lex_state = 58}, + [1919] = {.lex_state = 142}, + [1920] = {.lex_state = 142}, [1921] = {.lex_state = 0}, - [1922] = {.lex_state = 0}, + [1922] = {.lex_state = 142}, [1923] = {.lex_state = 0}, - [1924] = {.lex_state = 67}, - [1925] = {.lex_state = 142}, - [1926] = {.lex_state = 0}, + [1924] = {.lex_state = 0}, + [1925] = {.lex_state = 0}, + [1926] = {.lex_state = 142}, [1927] = {.lex_state = 0}, - [1928] = {.lex_state = 39}, - [1929] = {.lex_state = 67}, + [1928] = {.lex_state = 0}, + [1929] = {.lex_state = 142}, [1930] = {.lex_state = 142}, [1931] = {.lex_state = 0}, - [1932] = {.lex_state = 0}, - [1933] = {.lex_state = 142}, - [1934] = {.lex_state = 0}, - [1935] = {.lex_state = 39}, - [1936] = {.lex_state = 0}, + [1932] = {.lex_state = 142}, + [1933] = {.lex_state = 0}, + [1934] = {.lex_state = 142}, + [1935] = {.lex_state = 0}, + [1936] = {.lex_state = 142}, [1937] = {.lex_state = 142}, [1938] = {.lex_state = 0}, [1939] = {.lex_state = 142}, [1940] = {.lex_state = 142}, - [1941] = {.lex_state = 0}, - [1942] = {.lex_state = 56}, - [1943] = {.lex_state = 0}, - [1944] = {.lex_state = 40}, - [1945] = {.lex_state = 56}, - [1946] = {.lex_state = 56}, + [1941] = {.lex_state = 142}, + [1942] = {.lex_state = 0}, + [1943] = {.lex_state = 67}, + [1944] = {.lex_state = 0}, + [1945] = {.lex_state = 142}, + [1946] = {.lex_state = 0}, [1947] = {.lex_state = 0}, - [1948] = {.lex_state = 56}, + [1948] = {.lex_state = 0}, [1949] = {.lex_state = 0}, - [1950] = {.lex_state = 40}, - [1951] = {.lex_state = 0}, - [1952] = {.lex_state = 40}, + [1950] = {.lex_state = 0}, + [1951] = {.lex_state = 142}, + [1952] = {.lex_state = 0}, [1953] = {.lex_state = 0}, - [1954] = {.lex_state = 40}, - [1955] = {.lex_state = 40}, - [1956] = {.lex_state = 0}, - [1957] = {.lex_state = 40}, - [1958] = {.lex_state = 0}, - [1959] = {.lex_state = 40}, - [1960] = {.lex_state = 40}, - [1961] = {.lex_state = 40}, - [1962] = {.lex_state = 40}, - [1963] = {.lex_state = 40}, - [1964] = {.lex_state = 40}, - [1965] = {.lex_state = 40}, - [1966] = {.lex_state = 67}, - [1967] = {.lex_state = 67}, - [1968] = {.lex_state = 67}, - [1969] = {.lex_state = 0}, - [1970] = {.lex_state = 67}, - [1971] = {.lex_state = 40}, - [1972] = {.lex_state = 0}, + [1954] = {.lex_state = 142}, + [1955] = {.lex_state = 142}, + [1956] = {.lex_state = 142}, + [1957] = {.lex_state = 142}, + [1958] = {.lex_state = 67}, + [1959] = {.lex_state = 0}, + [1960] = {.lex_state = 0}, + [1961] = {.lex_state = 67}, + [1962] = {.lex_state = 0}, + [1963] = {.lex_state = 0}, + [1964] = {.lex_state = 0}, + [1965] = {.lex_state = 67}, + [1966] = {.lex_state = 39}, + [1967] = {.lex_state = 39}, + [1968] = {.lex_state = 142}, + [1969] = {.lex_state = 142}, + [1970] = {.lex_state = 142}, + [1971] = {.lex_state = 0}, + [1972] = {.lex_state = 142}, [1973] = {.lex_state = 0}, [1974] = {.lex_state = 0}, [1975] = {.lex_state = 142}, [1976] = {.lex_state = 0}, - [1977] = {.lex_state = 0}, - [1978] = {.lex_state = 0}, - [1979] = {.lex_state = 40}, - [1980] = {.lex_state = 142}, - [1981] = {.lex_state = 40}, - [1982] = {.lex_state = 0}, + [1977] = {.lex_state = 58}, + [1978] = {.lex_state = 40}, + [1979] = {.lex_state = 67}, + [1980] = {.lex_state = 0}, + [1981] = {.lex_state = 56}, + [1982] = {.lex_state = 67}, [1983] = {.lex_state = 0}, - [1984] = {.lex_state = 0}, + [1984] = {.lex_state = 56}, [1985] = {.lex_state = 56}, - [1986] = {.lex_state = 56}, - [1987] = {.lex_state = 56}, - [1988] = {.lex_state = 0}, - [1989] = {.lex_state = 67}, + [1986] = {.lex_state = 67}, + [1987] = {.lex_state = 40}, + [1988] = {.lex_state = 56}, + [1989] = {.lex_state = 0}, [1990] = {.lex_state = 56}, [1991] = {.lex_state = 56}, - [1992] = {.lex_state = 0}, + [1992] = {.lex_state = 40}, [1993] = {.lex_state = 67}, [1994] = {.lex_state = 0}, - [1995] = {.lex_state = 0}, - [1996] = {.lex_state = 0}, - [1997] = {.lex_state = 142}, - [1998] = {.lex_state = 56}, - [1999] = {.lex_state = 56}, - [2000] = {.lex_state = 40}, - [2001] = {.lex_state = 0}, - [2002] = {.lex_state = 56}, - [2003] = {.lex_state = 67}, - [2004] = {.lex_state = 40}, - [2005] = {.lex_state = 0}, - [2006] = {.lex_state = 0}, + [1995] = {.lex_state = 56}, + [1996] = {.lex_state = 40}, + [1997] = {.lex_state = 0}, + [1998] = {.lex_state = 40}, + [1999] = {.lex_state = 0}, + [2000] = {.lex_state = 56}, + [2001] = {.lex_state = 40}, + [2002] = {.lex_state = 0}, + [2003] = {.lex_state = 40}, + [2004] = {.lex_state = 0}, + [2005] = {.lex_state = 40}, + [2006] = {.lex_state = 40}, [2007] = {.lex_state = 0}, - [2008] = {.lex_state = 0}, + [2008] = {.lex_state = 40}, [2009] = {.lex_state = 0}, - [2010] = {.lex_state = 0}, + [2010] = {.lex_state = 67}, [2011] = {.lex_state = 40}, - [2012] = {.lex_state = 40}, - [2013] = {.lex_state = 0}, - [2014] = {.lex_state = 0}, + [2012] = {.lex_state = 0}, + [2013] = {.lex_state = 40}, + [2014] = {.lex_state = 40}, [2015] = {.lex_state = 0}, [2016] = {.lex_state = 56}, - [2017] = {.lex_state = 56}, - [2018] = {.lex_state = 56}, + [2017] = {.lex_state = 40}, + [2018] = {.lex_state = 0}, [2019] = {.lex_state = 0}, - [2020] = {.lex_state = 56}, - [2021] = {.lex_state = 56}, - [2022] = {.lex_state = 0}, - [2023] = {.lex_state = 0}, - [2024] = {.lex_state = 56}, - [2025] = {.lex_state = 56}, - [2026] = {.lex_state = 67}, + [2020] = {.lex_state = 40}, + [2021] = {.lex_state = 0}, + [2022] = {.lex_state = 67}, + [2023] = {.lex_state = 67}, + [2024] = {.lex_state = 0}, + [2025] = {.lex_state = 0}, + [2026] = {.lex_state = 40}, [2027] = {.lex_state = 67}, [2028] = {.lex_state = 40}, - [2029] = {.lex_state = 0}, + [2029] = {.lex_state = 56}, [2030] = {.lex_state = 0}, - [2031] = {.lex_state = 0}, - [2032] = {.lex_state = 56}, - [2033] = {.lex_state = 40}, + [2031] = {.lex_state = 67}, + [2032] = {.lex_state = 0}, + [2033] = {.lex_state = 67}, [2034] = {.lex_state = 0}, - [2035] = {.lex_state = 67}, + [2035] = {.lex_state = 142}, [2036] = {.lex_state = 0}, - [2037] = {.lex_state = 40}, - [2038] = {.lex_state = 0}, - [2039] = {.lex_state = 0}, - [2040] = {.lex_state = 0}, + [2037] = {.lex_state = 142}, + [2038] = {.lex_state = 142}, + [2039] = {.lex_state = 142}, + [2040] = {.lex_state = 142}, [2041] = {.lex_state = 0}, - [2042] = {.lex_state = 40}, + [2042] = {.lex_state = 0}, [2043] = {.lex_state = 142}, - [2044] = {.lex_state = 40}, + [2044] = {.lex_state = 0}, [2045] = {.lex_state = 0}, - [2046] = {.lex_state = 67}, - [2047] = {.lex_state = 0}, + [2046] = {.lex_state = 0}, + [2047] = {.lex_state = 142}, [2048] = {.lex_state = 0}, [2049] = {.lex_state = 0}, [2050] = {.lex_state = 0}, - [2051] = {.lex_state = 0}, - [2052] = {.lex_state = 67}, + [2051] = {.lex_state = 67}, + [2052] = {.lex_state = 0}, [2053] = {.lex_state = 142}, - [2054] = {.lex_state = 67}, - [2055] = {.lex_state = 67}, - [2056] = {.lex_state = 142}, + [2054] = {.lex_state = 56}, + [2055] = {.lex_state = 56}, + [2056] = {.lex_state = 0}, [2057] = {.lex_state = 0}, [2058] = {.lex_state = 0}, [2059] = {.lex_state = 56}, - [2060] = {.lex_state = 56}, - [2061] = {.lex_state = 56}, + [2060] = {.lex_state = 67}, + [2061] = {.lex_state = 142}, [2062] = {.lex_state = 67}, - [2063] = {.lex_state = 0}, - [2064] = {.lex_state = 0}, + [2063] = {.lex_state = 40}, + [2064] = {.lex_state = 142}, [2065] = {.lex_state = 56}, - [2066] = {.lex_state = 0}, - [2067] = {.lex_state = 56}, + [2066] = {.lex_state = 67}, + [2067] = {.lex_state = 67}, [2068] = {.lex_state = 0}, [2069] = {.lex_state = 0}, - [2070] = {.lex_state = 142}, - [2071] = {.lex_state = 56}, - [2072] = {.lex_state = 67}, - [2073] = {.lex_state = 56}, - [2074] = {.lex_state = 0}, + [2070] = {.lex_state = 40}, + [2071] = {.lex_state = 0}, + [2072] = {.lex_state = 142}, + [2073] = {.lex_state = 0}, + [2074] = {.lex_state = 142}, [2075] = {.lex_state = 0}, - [2076] = {.lex_state = 0}, - [2077] = {.lex_state = 0}, + [2076] = {.lex_state = 67}, + [2077] = {.lex_state = 40}, [2078] = {.lex_state = 0}, - [2079] = {.lex_state = 0}, - [2080] = {.lex_state = 67}, - [2081] = {.lex_state = 67}, - [2082] = {.lex_state = 67}, - [2083] = {.lex_state = 56}, + [2079] = {.lex_state = 56}, + [2080] = {.lex_state = 56}, + [2081] = {.lex_state = 56}, + [2082] = {.lex_state = 56}, + [2083] = {.lex_state = 67}, [2084] = {.lex_state = 40}, - [2085] = {.lex_state = 67}, - [2086] = {.lex_state = 67}, - [2087] = {.lex_state = 0}, + [2085] = {.lex_state = 0}, + [2086] = {.lex_state = 0}, + [2087] = {.lex_state = 56}, [2088] = {.lex_state = 0}, [2089] = {.lex_state = 0}, [2090] = {.lex_state = 0}, - [2091] = {.lex_state = 0}, + [2091] = {.lex_state = 56}, [2092] = {.lex_state = 0}, - [2093] = {.lex_state = 0}, - [2094] = {.lex_state = 40}, - [2095] = {.lex_state = 0}, - [2096] = {.lex_state = 40}, + [2093] = {.lex_state = 56}, + [2094] = {.lex_state = 56}, + [2095] = {.lex_state = 40}, + [2096] = {.lex_state = 0}, [2097] = {.lex_state = 0}, [2098] = {.lex_state = 67}, - [2099] = {.lex_state = 0}, - [2100] = {.lex_state = 0}, - [2101] = {.lex_state = 67}, - [2102] = {.lex_state = 67}, - [2103] = {.lex_state = 67}, - [2104] = {.lex_state = 40}, - [2105] = {.lex_state = 40}, + [2099] = {.lex_state = 67}, + [2100] = {.lex_state = 67}, + [2101] = {.lex_state = 0}, + [2102] = {.lex_state = 0}, + [2103] = {.lex_state = 0}, + [2104] = {.lex_state = 0}, + [2105] = {.lex_state = 67}, [2106] = {.lex_state = 0}, [2107] = {.lex_state = 0}, - [2108] = {.lex_state = 142}, - [2109] = {.lex_state = 67}, + [2108] = {.lex_state = 67}, + [2109] = {.lex_state = 0}, [2110] = {.lex_state = 0}, - [2111] = {.lex_state = 142}, - [2112] = {.lex_state = 67}, - [2113] = {.lex_state = 67}, + [2111] = {.lex_state = 67}, + [2112] = {.lex_state = 56}, + [2113] = {.lex_state = 56}, [2114] = {.lex_state = 0}, [2115] = {.lex_state = 0}, - [2116] = {.lex_state = 0}, - [2117] = {.lex_state = 0}, + [2116] = {.lex_state = 56}, + [2117] = {.lex_state = 56}, [2118] = {.lex_state = 0}, [2119] = {.lex_state = 67}, [2120] = {.lex_state = 67}, - [2121] = {.lex_state = 40}, - [2122] = {.lex_state = 40}, - [2123] = {.lex_state = 67}, - [2124] = {.lex_state = 67}, + [2121] = {.lex_state = 0}, + [2122] = {.lex_state = 0}, + [2123] = {.lex_state = 40}, + [2124] = {.lex_state = 0}, [2125] = {.lex_state = 0}, - [2126] = {.lex_state = 0}, + [2126] = {.lex_state = 40}, [2127] = {.lex_state = 67}, - [2128] = {.lex_state = 0}, - [2129] = {.lex_state = 67}, - [2130] = {.lex_state = 56}, - [2131] = {.lex_state = 0}, - [2132] = {.lex_state = 67}, + [2128] = {.lex_state = 67}, + [2129] = {.lex_state = 40}, + [2130] = {.lex_state = 142}, + [2131] = {.lex_state = 142}, + [2132] = {.lex_state = 56}, [2133] = {.lex_state = 0}, [2134] = {.lex_state = 0}, - [2135] = {.lex_state = 0}, - [2136] = {.lex_state = 0}, + [2135] = {.lex_state = 67}, + [2136] = {.lex_state = 142}, [2137] = {.lex_state = 0}, - [2138] = {.lex_state = 0}, - [2139] = {.lex_state = 0}, - [2140] = {.lex_state = 0}, - [2141] = {.lex_state = 56}, - [2142] = {.lex_state = 0}, - [2143] = {.lex_state = 40}, - [2144] = {.lex_state = 40}, - [2145] = {.lex_state = 40}, - [2146] = {.lex_state = 40}, + [2138] = {.lex_state = 40}, + [2139] = {.lex_state = 142}, + [2140] = {.lex_state = 142}, + [2141] = {.lex_state = 0}, + [2142] = {.lex_state = 56}, + [2143] = {.lex_state = 56}, + [2144] = {.lex_state = 142}, + [2145] = {.lex_state = 56}, + [2146] = {.lex_state = 0}, [2147] = {.lex_state = 0}, [2148] = {.lex_state = 0}, - [2149] = {.lex_state = 0}, - [2150] = {.lex_state = 67}, - [2151] = {.lex_state = 142}, - [2152] = {.lex_state = 67}, - [2153] = {.lex_state = 0}, - [2154] = {.lex_state = 56}, + [2149] = {.lex_state = 56}, + [2150] = {.lex_state = 0}, + [2151] = {.lex_state = 0}, + [2152] = {.lex_state = 0}, + [2153] = {.lex_state = 67}, + [2154] = {.lex_state = 67}, [2155] = {.lex_state = 0}, - [2156] = {.lex_state = 56}, + [2156] = {.lex_state = 0}, [2157] = {.lex_state = 56}, [2158] = {.lex_state = 0}, - [2159] = {.lex_state = 142}, - [2160] = {.lex_state = 142}, - [2161] = {.lex_state = 56}, - [2162] = {.lex_state = 56}, + [2159] = {.lex_state = 67}, + [2160] = {.lex_state = 0}, + [2161] = {.lex_state = 0}, + [2162] = {.lex_state = 0}, [2163] = {.lex_state = 56}, [2164] = {.lex_state = 67}, - [2165] = {.lex_state = 56}, - [2166] = {.lex_state = 56}, - [2167] = {.lex_state = 56}, - [2168] = {.lex_state = 0}, + [2165] = {.lex_state = 67}, + [2166] = {.lex_state = 0}, + [2167] = {.lex_state = 0}, + [2168] = {.lex_state = 142}, [2169] = {.lex_state = 0}, [2170] = {.lex_state = 0}, - [2171] = {.lex_state = 0}, + [2171] = {.lex_state = 67}, [2172] = {.lex_state = 67}, - [2173] = {.lex_state = 67}, - [2174] = {.lex_state = 56}, - [2175] = {.lex_state = 56}, - [2176] = {.lex_state = 0}, - [2177] = {.lex_state = 56}, + [2173] = {.lex_state = 0}, + [2174] = {.lex_state = 67}, + [2175] = {.lex_state = 67}, + [2176] = {.lex_state = 67}, + [2177] = {.lex_state = 0}, [2178] = {.lex_state = 56}, - [2179] = {.lex_state = 56}, - [2180] = {.lex_state = 67}, - [2181] = {.lex_state = 0}, - [2182] = {.lex_state = 56}, - [2183] = {.lex_state = 40}, - [2184] = {.lex_state = 56}, - [2185] = {.lex_state = 142}, - [2186] = {.lex_state = 67}, - [2187] = {.lex_state = 142}, - [2188] = {.lex_state = 67}, + [2179] = {.lex_state = 0}, + [2180] = {.lex_state = 56}, + [2181] = {.lex_state = 142}, + [2182] = {.lex_state = 40}, + [2183] = {.lex_state = 0}, + [2184] = {.lex_state = 142}, + [2185] = {.lex_state = 40}, + [2186] = {.lex_state = 0}, + [2187] = {.lex_state = 0}, + [2188] = {.lex_state = 0}, [2189] = {.lex_state = 0}, [2190] = {.lex_state = 0}, [2191] = {.lex_state = 0}, - [2192] = {.lex_state = 0}, - [2193] = {.lex_state = 0}, - [2194] = {.lex_state = 56}, + [2192] = {.lex_state = 67}, + [2193] = {.lex_state = 67}, + [2194] = {.lex_state = 0}, [2195] = {.lex_state = 56}, - [2196] = {.lex_state = 56}, - [2197] = {.lex_state = 67}, + [2196] = {.lex_state = 0}, + [2197] = {.lex_state = 56}, [2198] = {.lex_state = 0}, - [2199] = {.lex_state = 0}, - [2200] = {.lex_state = 56}, - [2201] = {.lex_state = 67}, - [2202] = {.lex_state = 0}, + [2199] = {.lex_state = 56}, + [2200] = {.lex_state = 0}, + [2201] = {.lex_state = 40}, + [2202] = {.lex_state = 67}, [2203] = {.lex_state = 56}, [2204] = {.lex_state = 56}, [2205] = {.lex_state = 56}, - [2206] = {.lex_state = 56}, + [2206] = {.lex_state = 67}, [2207] = {.lex_state = 0}, - [2208] = {.lex_state = 142}, - [2209] = {.lex_state = 67}, - [2210] = {.lex_state = 0}, + [2208] = {.lex_state = 56}, + [2209] = {.lex_state = 56}, + [2210] = {.lex_state = 56}, [2211] = {.lex_state = 0}, - [2212] = {.lex_state = 0}, + [2212] = {.lex_state = 56}, [2213] = {.lex_state = 0}, [2214] = {.lex_state = 0}, - [2215] = {.lex_state = 56}, - [2216] = {.lex_state = 0}, - [2217] = {.lex_state = 56}, - [2218] = {.lex_state = 67}, + [2215] = {.lex_state = 0}, + [2216] = {.lex_state = 40}, + [2217] = {.lex_state = 0}, + [2218] = {.lex_state = 0}, [2219] = {.lex_state = 0}, - [2220] = {.lex_state = 67}, - [2221] = {.lex_state = 56}, - [2222] = {.lex_state = 56}, - [2223] = {.lex_state = 67}, + [2220] = {.lex_state = 142}, + [2221] = {.lex_state = 0}, + [2222] = {.lex_state = 0}, + [2223] = {.lex_state = 0}, [2224] = {.lex_state = 0}, - [2225] = {.lex_state = 67}, + [2225] = {.lex_state = 0}, [2226] = {.lex_state = 0}, - [2227] = {.lex_state = 56}, - [2228] = {.lex_state = 56}, - [2229] = {.lex_state = 40}, - [2230] = {.lex_state = 142}, - [2231] = {.lex_state = 67}, + [2227] = {.lex_state = 0}, + [2228] = {.lex_state = 0}, + [2229] = {.lex_state = 0}, + [2230] = {.lex_state = 0}, + [2231] = {.lex_state = 0}, [2232] = {.lex_state = 0}, [2233] = {.lex_state = 142}, [2234] = {.lex_state = 0}, [2235] = {.lex_state = 0}, [2236] = {.lex_state = 0}, - [2237] = {.lex_state = 142}, - [2238] = {.lex_state = 0}, - [2239] = {.lex_state = 0}, - [2240] = {.lex_state = 142}, + [2237] = {.lex_state = 67}, + [2238] = {.lex_state = 40}, + [2239] = {.lex_state = 40}, + [2240] = {.lex_state = 0}, + [2241] = {.lex_state = 56}, + [2242] = {.lex_state = 56}, + [2243] = {.lex_state = 0}, + [2244] = {.lex_state = 40}, + [2245] = {.lex_state = 67}, + [2246] = {.lex_state = 56}, + [2247] = {.lex_state = 56}, + [2248] = {.lex_state = 56}, + [2249] = {.lex_state = 0}, + [2250] = {.lex_state = 56}, + [2251] = {.lex_state = 0}, + [2252] = {.lex_state = 0}, + [2253] = {.lex_state = 67}, + [2254] = {.lex_state = 56}, + [2255] = {.lex_state = 0}, + [2256] = {.lex_state = 67}, + [2257] = {.lex_state = 0}, + [2258] = {.lex_state = 40}, + [2259] = {.lex_state = 40}, + [2260] = {.lex_state = 142}, + [2261] = {.lex_state = 40}, + [2262] = {.lex_state = 40}, + [2263] = {.lex_state = 0}, + [2264] = {.lex_state = 142}, + [2265] = {.lex_state = 67}, + [2266] = {.lex_state = 0}, + [2267] = {.lex_state = 0}, + [2268] = {.lex_state = 0}, + [2269] = {.lex_state = 56}, + [2270] = {.lex_state = 56}, + [2271] = {.lex_state = 56}, + [2272] = {.lex_state = 0}, + [2273] = {.lex_state = 0}, + [2274] = {.lex_state = 0}, + [2275] = {.lex_state = 0}, + [2276] = {.lex_state = 0}, + [2277] = {.lex_state = 142}, + [2278] = {.lex_state = 142}, + [2279] = {.lex_state = 142}, + [2280] = {.lex_state = 67}, + [2281] = {.lex_state = 0}, + [2282] = {.lex_state = 0}, + [2283] = {.lex_state = 142}, + [2284] = {.lex_state = 0}, + [2285] = {.lex_state = 0}, + [2286] = {.lex_state = 0}, + [2287] = {.lex_state = 40}, + [2288] = {.lex_state = 56}, + [2289] = {.lex_state = 0}, + [2290] = {.lex_state = 56}, + [2291] = {.lex_state = 0}, + [2292] = {.lex_state = 0}, + [2293] = {.lex_state = 142}, + [2294] = {.lex_state = 56}, + [2295] = {.lex_state = 142}, + [2296] = {.lex_state = 142}, + [2297] = {.lex_state = 0}, + [2298] = {.lex_state = 56}, + [2299] = {.lex_state = 142}, + [2300] = {.lex_state = 67}, + [2301] = {.lex_state = 0}, + [2302] = {.lex_state = 0}, + [2303] = {.lex_state = 142}, + [2304] = {.lex_state = 0}, + [2305] = {.lex_state = 0}, + [2306] = {.lex_state = 142}, + [2307] = {.lex_state = 0}, + [2308] = {.lex_state = 67}, + [2309] = {.lex_state = 0}, + [2310] = {.lex_state = 142}, + [2311] = {.lex_state = 56}, + [2312] = {.lex_state = 67}, + [2313] = {.lex_state = 142}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -15553,6 +15841,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___attribute__] = ACTIONS(1), [anon_sym___scanf] = ACTIONS(1), [anon_sym___printf] = ACTIONS(1), + [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_LBRACK_LBRACK] = ACTIONS(1), [anon_sym___declspec] = ACTIONS(1), [anon_sym___based] = ACTIONS(1), @@ -15597,6 +15889,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(1), [anon_sym_COLON] = ACTIONS(1), [anon_sym_struct] = ACTIONS(1), + [anon_sym___aligned] = ACTIONS(1), [anon_sym_union] = ACTIONS(1), [anon_sym_if] = ACTIONS(1), [anon_sym_else] = ACTIONS(1), @@ -15657,74 +15950,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [1] = { - [sym_translation_unit] = STATE(2095), - [sym_preproc_include] = STATE(53), - [sym_preproc_def] = STATE(53), - [sym_preproc_function_def] = STATE(53), - [sym_preproc_call] = STATE(53), - [sym_preproc_if] = STATE(53), - [sym_preproc_ifdef] = STATE(53), - [sym_function_definition] = STATE(53), - [sym__old_style_function_definition] = STATE(461), - [sym_declaration] = STATE(53), - [sym_type_definition] = STATE(53), - [sym__declaration_modifiers] = STATE(861), - [sym__declaration_specifiers] = STATE(1486), - [sym_linkage_specification] = STATE(53), - [sym_attribute_specifier] = STATE(861), - [sym_attribute_declaration] = STATE(504), - [sym_ms_declspec_modifier] = STATE(861), - [sym_ms_call_modifier] = STATE(855), - [sym_compound_statement] = STATE(53), - [sym_storage_class_specifier] = STATE(861), - [sym_type_qualifier] = STATE(861), - [sym__type_specifier] = STATE(1125), - [sym_sized_type_specifier] = STATE(1106), - [sym_enum_specifier] = STATE(1106), - [sym_struct_specifier] = STATE(1106), - [sym_union_specifier] = STATE(1106), - [sym_attributed_statement] = STATE(53), - [sym_labeled_statement] = STATE(53), - [sym__top_level_expression_statement] = STATE(53), - [sym_if_statement] = STATE(53), - [sym_switch_statement] = STATE(53), - [sym_case_statement] = STATE(53), - [sym_while_statement] = STATE(53), - [sym_do_statement] = STATE(53), - [sym_for_statement] = STATE(53), - [sym_return_statement] = STATE(53), - [sym_break_statement] = STATE(53), - [sym_continue_statement] = STATE(53), - [sym_goto_statement] = STATE(53), - [sym__expression] = STATE(1307), - [sym__expression_not_binary] = STATE(1310), - [sym_conditional_expression] = STATE(1310), - [sym_assignment_expression] = STATE(1310), - [sym_pointer_expression] = STATE(901), - [sym_unary_expression] = STATE(1310), - [sym_binary_expression] = STATE(792), - [sym_update_expression] = STATE(1310), - [sym_cast_expression] = STATE(1310), - [sym_sizeof_expression] = STATE(1310), - [sym_alignof_expression] = STATE(1310), - [sym_offsetof_expression] = STATE(1310), - [sym_generic_expression] = STATE(1310), - [sym_subscript_expression] = STATE(901), - [sym_call_expression] = STATE(901), - [sym_gnu_asm_expression] = STATE(1310), - [sym_field_expression] = STATE(901), - [sym_compound_literal_expression] = STATE(1310), - [sym_parenthesized_expression] = STATE(901), - [sym_char_literal] = STATE(1310), - [sym_concatenated_string] = STATE(1310), - [sym_string_literal] = STATE(675), - [sym_null] = STATE(1310), - [sym__empty_declaration] = STATE(53), - [sym_macro_type_specifier] = STATE(1106), - [aux_sym_translation_unit_repeat1] = STATE(53), - [aux_sym__declaration_specifiers_repeat1] = STATE(861), - [aux_sym_attributed_declarator_repeat1] = STATE(449), - [aux_sym_sized_type_specifier_repeat1] = STATE(1113), + [sym_translation_unit] = STATE(2273), + [sym_preproc_include] = STATE(52), + [sym_preproc_def] = STATE(52), + [sym_preproc_function_def] = STATE(52), + [sym_preproc_call] = STATE(52), + [sym_preproc_if] = STATE(52), + [sym_preproc_ifdef] = STATE(52), + [sym_function_definition] = STATE(52), + [sym__old_style_function_definition] = STATE(421), + [sym_declaration] = STATE(52), + [sym_type_definition] = STATE(52), + [sym__declaration_modifiers] = STATE(855), + [sym__declaration_specifiers] = STATE(1528), + [sym_linkage_specification] = STATE(52), + [sym_attribute_specifier] = STATE(855), + [sym_attribute_declaration] = STATE(495), + [sym_ms_declspec_modifier] = STATE(855), + [sym_ms_call_modifier] = STATE(843), + [sym_compound_statement] = STATE(52), + [sym_storage_class_specifier] = STATE(855), + [sym_type_qualifier] = STATE(855), + [sym__type_specifier] = STATE(1121), + [sym_sized_type_specifier] = STATE(1069), + [sym_enum_specifier] = STATE(1069), + [sym_struct_specifier] = STATE(1069), + [sym_union_specifier] = STATE(1069), + [sym_attributed_statement] = STATE(52), + [sym_labeled_statement] = STATE(52), + [sym__top_level_expression_statement] = STATE(52), + [sym_if_statement] = STATE(52), + [sym_switch_statement] = STATE(52), + [sym_case_statement] = STATE(52), + [sym_while_statement] = STATE(52), + [sym_do_statement] = STATE(52), + [sym_for_statement] = STATE(52), + [sym_return_statement] = STATE(52), + [sym_break_statement] = STATE(52), + [sym_continue_statement] = STATE(52), + [sym_goto_statement] = STATE(52), + [sym__expression] = STATE(1329), + [sym__expression_not_binary] = STATE(1328), + [sym_conditional_expression] = STATE(1328), + [sym_assignment_expression] = STATE(1328), + [sym_pointer_expression] = STATE(877), + [sym_unary_expression] = STATE(1328), + [sym_binary_expression] = STATE(809), + [sym_update_expression] = STATE(1328), + [sym_cast_expression] = STATE(1328), + [sym_sizeof_expression] = STATE(1328), + [sym_alignof_expression] = STATE(1328), + [sym_offsetof_expression] = STATE(1328), + [sym_generic_expression] = STATE(1328), + [sym_subscript_expression] = STATE(877), + [sym_call_expression] = STATE(877), + [sym_gnu_asm_expression] = STATE(1328), + [sym_field_expression] = STATE(877), + [sym_compound_literal_expression] = STATE(1328), + [sym_parenthesized_expression] = STATE(877), + [sym_char_literal] = STATE(1328), + [sym_concatenated_string] = STATE(1328), + [sym_string_literal] = STATE(573), + [sym_null] = STATE(1328), + [sym__empty_declaration] = STATE(52), + [sym_macro_type_specifier] = STATE(1069), + [aux_sym_translation_unit_repeat1] = STATE(52), + [aux_sym__declaration_specifiers_repeat1] = STATE(855), + [aux_sym_attributed_declarator_repeat1] = STATE(445), + [aux_sym_sized_type_specifier_repeat1] = STATE(1085), [ts_builtin_sym_end] = ACTIONS(5), [sym_identifier] = ACTIONS(7), [aux_sym_preproc_include_token1] = ACTIONS(9), @@ -15746,166 +16039,170 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___attribute__] = ACTIONS(33), [anon_sym___scanf] = ACTIONS(35), [anon_sym___printf] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym___cdecl] = ACTIONS(41), - [anon_sym___clrcall] = ACTIONS(41), - [anon_sym___stdcall] = ACTIONS(41), - [anon_sym___fastcall] = ACTIONS(41), - [anon_sym___thiscall] = ACTIONS(41), - [anon_sym___vectorcall] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [sym_primitive_type] = ACTIONS(51), - [anon_sym_enum] = ACTIONS(53), - [anon_sym_struct] = ACTIONS(55), - [anon_sym_union] = ACTIONS(57), - [anon_sym_if] = ACTIONS(59), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_case] = ACTIONS(63), - [anon_sym_default] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_do] = ACTIONS(69), - [anon_sym_for] = ACTIONS(71), - [anon_sym_return] = ACTIONS(73), - [anon_sym_break] = ACTIONS(75), - [anon_sym_continue] = ACTIONS(77), - [anon_sym_goto] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(83), - [anon_sym___alignof__] = ACTIONS(85), - [anon_sym___alignof] = ACTIONS(85), - [anon_sym__alignof] = ACTIONS(85), - [anon_sym_alignof] = ACTIONS(85), - [anon_sym__Alignof] = ACTIONS(85), - [anon_sym_offsetof] = ACTIONS(87), - [anon_sym__Generic] = ACTIONS(89), - [anon_sym_asm] = ACTIONS(91), - [anon_sym___asm__] = ACTIONS(91), - [sym_number_literal] = ACTIONS(93), - [anon_sym_L_SQUOTE] = ACTIONS(95), - [anon_sym_u_SQUOTE] = ACTIONS(95), - [anon_sym_U_SQUOTE] = ACTIONS(95), - [anon_sym_u8_SQUOTE] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(95), - [anon_sym_L_DQUOTE] = ACTIONS(97), - [anon_sym_u_DQUOTE] = ACTIONS(97), - [anon_sym_U_DQUOTE] = ACTIONS(97), - [anon_sym_u8_DQUOTE] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(97), - [sym_true] = ACTIONS(99), - [sym_false] = ACTIONS(99), - [anon_sym_NULL] = ACTIONS(101), - [anon_sym_nullptr] = ACTIONS(101), + [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(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), + [sym_primitive_type] = ACTIONS(53), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [anon_sym_if] = ACTIONS(61), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_case] = ACTIONS(65), + [anon_sym_default] = ACTIONS(67), + [anon_sym_while] = ACTIONS(69), + [anon_sym_do] = ACTIONS(71), + [anon_sym_for] = ACTIONS(73), + [anon_sym_return] = ACTIONS(75), + [anon_sym_break] = ACTIONS(77), + [anon_sym_continue] = ACTIONS(79), + [anon_sym_goto] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [sym_number_literal] = ACTIONS(95), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(101), + [sym_false] = ACTIONS(101), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, [2] = { - [sym_preproc_include] = STATE(15), - [sym_preproc_def] = STATE(15), - [sym_preproc_function_def] = STATE(15), - [sym_preproc_call] = STATE(15), - [sym_preproc_if] = STATE(15), - [sym_preproc_ifdef] = STATE(15), - [sym_preproc_else] = STATE(1998), - [sym_preproc_elif] = STATE(1998), - [sym_preproc_elifdef] = STATE(1998), - [sym_function_definition] = STATE(15), - [sym__old_style_function_definition] = STATE(137), - [sym_declaration] = STATE(15), - [sym_type_definition] = STATE(15), - [sym__declaration_modifiers] = STATE(861), - [sym__declaration_specifiers] = STATE(1490), - [sym_linkage_specification] = STATE(15), - [sym_attribute_specifier] = STATE(861), - [sym_attribute_declaration] = STATE(504), - [sym_ms_declspec_modifier] = STATE(861), - [sym_ms_call_modifier] = STATE(854), - [sym_compound_statement] = STATE(15), - [sym_storage_class_specifier] = STATE(861), - [sym_type_qualifier] = STATE(861), - [sym__type_specifier] = STATE(1119), - [sym_sized_type_specifier] = STATE(1106), - [sym_enum_specifier] = STATE(1106), - [sym_struct_specifier] = STATE(1106), - [sym_union_specifier] = STATE(1106), - [sym_attributed_statement] = STATE(15), - [sym_labeled_statement] = STATE(15), - [sym_expression_statement] = STATE(15), - [sym_if_statement] = STATE(15), - [sym_switch_statement] = STATE(15), - [sym_case_statement] = STATE(15), - [sym_while_statement] = STATE(15), - [sym_do_statement] = STATE(15), - [sym_for_statement] = STATE(15), - [sym_return_statement] = STATE(15), - [sym_break_statement] = STATE(15), - [sym_continue_statement] = STATE(15), - [sym_goto_statement] = STATE(15), - [sym_seh_try_statement] = STATE(15), - [sym_seh_leave_statement] = STATE(15), - [sym__expression] = STATE(1225), - [sym__expression_not_binary] = STATE(792), - [sym_comma_expression] = STATE(2038), - [sym_conditional_expression] = STATE(792), - [sym_assignment_expression] = STATE(792), - [sym_pointer_expression] = STATE(901), - [sym_unary_expression] = STATE(792), - [sym_binary_expression] = STATE(792), - [sym_update_expression] = STATE(792), - [sym_cast_expression] = STATE(792), - [sym_sizeof_expression] = STATE(792), - [sym_alignof_expression] = STATE(792), - [sym_offsetof_expression] = STATE(792), - [sym_generic_expression] = STATE(792), - [sym_subscript_expression] = STATE(901), - [sym_call_expression] = STATE(901), - [sym_gnu_asm_expression] = STATE(792), - [sym_field_expression] = STATE(901), - [sym_compound_literal_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(901), - [sym_char_literal] = STATE(792), - [sym_concatenated_string] = STATE(792), - [sym_string_literal] = STATE(675), - [sym_null] = STATE(792), - [sym__empty_declaration] = STATE(15), - [sym_macro_type_specifier] = STATE(1106), - [aux_sym_preproc_if_repeat1] = STATE(15), - [aux_sym__declaration_specifiers_repeat1] = STATE(861), - [aux_sym_attributed_declarator_repeat1] = STATE(463), - [aux_sym_sized_type_specifier_repeat1] = STATE(1113), - [sym_identifier] = ACTIONS(103), - [aux_sym_preproc_include_token1] = ACTIONS(105), - [aux_sym_preproc_def_token1] = ACTIONS(107), - [aux_sym_preproc_if_token1] = ACTIONS(109), - [aux_sym_preproc_if_token2] = ACTIONS(111), - [aux_sym_preproc_ifdef_token1] = ACTIONS(113), - [aux_sym_preproc_ifdef_token2] = ACTIONS(113), - [aux_sym_preproc_else_token1] = ACTIONS(115), - [aux_sym_preproc_elif_token1] = ACTIONS(117), - [aux_sym_preproc_elifdef_token1] = ACTIONS(119), - [aux_sym_preproc_elifdef_token2] = ACTIONS(119), - [sym_preproc_directive] = ACTIONS(121), + [sym_preproc_include] = STATE(11), + [sym_preproc_def] = STATE(11), + [sym_preproc_function_def] = STATE(11), + [sym_preproc_call] = STATE(11), + [sym_preproc_if] = STATE(11), + [sym_preproc_ifdef] = STATE(11), + [sym_preproc_else] = STATE(2203), + [sym_preproc_elif] = STATE(2203), + [sym_preproc_elifdef] = STATE(2203), + [sym_function_definition] = STATE(11), + [sym__old_style_function_definition] = STATE(135), + [sym_declaration] = STATE(11), + [sym_type_definition] = STATE(11), + [sym__declaration_modifiers] = STATE(855), + [sym__declaration_specifiers] = STATE(1530), + [sym_linkage_specification] = STATE(11), + [sym_attribute_specifier] = STATE(855), + [sym_attribute_declaration] = STATE(495), + [sym_ms_declspec_modifier] = STATE(855), + [sym_ms_call_modifier] = STATE(846), + [sym_compound_statement] = STATE(11), + [sym_storage_class_specifier] = STATE(855), + [sym_type_qualifier] = STATE(855), + [sym__type_specifier] = STATE(1124), + [sym_sized_type_specifier] = STATE(1069), + [sym_enum_specifier] = STATE(1069), + [sym_struct_specifier] = STATE(1069), + [sym_union_specifier] = STATE(1069), + [sym_attributed_statement] = STATE(11), + [sym_labeled_statement] = STATE(11), + [sym_expression_statement] = STATE(11), + [sym_if_statement] = STATE(11), + [sym_switch_statement] = STATE(11), + [sym_case_statement] = STATE(11), + [sym_while_statement] = STATE(11), + [sym_do_statement] = STATE(11), + [sym_for_statement] = STATE(11), + [sym_return_statement] = STATE(11), + [sym_break_statement] = STATE(11), + [sym_continue_statement] = STATE(11), + [sym_goto_statement] = STATE(11), + [sym_seh_try_statement] = STATE(11), + [sym_seh_leave_statement] = STATE(11), + [sym__expression] = STATE(1239), + [sym__expression_not_binary] = STATE(809), + [sym_comma_expression] = STATE(2249), + [sym_conditional_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_pointer_expression] = STATE(877), + [sym_unary_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_update_expression] = STATE(809), + [sym_cast_expression] = STATE(809), + [sym_sizeof_expression] = STATE(809), + [sym_alignof_expression] = STATE(809), + [sym_offsetof_expression] = STATE(809), + [sym_generic_expression] = STATE(809), + [sym_subscript_expression] = STATE(877), + [sym_call_expression] = STATE(877), + [sym_gnu_asm_expression] = STATE(809), + [sym_field_expression] = STATE(877), + [sym_compound_literal_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(877), + [sym_char_literal] = STATE(809), + [sym_concatenated_string] = STATE(809), + [sym_string_literal] = STATE(573), + [sym_null] = STATE(809), + [sym__empty_declaration] = STATE(11), + [sym_macro_type_specifier] = STATE(1069), + [aux_sym_preproc_if_repeat1] = STATE(11), + [aux_sym__declaration_specifiers_repeat1] = STATE(855), + [aux_sym_attributed_declarator_repeat1] = STATE(435), + [aux_sym_sized_type_specifier_repeat1] = STATE(1085), + [sym_identifier] = ACTIONS(105), + [aux_sym_preproc_include_token1] = ACTIONS(107), + [aux_sym_preproc_def_token1] = ACTIONS(109), + [aux_sym_preproc_if_token1] = ACTIONS(111), + [aux_sym_preproc_if_token2] = ACTIONS(113), + [aux_sym_preproc_ifdef_token1] = ACTIONS(115), + [aux_sym_preproc_ifdef_token2] = ACTIONS(115), + [aux_sym_preproc_else_token1] = ACTIONS(117), + [aux_sym_preproc_elif_token1] = ACTIONS(119), + [aux_sym_preproc_elifdef_token1] = ACTIONS(121), + [aux_sym_preproc_elifdef_token2] = ACTIONS(121), + [sym_preproc_directive] = ACTIONS(123), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -15913,470 +16210,122 @@ 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(123), - [anon_sym___extension__] = ACTIONS(125), - [anon_sym_typedef] = ACTIONS(127), - [anon_sym_extern] = ACTIONS(129), + [anon_sym_SEMI] = ACTIONS(125), + [anon_sym___extension__] = ACTIONS(127), + [anon_sym_typedef] = ACTIONS(129), + [anon_sym_extern] = ACTIONS(131), [anon_sym___attribute__] = ACTIONS(33), [anon_sym___scanf] = ACTIONS(35), [anon_sym___printf] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym___cdecl] = ACTIONS(41), - [anon_sym___clrcall] = ACTIONS(41), - [anon_sym___stdcall] = ACTIONS(41), - [anon_sym___fastcall] = ACTIONS(41), - [anon_sym___thiscall] = ACTIONS(41), - [anon_sym___vectorcall] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(131), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [sym_primitive_type] = ACTIONS(51), - [anon_sym_enum] = ACTIONS(53), - [anon_sym_struct] = ACTIONS(55), - [anon_sym_union] = ACTIONS(57), - [anon_sym_if] = ACTIONS(133), - [anon_sym_switch] = ACTIONS(135), - [anon_sym_case] = ACTIONS(137), - [anon_sym_default] = ACTIONS(139), - [anon_sym_while] = ACTIONS(141), - [anon_sym_do] = ACTIONS(143), - [anon_sym_for] = ACTIONS(145), - [anon_sym_return] = ACTIONS(147), - [anon_sym_break] = ACTIONS(149), - [anon_sym_continue] = ACTIONS(151), - [anon_sym_goto] = ACTIONS(153), - [anon_sym___try] = ACTIONS(155), - [anon_sym___leave] = ACTIONS(157), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(83), - [anon_sym___alignof__] = ACTIONS(85), - [anon_sym___alignof] = ACTIONS(85), - [anon_sym__alignof] = ACTIONS(85), - [anon_sym_alignof] = ACTIONS(85), - [anon_sym__Alignof] = ACTIONS(85), - [anon_sym_offsetof] = ACTIONS(87), - [anon_sym__Generic] = ACTIONS(89), - [anon_sym_asm] = ACTIONS(91), - [anon_sym___asm__] = ACTIONS(91), - [sym_number_literal] = ACTIONS(159), - [anon_sym_L_SQUOTE] = ACTIONS(95), - [anon_sym_u_SQUOTE] = ACTIONS(95), - [anon_sym_U_SQUOTE] = ACTIONS(95), - [anon_sym_u8_SQUOTE] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(95), - [anon_sym_L_DQUOTE] = ACTIONS(97), - [anon_sym_u_DQUOTE] = ACTIONS(97), - [anon_sym_U_DQUOTE] = ACTIONS(97), - [anon_sym_u8_DQUOTE] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(97), - [sym_true] = ACTIONS(161), - [sym_false] = ACTIONS(161), - [anon_sym_NULL] = ACTIONS(101), - [anon_sym_nullptr] = ACTIONS(101), + [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(133), + [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), + [sym_primitive_type] = ACTIONS(53), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [anon_sym_if] = ACTIONS(135), + [anon_sym_switch] = ACTIONS(137), + [anon_sym_case] = ACTIONS(139), + [anon_sym_default] = ACTIONS(141), + [anon_sym_while] = ACTIONS(143), + [anon_sym_do] = ACTIONS(145), + [anon_sym_for] = ACTIONS(147), + [anon_sym_return] = ACTIONS(149), + [anon_sym_break] = ACTIONS(151), + [anon_sym_continue] = ACTIONS(153), + [anon_sym_goto] = ACTIONS(155), + [anon_sym___try] = ACTIONS(157), + [anon_sym___leave] = ACTIONS(159), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [sym_number_literal] = ACTIONS(161), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(163), + [sym_false] = ACTIONS(163), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, [3] = { - [sym_preproc_include] = STATE(15), - [sym_preproc_def] = STATE(15), - [sym_preproc_function_def] = STATE(15), - [sym_preproc_call] = STATE(15), - [sym_preproc_if] = STATE(15), - [sym_preproc_ifdef] = STATE(15), - [sym_preproc_else] = STATE(2215), - [sym_preproc_elif] = STATE(2215), - [sym_preproc_elifdef] = STATE(2215), - [sym_function_definition] = STATE(15), - [sym__old_style_function_definition] = STATE(137), - [sym_declaration] = STATE(15), - [sym_type_definition] = STATE(15), - [sym__declaration_modifiers] = STATE(861), - [sym__declaration_specifiers] = STATE(1490), - [sym_linkage_specification] = STATE(15), - [sym_attribute_specifier] = STATE(861), - [sym_attribute_declaration] = STATE(504), - [sym_ms_declspec_modifier] = STATE(861), - [sym_ms_call_modifier] = STATE(854), - [sym_compound_statement] = STATE(15), - [sym_storage_class_specifier] = STATE(861), - [sym_type_qualifier] = STATE(861), - [sym__type_specifier] = STATE(1119), - [sym_sized_type_specifier] = STATE(1106), - [sym_enum_specifier] = STATE(1106), - [sym_struct_specifier] = STATE(1106), - [sym_union_specifier] = STATE(1106), - [sym_attributed_statement] = STATE(15), - [sym_labeled_statement] = STATE(15), - [sym_expression_statement] = STATE(15), - [sym_if_statement] = STATE(15), - [sym_switch_statement] = STATE(15), - [sym_case_statement] = STATE(15), - [sym_while_statement] = STATE(15), - [sym_do_statement] = STATE(15), - [sym_for_statement] = STATE(15), - [sym_return_statement] = STATE(15), - [sym_break_statement] = STATE(15), - [sym_continue_statement] = STATE(15), - [sym_goto_statement] = STATE(15), - [sym_seh_try_statement] = STATE(15), - [sym_seh_leave_statement] = STATE(15), - [sym__expression] = STATE(1225), - [sym__expression_not_binary] = STATE(792), - [sym_comma_expression] = STATE(2038), - [sym_conditional_expression] = STATE(792), - [sym_assignment_expression] = STATE(792), - [sym_pointer_expression] = STATE(901), - [sym_unary_expression] = STATE(792), - [sym_binary_expression] = STATE(792), - [sym_update_expression] = STATE(792), - [sym_cast_expression] = STATE(792), - [sym_sizeof_expression] = STATE(792), - [sym_alignof_expression] = STATE(792), - [sym_offsetof_expression] = STATE(792), - [sym_generic_expression] = STATE(792), - [sym_subscript_expression] = STATE(901), - [sym_call_expression] = STATE(901), - [sym_gnu_asm_expression] = STATE(792), - [sym_field_expression] = STATE(901), - [sym_compound_literal_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(901), - [sym_char_literal] = STATE(792), - [sym_concatenated_string] = STATE(792), - [sym_string_literal] = STATE(675), - [sym_null] = STATE(792), - [sym__empty_declaration] = STATE(15), - [sym_macro_type_specifier] = STATE(1106), - [aux_sym_preproc_if_repeat1] = STATE(15), - [aux_sym__declaration_specifiers_repeat1] = STATE(861), - [aux_sym_attributed_declarator_repeat1] = STATE(463), - [aux_sym_sized_type_specifier_repeat1] = STATE(1113), - [sym_identifier] = ACTIONS(103), - [aux_sym_preproc_include_token1] = ACTIONS(105), - [aux_sym_preproc_def_token1] = ACTIONS(107), - [aux_sym_preproc_if_token1] = ACTIONS(109), - [aux_sym_preproc_if_token2] = ACTIONS(163), - [aux_sym_preproc_ifdef_token1] = ACTIONS(113), - [aux_sym_preproc_ifdef_token2] = ACTIONS(113), - [aux_sym_preproc_else_token1] = ACTIONS(115), - [aux_sym_preproc_elif_token1] = ACTIONS(117), - [aux_sym_preproc_elifdef_token1] = ACTIONS(119), - [aux_sym_preproc_elifdef_token2] = ACTIONS(119), - [sym_preproc_directive] = ACTIONS(121), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(123), - [anon_sym___extension__] = ACTIONS(125), - [anon_sym_typedef] = ACTIONS(127), - [anon_sym_extern] = ACTIONS(129), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym___scanf] = ACTIONS(35), - [anon_sym___printf] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym___cdecl] = ACTIONS(41), - [anon_sym___clrcall] = ACTIONS(41), - [anon_sym___stdcall] = ACTIONS(41), - [anon_sym___fastcall] = ACTIONS(41), - [anon_sym___thiscall] = ACTIONS(41), - [anon_sym___vectorcall] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(131), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [sym_primitive_type] = ACTIONS(51), - [anon_sym_enum] = ACTIONS(53), - [anon_sym_struct] = ACTIONS(55), - [anon_sym_union] = ACTIONS(57), - [anon_sym_if] = ACTIONS(133), - [anon_sym_switch] = ACTIONS(135), - [anon_sym_case] = ACTIONS(137), - [anon_sym_default] = ACTIONS(139), - [anon_sym_while] = ACTIONS(141), - [anon_sym_do] = ACTIONS(143), - [anon_sym_for] = ACTIONS(145), - [anon_sym_return] = ACTIONS(147), - [anon_sym_break] = ACTIONS(149), - [anon_sym_continue] = ACTIONS(151), - [anon_sym_goto] = ACTIONS(153), - [anon_sym___try] = ACTIONS(155), - [anon_sym___leave] = ACTIONS(157), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(83), - [anon_sym___alignof__] = ACTIONS(85), - [anon_sym___alignof] = ACTIONS(85), - [anon_sym__alignof] = ACTIONS(85), - [anon_sym_alignof] = ACTIONS(85), - [anon_sym__Alignof] = ACTIONS(85), - [anon_sym_offsetof] = ACTIONS(87), - [anon_sym__Generic] = ACTIONS(89), - [anon_sym_asm] = ACTIONS(91), - [anon_sym___asm__] = ACTIONS(91), - [sym_number_literal] = ACTIONS(159), - [anon_sym_L_SQUOTE] = ACTIONS(95), - [anon_sym_u_SQUOTE] = ACTIONS(95), - [anon_sym_U_SQUOTE] = ACTIONS(95), - [anon_sym_u8_SQUOTE] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(95), - [anon_sym_L_DQUOTE] = ACTIONS(97), - [anon_sym_u_DQUOTE] = ACTIONS(97), - [anon_sym_U_DQUOTE] = ACTIONS(97), - [anon_sym_u8_DQUOTE] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(97), - [sym_true] = ACTIONS(161), - [sym_false] = ACTIONS(161), - [anon_sym_NULL] = ACTIONS(101), - [anon_sym_nullptr] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - }, - [4] = { - [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(2130), - [sym_preproc_elif] = STATE(2130), - [sym_preproc_elifdef] = STATE(2130), - [sym_function_definition] = STATE(3), - [sym__old_style_function_definition] = STATE(137), - [sym_declaration] = STATE(3), - [sym_type_definition] = STATE(3), - [sym__declaration_modifiers] = STATE(861), - [sym__declaration_specifiers] = STATE(1490), - [sym_linkage_specification] = STATE(3), - [sym_attribute_specifier] = STATE(861), - [sym_attribute_declaration] = STATE(504), - [sym_ms_declspec_modifier] = STATE(861), - [sym_ms_call_modifier] = STATE(854), - [sym_compound_statement] = STATE(3), - [sym_storage_class_specifier] = STATE(861), - [sym_type_qualifier] = STATE(861), - [sym__type_specifier] = STATE(1119), - [sym_sized_type_specifier] = STATE(1106), - [sym_enum_specifier] = STATE(1106), - [sym_struct_specifier] = STATE(1106), - [sym_union_specifier] = STATE(1106), - [sym_attributed_statement] = STATE(3), - [sym_labeled_statement] = STATE(3), - [sym_expression_statement] = STATE(3), - [sym_if_statement] = STATE(3), - [sym_switch_statement] = STATE(3), - [sym_case_statement] = STATE(3), - [sym_while_statement] = STATE(3), - [sym_do_statement] = STATE(3), - [sym_for_statement] = STATE(3), - [sym_return_statement] = STATE(3), - [sym_break_statement] = STATE(3), - [sym_continue_statement] = STATE(3), - [sym_goto_statement] = STATE(3), - [sym_seh_try_statement] = STATE(3), - [sym_seh_leave_statement] = STATE(3), - [sym__expression] = STATE(1225), - [sym__expression_not_binary] = STATE(792), - [sym_comma_expression] = STATE(2038), - [sym_conditional_expression] = STATE(792), - [sym_assignment_expression] = STATE(792), - [sym_pointer_expression] = STATE(901), - [sym_unary_expression] = STATE(792), - [sym_binary_expression] = STATE(792), - [sym_update_expression] = STATE(792), - [sym_cast_expression] = STATE(792), - [sym_sizeof_expression] = STATE(792), - [sym_alignof_expression] = STATE(792), - [sym_offsetof_expression] = STATE(792), - [sym_generic_expression] = STATE(792), - [sym_subscript_expression] = STATE(901), - [sym_call_expression] = STATE(901), - [sym_gnu_asm_expression] = STATE(792), - [sym_field_expression] = STATE(901), - [sym_compound_literal_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(901), - [sym_char_literal] = STATE(792), - [sym_concatenated_string] = STATE(792), - [sym_string_literal] = STATE(675), - [sym_null] = STATE(792), - [sym__empty_declaration] = STATE(3), - [sym_macro_type_specifier] = STATE(1106), - [aux_sym_preproc_if_repeat1] = STATE(3), - [aux_sym__declaration_specifiers_repeat1] = STATE(861), - [aux_sym_attributed_declarator_repeat1] = STATE(463), - [aux_sym_sized_type_specifier_repeat1] = STATE(1113), - [sym_identifier] = ACTIONS(103), - [aux_sym_preproc_include_token1] = ACTIONS(105), - [aux_sym_preproc_def_token1] = ACTIONS(107), - [aux_sym_preproc_if_token1] = ACTIONS(109), - [aux_sym_preproc_if_token2] = ACTIONS(165), - [aux_sym_preproc_ifdef_token1] = ACTIONS(113), - [aux_sym_preproc_ifdef_token2] = ACTIONS(113), - [aux_sym_preproc_else_token1] = ACTIONS(115), - [aux_sym_preproc_elif_token1] = ACTIONS(117), - [aux_sym_preproc_elifdef_token1] = ACTIONS(119), - [aux_sym_preproc_elifdef_token2] = ACTIONS(119), - [sym_preproc_directive] = ACTIONS(121), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(123), - [anon_sym___extension__] = ACTIONS(125), - [anon_sym_typedef] = ACTIONS(127), - [anon_sym_extern] = ACTIONS(129), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym___scanf] = ACTIONS(35), - [anon_sym___printf] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym___cdecl] = ACTIONS(41), - [anon_sym___clrcall] = ACTIONS(41), - [anon_sym___stdcall] = ACTIONS(41), - [anon_sym___fastcall] = ACTIONS(41), - [anon_sym___thiscall] = ACTIONS(41), - [anon_sym___vectorcall] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(131), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [sym_primitive_type] = ACTIONS(51), - [anon_sym_enum] = ACTIONS(53), - [anon_sym_struct] = ACTIONS(55), - [anon_sym_union] = ACTIONS(57), - [anon_sym_if] = ACTIONS(133), - [anon_sym_switch] = ACTIONS(135), - [anon_sym_case] = ACTIONS(137), - [anon_sym_default] = ACTIONS(139), - [anon_sym_while] = ACTIONS(141), - [anon_sym_do] = ACTIONS(143), - [anon_sym_for] = ACTIONS(145), - [anon_sym_return] = ACTIONS(147), - [anon_sym_break] = ACTIONS(149), - [anon_sym_continue] = ACTIONS(151), - [anon_sym_goto] = ACTIONS(153), - [anon_sym___try] = ACTIONS(155), - [anon_sym___leave] = ACTIONS(157), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(83), - [anon_sym___alignof__] = ACTIONS(85), - [anon_sym___alignof] = ACTIONS(85), - [anon_sym__alignof] = ACTIONS(85), - [anon_sym_alignof] = ACTIONS(85), - [anon_sym__Alignof] = ACTIONS(85), - [anon_sym_offsetof] = ACTIONS(87), - [anon_sym__Generic] = ACTIONS(89), - [anon_sym_asm] = ACTIONS(91), - [anon_sym___asm__] = ACTIONS(91), - [sym_number_literal] = ACTIONS(159), - [anon_sym_L_SQUOTE] = ACTIONS(95), - [anon_sym_u_SQUOTE] = ACTIONS(95), - [anon_sym_U_SQUOTE] = ACTIONS(95), - [anon_sym_u8_SQUOTE] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(95), - [anon_sym_L_DQUOTE] = ACTIONS(97), - [anon_sym_u_DQUOTE] = ACTIONS(97), - [anon_sym_U_DQUOTE] = ACTIONS(97), - [anon_sym_u8_DQUOTE] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(97), - [sym_true] = ACTIONS(161), - [sym_false] = ACTIONS(161), - [anon_sym_NULL] = ACTIONS(101), - [anon_sym_nullptr] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - }, - [5] = { [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(2083), - [sym_preproc_elif] = STATE(2083), - [sym_preproc_elifdef] = STATE(2083), + [sym_preproc_else] = STATE(2205), + [sym_preproc_elif] = STATE(2205), + [sym_preproc_elifdef] = STATE(2205), [sym_function_definition] = STATE(6), - [sym__old_style_function_definition] = STATE(137), + [sym__old_style_function_definition] = STATE(135), [sym_declaration] = STATE(6), [sym_type_definition] = STATE(6), - [sym__declaration_modifiers] = STATE(861), - [sym__declaration_specifiers] = STATE(1490), + [sym__declaration_modifiers] = STATE(855), + [sym__declaration_specifiers] = STATE(1530), [sym_linkage_specification] = STATE(6), - [sym_attribute_specifier] = STATE(861), - [sym_attribute_declaration] = STATE(504), - [sym_ms_declspec_modifier] = STATE(861), - [sym_ms_call_modifier] = STATE(854), + [sym_attribute_specifier] = STATE(855), + [sym_attribute_declaration] = STATE(495), + [sym_ms_declspec_modifier] = STATE(855), + [sym_ms_call_modifier] = STATE(846), [sym_compound_statement] = STATE(6), - [sym_storage_class_specifier] = STATE(861), - [sym_type_qualifier] = STATE(861), - [sym__type_specifier] = STATE(1119), - [sym_sized_type_specifier] = STATE(1106), - [sym_enum_specifier] = STATE(1106), - [sym_struct_specifier] = STATE(1106), - [sym_union_specifier] = STATE(1106), + [sym_storage_class_specifier] = STATE(855), + [sym_type_qualifier] = STATE(855), + [sym__type_specifier] = STATE(1124), + [sym_sized_type_specifier] = STATE(1069), + [sym_enum_specifier] = STATE(1069), + [sym_struct_specifier] = STATE(1069), + [sym_union_specifier] = STATE(1069), [sym_attributed_statement] = STATE(6), [sym_labeled_statement] = STATE(6), [sym_expression_statement] = STATE(6), @@ -16392,224 +16341,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(6), [sym_seh_try_statement] = STATE(6), [sym_seh_leave_statement] = STATE(6), - [sym__expression] = STATE(1225), - [sym__expression_not_binary] = STATE(792), - [sym_comma_expression] = STATE(2038), - [sym_conditional_expression] = STATE(792), - [sym_assignment_expression] = STATE(792), - [sym_pointer_expression] = STATE(901), - [sym_unary_expression] = STATE(792), - [sym_binary_expression] = STATE(792), - [sym_update_expression] = STATE(792), - [sym_cast_expression] = STATE(792), - [sym_sizeof_expression] = STATE(792), - [sym_alignof_expression] = STATE(792), - [sym_offsetof_expression] = STATE(792), - [sym_generic_expression] = STATE(792), - [sym_subscript_expression] = STATE(901), - [sym_call_expression] = STATE(901), - [sym_gnu_asm_expression] = STATE(792), - [sym_field_expression] = STATE(901), - [sym_compound_literal_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(901), - [sym_char_literal] = STATE(792), - [sym_concatenated_string] = STATE(792), - [sym_string_literal] = STATE(675), - [sym_null] = STATE(792), + [sym__expression] = STATE(1239), + [sym__expression_not_binary] = STATE(809), + [sym_comma_expression] = STATE(2249), + [sym_conditional_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_pointer_expression] = STATE(877), + [sym_unary_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_update_expression] = STATE(809), + [sym_cast_expression] = STATE(809), + [sym_sizeof_expression] = STATE(809), + [sym_alignof_expression] = STATE(809), + [sym_offsetof_expression] = STATE(809), + [sym_generic_expression] = STATE(809), + [sym_subscript_expression] = STATE(877), + [sym_call_expression] = STATE(877), + [sym_gnu_asm_expression] = STATE(809), + [sym_field_expression] = STATE(877), + [sym_compound_literal_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(877), + [sym_char_literal] = STATE(809), + [sym_concatenated_string] = STATE(809), + [sym_string_literal] = STATE(573), + [sym_null] = STATE(809), [sym__empty_declaration] = STATE(6), - [sym_macro_type_specifier] = STATE(1106), + [sym_macro_type_specifier] = STATE(1069), [aux_sym_preproc_if_repeat1] = STATE(6), - [aux_sym__declaration_specifiers_repeat1] = STATE(861), - [aux_sym_attributed_declarator_repeat1] = STATE(463), - [aux_sym_sized_type_specifier_repeat1] = STATE(1113), - [sym_identifier] = ACTIONS(103), - [aux_sym_preproc_include_token1] = ACTIONS(105), - [aux_sym_preproc_def_token1] = ACTIONS(107), - [aux_sym_preproc_if_token1] = ACTIONS(109), - [aux_sym_preproc_if_token2] = ACTIONS(167), - [aux_sym_preproc_ifdef_token1] = ACTIONS(113), - [aux_sym_preproc_ifdef_token2] = ACTIONS(113), - [aux_sym_preproc_else_token1] = ACTIONS(115), - [aux_sym_preproc_elif_token1] = ACTIONS(117), - [aux_sym_preproc_elifdef_token1] = ACTIONS(119), - [aux_sym_preproc_elifdef_token2] = ACTIONS(119), - [sym_preproc_directive] = ACTIONS(121), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(123), - [anon_sym___extension__] = ACTIONS(125), - [anon_sym_typedef] = ACTIONS(127), - [anon_sym_extern] = ACTIONS(129), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym___scanf] = ACTIONS(35), - [anon_sym___printf] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym___cdecl] = ACTIONS(41), - [anon_sym___clrcall] = ACTIONS(41), - [anon_sym___stdcall] = ACTIONS(41), - [anon_sym___fastcall] = ACTIONS(41), - [anon_sym___thiscall] = ACTIONS(41), - [anon_sym___vectorcall] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(131), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [sym_primitive_type] = ACTIONS(51), - [anon_sym_enum] = ACTIONS(53), - [anon_sym_struct] = ACTIONS(55), - [anon_sym_union] = ACTIONS(57), - [anon_sym_if] = ACTIONS(133), - [anon_sym_switch] = ACTIONS(135), - [anon_sym_case] = ACTIONS(137), - [anon_sym_default] = ACTIONS(139), - [anon_sym_while] = ACTIONS(141), - [anon_sym_do] = ACTIONS(143), - [anon_sym_for] = ACTIONS(145), - [anon_sym_return] = ACTIONS(147), - [anon_sym_break] = ACTIONS(149), - [anon_sym_continue] = ACTIONS(151), - [anon_sym_goto] = ACTIONS(153), - [anon_sym___try] = ACTIONS(155), - [anon_sym___leave] = ACTIONS(157), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(83), - [anon_sym___alignof__] = ACTIONS(85), - [anon_sym___alignof] = ACTIONS(85), - [anon_sym__alignof] = ACTIONS(85), - [anon_sym_alignof] = ACTIONS(85), - [anon_sym__Alignof] = ACTIONS(85), - [anon_sym_offsetof] = ACTIONS(87), - [anon_sym__Generic] = ACTIONS(89), - [anon_sym_asm] = ACTIONS(91), - [anon_sym___asm__] = ACTIONS(91), - [sym_number_literal] = ACTIONS(159), - [anon_sym_L_SQUOTE] = ACTIONS(95), - [anon_sym_u_SQUOTE] = ACTIONS(95), - [anon_sym_U_SQUOTE] = ACTIONS(95), - [anon_sym_u8_SQUOTE] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(95), - [anon_sym_L_DQUOTE] = ACTIONS(97), - [anon_sym_u_DQUOTE] = ACTIONS(97), - [anon_sym_U_DQUOTE] = ACTIONS(97), - [anon_sym_u8_DQUOTE] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(97), - [sym_true] = ACTIONS(161), - [sym_false] = ACTIONS(161), - [anon_sym_NULL] = ACTIONS(101), - [anon_sym_nullptr] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - }, - [6] = { - [sym_preproc_include] = STATE(15), - [sym_preproc_def] = STATE(15), - [sym_preproc_function_def] = STATE(15), - [sym_preproc_call] = STATE(15), - [sym_preproc_if] = STATE(15), - [sym_preproc_ifdef] = STATE(15), - [sym_preproc_else] = STATE(2071), - [sym_preproc_elif] = STATE(2071), - [sym_preproc_elifdef] = STATE(2071), - [sym_function_definition] = STATE(15), - [sym__old_style_function_definition] = STATE(137), - [sym_declaration] = STATE(15), - [sym_type_definition] = STATE(15), - [sym__declaration_modifiers] = STATE(861), - [sym__declaration_specifiers] = STATE(1490), - [sym_linkage_specification] = STATE(15), - [sym_attribute_specifier] = STATE(861), - [sym_attribute_declaration] = STATE(504), - [sym_ms_declspec_modifier] = STATE(861), - [sym_ms_call_modifier] = STATE(854), - [sym_compound_statement] = STATE(15), - [sym_storage_class_specifier] = STATE(861), - [sym_type_qualifier] = STATE(861), - [sym__type_specifier] = STATE(1119), - [sym_sized_type_specifier] = STATE(1106), - [sym_enum_specifier] = STATE(1106), - [sym_struct_specifier] = STATE(1106), - [sym_union_specifier] = STATE(1106), - [sym_attributed_statement] = STATE(15), - [sym_labeled_statement] = STATE(15), - [sym_expression_statement] = STATE(15), - [sym_if_statement] = STATE(15), - [sym_switch_statement] = STATE(15), - [sym_case_statement] = STATE(15), - [sym_while_statement] = STATE(15), - [sym_do_statement] = STATE(15), - [sym_for_statement] = STATE(15), - [sym_return_statement] = STATE(15), - [sym_break_statement] = STATE(15), - [sym_continue_statement] = STATE(15), - [sym_goto_statement] = STATE(15), - [sym_seh_try_statement] = STATE(15), - [sym_seh_leave_statement] = STATE(15), - [sym__expression] = STATE(1225), - [sym__expression_not_binary] = STATE(792), - [sym_comma_expression] = STATE(2038), - [sym_conditional_expression] = STATE(792), - [sym_assignment_expression] = STATE(792), - [sym_pointer_expression] = STATE(901), - [sym_unary_expression] = STATE(792), - [sym_binary_expression] = STATE(792), - [sym_update_expression] = STATE(792), - [sym_cast_expression] = STATE(792), - [sym_sizeof_expression] = STATE(792), - [sym_alignof_expression] = STATE(792), - [sym_offsetof_expression] = STATE(792), - [sym_generic_expression] = STATE(792), - [sym_subscript_expression] = STATE(901), - [sym_call_expression] = STATE(901), - [sym_gnu_asm_expression] = STATE(792), - [sym_field_expression] = STATE(901), - [sym_compound_literal_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(901), - [sym_char_literal] = STATE(792), - [sym_concatenated_string] = STATE(792), - [sym_string_literal] = STATE(675), - [sym_null] = STATE(792), - [sym__empty_declaration] = STATE(15), - [sym_macro_type_specifier] = STATE(1106), - [aux_sym_preproc_if_repeat1] = STATE(15), - [aux_sym__declaration_specifiers_repeat1] = STATE(861), - [aux_sym_attributed_declarator_repeat1] = STATE(463), - [aux_sym_sized_type_specifier_repeat1] = STATE(1113), - [sym_identifier] = ACTIONS(103), - [aux_sym_preproc_include_token1] = ACTIONS(105), - [aux_sym_preproc_def_token1] = ACTIONS(107), - [aux_sym_preproc_if_token1] = ACTIONS(109), - [aux_sym_preproc_if_token2] = ACTIONS(169), - [aux_sym_preproc_ifdef_token1] = ACTIONS(113), - [aux_sym_preproc_ifdef_token2] = ACTIONS(113), - [aux_sym_preproc_else_token1] = ACTIONS(115), - [aux_sym_preproc_elif_token1] = ACTIONS(117), - [aux_sym_preproc_elifdef_token1] = ACTIONS(119), - [aux_sym_preproc_elifdef_token2] = ACTIONS(119), - [sym_preproc_directive] = ACTIONS(121), + [aux_sym__declaration_specifiers_repeat1] = STATE(855), + [aux_sym_attributed_declarator_repeat1] = STATE(435), + [aux_sym_sized_type_specifier_repeat1] = STATE(1085), + [sym_identifier] = ACTIONS(105), + [aux_sym_preproc_include_token1] = ACTIONS(107), + [aux_sym_preproc_def_token1] = ACTIONS(109), + [aux_sym_preproc_if_token1] = ACTIONS(111), + [aux_sym_preproc_if_token2] = ACTIONS(165), + [aux_sym_preproc_ifdef_token1] = ACTIONS(115), + [aux_sym_preproc_ifdef_token2] = ACTIONS(115), + [aux_sym_preproc_else_token1] = ACTIONS(117), + [aux_sym_preproc_elif_token1] = ACTIONS(119), + [aux_sym_preproc_elifdef_token1] = ACTIONS(121), + [aux_sym_preproc_elifdef_token2] = ACTIONS(121), + [sym_preproc_directive] = ACTIONS(123), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -16617,118 +16390,122 @@ 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(123), - [anon_sym___extension__] = ACTIONS(125), - [anon_sym_typedef] = ACTIONS(127), - [anon_sym_extern] = ACTIONS(129), + [anon_sym_SEMI] = ACTIONS(125), + [anon_sym___extension__] = ACTIONS(127), + [anon_sym_typedef] = ACTIONS(129), + [anon_sym_extern] = ACTIONS(131), [anon_sym___attribute__] = ACTIONS(33), [anon_sym___scanf] = ACTIONS(35), [anon_sym___printf] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym___cdecl] = ACTIONS(41), - [anon_sym___clrcall] = ACTIONS(41), - [anon_sym___stdcall] = ACTIONS(41), - [anon_sym___fastcall] = ACTIONS(41), - [anon_sym___thiscall] = ACTIONS(41), - [anon_sym___vectorcall] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(131), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [sym_primitive_type] = ACTIONS(51), - [anon_sym_enum] = ACTIONS(53), - [anon_sym_struct] = ACTIONS(55), - [anon_sym_union] = ACTIONS(57), - [anon_sym_if] = ACTIONS(133), - [anon_sym_switch] = ACTIONS(135), - [anon_sym_case] = ACTIONS(137), - [anon_sym_default] = ACTIONS(139), - [anon_sym_while] = ACTIONS(141), - [anon_sym_do] = ACTIONS(143), - [anon_sym_for] = ACTIONS(145), - [anon_sym_return] = ACTIONS(147), - [anon_sym_break] = ACTIONS(149), - [anon_sym_continue] = ACTIONS(151), - [anon_sym_goto] = ACTIONS(153), - [anon_sym___try] = ACTIONS(155), - [anon_sym___leave] = ACTIONS(157), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(83), - [anon_sym___alignof__] = ACTIONS(85), - [anon_sym___alignof] = ACTIONS(85), - [anon_sym__alignof] = ACTIONS(85), - [anon_sym_alignof] = ACTIONS(85), - [anon_sym__Alignof] = ACTIONS(85), - [anon_sym_offsetof] = ACTIONS(87), - [anon_sym__Generic] = ACTIONS(89), - [anon_sym_asm] = ACTIONS(91), - [anon_sym___asm__] = ACTIONS(91), - [sym_number_literal] = ACTIONS(159), - [anon_sym_L_SQUOTE] = ACTIONS(95), - [anon_sym_u_SQUOTE] = ACTIONS(95), - [anon_sym_U_SQUOTE] = ACTIONS(95), - [anon_sym_u8_SQUOTE] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(95), - [anon_sym_L_DQUOTE] = ACTIONS(97), - [anon_sym_u_DQUOTE] = ACTIONS(97), - [anon_sym_U_DQUOTE] = ACTIONS(97), - [anon_sym_u8_DQUOTE] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(97), - [sym_true] = ACTIONS(161), - [sym_false] = ACTIONS(161), - [anon_sym_NULL] = ACTIONS(101), - [anon_sym_nullptr] = ACTIONS(101), + [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(133), + [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), + [sym_primitive_type] = ACTIONS(53), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [anon_sym_if] = ACTIONS(135), + [anon_sym_switch] = ACTIONS(137), + [anon_sym_case] = ACTIONS(139), + [anon_sym_default] = ACTIONS(141), + [anon_sym_while] = ACTIONS(143), + [anon_sym_do] = ACTIONS(145), + [anon_sym_for] = ACTIONS(147), + [anon_sym_return] = ACTIONS(149), + [anon_sym_break] = ACTIONS(151), + [anon_sym_continue] = ACTIONS(153), + [anon_sym_goto] = ACTIONS(155), + [anon_sym___try] = ACTIONS(157), + [anon_sym___leave] = ACTIONS(159), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [sym_number_literal] = ACTIONS(161), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(163), + [sym_false] = ACTIONS(163), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [7] = { + [4] = { [sym_preproc_include] = STATE(8), [sym_preproc_def] = STATE(8), [sym_preproc_function_def] = STATE(8), [sym_preproc_call] = STATE(8), [sym_preproc_if] = STATE(8), [sym_preproc_ifdef] = STATE(8), - [sym_preproc_else] = STATE(2032), - [sym_preproc_elif] = STATE(2032), - [sym_preproc_elifdef] = STATE(2032), + [sym_preproc_else] = STATE(2000), + [sym_preproc_elif] = STATE(2000), + [sym_preproc_elifdef] = STATE(2000), [sym_function_definition] = STATE(8), - [sym__old_style_function_definition] = STATE(137), + [sym__old_style_function_definition] = STATE(135), [sym_declaration] = STATE(8), [sym_type_definition] = STATE(8), - [sym__declaration_modifiers] = STATE(861), - [sym__declaration_specifiers] = STATE(1490), + [sym__declaration_modifiers] = STATE(855), + [sym__declaration_specifiers] = STATE(1530), [sym_linkage_specification] = STATE(8), - [sym_attribute_specifier] = STATE(861), - [sym_attribute_declaration] = STATE(504), - [sym_ms_declspec_modifier] = STATE(861), - [sym_ms_call_modifier] = STATE(854), + [sym_attribute_specifier] = STATE(855), + [sym_attribute_declaration] = STATE(495), + [sym_ms_declspec_modifier] = STATE(855), + [sym_ms_call_modifier] = STATE(846), [sym_compound_statement] = STATE(8), - [sym_storage_class_specifier] = STATE(861), - [sym_type_qualifier] = STATE(861), - [sym__type_specifier] = STATE(1119), - [sym_sized_type_specifier] = STATE(1106), - [sym_enum_specifier] = STATE(1106), - [sym_struct_specifier] = STATE(1106), - [sym_union_specifier] = STATE(1106), + [sym_storage_class_specifier] = STATE(855), + [sym_type_qualifier] = STATE(855), + [sym__type_specifier] = STATE(1124), + [sym_sized_type_specifier] = STATE(1069), + [sym_enum_specifier] = STATE(1069), + [sym_struct_specifier] = STATE(1069), + [sym_union_specifier] = STATE(1069), [sym_attributed_statement] = STATE(8), [sym_labeled_statement] = STATE(8), [sym_expression_statement] = STATE(8), @@ -16744,48 +16521,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(8), [sym_seh_try_statement] = STATE(8), [sym_seh_leave_statement] = STATE(8), - [sym__expression] = STATE(1225), - [sym__expression_not_binary] = STATE(792), - [sym_comma_expression] = STATE(2038), - [sym_conditional_expression] = STATE(792), - [sym_assignment_expression] = STATE(792), - [sym_pointer_expression] = STATE(901), - [sym_unary_expression] = STATE(792), - [sym_binary_expression] = STATE(792), - [sym_update_expression] = STATE(792), - [sym_cast_expression] = STATE(792), - [sym_sizeof_expression] = STATE(792), - [sym_alignof_expression] = STATE(792), - [sym_offsetof_expression] = STATE(792), - [sym_generic_expression] = STATE(792), - [sym_subscript_expression] = STATE(901), - [sym_call_expression] = STATE(901), - [sym_gnu_asm_expression] = STATE(792), - [sym_field_expression] = STATE(901), - [sym_compound_literal_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(901), - [sym_char_literal] = STATE(792), - [sym_concatenated_string] = STATE(792), - [sym_string_literal] = STATE(675), - [sym_null] = STATE(792), + [sym__expression] = STATE(1239), + [sym__expression_not_binary] = STATE(809), + [sym_comma_expression] = STATE(2249), + [sym_conditional_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_pointer_expression] = STATE(877), + [sym_unary_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_update_expression] = STATE(809), + [sym_cast_expression] = STATE(809), + [sym_sizeof_expression] = STATE(809), + [sym_alignof_expression] = STATE(809), + [sym_offsetof_expression] = STATE(809), + [sym_generic_expression] = STATE(809), + [sym_subscript_expression] = STATE(877), + [sym_call_expression] = STATE(877), + [sym_gnu_asm_expression] = STATE(809), + [sym_field_expression] = STATE(877), + [sym_compound_literal_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(877), + [sym_char_literal] = STATE(809), + [sym_concatenated_string] = STATE(809), + [sym_string_literal] = STATE(573), + [sym_null] = STATE(809), [sym__empty_declaration] = STATE(8), - [sym_macro_type_specifier] = STATE(1106), + [sym_macro_type_specifier] = STATE(1069), [aux_sym_preproc_if_repeat1] = STATE(8), - [aux_sym__declaration_specifiers_repeat1] = STATE(861), - [aux_sym_attributed_declarator_repeat1] = STATE(463), - [aux_sym_sized_type_specifier_repeat1] = STATE(1113), - [sym_identifier] = ACTIONS(103), - [aux_sym_preproc_include_token1] = ACTIONS(105), - [aux_sym_preproc_def_token1] = ACTIONS(107), - [aux_sym_preproc_if_token1] = ACTIONS(109), - [aux_sym_preproc_if_token2] = ACTIONS(171), - [aux_sym_preproc_ifdef_token1] = ACTIONS(113), - [aux_sym_preproc_ifdef_token2] = ACTIONS(113), - [aux_sym_preproc_else_token1] = ACTIONS(115), - [aux_sym_preproc_elif_token1] = ACTIONS(117), - [aux_sym_preproc_elifdef_token1] = ACTIONS(119), - [aux_sym_preproc_elifdef_token2] = ACTIONS(119), - [sym_preproc_directive] = ACTIONS(121), + [aux_sym__declaration_specifiers_repeat1] = STATE(855), + [aux_sym_attributed_declarator_repeat1] = STATE(435), + [aux_sym_sized_type_specifier_repeat1] = STATE(1085), + [sym_identifier] = ACTIONS(105), + [aux_sym_preproc_include_token1] = ACTIONS(107), + [aux_sym_preproc_def_token1] = ACTIONS(109), + [aux_sym_preproc_if_token1] = ACTIONS(111), + [aux_sym_preproc_if_token2] = ACTIONS(167), + [aux_sym_preproc_ifdef_token1] = ACTIONS(115), + [aux_sym_preproc_ifdef_token2] = ACTIONS(115), + [aux_sym_preproc_else_token1] = ACTIONS(117), + [aux_sym_preproc_elif_token1] = ACTIONS(119), + [aux_sym_preproc_elifdef_token1] = ACTIONS(121), + [aux_sym_preproc_elifdef_token2] = ACTIONS(121), + [sym_preproc_directive] = ACTIONS(123), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -16793,175 +16570,179 @@ 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(123), - [anon_sym___extension__] = ACTIONS(125), - [anon_sym_typedef] = ACTIONS(127), - [anon_sym_extern] = ACTIONS(129), + [anon_sym_SEMI] = ACTIONS(125), + [anon_sym___extension__] = ACTIONS(127), + [anon_sym_typedef] = ACTIONS(129), + [anon_sym_extern] = ACTIONS(131), [anon_sym___attribute__] = ACTIONS(33), [anon_sym___scanf] = ACTIONS(35), [anon_sym___printf] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym___cdecl] = ACTIONS(41), - [anon_sym___clrcall] = ACTIONS(41), - [anon_sym___stdcall] = ACTIONS(41), - [anon_sym___fastcall] = ACTIONS(41), - [anon_sym___thiscall] = ACTIONS(41), - [anon_sym___vectorcall] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(131), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [sym_primitive_type] = ACTIONS(51), - [anon_sym_enum] = ACTIONS(53), - [anon_sym_struct] = ACTIONS(55), - [anon_sym_union] = ACTIONS(57), - [anon_sym_if] = ACTIONS(133), - [anon_sym_switch] = ACTIONS(135), - [anon_sym_case] = ACTIONS(137), - [anon_sym_default] = ACTIONS(139), - [anon_sym_while] = ACTIONS(141), - [anon_sym_do] = ACTIONS(143), - [anon_sym_for] = ACTIONS(145), - [anon_sym_return] = ACTIONS(147), - [anon_sym_break] = ACTIONS(149), - [anon_sym_continue] = ACTIONS(151), - [anon_sym_goto] = ACTIONS(153), - [anon_sym___try] = ACTIONS(155), - [anon_sym___leave] = ACTIONS(157), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(83), - [anon_sym___alignof__] = ACTIONS(85), - [anon_sym___alignof] = ACTIONS(85), - [anon_sym__alignof] = ACTIONS(85), - [anon_sym_alignof] = ACTIONS(85), - [anon_sym__Alignof] = ACTIONS(85), - [anon_sym_offsetof] = ACTIONS(87), - [anon_sym__Generic] = ACTIONS(89), - [anon_sym_asm] = ACTIONS(91), - [anon_sym___asm__] = ACTIONS(91), - [sym_number_literal] = ACTIONS(159), - [anon_sym_L_SQUOTE] = ACTIONS(95), - [anon_sym_u_SQUOTE] = ACTIONS(95), - [anon_sym_U_SQUOTE] = ACTIONS(95), - [anon_sym_u8_SQUOTE] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(95), - [anon_sym_L_DQUOTE] = ACTIONS(97), - [anon_sym_u_DQUOTE] = ACTIONS(97), - [anon_sym_U_DQUOTE] = ACTIONS(97), - [anon_sym_u8_DQUOTE] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(97), - [sym_true] = ACTIONS(161), - [sym_false] = ACTIONS(161), - [anon_sym_NULL] = ACTIONS(101), - [anon_sym_nullptr] = ACTIONS(101), + [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(133), + [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), + [sym_primitive_type] = ACTIONS(53), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [anon_sym_if] = ACTIONS(135), + [anon_sym_switch] = ACTIONS(137), + [anon_sym_case] = ACTIONS(139), + [anon_sym_default] = ACTIONS(141), + [anon_sym_while] = ACTIONS(143), + [anon_sym_do] = ACTIONS(145), + [anon_sym_for] = ACTIONS(147), + [anon_sym_return] = ACTIONS(149), + [anon_sym_break] = ACTIONS(151), + [anon_sym_continue] = ACTIONS(153), + [anon_sym_goto] = ACTIONS(155), + [anon_sym___try] = ACTIONS(157), + [anon_sym___leave] = ACTIONS(159), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [sym_number_literal] = ACTIONS(161), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(163), + [sym_false] = ACTIONS(163), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [8] = { - [sym_preproc_include] = STATE(15), - [sym_preproc_def] = STATE(15), - [sym_preproc_function_def] = STATE(15), - [sym_preproc_call] = STATE(15), - [sym_preproc_if] = STATE(15), - [sym_preproc_ifdef] = STATE(15), - [sym_preproc_else] = STATE(2024), - [sym_preproc_elif] = STATE(2024), - [sym_preproc_elifdef] = STATE(2024), - [sym_function_definition] = STATE(15), - [sym__old_style_function_definition] = STATE(137), - [sym_declaration] = STATE(15), - [sym_type_definition] = STATE(15), - [sym__declaration_modifiers] = STATE(861), - [sym__declaration_specifiers] = STATE(1490), - [sym_linkage_specification] = STATE(15), - [sym_attribute_specifier] = STATE(861), - [sym_attribute_declaration] = STATE(504), - [sym_ms_declspec_modifier] = STATE(861), - [sym_ms_call_modifier] = STATE(854), - [sym_compound_statement] = STATE(15), - [sym_storage_class_specifier] = STATE(861), - [sym_type_qualifier] = STATE(861), - [sym__type_specifier] = STATE(1119), - [sym_sized_type_specifier] = STATE(1106), - [sym_enum_specifier] = STATE(1106), - [sym_struct_specifier] = STATE(1106), - [sym_union_specifier] = STATE(1106), - [sym_attributed_statement] = STATE(15), - [sym_labeled_statement] = STATE(15), - [sym_expression_statement] = STATE(15), - [sym_if_statement] = STATE(15), - [sym_switch_statement] = STATE(15), - [sym_case_statement] = STATE(15), - [sym_while_statement] = STATE(15), - [sym_do_statement] = STATE(15), - [sym_for_statement] = STATE(15), - [sym_return_statement] = STATE(15), - [sym_break_statement] = STATE(15), - [sym_continue_statement] = STATE(15), - [sym_goto_statement] = STATE(15), - [sym_seh_try_statement] = STATE(15), - [sym_seh_leave_statement] = STATE(15), - [sym__expression] = STATE(1225), - [sym__expression_not_binary] = STATE(792), - [sym_comma_expression] = STATE(2038), - [sym_conditional_expression] = STATE(792), - [sym_assignment_expression] = STATE(792), - [sym_pointer_expression] = STATE(901), - [sym_unary_expression] = STATE(792), - [sym_binary_expression] = STATE(792), - [sym_update_expression] = STATE(792), - [sym_cast_expression] = STATE(792), - [sym_sizeof_expression] = STATE(792), - [sym_alignof_expression] = STATE(792), - [sym_offsetof_expression] = STATE(792), - [sym_generic_expression] = STATE(792), - [sym_subscript_expression] = STATE(901), - [sym_call_expression] = STATE(901), - [sym_gnu_asm_expression] = STATE(792), - [sym_field_expression] = STATE(901), - [sym_compound_literal_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(901), - [sym_char_literal] = STATE(792), - [sym_concatenated_string] = STATE(792), - [sym_string_literal] = STATE(675), - [sym_null] = STATE(792), - [sym__empty_declaration] = STATE(15), - [sym_macro_type_specifier] = STATE(1106), - [aux_sym_preproc_if_repeat1] = STATE(15), - [aux_sym__declaration_specifiers_repeat1] = STATE(861), - [aux_sym_attributed_declarator_repeat1] = STATE(463), - [aux_sym_sized_type_specifier_repeat1] = STATE(1113), - [sym_identifier] = ACTIONS(103), - [aux_sym_preproc_include_token1] = ACTIONS(105), - [aux_sym_preproc_def_token1] = ACTIONS(107), - [aux_sym_preproc_if_token1] = ACTIONS(109), - [aux_sym_preproc_if_token2] = ACTIONS(173), - [aux_sym_preproc_ifdef_token1] = ACTIONS(113), - [aux_sym_preproc_ifdef_token2] = ACTIONS(113), - [aux_sym_preproc_else_token1] = ACTIONS(115), - [aux_sym_preproc_elif_token1] = ACTIONS(117), - [aux_sym_preproc_elifdef_token1] = ACTIONS(119), - [aux_sym_preproc_elifdef_token2] = ACTIONS(119), - [sym_preproc_directive] = ACTIONS(121), + [5] = { + [sym_preproc_include] = STATE(23), + [sym_preproc_def] = STATE(23), + [sym_preproc_function_def] = STATE(23), + [sym_preproc_call] = STATE(23), + [sym_preproc_if] = STATE(23), + [sym_preproc_ifdef] = STATE(23), + [sym_preproc_else] = STATE(2079), + [sym_preproc_elif] = STATE(2079), + [sym_preproc_elifdef] = STATE(2079), + [sym_function_definition] = STATE(23), + [sym__old_style_function_definition] = STATE(135), + [sym_declaration] = STATE(23), + [sym_type_definition] = STATE(23), + [sym__declaration_modifiers] = STATE(855), + [sym__declaration_specifiers] = STATE(1530), + [sym_linkage_specification] = STATE(23), + [sym_attribute_specifier] = STATE(855), + [sym_attribute_declaration] = STATE(495), + [sym_ms_declspec_modifier] = STATE(855), + [sym_ms_call_modifier] = STATE(846), + [sym_compound_statement] = STATE(23), + [sym_storage_class_specifier] = STATE(855), + [sym_type_qualifier] = STATE(855), + [sym__type_specifier] = STATE(1124), + [sym_sized_type_specifier] = STATE(1069), + [sym_enum_specifier] = STATE(1069), + [sym_struct_specifier] = STATE(1069), + [sym_union_specifier] = STATE(1069), + [sym_attributed_statement] = STATE(23), + [sym_labeled_statement] = STATE(23), + [sym_expression_statement] = STATE(23), + [sym_if_statement] = STATE(23), + [sym_switch_statement] = STATE(23), + [sym_case_statement] = STATE(23), + [sym_while_statement] = STATE(23), + [sym_do_statement] = STATE(23), + [sym_for_statement] = STATE(23), + [sym_return_statement] = STATE(23), + [sym_break_statement] = STATE(23), + [sym_continue_statement] = STATE(23), + [sym_goto_statement] = STATE(23), + [sym_seh_try_statement] = STATE(23), + [sym_seh_leave_statement] = STATE(23), + [sym__expression] = STATE(1239), + [sym__expression_not_binary] = STATE(809), + [sym_comma_expression] = STATE(2249), + [sym_conditional_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_pointer_expression] = STATE(877), + [sym_unary_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_update_expression] = STATE(809), + [sym_cast_expression] = STATE(809), + [sym_sizeof_expression] = STATE(809), + [sym_alignof_expression] = STATE(809), + [sym_offsetof_expression] = STATE(809), + [sym_generic_expression] = STATE(809), + [sym_subscript_expression] = STATE(877), + [sym_call_expression] = STATE(877), + [sym_gnu_asm_expression] = STATE(809), + [sym_field_expression] = STATE(877), + [sym_compound_literal_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(877), + [sym_char_literal] = STATE(809), + [sym_concatenated_string] = STATE(809), + [sym_string_literal] = STATE(573), + [sym_null] = STATE(809), + [sym__empty_declaration] = STATE(23), + [sym_macro_type_specifier] = STATE(1069), + [aux_sym_preproc_if_repeat1] = STATE(23), + [aux_sym__declaration_specifiers_repeat1] = STATE(855), + [aux_sym_attributed_declarator_repeat1] = STATE(435), + [aux_sym_sized_type_specifier_repeat1] = STATE(1085), + [sym_identifier] = ACTIONS(105), + [aux_sym_preproc_include_token1] = ACTIONS(107), + [aux_sym_preproc_def_token1] = ACTIONS(109), + [aux_sym_preproc_if_token1] = ACTIONS(111), + [aux_sym_preproc_if_token2] = ACTIONS(169), + [aux_sym_preproc_ifdef_token1] = ACTIONS(115), + [aux_sym_preproc_ifdef_token2] = ACTIONS(115), + [aux_sym_preproc_else_token1] = ACTIONS(117), + [aux_sym_preproc_elif_token1] = ACTIONS(119), + [aux_sym_preproc_elifdef_token1] = ACTIONS(121), + [aux_sym_preproc_elifdef_token2] = ACTIONS(121), + [sym_preproc_directive] = ACTIONS(123), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -16969,118 +16750,302 @@ 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(123), - [anon_sym___extension__] = ACTIONS(125), - [anon_sym_typedef] = ACTIONS(127), - [anon_sym_extern] = ACTIONS(129), + [anon_sym_SEMI] = ACTIONS(125), + [anon_sym___extension__] = ACTIONS(127), + [anon_sym_typedef] = ACTIONS(129), + [anon_sym_extern] = ACTIONS(131), [anon_sym___attribute__] = ACTIONS(33), [anon_sym___scanf] = ACTIONS(35), [anon_sym___printf] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym___cdecl] = ACTIONS(41), - [anon_sym___clrcall] = ACTIONS(41), - [anon_sym___stdcall] = ACTIONS(41), - [anon_sym___fastcall] = ACTIONS(41), - [anon_sym___thiscall] = ACTIONS(41), - [anon_sym___vectorcall] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(131), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [sym_primitive_type] = ACTIONS(51), - [anon_sym_enum] = ACTIONS(53), - [anon_sym_struct] = ACTIONS(55), - [anon_sym_union] = ACTIONS(57), - [anon_sym_if] = ACTIONS(133), - [anon_sym_switch] = ACTIONS(135), - [anon_sym_case] = ACTIONS(137), - [anon_sym_default] = ACTIONS(139), - [anon_sym_while] = ACTIONS(141), - [anon_sym_do] = ACTIONS(143), - [anon_sym_for] = ACTIONS(145), - [anon_sym_return] = ACTIONS(147), - [anon_sym_break] = ACTIONS(149), - [anon_sym_continue] = ACTIONS(151), - [anon_sym_goto] = ACTIONS(153), - [anon_sym___try] = ACTIONS(155), - [anon_sym___leave] = ACTIONS(157), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(83), - [anon_sym___alignof__] = ACTIONS(85), - [anon_sym___alignof] = ACTIONS(85), - [anon_sym__alignof] = ACTIONS(85), - [anon_sym_alignof] = ACTIONS(85), - [anon_sym__Alignof] = ACTIONS(85), - [anon_sym_offsetof] = ACTIONS(87), - [anon_sym__Generic] = ACTIONS(89), - [anon_sym_asm] = ACTIONS(91), - [anon_sym___asm__] = ACTIONS(91), - [sym_number_literal] = ACTIONS(159), - [anon_sym_L_SQUOTE] = ACTIONS(95), - [anon_sym_u_SQUOTE] = ACTIONS(95), - [anon_sym_U_SQUOTE] = ACTIONS(95), - [anon_sym_u8_SQUOTE] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(95), - [anon_sym_L_DQUOTE] = ACTIONS(97), - [anon_sym_u_DQUOTE] = ACTIONS(97), - [anon_sym_U_DQUOTE] = ACTIONS(97), - [anon_sym_u8_DQUOTE] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(97), - [sym_true] = ACTIONS(161), - [sym_false] = ACTIONS(161), - [anon_sym_NULL] = ACTIONS(101), - [anon_sym_nullptr] = ACTIONS(101), + [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(133), + [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), + [sym_primitive_type] = ACTIONS(53), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [anon_sym_if] = ACTIONS(135), + [anon_sym_switch] = ACTIONS(137), + [anon_sym_case] = ACTIONS(139), + [anon_sym_default] = ACTIONS(141), + [anon_sym_while] = ACTIONS(143), + [anon_sym_do] = ACTIONS(145), + [anon_sym_for] = ACTIONS(147), + [anon_sym_return] = ACTIONS(149), + [anon_sym_break] = ACTIONS(151), + [anon_sym_continue] = ACTIONS(153), + [anon_sym_goto] = ACTIONS(155), + [anon_sym___try] = ACTIONS(157), + [anon_sym___leave] = ACTIONS(159), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [sym_number_literal] = ACTIONS(161), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(163), + [sym_false] = ACTIONS(163), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [9] = { + [6] = { + [sym_preproc_include] = STATE(23), + [sym_preproc_def] = STATE(23), + [sym_preproc_function_def] = STATE(23), + [sym_preproc_call] = STATE(23), + [sym_preproc_if] = STATE(23), + [sym_preproc_ifdef] = STATE(23), + [sym_preproc_else] = STATE(2132), + [sym_preproc_elif] = STATE(2132), + [sym_preproc_elifdef] = STATE(2132), + [sym_function_definition] = STATE(23), + [sym__old_style_function_definition] = STATE(135), + [sym_declaration] = STATE(23), + [sym_type_definition] = STATE(23), + [sym__declaration_modifiers] = STATE(855), + [sym__declaration_specifiers] = STATE(1530), + [sym_linkage_specification] = STATE(23), + [sym_attribute_specifier] = STATE(855), + [sym_attribute_declaration] = STATE(495), + [sym_ms_declspec_modifier] = STATE(855), + [sym_ms_call_modifier] = STATE(846), + [sym_compound_statement] = STATE(23), + [sym_storage_class_specifier] = STATE(855), + [sym_type_qualifier] = STATE(855), + [sym__type_specifier] = STATE(1124), + [sym_sized_type_specifier] = STATE(1069), + [sym_enum_specifier] = STATE(1069), + [sym_struct_specifier] = STATE(1069), + [sym_union_specifier] = STATE(1069), + [sym_attributed_statement] = STATE(23), + [sym_labeled_statement] = STATE(23), + [sym_expression_statement] = STATE(23), + [sym_if_statement] = STATE(23), + [sym_switch_statement] = STATE(23), + [sym_case_statement] = STATE(23), + [sym_while_statement] = STATE(23), + [sym_do_statement] = STATE(23), + [sym_for_statement] = STATE(23), + [sym_return_statement] = STATE(23), + [sym_break_statement] = STATE(23), + [sym_continue_statement] = STATE(23), + [sym_goto_statement] = STATE(23), + [sym_seh_try_statement] = STATE(23), + [sym_seh_leave_statement] = STATE(23), + [sym__expression] = STATE(1239), + [sym__expression_not_binary] = STATE(809), + [sym_comma_expression] = STATE(2249), + [sym_conditional_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_pointer_expression] = STATE(877), + [sym_unary_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_update_expression] = STATE(809), + [sym_cast_expression] = STATE(809), + [sym_sizeof_expression] = STATE(809), + [sym_alignof_expression] = STATE(809), + [sym_offsetof_expression] = STATE(809), + [sym_generic_expression] = STATE(809), + [sym_subscript_expression] = STATE(877), + [sym_call_expression] = STATE(877), + [sym_gnu_asm_expression] = STATE(809), + [sym_field_expression] = STATE(877), + [sym_compound_literal_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(877), + [sym_char_literal] = STATE(809), + [sym_concatenated_string] = STATE(809), + [sym_string_literal] = STATE(573), + [sym_null] = STATE(809), + [sym__empty_declaration] = STATE(23), + [sym_macro_type_specifier] = STATE(1069), + [aux_sym_preproc_if_repeat1] = STATE(23), + [aux_sym__declaration_specifiers_repeat1] = STATE(855), + [aux_sym_attributed_declarator_repeat1] = STATE(435), + [aux_sym_sized_type_specifier_repeat1] = STATE(1085), + [sym_identifier] = ACTIONS(105), + [aux_sym_preproc_include_token1] = ACTIONS(107), + [aux_sym_preproc_def_token1] = ACTIONS(109), + [aux_sym_preproc_if_token1] = ACTIONS(111), + [aux_sym_preproc_if_token2] = ACTIONS(171), + [aux_sym_preproc_ifdef_token1] = ACTIONS(115), + [aux_sym_preproc_ifdef_token2] = ACTIONS(115), + [aux_sym_preproc_else_token1] = ACTIONS(117), + [aux_sym_preproc_elif_token1] = ACTIONS(119), + [aux_sym_preproc_elifdef_token1] = ACTIONS(121), + [aux_sym_preproc_elifdef_token2] = ACTIONS(121), + [sym_preproc_directive] = ACTIONS(123), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(125), + [anon_sym___extension__] = ACTIONS(127), + [anon_sym_typedef] = ACTIONS(129), + [anon_sym_extern] = ACTIONS(131), + [anon_sym___attribute__] = ACTIONS(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(133), + [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), + [sym_primitive_type] = ACTIONS(53), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [anon_sym_if] = ACTIONS(135), + [anon_sym_switch] = ACTIONS(137), + [anon_sym_case] = ACTIONS(139), + [anon_sym_default] = ACTIONS(141), + [anon_sym_while] = ACTIONS(143), + [anon_sym_do] = ACTIONS(145), + [anon_sym_for] = ACTIONS(147), + [anon_sym_return] = ACTIONS(149), + [anon_sym_break] = ACTIONS(151), + [anon_sym_continue] = ACTIONS(153), + [anon_sym_goto] = ACTIONS(155), + [anon_sym___try] = ACTIONS(157), + [anon_sym___leave] = ACTIONS(159), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [sym_number_literal] = ACTIONS(161), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(163), + [sym_false] = ACTIONS(163), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + }, + [7] = { [sym_preproc_include] = STATE(10), [sym_preproc_def] = STATE(10), [sym_preproc_function_def] = STATE(10), [sym_preproc_call] = STATE(10), [sym_preproc_if] = STATE(10), [sym_preproc_ifdef] = STATE(10), - [sym_preproc_else] = STATE(1942), - [sym_preproc_elif] = STATE(1942), - [sym_preproc_elifdef] = STATE(1942), + [sym_preproc_else] = STATE(2029), + [sym_preproc_elif] = STATE(2029), + [sym_preproc_elifdef] = STATE(2029), [sym_function_definition] = STATE(10), - [sym__old_style_function_definition] = STATE(137), + [sym__old_style_function_definition] = STATE(135), [sym_declaration] = STATE(10), [sym_type_definition] = STATE(10), - [sym__declaration_modifiers] = STATE(861), - [sym__declaration_specifiers] = STATE(1490), + [sym__declaration_modifiers] = STATE(855), + [sym__declaration_specifiers] = STATE(1530), [sym_linkage_specification] = STATE(10), - [sym_attribute_specifier] = STATE(861), - [sym_attribute_declaration] = STATE(504), - [sym_ms_declspec_modifier] = STATE(861), - [sym_ms_call_modifier] = STATE(854), + [sym_attribute_specifier] = STATE(855), + [sym_attribute_declaration] = STATE(495), + [sym_ms_declspec_modifier] = STATE(855), + [sym_ms_call_modifier] = STATE(846), [sym_compound_statement] = STATE(10), - [sym_storage_class_specifier] = STATE(861), - [sym_type_qualifier] = STATE(861), - [sym__type_specifier] = STATE(1119), - [sym_sized_type_specifier] = STATE(1106), - [sym_enum_specifier] = STATE(1106), - [sym_struct_specifier] = STATE(1106), - [sym_union_specifier] = STATE(1106), + [sym_storage_class_specifier] = STATE(855), + [sym_type_qualifier] = STATE(855), + [sym__type_specifier] = STATE(1124), + [sym_sized_type_specifier] = STATE(1069), + [sym_enum_specifier] = STATE(1069), + [sym_struct_specifier] = STATE(1069), + [sym_union_specifier] = STATE(1069), [sym_attributed_statement] = STATE(10), [sym_labeled_statement] = STATE(10), [sym_expression_statement] = STATE(10), @@ -17096,48 +17061,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(10), [sym_seh_try_statement] = STATE(10), [sym_seh_leave_statement] = STATE(10), - [sym__expression] = STATE(1225), - [sym__expression_not_binary] = STATE(792), - [sym_comma_expression] = STATE(2038), - [sym_conditional_expression] = STATE(792), - [sym_assignment_expression] = STATE(792), - [sym_pointer_expression] = STATE(901), - [sym_unary_expression] = STATE(792), - [sym_binary_expression] = STATE(792), - [sym_update_expression] = STATE(792), - [sym_cast_expression] = STATE(792), - [sym_sizeof_expression] = STATE(792), - [sym_alignof_expression] = STATE(792), - [sym_offsetof_expression] = STATE(792), - [sym_generic_expression] = STATE(792), - [sym_subscript_expression] = STATE(901), - [sym_call_expression] = STATE(901), - [sym_gnu_asm_expression] = STATE(792), - [sym_field_expression] = STATE(901), - [sym_compound_literal_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(901), - [sym_char_literal] = STATE(792), - [sym_concatenated_string] = STATE(792), - [sym_string_literal] = STATE(675), - [sym_null] = STATE(792), + [sym__expression] = STATE(1239), + [sym__expression_not_binary] = STATE(809), + [sym_comma_expression] = STATE(2249), + [sym_conditional_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_pointer_expression] = STATE(877), + [sym_unary_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_update_expression] = STATE(809), + [sym_cast_expression] = STATE(809), + [sym_sizeof_expression] = STATE(809), + [sym_alignof_expression] = STATE(809), + [sym_offsetof_expression] = STATE(809), + [sym_generic_expression] = STATE(809), + [sym_subscript_expression] = STATE(877), + [sym_call_expression] = STATE(877), + [sym_gnu_asm_expression] = STATE(809), + [sym_field_expression] = STATE(877), + [sym_compound_literal_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(877), + [sym_char_literal] = STATE(809), + [sym_concatenated_string] = STATE(809), + [sym_string_literal] = STATE(573), + [sym_null] = STATE(809), [sym__empty_declaration] = STATE(10), - [sym_macro_type_specifier] = STATE(1106), + [sym_macro_type_specifier] = STATE(1069), [aux_sym_preproc_if_repeat1] = STATE(10), - [aux_sym__declaration_specifiers_repeat1] = STATE(861), - [aux_sym_attributed_declarator_repeat1] = STATE(463), - [aux_sym_sized_type_specifier_repeat1] = STATE(1113), - [sym_identifier] = ACTIONS(103), - [aux_sym_preproc_include_token1] = ACTIONS(105), - [aux_sym_preproc_def_token1] = ACTIONS(107), - [aux_sym_preproc_if_token1] = ACTIONS(109), - [aux_sym_preproc_if_token2] = ACTIONS(175), - [aux_sym_preproc_ifdef_token1] = ACTIONS(113), - [aux_sym_preproc_ifdef_token2] = ACTIONS(113), - [aux_sym_preproc_else_token1] = ACTIONS(115), - [aux_sym_preproc_elif_token1] = ACTIONS(117), - [aux_sym_preproc_elifdef_token1] = ACTIONS(119), - [aux_sym_preproc_elifdef_token2] = ACTIONS(119), - [sym_preproc_directive] = ACTIONS(121), + [aux_sym__declaration_specifiers_repeat1] = STATE(855), + [aux_sym_attributed_declarator_repeat1] = STATE(435), + [aux_sym_sized_type_specifier_repeat1] = STATE(1085), + [sym_identifier] = ACTIONS(105), + [aux_sym_preproc_include_token1] = ACTIONS(107), + [aux_sym_preproc_def_token1] = ACTIONS(109), + [aux_sym_preproc_if_token1] = ACTIONS(111), + [aux_sym_preproc_if_token2] = ACTIONS(173), + [aux_sym_preproc_ifdef_token1] = ACTIONS(115), + [aux_sym_preproc_ifdef_token2] = ACTIONS(115), + [aux_sym_preproc_else_token1] = ACTIONS(117), + [aux_sym_preproc_elif_token1] = ACTIONS(119), + [aux_sym_preproc_elifdef_token1] = ACTIONS(121), + [aux_sym_preproc_elifdef_token2] = ACTIONS(121), + [sym_preproc_directive] = ACTIONS(123), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -17145,175 +17110,179 @@ 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(123), - [anon_sym___extension__] = ACTIONS(125), - [anon_sym_typedef] = ACTIONS(127), - [anon_sym_extern] = ACTIONS(129), + [anon_sym_SEMI] = ACTIONS(125), + [anon_sym___extension__] = ACTIONS(127), + [anon_sym_typedef] = ACTIONS(129), + [anon_sym_extern] = ACTIONS(131), [anon_sym___attribute__] = ACTIONS(33), [anon_sym___scanf] = ACTIONS(35), [anon_sym___printf] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym___cdecl] = ACTIONS(41), - [anon_sym___clrcall] = ACTIONS(41), - [anon_sym___stdcall] = ACTIONS(41), - [anon_sym___fastcall] = ACTIONS(41), - [anon_sym___thiscall] = ACTIONS(41), - [anon_sym___vectorcall] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(131), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [sym_primitive_type] = ACTIONS(51), - [anon_sym_enum] = ACTIONS(53), - [anon_sym_struct] = ACTIONS(55), - [anon_sym_union] = ACTIONS(57), - [anon_sym_if] = ACTIONS(133), - [anon_sym_switch] = ACTIONS(135), - [anon_sym_case] = ACTIONS(137), - [anon_sym_default] = ACTIONS(139), - [anon_sym_while] = ACTIONS(141), - [anon_sym_do] = ACTIONS(143), - [anon_sym_for] = ACTIONS(145), - [anon_sym_return] = ACTIONS(147), - [anon_sym_break] = ACTIONS(149), - [anon_sym_continue] = ACTIONS(151), - [anon_sym_goto] = ACTIONS(153), - [anon_sym___try] = ACTIONS(155), - [anon_sym___leave] = ACTIONS(157), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(83), - [anon_sym___alignof__] = ACTIONS(85), - [anon_sym___alignof] = ACTIONS(85), - [anon_sym__alignof] = ACTIONS(85), - [anon_sym_alignof] = ACTIONS(85), - [anon_sym__Alignof] = ACTIONS(85), - [anon_sym_offsetof] = ACTIONS(87), - [anon_sym__Generic] = ACTIONS(89), - [anon_sym_asm] = ACTIONS(91), - [anon_sym___asm__] = ACTIONS(91), - [sym_number_literal] = ACTIONS(159), - [anon_sym_L_SQUOTE] = ACTIONS(95), - [anon_sym_u_SQUOTE] = ACTIONS(95), - [anon_sym_U_SQUOTE] = ACTIONS(95), - [anon_sym_u8_SQUOTE] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(95), - [anon_sym_L_DQUOTE] = ACTIONS(97), - [anon_sym_u_DQUOTE] = ACTIONS(97), - [anon_sym_U_DQUOTE] = ACTIONS(97), - [anon_sym_u8_DQUOTE] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(97), - [sym_true] = ACTIONS(161), - [sym_false] = ACTIONS(161), - [anon_sym_NULL] = ACTIONS(101), - [anon_sym_nullptr] = ACTIONS(101), + [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(133), + [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), + [sym_primitive_type] = ACTIONS(53), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [anon_sym_if] = ACTIONS(135), + [anon_sym_switch] = ACTIONS(137), + [anon_sym_case] = ACTIONS(139), + [anon_sym_default] = ACTIONS(141), + [anon_sym_while] = ACTIONS(143), + [anon_sym_do] = ACTIONS(145), + [anon_sym_for] = ACTIONS(147), + [anon_sym_return] = ACTIONS(149), + [anon_sym_break] = ACTIONS(151), + [anon_sym_continue] = ACTIONS(153), + [anon_sym_goto] = ACTIONS(155), + [anon_sym___try] = ACTIONS(157), + [anon_sym___leave] = ACTIONS(159), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [sym_number_literal] = ACTIONS(161), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(163), + [sym_false] = ACTIONS(163), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [10] = { - [sym_preproc_include] = STATE(15), - [sym_preproc_def] = STATE(15), - [sym_preproc_function_def] = STATE(15), - [sym_preproc_call] = STATE(15), - [sym_preproc_if] = STATE(15), - [sym_preproc_ifdef] = STATE(15), - [sym_preproc_else] = STATE(1946), - [sym_preproc_elif] = STATE(1946), - [sym_preproc_elifdef] = STATE(1946), - [sym_function_definition] = STATE(15), - [sym__old_style_function_definition] = STATE(137), - [sym_declaration] = STATE(15), - [sym_type_definition] = STATE(15), - [sym__declaration_modifiers] = STATE(861), - [sym__declaration_specifiers] = STATE(1490), - [sym_linkage_specification] = STATE(15), - [sym_attribute_specifier] = STATE(861), - [sym_attribute_declaration] = STATE(504), - [sym_ms_declspec_modifier] = STATE(861), - [sym_ms_call_modifier] = STATE(854), - [sym_compound_statement] = STATE(15), - [sym_storage_class_specifier] = STATE(861), - [sym_type_qualifier] = STATE(861), - [sym__type_specifier] = STATE(1119), - [sym_sized_type_specifier] = STATE(1106), - [sym_enum_specifier] = STATE(1106), - [sym_struct_specifier] = STATE(1106), - [sym_union_specifier] = STATE(1106), - [sym_attributed_statement] = STATE(15), - [sym_labeled_statement] = STATE(15), - [sym_expression_statement] = STATE(15), - [sym_if_statement] = STATE(15), - [sym_switch_statement] = STATE(15), - [sym_case_statement] = STATE(15), - [sym_while_statement] = STATE(15), - [sym_do_statement] = STATE(15), - [sym_for_statement] = STATE(15), - [sym_return_statement] = STATE(15), - [sym_break_statement] = STATE(15), - [sym_continue_statement] = STATE(15), - [sym_goto_statement] = STATE(15), - [sym_seh_try_statement] = STATE(15), - [sym_seh_leave_statement] = STATE(15), - [sym__expression] = STATE(1225), - [sym__expression_not_binary] = STATE(792), - [sym_comma_expression] = STATE(2038), - [sym_conditional_expression] = STATE(792), - [sym_assignment_expression] = STATE(792), - [sym_pointer_expression] = STATE(901), - [sym_unary_expression] = STATE(792), - [sym_binary_expression] = STATE(792), - [sym_update_expression] = STATE(792), - [sym_cast_expression] = STATE(792), - [sym_sizeof_expression] = STATE(792), - [sym_alignof_expression] = STATE(792), - [sym_offsetof_expression] = STATE(792), - [sym_generic_expression] = STATE(792), - [sym_subscript_expression] = STATE(901), - [sym_call_expression] = STATE(901), - [sym_gnu_asm_expression] = STATE(792), - [sym_field_expression] = STATE(901), - [sym_compound_literal_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(901), - [sym_char_literal] = STATE(792), - [sym_concatenated_string] = STATE(792), - [sym_string_literal] = STATE(675), - [sym_null] = STATE(792), - [sym__empty_declaration] = STATE(15), - [sym_macro_type_specifier] = STATE(1106), - [aux_sym_preproc_if_repeat1] = STATE(15), - [aux_sym__declaration_specifiers_repeat1] = STATE(861), - [aux_sym_attributed_declarator_repeat1] = STATE(463), - [aux_sym_sized_type_specifier_repeat1] = STATE(1113), - [sym_identifier] = ACTIONS(103), - [aux_sym_preproc_include_token1] = ACTIONS(105), - [aux_sym_preproc_def_token1] = ACTIONS(107), - [aux_sym_preproc_if_token1] = ACTIONS(109), - [aux_sym_preproc_if_token2] = ACTIONS(177), - [aux_sym_preproc_ifdef_token1] = ACTIONS(113), - [aux_sym_preproc_ifdef_token2] = ACTIONS(113), - [aux_sym_preproc_else_token1] = ACTIONS(115), - [aux_sym_preproc_elif_token1] = ACTIONS(117), - [aux_sym_preproc_elifdef_token1] = ACTIONS(119), - [aux_sym_preproc_elifdef_token2] = ACTIONS(119), - [sym_preproc_directive] = ACTIONS(121), + [8] = { + [sym_preproc_include] = STATE(23), + [sym_preproc_def] = STATE(23), + [sym_preproc_function_def] = STATE(23), + [sym_preproc_call] = STATE(23), + [sym_preproc_if] = STATE(23), + [sym_preproc_ifdef] = STATE(23), + [sym_preproc_else] = STATE(1981), + [sym_preproc_elif] = STATE(1981), + [sym_preproc_elifdef] = STATE(1981), + [sym_function_definition] = STATE(23), + [sym__old_style_function_definition] = STATE(135), + [sym_declaration] = STATE(23), + [sym_type_definition] = STATE(23), + [sym__declaration_modifiers] = STATE(855), + [sym__declaration_specifiers] = STATE(1530), + [sym_linkage_specification] = STATE(23), + [sym_attribute_specifier] = STATE(855), + [sym_attribute_declaration] = STATE(495), + [sym_ms_declspec_modifier] = STATE(855), + [sym_ms_call_modifier] = STATE(846), + [sym_compound_statement] = STATE(23), + [sym_storage_class_specifier] = STATE(855), + [sym_type_qualifier] = STATE(855), + [sym__type_specifier] = STATE(1124), + [sym_sized_type_specifier] = STATE(1069), + [sym_enum_specifier] = STATE(1069), + [sym_struct_specifier] = STATE(1069), + [sym_union_specifier] = STATE(1069), + [sym_attributed_statement] = STATE(23), + [sym_labeled_statement] = STATE(23), + [sym_expression_statement] = STATE(23), + [sym_if_statement] = STATE(23), + [sym_switch_statement] = STATE(23), + [sym_case_statement] = STATE(23), + [sym_while_statement] = STATE(23), + [sym_do_statement] = STATE(23), + [sym_for_statement] = STATE(23), + [sym_return_statement] = STATE(23), + [sym_break_statement] = STATE(23), + [sym_continue_statement] = STATE(23), + [sym_goto_statement] = STATE(23), + [sym_seh_try_statement] = STATE(23), + [sym_seh_leave_statement] = STATE(23), + [sym__expression] = STATE(1239), + [sym__expression_not_binary] = STATE(809), + [sym_comma_expression] = STATE(2249), + [sym_conditional_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_pointer_expression] = STATE(877), + [sym_unary_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_update_expression] = STATE(809), + [sym_cast_expression] = STATE(809), + [sym_sizeof_expression] = STATE(809), + [sym_alignof_expression] = STATE(809), + [sym_offsetof_expression] = STATE(809), + [sym_generic_expression] = STATE(809), + [sym_subscript_expression] = STATE(877), + [sym_call_expression] = STATE(877), + [sym_gnu_asm_expression] = STATE(809), + [sym_field_expression] = STATE(877), + [sym_compound_literal_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(877), + [sym_char_literal] = STATE(809), + [sym_concatenated_string] = STATE(809), + [sym_string_literal] = STATE(573), + [sym_null] = STATE(809), + [sym__empty_declaration] = STATE(23), + [sym_macro_type_specifier] = STATE(1069), + [aux_sym_preproc_if_repeat1] = STATE(23), + [aux_sym__declaration_specifiers_repeat1] = STATE(855), + [aux_sym_attributed_declarator_repeat1] = STATE(435), + [aux_sym_sized_type_specifier_repeat1] = STATE(1085), + [sym_identifier] = ACTIONS(105), + [aux_sym_preproc_include_token1] = ACTIONS(107), + [aux_sym_preproc_def_token1] = ACTIONS(109), + [aux_sym_preproc_if_token1] = ACTIONS(111), + [aux_sym_preproc_if_token2] = ACTIONS(175), + [aux_sym_preproc_ifdef_token1] = ACTIONS(115), + [aux_sym_preproc_ifdef_token2] = ACTIONS(115), + [aux_sym_preproc_else_token1] = ACTIONS(117), + [aux_sym_preproc_elif_token1] = ACTIONS(119), + [aux_sym_preproc_elifdef_token1] = ACTIONS(121), + [aux_sym_preproc_elifdef_token2] = ACTIONS(121), + [sym_preproc_directive] = ACTIONS(123), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -17321,175 +17290,179 @@ 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(123), - [anon_sym___extension__] = ACTIONS(125), - [anon_sym_typedef] = ACTIONS(127), - [anon_sym_extern] = ACTIONS(129), + [anon_sym_SEMI] = ACTIONS(125), + [anon_sym___extension__] = ACTIONS(127), + [anon_sym_typedef] = ACTIONS(129), + [anon_sym_extern] = ACTIONS(131), [anon_sym___attribute__] = ACTIONS(33), [anon_sym___scanf] = ACTIONS(35), [anon_sym___printf] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym___cdecl] = ACTIONS(41), - [anon_sym___clrcall] = ACTIONS(41), - [anon_sym___stdcall] = ACTIONS(41), - [anon_sym___fastcall] = ACTIONS(41), - [anon_sym___thiscall] = ACTIONS(41), - [anon_sym___vectorcall] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(131), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [sym_primitive_type] = ACTIONS(51), - [anon_sym_enum] = ACTIONS(53), - [anon_sym_struct] = ACTIONS(55), - [anon_sym_union] = ACTIONS(57), - [anon_sym_if] = ACTIONS(133), - [anon_sym_switch] = ACTIONS(135), - [anon_sym_case] = ACTIONS(137), - [anon_sym_default] = ACTIONS(139), - [anon_sym_while] = ACTIONS(141), - [anon_sym_do] = ACTIONS(143), - [anon_sym_for] = ACTIONS(145), - [anon_sym_return] = ACTIONS(147), - [anon_sym_break] = ACTIONS(149), - [anon_sym_continue] = ACTIONS(151), - [anon_sym_goto] = ACTIONS(153), - [anon_sym___try] = ACTIONS(155), - [anon_sym___leave] = ACTIONS(157), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(83), - [anon_sym___alignof__] = ACTIONS(85), - [anon_sym___alignof] = ACTIONS(85), - [anon_sym__alignof] = ACTIONS(85), - [anon_sym_alignof] = ACTIONS(85), - [anon_sym__Alignof] = ACTIONS(85), - [anon_sym_offsetof] = ACTIONS(87), - [anon_sym__Generic] = ACTIONS(89), - [anon_sym_asm] = ACTIONS(91), - [anon_sym___asm__] = ACTIONS(91), - [sym_number_literal] = ACTIONS(159), - [anon_sym_L_SQUOTE] = ACTIONS(95), - [anon_sym_u_SQUOTE] = ACTIONS(95), - [anon_sym_U_SQUOTE] = ACTIONS(95), - [anon_sym_u8_SQUOTE] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(95), - [anon_sym_L_DQUOTE] = ACTIONS(97), - [anon_sym_u_DQUOTE] = ACTIONS(97), - [anon_sym_U_DQUOTE] = ACTIONS(97), - [anon_sym_u8_DQUOTE] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(97), - [sym_true] = ACTIONS(161), - [sym_false] = ACTIONS(161), - [anon_sym_NULL] = ACTIONS(101), - [anon_sym_nullptr] = ACTIONS(101), + [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(133), + [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), + [sym_primitive_type] = ACTIONS(53), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [anon_sym_if] = ACTIONS(135), + [anon_sym_switch] = ACTIONS(137), + [anon_sym_case] = ACTIONS(139), + [anon_sym_default] = ACTIONS(141), + [anon_sym_while] = ACTIONS(143), + [anon_sym_do] = ACTIONS(145), + [anon_sym_for] = ACTIONS(147), + [anon_sym_return] = ACTIONS(149), + [anon_sym_break] = ACTIONS(151), + [anon_sym_continue] = ACTIONS(153), + [anon_sym_goto] = ACTIONS(155), + [anon_sym___try] = ACTIONS(157), + [anon_sym___leave] = ACTIONS(159), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [sym_number_literal] = ACTIONS(161), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(163), + [sym_false] = ACTIONS(163), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [11] = { - [sym_preproc_include] = STATE(2), - [sym_preproc_def] = STATE(2), - [sym_preproc_function_def] = STATE(2), - [sym_preproc_call] = STATE(2), - [sym_preproc_if] = STATE(2), - [sym_preproc_ifdef] = STATE(2), - [sym_preproc_else] = STATE(2002), - [sym_preproc_elif] = STATE(2002), - [sym_preproc_elifdef] = STATE(2002), - [sym_function_definition] = STATE(2), - [sym__old_style_function_definition] = STATE(137), - [sym_declaration] = STATE(2), - [sym_type_definition] = STATE(2), - [sym__declaration_modifiers] = STATE(861), - [sym__declaration_specifiers] = STATE(1490), - [sym_linkage_specification] = STATE(2), - [sym_attribute_specifier] = STATE(861), - [sym_attribute_declaration] = STATE(504), - [sym_ms_declspec_modifier] = STATE(861), - [sym_ms_call_modifier] = STATE(854), - [sym_compound_statement] = STATE(2), - [sym_storage_class_specifier] = STATE(861), - [sym_type_qualifier] = STATE(861), - [sym__type_specifier] = STATE(1119), - [sym_sized_type_specifier] = STATE(1106), - [sym_enum_specifier] = STATE(1106), - [sym_struct_specifier] = STATE(1106), - [sym_union_specifier] = STATE(1106), - [sym_attributed_statement] = STATE(2), - [sym_labeled_statement] = STATE(2), - [sym_expression_statement] = STATE(2), - [sym_if_statement] = STATE(2), - [sym_switch_statement] = STATE(2), - [sym_case_statement] = STATE(2), - [sym_while_statement] = STATE(2), - [sym_do_statement] = STATE(2), - [sym_for_statement] = STATE(2), - [sym_return_statement] = STATE(2), - [sym_break_statement] = STATE(2), - [sym_continue_statement] = STATE(2), - [sym_goto_statement] = STATE(2), - [sym_seh_try_statement] = STATE(2), - [sym_seh_leave_statement] = STATE(2), - [sym__expression] = STATE(1225), - [sym__expression_not_binary] = STATE(792), - [sym_comma_expression] = STATE(2038), - [sym_conditional_expression] = STATE(792), - [sym_assignment_expression] = STATE(792), - [sym_pointer_expression] = STATE(901), - [sym_unary_expression] = STATE(792), - [sym_binary_expression] = STATE(792), - [sym_update_expression] = STATE(792), - [sym_cast_expression] = STATE(792), - [sym_sizeof_expression] = STATE(792), - [sym_alignof_expression] = STATE(792), - [sym_offsetof_expression] = STATE(792), - [sym_generic_expression] = STATE(792), - [sym_subscript_expression] = STATE(901), - [sym_call_expression] = STATE(901), - [sym_gnu_asm_expression] = STATE(792), - [sym_field_expression] = STATE(901), - [sym_compound_literal_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(901), - [sym_char_literal] = STATE(792), - [sym_concatenated_string] = STATE(792), - [sym_string_literal] = STATE(675), - [sym_null] = STATE(792), - [sym__empty_declaration] = STATE(2), - [sym_macro_type_specifier] = STATE(1106), - [aux_sym_preproc_if_repeat1] = STATE(2), - [aux_sym__declaration_specifiers_repeat1] = STATE(861), - [aux_sym_attributed_declarator_repeat1] = STATE(463), - [aux_sym_sized_type_specifier_repeat1] = STATE(1113), - [sym_identifier] = ACTIONS(103), - [aux_sym_preproc_include_token1] = ACTIONS(105), - [aux_sym_preproc_def_token1] = ACTIONS(107), - [aux_sym_preproc_if_token1] = ACTIONS(109), - [aux_sym_preproc_if_token2] = ACTIONS(179), - [aux_sym_preproc_ifdef_token1] = ACTIONS(113), - [aux_sym_preproc_ifdef_token2] = ACTIONS(113), - [aux_sym_preproc_else_token1] = ACTIONS(115), - [aux_sym_preproc_elif_token1] = ACTIONS(117), - [aux_sym_preproc_elifdef_token1] = ACTIONS(119), - [aux_sym_preproc_elifdef_token2] = ACTIONS(119), - [sym_preproc_directive] = ACTIONS(121), + [9] = { + [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(2094), + [sym_preproc_elif] = STATE(2094), + [sym_preproc_elifdef] = STATE(2094), + [sym_function_definition] = STATE(5), + [sym__old_style_function_definition] = STATE(135), + [sym_declaration] = STATE(5), + [sym_type_definition] = STATE(5), + [sym__declaration_modifiers] = STATE(855), + [sym__declaration_specifiers] = STATE(1530), + [sym_linkage_specification] = STATE(5), + [sym_attribute_specifier] = STATE(855), + [sym_attribute_declaration] = STATE(495), + [sym_ms_declspec_modifier] = STATE(855), + [sym_ms_call_modifier] = STATE(846), + [sym_compound_statement] = STATE(5), + [sym_storage_class_specifier] = STATE(855), + [sym_type_qualifier] = STATE(855), + [sym__type_specifier] = STATE(1124), + [sym_sized_type_specifier] = STATE(1069), + [sym_enum_specifier] = STATE(1069), + [sym_struct_specifier] = STATE(1069), + [sym_union_specifier] = STATE(1069), + [sym_attributed_statement] = STATE(5), + [sym_labeled_statement] = STATE(5), + [sym_expression_statement] = STATE(5), + [sym_if_statement] = STATE(5), + [sym_switch_statement] = STATE(5), + [sym_case_statement] = STATE(5), + [sym_while_statement] = STATE(5), + [sym_do_statement] = STATE(5), + [sym_for_statement] = STATE(5), + [sym_return_statement] = STATE(5), + [sym_break_statement] = STATE(5), + [sym_continue_statement] = STATE(5), + [sym_goto_statement] = STATE(5), + [sym_seh_try_statement] = STATE(5), + [sym_seh_leave_statement] = STATE(5), + [sym__expression] = STATE(1239), + [sym__expression_not_binary] = STATE(809), + [sym_comma_expression] = STATE(2249), + [sym_conditional_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_pointer_expression] = STATE(877), + [sym_unary_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_update_expression] = STATE(809), + [sym_cast_expression] = STATE(809), + [sym_sizeof_expression] = STATE(809), + [sym_alignof_expression] = STATE(809), + [sym_offsetof_expression] = STATE(809), + [sym_generic_expression] = STATE(809), + [sym_subscript_expression] = STATE(877), + [sym_call_expression] = STATE(877), + [sym_gnu_asm_expression] = STATE(809), + [sym_field_expression] = STATE(877), + [sym_compound_literal_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(877), + [sym_char_literal] = STATE(809), + [sym_concatenated_string] = STATE(809), + [sym_string_literal] = STATE(573), + [sym_null] = STATE(809), + [sym__empty_declaration] = STATE(5), + [sym_macro_type_specifier] = STATE(1069), + [aux_sym_preproc_if_repeat1] = STATE(5), + [aux_sym__declaration_specifiers_repeat1] = STATE(855), + [aux_sym_attributed_declarator_repeat1] = STATE(435), + [aux_sym_sized_type_specifier_repeat1] = STATE(1085), + [sym_identifier] = ACTIONS(105), + [aux_sym_preproc_include_token1] = ACTIONS(107), + [aux_sym_preproc_def_token1] = ACTIONS(109), + [aux_sym_preproc_if_token1] = ACTIONS(111), + [aux_sym_preproc_if_token2] = ACTIONS(177), + [aux_sym_preproc_ifdef_token1] = ACTIONS(115), + [aux_sym_preproc_ifdef_token2] = ACTIONS(115), + [aux_sym_preproc_else_token1] = ACTIONS(117), + [aux_sym_preproc_elif_token1] = ACTIONS(119), + [aux_sym_preproc_elifdef_token1] = ACTIONS(121), + [aux_sym_preproc_elifdef_token2] = ACTIONS(121), + [sym_preproc_directive] = ACTIONS(123), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -17497,172 +17470,179 @@ 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(123), - [anon_sym___extension__] = ACTIONS(125), - [anon_sym_typedef] = ACTIONS(127), - [anon_sym_extern] = ACTIONS(129), + [anon_sym_SEMI] = ACTIONS(125), + [anon_sym___extension__] = ACTIONS(127), + [anon_sym_typedef] = ACTIONS(129), + [anon_sym_extern] = ACTIONS(131), [anon_sym___attribute__] = ACTIONS(33), [anon_sym___scanf] = ACTIONS(35), [anon_sym___printf] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym___cdecl] = ACTIONS(41), - [anon_sym___clrcall] = ACTIONS(41), - [anon_sym___stdcall] = ACTIONS(41), - [anon_sym___fastcall] = ACTIONS(41), - [anon_sym___thiscall] = ACTIONS(41), - [anon_sym___vectorcall] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(131), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [sym_primitive_type] = ACTIONS(51), - [anon_sym_enum] = ACTIONS(53), - [anon_sym_struct] = ACTIONS(55), - [anon_sym_union] = ACTIONS(57), - [anon_sym_if] = ACTIONS(133), - [anon_sym_switch] = ACTIONS(135), - [anon_sym_case] = ACTIONS(137), - [anon_sym_default] = ACTIONS(139), - [anon_sym_while] = ACTIONS(141), - [anon_sym_do] = ACTIONS(143), - [anon_sym_for] = ACTIONS(145), - [anon_sym_return] = ACTIONS(147), - [anon_sym_break] = ACTIONS(149), - [anon_sym_continue] = ACTIONS(151), - [anon_sym_goto] = ACTIONS(153), - [anon_sym___try] = ACTIONS(155), - [anon_sym___leave] = ACTIONS(157), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(83), - [anon_sym___alignof__] = ACTIONS(85), - [anon_sym___alignof] = ACTIONS(85), - [anon_sym__alignof] = ACTIONS(85), - [anon_sym_alignof] = ACTIONS(85), - [anon_sym__Alignof] = ACTIONS(85), - [anon_sym_offsetof] = ACTIONS(87), - [anon_sym__Generic] = ACTIONS(89), - [anon_sym_asm] = ACTIONS(91), - [anon_sym___asm__] = ACTIONS(91), - [sym_number_literal] = ACTIONS(159), - [anon_sym_L_SQUOTE] = ACTIONS(95), - [anon_sym_u_SQUOTE] = ACTIONS(95), - [anon_sym_U_SQUOTE] = ACTIONS(95), - [anon_sym_u8_SQUOTE] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(95), - [anon_sym_L_DQUOTE] = ACTIONS(97), - [anon_sym_u_DQUOTE] = ACTIONS(97), - [anon_sym_U_DQUOTE] = ACTIONS(97), - [anon_sym_u8_DQUOTE] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(97), - [sym_true] = ACTIONS(161), - [sym_false] = ACTIONS(161), - [anon_sym_NULL] = ACTIONS(101), - [anon_sym_nullptr] = ACTIONS(101), + [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(133), + [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), + [sym_primitive_type] = ACTIONS(53), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [anon_sym_if] = ACTIONS(135), + [anon_sym_switch] = ACTIONS(137), + [anon_sym_case] = ACTIONS(139), + [anon_sym_default] = ACTIONS(141), + [anon_sym_while] = ACTIONS(143), + [anon_sym_do] = ACTIONS(145), + [anon_sym_for] = ACTIONS(147), + [anon_sym_return] = ACTIONS(149), + [anon_sym_break] = ACTIONS(151), + [anon_sym_continue] = ACTIONS(153), + [anon_sym_goto] = ACTIONS(155), + [anon_sym___try] = ACTIONS(157), + [anon_sym___leave] = ACTIONS(159), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [sym_number_literal] = ACTIONS(161), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(163), + [sym_false] = ACTIONS(163), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [12] = { - [sym_preproc_include] = STATE(25), - [sym_preproc_def] = STATE(25), - [sym_preproc_function_def] = STATE(25), - [sym_preproc_call] = STATE(25), - [sym_preproc_if] = STATE(25), - [sym_preproc_ifdef] = STATE(25), - [sym_preproc_else] = STATE(2073), - [sym_preproc_elif] = STATE(2073), - [sym_function_definition] = STATE(25), - [sym__old_style_function_definition] = STATE(227), - [sym_declaration] = STATE(25), - [sym_type_definition] = STATE(25), - [sym__declaration_modifiers] = STATE(861), - [sym__declaration_specifiers] = STATE(1487), - [sym_linkage_specification] = STATE(25), - [sym_attribute_specifier] = STATE(861), - [sym_attribute_declaration] = STATE(504), - [sym_ms_declspec_modifier] = STATE(861), - [sym_ms_call_modifier] = STATE(857), - [sym_compound_statement] = STATE(25), - [sym_storage_class_specifier] = STATE(861), - [sym_type_qualifier] = STATE(861), - [sym__type_specifier] = STATE(1127), - [sym_sized_type_specifier] = STATE(1106), - [sym_enum_specifier] = STATE(1106), - [sym_struct_specifier] = STATE(1106), - [sym_union_specifier] = STATE(1106), - [sym_attributed_statement] = STATE(25), - [sym_labeled_statement] = STATE(25), - [sym_expression_statement] = STATE(25), - [sym_if_statement] = STATE(25), - [sym_switch_statement] = STATE(25), - [sym_case_statement] = STATE(25), - [sym_while_statement] = STATE(25), - [sym_do_statement] = STATE(25), - [sym_for_statement] = STATE(25), - [sym_return_statement] = STATE(25), - [sym_break_statement] = STATE(25), - [sym_continue_statement] = STATE(25), - [sym_goto_statement] = STATE(25), - [sym_seh_try_statement] = STATE(25), - [sym_seh_leave_statement] = STATE(25), - [sym__expression] = STATE(1230), - [sym__expression_not_binary] = STATE(792), - [sym_comma_expression] = STATE(2008), - [sym_conditional_expression] = STATE(792), - [sym_assignment_expression] = STATE(792), - [sym_pointer_expression] = STATE(901), - [sym_unary_expression] = STATE(792), - [sym_binary_expression] = STATE(792), - [sym_update_expression] = STATE(792), - [sym_cast_expression] = STATE(792), - [sym_sizeof_expression] = STATE(792), - [sym_alignof_expression] = STATE(792), - [sym_offsetof_expression] = STATE(792), - [sym_generic_expression] = STATE(792), - [sym_subscript_expression] = STATE(901), - [sym_call_expression] = STATE(901), - [sym_gnu_asm_expression] = STATE(792), - [sym_field_expression] = STATE(901), - [sym_compound_literal_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(901), - [sym_char_literal] = STATE(792), - [sym_concatenated_string] = STATE(792), - [sym_string_literal] = STATE(675), - [sym_null] = STATE(792), - [sym__empty_declaration] = STATE(25), - [sym_macro_type_specifier] = STATE(1106), - [aux_sym_preproc_if_repeat1] = STATE(25), - [aux_sym__declaration_specifiers_repeat1] = STATE(861), + [10] = { + [sym_preproc_include] = STATE(23), + [sym_preproc_def] = STATE(23), + [sym_preproc_function_def] = STATE(23), + [sym_preproc_call] = STATE(23), + [sym_preproc_if] = STATE(23), + [sym_preproc_ifdef] = STATE(23), + [sym_preproc_else] = STATE(2087), + [sym_preproc_elif] = STATE(2087), + [sym_preproc_elifdef] = STATE(2087), + [sym_function_definition] = STATE(23), + [sym__old_style_function_definition] = STATE(135), + [sym_declaration] = STATE(23), + [sym_type_definition] = STATE(23), + [sym__declaration_modifiers] = STATE(855), + [sym__declaration_specifiers] = STATE(1530), + [sym_linkage_specification] = STATE(23), + [sym_attribute_specifier] = STATE(855), + [sym_attribute_declaration] = STATE(495), + [sym_ms_declspec_modifier] = STATE(855), + [sym_ms_call_modifier] = STATE(846), + [sym_compound_statement] = STATE(23), + [sym_storage_class_specifier] = STATE(855), + [sym_type_qualifier] = STATE(855), + [sym__type_specifier] = STATE(1124), + [sym_sized_type_specifier] = STATE(1069), + [sym_enum_specifier] = STATE(1069), + [sym_struct_specifier] = STATE(1069), + [sym_union_specifier] = STATE(1069), + [sym_attributed_statement] = STATE(23), + [sym_labeled_statement] = STATE(23), + [sym_expression_statement] = STATE(23), + [sym_if_statement] = STATE(23), + [sym_switch_statement] = STATE(23), + [sym_case_statement] = STATE(23), + [sym_while_statement] = STATE(23), + [sym_do_statement] = STATE(23), + [sym_for_statement] = STATE(23), + [sym_return_statement] = STATE(23), + [sym_break_statement] = STATE(23), + [sym_continue_statement] = STATE(23), + [sym_goto_statement] = STATE(23), + [sym_seh_try_statement] = STATE(23), + [sym_seh_leave_statement] = STATE(23), + [sym__expression] = STATE(1239), + [sym__expression_not_binary] = STATE(809), + [sym_comma_expression] = STATE(2249), + [sym_conditional_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_pointer_expression] = STATE(877), + [sym_unary_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_update_expression] = STATE(809), + [sym_cast_expression] = STATE(809), + [sym_sizeof_expression] = STATE(809), + [sym_alignof_expression] = STATE(809), + [sym_offsetof_expression] = STATE(809), + [sym_generic_expression] = STATE(809), + [sym_subscript_expression] = STATE(877), + [sym_call_expression] = STATE(877), + [sym_gnu_asm_expression] = STATE(809), + [sym_field_expression] = STATE(877), + [sym_compound_literal_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(877), + [sym_char_literal] = STATE(809), + [sym_concatenated_string] = STATE(809), + [sym_string_literal] = STATE(573), + [sym_null] = STATE(809), + [sym__empty_declaration] = STATE(23), + [sym_macro_type_specifier] = STATE(1069), + [aux_sym_preproc_if_repeat1] = STATE(23), + [aux_sym__declaration_specifiers_repeat1] = STATE(855), [aux_sym_attributed_declarator_repeat1] = STATE(435), - [aux_sym_sized_type_specifier_repeat1] = STATE(1113), - [sym_identifier] = ACTIONS(181), - [aux_sym_preproc_include_token1] = ACTIONS(183), - [aux_sym_preproc_def_token1] = ACTIONS(185), - [aux_sym_preproc_if_token1] = ACTIONS(187), - [aux_sym_preproc_if_token2] = ACTIONS(189), - [aux_sym_preproc_ifdef_token1] = ACTIONS(191), - [aux_sym_preproc_ifdef_token2] = ACTIONS(191), - [aux_sym_preproc_else_token1] = ACTIONS(115), - [aux_sym_preproc_elif_token1] = ACTIONS(117), - [sym_preproc_directive] = ACTIONS(193), + [aux_sym_sized_type_specifier_repeat1] = STATE(1085), + [sym_identifier] = ACTIONS(105), + [aux_sym_preproc_include_token1] = ACTIONS(107), + [aux_sym_preproc_def_token1] = ACTIONS(109), + [aux_sym_preproc_if_token1] = ACTIONS(111), + [aux_sym_preproc_if_token2] = ACTIONS(179), + [aux_sym_preproc_ifdef_token1] = ACTIONS(115), + [aux_sym_preproc_ifdef_token2] = ACTIONS(115), + [aux_sym_preproc_else_token1] = ACTIONS(117), + [aux_sym_preproc_elif_token1] = ACTIONS(119), + [aux_sym_preproc_elifdef_token1] = ACTIONS(121), + [aux_sym_preproc_elifdef_token2] = ACTIONS(121), + [sym_preproc_directive] = ACTIONS(123), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -17670,172 +17650,179 @@ 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(195), - [anon_sym___extension__] = ACTIONS(197), - [anon_sym_typedef] = ACTIONS(199), - [anon_sym_extern] = ACTIONS(201), + [anon_sym_SEMI] = ACTIONS(125), + [anon_sym___extension__] = ACTIONS(127), + [anon_sym_typedef] = ACTIONS(129), + [anon_sym_extern] = ACTIONS(131), [anon_sym___attribute__] = ACTIONS(33), [anon_sym___scanf] = ACTIONS(35), [anon_sym___printf] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym___cdecl] = ACTIONS(41), - [anon_sym___clrcall] = ACTIONS(41), - [anon_sym___stdcall] = ACTIONS(41), - [anon_sym___fastcall] = ACTIONS(41), - [anon_sym___thiscall] = ACTIONS(41), - [anon_sym___vectorcall] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(203), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [sym_primitive_type] = ACTIONS(51), - [anon_sym_enum] = ACTIONS(53), - [anon_sym_struct] = ACTIONS(55), - [anon_sym_union] = ACTIONS(57), - [anon_sym_if] = ACTIONS(205), - [anon_sym_switch] = ACTIONS(207), - [anon_sym_case] = ACTIONS(209), - [anon_sym_default] = ACTIONS(211), - [anon_sym_while] = ACTIONS(213), - [anon_sym_do] = ACTIONS(215), - [anon_sym_for] = ACTIONS(217), - [anon_sym_return] = ACTIONS(219), - [anon_sym_break] = ACTIONS(221), - [anon_sym_continue] = ACTIONS(223), - [anon_sym_goto] = ACTIONS(225), - [anon_sym___try] = ACTIONS(227), - [anon_sym___leave] = ACTIONS(229), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(83), - [anon_sym___alignof__] = ACTIONS(85), - [anon_sym___alignof] = ACTIONS(85), - [anon_sym__alignof] = ACTIONS(85), - [anon_sym_alignof] = ACTIONS(85), - [anon_sym__Alignof] = ACTIONS(85), - [anon_sym_offsetof] = ACTIONS(87), - [anon_sym__Generic] = ACTIONS(89), - [anon_sym_asm] = ACTIONS(91), - [anon_sym___asm__] = ACTIONS(91), - [sym_number_literal] = ACTIONS(159), - [anon_sym_L_SQUOTE] = ACTIONS(95), - [anon_sym_u_SQUOTE] = ACTIONS(95), - [anon_sym_U_SQUOTE] = ACTIONS(95), - [anon_sym_u8_SQUOTE] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(95), - [anon_sym_L_DQUOTE] = ACTIONS(97), - [anon_sym_u_DQUOTE] = ACTIONS(97), - [anon_sym_U_DQUOTE] = ACTIONS(97), - [anon_sym_u8_DQUOTE] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(97), - [sym_true] = ACTIONS(161), - [sym_false] = ACTIONS(161), - [anon_sym_NULL] = ACTIONS(101), - [anon_sym_nullptr] = ACTIONS(101), + [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(133), + [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), + [sym_primitive_type] = ACTIONS(53), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [anon_sym_if] = ACTIONS(135), + [anon_sym_switch] = ACTIONS(137), + [anon_sym_case] = ACTIONS(139), + [anon_sym_default] = ACTIONS(141), + [anon_sym_while] = ACTIONS(143), + [anon_sym_do] = ACTIONS(145), + [anon_sym_for] = ACTIONS(147), + [anon_sym_return] = ACTIONS(149), + [anon_sym_break] = ACTIONS(151), + [anon_sym_continue] = ACTIONS(153), + [anon_sym_goto] = ACTIONS(155), + [anon_sym___try] = ACTIONS(157), + [anon_sym___leave] = ACTIONS(159), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [sym_number_literal] = ACTIONS(161), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(163), + [sym_false] = ACTIONS(163), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [13] = { - [sym_preproc_include] = STATE(24), - [sym_preproc_def] = STATE(24), - [sym_preproc_function_def] = STATE(24), - [sym_preproc_call] = STATE(24), - [sym_preproc_if] = STATE(24), - [sym_preproc_ifdef] = STATE(24), - [sym_preproc_else] = STATE(2025), - [sym_preproc_elif] = STATE(2025), - [sym_function_definition] = STATE(24), - [sym__old_style_function_definition] = STATE(227), - [sym_declaration] = STATE(24), - [sym_type_definition] = STATE(24), - [sym__declaration_modifiers] = STATE(861), - [sym__declaration_specifiers] = STATE(1487), - [sym_linkage_specification] = STATE(24), - [sym_attribute_specifier] = STATE(861), - [sym_attribute_declaration] = STATE(504), - [sym_ms_declspec_modifier] = STATE(861), - [sym_ms_call_modifier] = STATE(857), - [sym_compound_statement] = STATE(24), - [sym_storage_class_specifier] = STATE(861), - [sym_type_qualifier] = STATE(861), - [sym__type_specifier] = STATE(1127), - [sym_sized_type_specifier] = STATE(1106), - [sym_enum_specifier] = STATE(1106), - [sym_struct_specifier] = STATE(1106), - [sym_union_specifier] = STATE(1106), - [sym_attributed_statement] = STATE(24), - [sym_labeled_statement] = STATE(24), - [sym_expression_statement] = STATE(24), - [sym_if_statement] = STATE(24), - [sym_switch_statement] = STATE(24), - [sym_case_statement] = STATE(24), - [sym_while_statement] = STATE(24), - [sym_do_statement] = STATE(24), - [sym_for_statement] = STATE(24), - [sym_return_statement] = STATE(24), - [sym_break_statement] = STATE(24), - [sym_continue_statement] = STATE(24), - [sym_goto_statement] = STATE(24), - [sym_seh_try_statement] = STATE(24), - [sym_seh_leave_statement] = STATE(24), - [sym__expression] = STATE(1230), - [sym__expression_not_binary] = STATE(792), - [sym_comma_expression] = STATE(2008), - [sym_conditional_expression] = STATE(792), - [sym_assignment_expression] = STATE(792), - [sym_pointer_expression] = STATE(901), - [sym_unary_expression] = STATE(792), - [sym_binary_expression] = STATE(792), - [sym_update_expression] = STATE(792), - [sym_cast_expression] = STATE(792), - [sym_sizeof_expression] = STATE(792), - [sym_alignof_expression] = STATE(792), - [sym_offsetof_expression] = STATE(792), - [sym_generic_expression] = STATE(792), - [sym_subscript_expression] = STATE(901), - [sym_call_expression] = STATE(901), - [sym_gnu_asm_expression] = STATE(792), - [sym_field_expression] = STATE(901), - [sym_compound_literal_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(901), - [sym_char_literal] = STATE(792), - [sym_concatenated_string] = STATE(792), - [sym_string_literal] = STATE(675), - [sym_null] = STATE(792), - [sym__empty_declaration] = STATE(24), - [sym_macro_type_specifier] = STATE(1106), - [aux_sym_preproc_if_repeat1] = STATE(24), - [aux_sym__declaration_specifiers_repeat1] = STATE(861), + [11] = { + [sym_preproc_include] = STATE(23), + [sym_preproc_def] = STATE(23), + [sym_preproc_function_def] = STATE(23), + [sym_preproc_call] = STATE(23), + [sym_preproc_if] = STATE(23), + [sym_preproc_ifdef] = STATE(23), + [sym_preproc_else] = STATE(2254), + [sym_preproc_elif] = STATE(2254), + [sym_preproc_elifdef] = STATE(2254), + [sym_function_definition] = STATE(23), + [sym__old_style_function_definition] = STATE(135), + [sym_declaration] = STATE(23), + [sym_type_definition] = STATE(23), + [sym__declaration_modifiers] = STATE(855), + [sym__declaration_specifiers] = STATE(1530), + [sym_linkage_specification] = STATE(23), + [sym_attribute_specifier] = STATE(855), + [sym_attribute_declaration] = STATE(495), + [sym_ms_declspec_modifier] = STATE(855), + [sym_ms_call_modifier] = STATE(846), + [sym_compound_statement] = STATE(23), + [sym_storage_class_specifier] = STATE(855), + [sym_type_qualifier] = STATE(855), + [sym__type_specifier] = STATE(1124), + [sym_sized_type_specifier] = STATE(1069), + [sym_enum_specifier] = STATE(1069), + [sym_struct_specifier] = STATE(1069), + [sym_union_specifier] = STATE(1069), + [sym_attributed_statement] = STATE(23), + [sym_labeled_statement] = STATE(23), + [sym_expression_statement] = STATE(23), + [sym_if_statement] = STATE(23), + [sym_switch_statement] = STATE(23), + [sym_case_statement] = STATE(23), + [sym_while_statement] = STATE(23), + [sym_do_statement] = STATE(23), + [sym_for_statement] = STATE(23), + [sym_return_statement] = STATE(23), + [sym_break_statement] = STATE(23), + [sym_continue_statement] = STATE(23), + [sym_goto_statement] = STATE(23), + [sym_seh_try_statement] = STATE(23), + [sym_seh_leave_statement] = STATE(23), + [sym__expression] = STATE(1239), + [sym__expression_not_binary] = STATE(809), + [sym_comma_expression] = STATE(2249), + [sym_conditional_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_pointer_expression] = STATE(877), + [sym_unary_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_update_expression] = STATE(809), + [sym_cast_expression] = STATE(809), + [sym_sizeof_expression] = STATE(809), + [sym_alignof_expression] = STATE(809), + [sym_offsetof_expression] = STATE(809), + [sym_generic_expression] = STATE(809), + [sym_subscript_expression] = STATE(877), + [sym_call_expression] = STATE(877), + [sym_gnu_asm_expression] = STATE(809), + [sym_field_expression] = STATE(877), + [sym_compound_literal_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(877), + [sym_char_literal] = STATE(809), + [sym_concatenated_string] = STATE(809), + [sym_string_literal] = STATE(573), + [sym_null] = STATE(809), + [sym__empty_declaration] = STATE(23), + [sym_macro_type_specifier] = STATE(1069), + [aux_sym_preproc_if_repeat1] = STATE(23), + [aux_sym__declaration_specifiers_repeat1] = STATE(855), [aux_sym_attributed_declarator_repeat1] = STATE(435), - [aux_sym_sized_type_specifier_repeat1] = STATE(1113), - [sym_identifier] = ACTIONS(181), - [aux_sym_preproc_include_token1] = ACTIONS(183), - [aux_sym_preproc_def_token1] = ACTIONS(185), - [aux_sym_preproc_if_token1] = ACTIONS(187), - [aux_sym_preproc_if_token2] = ACTIONS(231), - [aux_sym_preproc_ifdef_token1] = ACTIONS(191), - [aux_sym_preproc_ifdef_token2] = ACTIONS(191), - [aux_sym_preproc_else_token1] = ACTIONS(115), - [aux_sym_preproc_elif_token1] = ACTIONS(117), - [sym_preproc_directive] = ACTIONS(193), + [aux_sym_sized_type_specifier_repeat1] = STATE(1085), + [sym_identifier] = ACTIONS(105), + [aux_sym_preproc_include_token1] = ACTIONS(107), + [aux_sym_preproc_def_token1] = ACTIONS(109), + [aux_sym_preproc_if_token1] = ACTIONS(111), + [aux_sym_preproc_if_token2] = ACTIONS(181), + [aux_sym_preproc_ifdef_token1] = ACTIONS(115), + [aux_sym_preproc_ifdef_token2] = ACTIONS(115), + [aux_sym_preproc_else_token1] = ACTIONS(117), + [aux_sym_preproc_elif_token1] = ACTIONS(119), + [aux_sym_preproc_elifdef_token1] = ACTIONS(121), + [aux_sym_preproc_elifdef_token2] = ACTIONS(121), + [sym_preproc_directive] = ACTIONS(123), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -17843,172 +17830,176 @@ 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(195), - [anon_sym___extension__] = ACTIONS(197), - [anon_sym_typedef] = ACTIONS(199), - [anon_sym_extern] = ACTIONS(201), + [anon_sym_SEMI] = ACTIONS(125), + [anon_sym___extension__] = ACTIONS(127), + [anon_sym_typedef] = ACTIONS(129), + [anon_sym_extern] = ACTIONS(131), [anon_sym___attribute__] = ACTIONS(33), [anon_sym___scanf] = ACTIONS(35), [anon_sym___printf] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym___cdecl] = ACTIONS(41), - [anon_sym___clrcall] = ACTIONS(41), - [anon_sym___stdcall] = ACTIONS(41), - [anon_sym___fastcall] = ACTIONS(41), - [anon_sym___thiscall] = ACTIONS(41), - [anon_sym___vectorcall] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(203), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [sym_primitive_type] = ACTIONS(51), - [anon_sym_enum] = ACTIONS(53), - [anon_sym_struct] = ACTIONS(55), - [anon_sym_union] = ACTIONS(57), - [anon_sym_if] = ACTIONS(205), - [anon_sym_switch] = ACTIONS(207), - [anon_sym_case] = ACTIONS(209), - [anon_sym_default] = ACTIONS(211), - [anon_sym_while] = ACTIONS(213), - [anon_sym_do] = ACTIONS(215), - [anon_sym_for] = ACTIONS(217), - [anon_sym_return] = ACTIONS(219), - [anon_sym_break] = ACTIONS(221), - [anon_sym_continue] = ACTIONS(223), - [anon_sym_goto] = ACTIONS(225), - [anon_sym___try] = ACTIONS(227), - [anon_sym___leave] = ACTIONS(229), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(83), - [anon_sym___alignof__] = ACTIONS(85), - [anon_sym___alignof] = ACTIONS(85), - [anon_sym__alignof] = ACTIONS(85), - [anon_sym_alignof] = ACTIONS(85), - [anon_sym__Alignof] = ACTIONS(85), - [anon_sym_offsetof] = ACTIONS(87), - [anon_sym__Generic] = ACTIONS(89), - [anon_sym_asm] = ACTIONS(91), - [anon_sym___asm__] = ACTIONS(91), - [sym_number_literal] = ACTIONS(159), - [anon_sym_L_SQUOTE] = ACTIONS(95), - [anon_sym_u_SQUOTE] = ACTIONS(95), - [anon_sym_U_SQUOTE] = ACTIONS(95), - [anon_sym_u8_SQUOTE] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(95), - [anon_sym_L_DQUOTE] = ACTIONS(97), - [anon_sym_u_DQUOTE] = ACTIONS(97), - [anon_sym_U_DQUOTE] = ACTIONS(97), - [anon_sym_u8_DQUOTE] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(97), - [sym_true] = ACTIONS(161), - [sym_false] = ACTIONS(161), - [anon_sym_NULL] = ACTIONS(101), - [anon_sym_nullptr] = ACTIONS(101), + [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(133), + [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), + [sym_primitive_type] = ACTIONS(53), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [anon_sym_if] = ACTIONS(135), + [anon_sym_switch] = ACTIONS(137), + [anon_sym_case] = ACTIONS(139), + [anon_sym_default] = ACTIONS(141), + [anon_sym_while] = ACTIONS(143), + [anon_sym_do] = ACTIONS(145), + [anon_sym_for] = ACTIONS(147), + [anon_sym_return] = ACTIONS(149), + [anon_sym_break] = ACTIONS(151), + [anon_sym_continue] = ACTIONS(153), + [anon_sym_goto] = ACTIONS(155), + [anon_sym___try] = ACTIONS(157), + [anon_sym___leave] = ACTIONS(159), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [sym_number_literal] = ACTIONS(161), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(163), + [sym_false] = ACTIONS(163), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [14] = { - [sym_preproc_include] = STATE(26), - [sym_preproc_def] = STATE(26), - [sym_preproc_function_def] = STATE(26), - [sym_preproc_call] = STATE(26), - [sym_preproc_if] = STATE(26), - [sym_preproc_ifdef] = STATE(26), - [sym_preproc_else] = STATE(1945), - [sym_preproc_elif] = STATE(1945), - [sym_function_definition] = STATE(26), - [sym__old_style_function_definition] = STATE(227), - [sym_declaration] = STATE(26), - [sym_type_definition] = STATE(26), - [sym__declaration_modifiers] = STATE(861), - [sym__declaration_specifiers] = STATE(1487), - [sym_linkage_specification] = STATE(26), - [sym_attribute_specifier] = STATE(861), - [sym_attribute_declaration] = STATE(504), - [sym_ms_declspec_modifier] = STATE(861), - [sym_ms_call_modifier] = STATE(857), - [sym_compound_statement] = STATE(26), - [sym_storage_class_specifier] = STATE(861), - [sym_type_qualifier] = STATE(861), - [sym__type_specifier] = STATE(1127), - [sym_sized_type_specifier] = STATE(1106), - [sym_enum_specifier] = STATE(1106), - [sym_struct_specifier] = STATE(1106), - [sym_union_specifier] = STATE(1106), - [sym_attributed_statement] = STATE(26), - [sym_labeled_statement] = STATE(26), - [sym_expression_statement] = STATE(26), - [sym_if_statement] = STATE(26), - [sym_switch_statement] = STATE(26), - [sym_case_statement] = STATE(26), - [sym_while_statement] = STATE(26), - [sym_do_statement] = STATE(26), - [sym_for_statement] = STATE(26), - [sym_return_statement] = STATE(26), - [sym_break_statement] = STATE(26), - [sym_continue_statement] = STATE(26), - [sym_goto_statement] = STATE(26), - [sym_seh_try_statement] = STATE(26), - [sym_seh_leave_statement] = STATE(26), - [sym__expression] = STATE(1230), - [sym__expression_not_binary] = STATE(792), - [sym_comma_expression] = STATE(2008), - [sym_conditional_expression] = STATE(792), - [sym_assignment_expression] = STATE(792), - [sym_pointer_expression] = STATE(901), - [sym_unary_expression] = STATE(792), - [sym_binary_expression] = STATE(792), - [sym_update_expression] = STATE(792), - [sym_cast_expression] = STATE(792), - [sym_sizeof_expression] = STATE(792), - [sym_alignof_expression] = STATE(792), - [sym_offsetof_expression] = STATE(792), - [sym_generic_expression] = STATE(792), - [sym_subscript_expression] = STATE(901), - [sym_call_expression] = STATE(901), - [sym_gnu_asm_expression] = STATE(792), - [sym_field_expression] = STATE(901), - [sym_compound_literal_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(901), - [sym_char_literal] = STATE(792), - [sym_concatenated_string] = STATE(792), - [sym_string_literal] = STATE(675), - [sym_null] = STATE(792), - [sym__empty_declaration] = STATE(26), - [sym_macro_type_specifier] = STATE(1106), - [aux_sym_preproc_if_repeat1] = STATE(26), - [aux_sym__declaration_specifiers_repeat1] = STATE(861), - [aux_sym_attributed_declarator_repeat1] = STATE(435), - [aux_sym_sized_type_specifier_repeat1] = STATE(1113), - [sym_identifier] = ACTIONS(181), - [aux_sym_preproc_include_token1] = ACTIONS(183), - [aux_sym_preproc_def_token1] = ACTIONS(185), - [aux_sym_preproc_if_token1] = ACTIONS(187), - [aux_sym_preproc_if_token2] = ACTIONS(233), - [aux_sym_preproc_ifdef_token1] = ACTIONS(191), - [aux_sym_preproc_ifdef_token2] = ACTIONS(191), - [aux_sym_preproc_else_token1] = ACTIONS(115), - [aux_sym_preproc_elif_token1] = ACTIONS(117), - [sym_preproc_directive] = ACTIONS(193), + [12] = { + [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(2250), + [sym_preproc_elif] = STATE(2250), + [sym_function_definition] = STATE(18), + [sym__old_style_function_definition] = STATE(228), + [sym_declaration] = STATE(18), + [sym_type_definition] = STATE(18), + [sym__declaration_modifiers] = STATE(855), + [sym__declaration_specifiers] = STATE(1523), + [sym_linkage_specification] = STATE(18), + [sym_attribute_specifier] = STATE(855), + [sym_attribute_declaration] = STATE(495), + [sym_ms_declspec_modifier] = STATE(855), + [sym_ms_call_modifier] = STATE(848), + [sym_compound_statement] = STATE(18), + [sym_storage_class_specifier] = STATE(855), + [sym_type_qualifier] = STATE(855), + [sym__type_specifier] = STATE(1118), + [sym_sized_type_specifier] = STATE(1069), + [sym_enum_specifier] = STATE(1069), + [sym_struct_specifier] = STATE(1069), + [sym_union_specifier] = STATE(1069), + [sym_attributed_statement] = STATE(18), + [sym_labeled_statement] = STATE(18), + [sym_expression_statement] = STATE(18), + [sym_if_statement] = STATE(18), + [sym_switch_statement] = STATE(18), + [sym_case_statement] = STATE(18), + [sym_while_statement] = STATE(18), + [sym_do_statement] = STATE(18), + [sym_for_statement] = STATE(18), + [sym_return_statement] = STATE(18), + [sym_break_statement] = STATE(18), + [sym_continue_statement] = STATE(18), + [sym_goto_statement] = STATE(18), + [sym_seh_try_statement] = STATE(18), + [sym_seh_leave_statement] = STATE(18), + [sym__expression] = STATE(1258), + [sym__expression_not_binary] = STATE(809), + [sym_comma_expression] = STATE(2110), + [sym_conditional_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_pointer_expression] = STATE(877), + [sym_unary_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_update_expression] = STATE(809), + [sym_cast_expression] = STATE(809), + [sym_sizeof_expression] = STATE(809), + [sym_alignof_expression] = STATE(809), + [sym_offsetof_expression] = STATE(809), + [sym_generic_expression] = STATE(809), + [sym_subscript_expression] = STATE(877), + [sym_call_expression] = STATE(877), + [sym_gnu_asm_expression] = STATE(809), + [sym_field_expression] = STATE(877), + [sym_compound_literal_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(877), + [sym_char_literal] = STATE(809), + [sym_concatenated_string] = STATE(809), + [sym_string_literal] = STATE(573), + [sym_null] = STATE(809), + [sym__empty_declaration] = STATE(18), + [sym_macro_type_specifier] = STATE(1069), + [aux_sym_preproc_if_repeat1] = STATE(18), + [aux_sym__declaration_specifiers_repeat1] = STATE(855), + [aux_sym_attributed_declarator_repeat1] = STATE(480), + [aux_sym_sized_type_specifier_repeat1] = STATE(1085), + [sym_identifier] = ACTIONS(183), + [aux_sym_preproc_include_token1] = ACTIONS(185), + [aux_sym_preproc_def_token1] = ACTIONS(187), + [aux_sym_preproc_if_token1] = ACTIONS(189), + [aux_sym_preproc_if_token2] = ACTIONS(191), + [aux_sym_preproc_ifdef_token1] = ACTIONS(193), + [aux_sym_preproc_ifdef_token2] = ACTIONS(193), + [aux_sym_preproc_else_token1] = ACTIONS(117), + [aux_sym_preproc_elif_token1] = ACTIONS(119), + [sym_preproc_directive] = ACTIONS(195), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -18016,290 +18007,121 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(195), - [anon_sym___extension__] = ACTIONS(197), - [anon_sym_typedef] = ACTIONS(199), - [anon_sym_extern] = ACTIONS(201), + [anon_sym_SEMI] = ACTIONS(197), + [anon_sym___extension__] = ACTIONS(199), + [anon_sym_typedef] = ACTIONS(201), + [anon_sym_extern] = ACTIONS(203), [anon_sym___attribute__] = ACTIONS(33), [anon_sym___scanf] = ACTIONS(35), [anon_sym___printf] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym___cdecl] = ACTIONS(41), - [anon_sym___clrcall] = ACTIONS(41), - [anon_sym___stdcall] = ACTIONS(41), - [anon_sym___fastcall] = ACTIONS(41), - [anon_sym___thiscall] = ACTIONS(41), - [anon_sym___vectorcall] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(203), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [sym_primitive_type] = ACTIONS(51), - [anon_sym_enum] = ACTIONS(53), - [anon_sym_struct] = ACTIONS(55), - [anon_sym_union] = ACTIONS(57), - [anon_sym_if] = ACTIONS(205), - [anon_sym_switch] = ACTIONS(207), - [anon_sym_case] = ACTIONS(209), - [anon_sym_default] = ACTIONS(211), - [anon_sym_while] = ACTIONS(213), - [anon_sym_do] = ACTIONS(215), - [anon_sym_for] = ACTIONS(217), - [anon_sym_return] = ACTIONS(219), - [anon_sym_break] = ACTIONS(221), - [anon_sym_continue] = ACTIONS(223), - [anon_sym_goto] = ACTIONS(225), - [anon_sym___try] = ACTIONS(227), - [anon_sym___leave] = ACTIONS(229), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(83), - [anon_sym___alignof__] = ACTIONS(85), - [anon_sym___alignof] = ACTIONS(85), - [anon_sym__alignof] = ACTIONS(85), - [anon_sym_alignof] = ACTIONS(85), - [anon_sym__Alignof] = ACTIONS(85), - [anon_sym_offsetof] = ACTIONS(87), - [anon_sym__Generic] = ACTIONS(89), - [anon_sym_asm] = ACTIONS(91), - [anon_sym___asm__] = ACTIONS(91), - [sym_number_literal] = ACTIONS(159), - [anon_sym_L_SQUOTE] = ACTIONS(95), - [anon_sym_u_SQUOTE] = ACTIONS(95), - [anon_sym_U_SQUOTE] = ACTIONS(95), - [anon_sym_u8_SQUOTE] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(95), - [anon_sym_L_DQUOTE] = ACTIONS(97), - [anon_sym_u_DQUOTE] = ACTIONS(97), - [anon_sym_U_DQUOTE] = ACTIONS(97), - [anon_sym_u8_DQUOTE] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(97), - [sym_true] = ACTIONS(161), - [sym_false] = ACTIONS(161), - [anon_sym_NULL] = ACTIONS(101), - [anon_sym_nullptr] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - }, - [15] = { - [sym_preproc_include] = STATE(15), - [sym_preproc_def] = STATE(15), - [sym_preproc_function_def] = STATE(15), - [sym_preproc_call] = STATE(15), - [sym_preproc_if] = STATE(15), - [sym_preproc_ifdef] = STATE(15), - [sym_function_definition] = STATE(15), - [sym__old_style_function_definition] = STATE(137), - [sym_declaration] = STATE(15), - [sym_type_definition] = STATE(15), - [sym__declaration_modifiers] = STATE(861), - [sym__declaration_specifiers] = STATE(1490), - [sym_linkage_specification] = STATE(15), - [sym_attribute_specifier] = STATE(861), - [sym_attribute_declaration] = STATE(504), - [sym_ms_declspec_modifier] = STATE(861), - [sym_ms_call_modifier] = STATE(854), - [sym_compound_statement] = STATE(15), - [sym_storage_class_specifier] = STATE(861), - [sym_type_qualifier] = STATE(861), - [sym__type_specifier] = STATE(1119), - [sym_sized_type_specifier] = STATE(1106), - [sym_enum_specifier] = STATE(1106), - [sym_struct_specifier] = STATE(1106), - [sym_union_specifier] = STATE(1106), - [sym_attributed_statement] = STATE(15), - [sym_labeled_statement] = STATE(15), - [sym_expression_statement] = STATE(15), - [sym_if_statement] = STATE(15), - [sym_switch_statement] = STATE(15), - [sym_case_statement] = STATE(15), - [sym_while_statement] = STATE(15), - [sym_do_statement] = STATE(15), - [sym_for_statement] = STATE(15), - [sym_return_statement] = STATE(15), - [sym_break_statement] = STATE(15), - [sym_continue_statement] = STATE(15), - [sym_goto_statement] = STATE(15), - [sym_seh_try_statement] = STATE(15), - [sym_seh_leave_statement] = STATE(15), - [sym__expression] = STATE(1225), - [sym__expression_not_binary] = STATE(792), - [sym_comma_expression] = STATE(2038), - [sym_conditional_expression] = STATE(792), - [sym_assignment_expression] = STATE(792), - [sym_pointer_expression] = STATE(901), - [sym_unary_expression] = STATE(792), - [sym_binary_expression] = STATE(792), - [sym_update_expression] = STATE(792), - [sym_cast_expression] = STATE(792), - [sym_sizeof_expression] = STATE(792), - [sym_alignof_expression] = STATE(792), - [sym_offsetof_expression] = STATE(792), - [sym_generic_expression] = STATE(792), - [sym_subscript_expression] = STATE(901), - [sym_call_expression] = STATE(901), - [sym_gnu_asm_expression] = STATE(792), - [sym_field_expression] = STATE(901), - [sym_compound_literal_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(901), - [sym_char_literal] = STATE(792), - [sym_concatenated_string] = STATE(792), - [sym_string_literal] = STATE(675), - [sym_null] = STATE(792), - [sym__empty_declaration] = STATE(15), - [sym_macro_type_specifier] = STATE(1106), - [aux_sym_preproc_if_repeat1] = STATE(15), - [aux_sym__declaration_specifiers_repeat1] = STATE(861), - [aux_sym_attributed_declarator_repeat1] = STATE(463), - [aux_sym_sized_type_specifier_repeat1] = STATE(1113), - [sym_identifier] = ACTIONS(235), - [aux_sym_preproc_include_token1] = ACTIONS(238), - [aux_sym_preproc_def_token1] = ACTIONS(241), - [aux_sym_preproc_if_token1] = ACTIONS(244), - [aux_sym_preproc_if_token2] = ACTIONS(247), - [aux_sym_preproc_ifdef_token1] = ACTIONS(249), - [aux_sym_preproc_ifdef_token2] = ACTIONS(249), - [aux_sym_preproc_else_token1] = ACTIONS(247), - [aux_sym_preproc_elif_token1] = ACTIONS(247), - [aux_sym_preproc_elifdef_token1] = ACTIONS(247), - [aux_sym_preproc_elifdef_token2] = ACTIONS(247), - [sym_preproc_directive] = ACTIONS(252), - [anon_sym_LPAREN2] = ACTIONS(255), - [anon_sym_BANG] = ACTIONS(258), - [anon_sym_TILDE] = ACTIONS(258), - [anon_sym_DASH] = ACTIONS(261), - [anon_sym_PLUS] = ACTIONS(261), - [anon_sym_STAR] = ACTIONS(264), - [anon_sym_AMP] = ACTIONS(264), - [anon_sym_SEMI] = ACTIONS(267), - [anon_sym___extension__] = ACTIONS(270), - [anon_sym_typedef] = ACTIONS(273), - [anon_sym_extern] = ACTIONS(276), - [anon_sym___attribute__] = ACTIONS(279), - [anon_sym___scanf] = ACTIONS(282), - [anon_sym___printf] = ACTIONS(282), - [anon_sym_LBRACK_LBRACK] = ACTIONS(285), - [anon_sym___declspec] = ACTIONS(288), - [anon_sym___cdecl] = ACTIONS(291), - [anon_sym___clrcall] = ACTIONS(291), - [anon_sym___stdcall] = ACTIONS(291), - [anon_sym___fastcall] = ACTIONS(291), - [anon_sym___thiscall] = ACTIONS(291), - [anon_sym___vectorcall] = ACTIONS(291), - [anon_sym_LBRACE] = ACTIONS(294), - [anon_sym_signed] = ACTIONS(297), - [anon_sym_unsigned] = ACTIONS(297), - [anon_sym_long] = ACTIONS(297), - [anon_sym_short] = ACTIONS(297), - [anon_sym_static] = ACTIONS(300), - [anon_sym_auto] = ACTIONS(300), - [anon_sym_register] = ACTIONS(300), - [anon_sym_inline] = ACTIONS(300), - [anon_sym___inline] = ACTIONS(300), - [anon_sym___inline__] = ACTIONS(300), - [anon_sym___forceinline] = ACTIONS(300), - [anon_sym_thread_local] = ACTIONS(300), - [anon_sym___thread] = ACTIONS(300), - [anon_sym_const] = ACTIONS(303), - [anon_sym_constexpr] = ACTIONS(303), - [anon_sym_volatile] = ACTIONS(303), - [anon_sym_restrict] = ACTIONS(303), - [anon_sym___restrict__] = ACTIONS(303), - [anon_sym__Atomic] = ACTIONS(303), - [anon_sym__Noreturn] = ACTIONS(303), - [anon_sym_noreturn] = ACTIONS(303), - [sym_primitive_type] = ACTIONS(306), - [anon_sym_enum] = ACTIONS(309), - [anon_sym_struct] = ACTIONS(312), - [anon_sym_union] = ACTIONS(315), - [anon_sym_if] = ACTIONS(318), - [anon_sym_switch] = ACTIONS(321), - [anon_sym_case] = ACTIONS(324), - [anon_sym_default] = ACTIONS(327), - [anon_sym_while] = ACTIONS(330), - [anon_sym_do] = ACTIONS(333), - [anon_sym_for] = ACTIONS(336), - [anon_sym_return] = ACTIONS(339), - [anon_sym_break] = ACTIONS(342), - [anon_sym_continue] = ACTIONS(345), - [anon_sym_goto] = ACTIONS(348), - [anon_sym___try] = ACTIONS(351), - [anon_sym___leave] = ACTIONS(354), - [anon_sym_DASH_DASH] = ACTIONS(357), - [anon_sym_PLUS_PLUS] = ACTIONS(357), - [anon_sym_sizeof] = ACTIONS(360), - [anon_sym___alignof__] = ACTIONS(363), - [anon_sym___alignof] = ACTIONS(363), - [anon_sym__alignof] = ACTIONS(363), - [anon_sym_alignof] = ACTIONS(363), - [anon_sym__Alignof] = ACTIONS(363), - [anon_sym_offsetof] = ACTIONS(366), - [anon_sym__Generic] = ACTIONS(369), - [anon_sym_asm] = ACTIONS(372), - [anon_sym___asm__] = ACTIONS(372), - [sym_number_literal] = ACTIONS(375), - [anon_sym_L_SQUOTE] = ACTIONS(378), - [anon_sym_u_SQUOTE] = ACTIONS(378), - [anon_sym_U_SQUOTE] = ACTIONS(378), - [anon_sym_u8_SQUOTE] = ACTIONS(378), - [anon_sym_SQUOTE] = ACTIONS(378), - [anon_sym_L_DQUOTE] = ACTIONS(381), - [anon_sym_u_DQUOTE] = ACTIONS(381), - [anon_sym_U_DQUOTE] = ACTIONS(381), - [anon_sym_u8_DQUOTE] = ACTIONS(381), - [anon_sym_DQUOTE] = ACTIONS(381), - [sym_true] = ACTIONS(384), - [sym_false] = ACTIONS(384), - [anon_sym_NULL] = ACTIONS(387), - [anon_sym_nullptr] = ACTIONS(387), + [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(205), + [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), + [sym_primitive_type] = ACTIONS(53), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [anon_sym_if] = ACTIONS(207), + [anon_sym_switch] = ACTIONS(209), + [anon_sym_case] = ACTIONS(211), + [anon_sym_default] = ACTIONS(213), + [anon_sym_while] = ACTIONS(215), + [anon_sym_do] = ACTIONS(217), + [anon_sym_for] = ACTIONS(219), + [anon_sym_return] = ACTIONS(221), + [anon_sym_break] = ACTIONS(223), + [anon_sym_continue] = ACTIONS(225), + [anon_sym_goto] = ACTIONS(227), + [anon_sym___try] = ACTIONS(229), + [anon_sym___leave] = ACTIONS(231), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [sym_number_literal] = ACTIONS(161), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(163), + [sym_false] = ACTIONS(163), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [16] = { + [13] = { [sym_preproc_include] = STATE(27), [sym_preproc_def] = STATE(27), [sym_preproc_function_def] = STATE(27), [sym_preproc_call] = STATE(27), [sym_preproc_if] = STATE(27), [sym_preproc_ifdef] = STATE(27), - [sym_preproc_else] = STATE(2228), - [sym_preproc_elif] = STATE(2228), + [sym_preproc_else] = STATE(2163), + [sym_preproc_elif] = STATE(2163), [sym_function_definition] = STATE(27), - [sym__old_style_function_definition] = STATE(227), + [sym__old_style_function_definition] = STATE(228), [sym_declaration] = STATE(27), [sym_type_definition] = STATE(27), - [sym__declaration_modifiers] = STATE(861), - [sym__declaration_specifiers] = STATE(1487), + [sym__declaration_modifiers] = STATE(855), + [sym__declaration_specifiers] = STATE(1523), [sym_linkage_specification] = STATE(27), - [sym_attribute_specifier] = STATE(861), - [sym_attribute_declaration] = STATE(504), - [sym_ms_declspec_modifier] = STATE(861), - [sym_ms_call_modifier] = STATE(857), + [sym_attribute_specifier] = STATE(855), + [sym_attribute_declaration] = STATE(495), + [sym_ms_declspec_modifier] = STATE(855), + [sym_ms_call_modifier] = STATE(848), [sym_compound_statement] = STATE(27), - [sym_storage_class_specifier] = STATE(861), - [sym_type_qualifier] = STATE(861), - [sym__type_specifier] = STATE(1127), - [sym_sized_type_specifier] = STATE(1106), - [sym_enum_specifier] = STATE(1106), - [sym_struct_specifier] = STATE(1106), - [sym_union_specifier] = STATE(1106), + [sym_storage_class_specifier] = STATE(855), + [sym_type_qualifier] = STATE(855), + [sym__type_specifier] = STATE(1118), + [sym_sized_type_specifier] = STATE(1069), + [sym_enum_specifier] = STATE(1069), + [sym_struct_specifier] = STATE(1069), + [sym_union_specifier] = STATE(1069), [sym_attributed_statement] = STATE(27), [sym_labeled_statement] = STATE(27), [sym_expression_statement] = STATE(27), @@ -18315,46 +18137,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(27), [sym_seh_try_statement] = STATE(27), [sym_seh_leave_statement] = STATE(27), - [sym__expression] = STATE(1230), - [sym__expression_not_binary] = STATE(792), - [sym_comma_expression] = STATE(2008), - [sym_conditional_expression] = STATE(792), - [sym_assignment_expression] = STATE(792), - [sym_pointer_expression] = STATE(901), - [sym_unary_expression] = STATE(792), - [sym_binary_expression] = STATE(792), - [sym_update_expression] = STATE(792), - [sym_cast_expression] = STATE(792), - [sym_sizeof_expression] = STATE(792), - [sym_alignof_expression] = STATE(792), - [sym_offsetof_expression] = STATE(792), - [sym_generic_expression] = STATE(792), - [sym_subscript_expression] = STATE(901), - [sym_call_expression] = STATE(901), - [sym_gnu_asm_expression] = STATE(792), - [sym_field_expression] = STATE(901), - [sym_compound_literal_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(901), - [sym_char_literal] = STATE(792), - [sym_concatenated_string] = STATE(792), - [sym_string_literal] = STATE(675), - [sym_null] = STATE(792), + [sym__expression] = STATE(1258), + [sym__expression_not_binary] = STATE(809), + [sym_comma_expression] = STATE(2110), + [sym_conditional_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_pointer_expression] = STATE(877), + [sym_unary_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_update_expression] = STATE(809), + [sym_cast_expression] = STATE(809), + [sym_sizeof_expression] = STATE(809), + [sym_alignof_expression] = STATE(809), + [sym_offsetof_expression] = STATE(809), + [sym_generic_expression] = STATE(809), + [sym_subscript_expression] = STATE(877), + [sym_call_expression] = STATE(877), + [sym_gnu_asm_expression] = STATE(809), + [sym_field_expression] = STATE(877), + [sym_compound_literal_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(877), + [sym_char_literal] = STATE(809), + [sym_concatenated_string] = STATE(809), + [sym_string_literal] = STATE(573), + [sym_null] = STATE(809), [sym__empty_declaration] = STATE(27), - [sym_macro_type_specifier] = STATE(1106), + [sym_macro_type_specifier] = STATE(1069), [aux_sym_preproc_if_repeat1] = STATE(27), - [aux_sym__declaration_specifiers_repeat1] = STATE(861), - [aux_sym_attributed_declarator_repeat1] = STATE(435), - [aux_sym_sized_type_specifier_repeat1] = STATE(1113), - [sym_identifier] = ACTIONS(181), - [aux_sym_preproc_include_token1] = ACTIONS(183), - [aux_sym_preproc_def_token1] = ACTIONS(185), - [aux_sym_preproc_if_token1] = ACTIONS(187), - [aux_sym_preproc_if_token2] = ACTIONS(390), - [aux_sym_preproc_ifdef_token1] = ACTIONS(191), - [aux_sym_preproc_ifdef_token2] = ACTIONS(191), - [aux_sym_preproc_else_token1] = ACTIONS(115), - [aux_sym_preproc_elif_token1] = ACTIONS(117), - [sym_preproc_directive] = ACTIONS(193), + [aux_sym__declaration_specifiers_repeat1] = STATE(855), + [aux_sym_attributed_declarator_repeat1] = STATE(480), + [aux_sym_sized_type_specifier_repeat1] = STATE(1085), + [sym_identifier] = ACTIONS(183), + [aux_sym_preproc_include_token1] = ACTIONS(185), + [aux_sym_preproc_def_token1] = ACTIONS(187), + [aux_sym_preproc_if_token1] = ACTIONS(189), + [aux_sym_preproc_if_token2] = ACTIONS(233), + [aux_sym_preproc_ifdef_token1] = ACTIONS(193), + [aux_sym_preproc_ifdef_token2] = ACTIONS(193), + [aux_sym_preproc_else_token1] = ACTIONS(117), + [aux_sym_preproc_elif_token1] = ACTIONS(119), + [sym_preproc_directive] = ACTIONS(195), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -18362,117 +18184,298 @@ 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(195), - [anon_sym___extension__] = ACTIONS(197), - [anon_sym_typedef] = ACTIONS(199), - [anon_sym_extern] = ACTIONS(201), + [anon_sym_SEMI] = ACTIONS(197), + [anon_sym___extension__] = ACTIONS(199), + [anon_sym_typedef] = ACTIONS(201), + [anon_sym_extern] = ACTIONS(203), [anon_sym___attribute__] = ACTIONS(33), [anon_sym___scanf] = ACTIONS(35), [anon_sym___printf] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym___cdecl] = ACTIONS(41), - [anon_sym___clrcall] = ACTIONS(41), - [anon_sym___stdcall] = ACTIONS(41), - [anon_sym___fastcall] = ACTIONS(41), - [anon_sym___thiscall] = ACTIONS(41), - [anon_sym___vectorcall] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(203), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [sym_primitive_type] = ACTIONS(51), - [anon_sym_enum] = ACTIONS(53), - [anon_sym_struct] = ACTIONS(55), - [anon_sym_union] = ACTIONS(57), - [anon_sym_if] = ACTIONS(205), - [anon_sym_switch] = ACTIONS(207), - [anon_sym_case] = ACTIONS(209), - [anon_sym_default] = ACTIONS(211), - [anon_sym_while] = ACTIONS(213), - [anon_sym_do] = ACTIONS(215), - [anon_sym_for] = ACTIONS(217), - [anon_sym_return] = ACTIONS(219), - [anon_sym_break] = ACTIONS(221), - [anon_sym_continue] = ACTIONS(223), - [anon_sym_goto] = ACTIONS(225), - [anon_sym___try] = ACTIONS(227), - [anon_sym___leave] = ACTIONS(229), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(83), - [anon_sym___alignof__] = ACTIONS(85), - [anon_sym___alignof] = ACTIONS(85), - [anon_sym__alignof] = ACTIONS(85), - [anon_sym_alignof] = ACTIONS(85), - [anon_sym__Alignof] = ACTIONS(85), - [anon_sym_offsetof] = ACTIONS(87), - [anon_sym__Generic] = ACTIONS(89), - [anon_sym_asm] = ACTIONS(91), - [anon_sym___asm__] = ACTIONS(91), - [sym_number_literal] = ACTIONS(159), - [anon_sym_L_SQUOTE] = ACTIONS(95), - [anon_sym_u_SQUOTE] = ACTIONS(95), - [anon_sym_U_SQUOTE] = ACTIONS(95), - [anon_sym_u8_SQUOTE] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(95), - [anon_sym_L_DQUOTE] = ACTIONS(97), - [anon_sym_u_DQUOTE] = ACTIONS(97), - [anon_sym_U_DQUOTE] = ACTIONS(97), - [anon_sym_u8_DQUOTE] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(97), - [sym_true] = ACTIONS(161), - [sym_false] = ACTIONS(161), - [anon_sym_NULL] = ACTIONS(101), - [anon_sym_nullptr] = ACTIONS(101), + [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(205), + [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), + [sym_primitive_type] = ACTIONS(53), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [anon_sym_if] = ACTIONS(207), + [anon_sym_switch] = ACTIONS(209), + [anon_sym_case] = ACTIONS(211), + [anon_sym_default] = ACTIONS(213), + [anon_sym_while] = ACTIONS(215), + [anon_sym_do] = ACTIONS(217), + [anon_sym_for] = ACTIONS(219), + [anon_sym_return] = ACTIONS(221), + [anon_sym_break] = ACTIONS(223), + [anon_sym_continue] = ACTIONS(225), + [anon_sym_goto] = ACTIONS(227), + [anon_sym___try] = ACTIONS(229), + [anon_sym___leave] = ACTIONS(231), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [sym_number_literal] = ACTIONS(161), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(163), + [sym_false] = ACTIONS(163), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [17] = { + [14] = { + [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(2145), + [sym_preproc_elif] = STATE(2145), + [sym_function_definition] = STATE(22), + [sym__old_style_function_definition] = STATE(228), + [sym_declaration] = STATE(22), + [sym_type_definition] = STATE(22), + [sym__declaration_modifiers] = STATE(855), + [sym__declaration_specifiers] = STATE(1523), + [sym_linkage_specification] = STATE(22), + [sym_attribute_specifier] = STATE(855), + [sym_attribute_declaration] = STATE(495), + [sym_ms_declspec_modifier] = STATE(855), + [sym_ms_call_modifier] = STATE(848), + [sym_compound_statement] = STATE(22), + [sym_storage_class_specifier] = STATE(855), + [sym_type_qualifier] = STATE(855), + [sym__type_specifier] = STATE(1118), + [sym_sized_type_specifier] = STATE(1069), + [sym_enum_specifier] = STATE(1069), + [sym_struct_specifier] = STATE(1069), + [sym_union_specifier] = STATE(1069), + [sym_attributed_statement] = STATE(22), + [sym_labeled_statement] = STATE(22), + [sym_expression_statement] = STATE(22), + [sym_if_statement] = STATE(22), + [sym_switch_statement] = STATE(22), + [sym_case_statement] = STATE(22), + [sym_while_statement] = STATE(22), + [sym_do_statement] = STATE(22), + [sym_for_statement] = STATE(22), + [sym_return_statement] = STATE(22), + [sym_break_statement] = STATE(22), + [sym_continue_statement] = STATE(22), + [sym_goto_statement] = STATE(22), + [sym_seh_try_statement] = STATE(22), + [sym_seh_leave_statement] = STATE(22), + [sym__expression] = STATE(1258), + [sym__expression_not_binary] = STATE(809), + [sym_comma_expression] = STATE(2110), + [sym_conditional_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_pointer_expression] = STATE(877), + [sym_unary_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_update_expression] = STATE(809), + [sym_cast_expression] = STATE(809), + [sym_sizeof_expression] = STATE(809), + [sym_alignof_expression] = STATE(809), + [sym_offsetof_expression] = STATE(809), + [sym_generic_expression] = STATE(809), + [sym_subscript_expression] = STATE(877), + [sym_call_expression] = STATE(877), + [sym_gnu_asm_expression] = STATE(809), + [sym_field_expression] = STATE(877), + [sym_compound_literal_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(877), + [sym_char_literal] = STATE(809), + [sym_concatenated_string] = STATE(809), + [sym_string_literal] = STATE(573), + [sym_null] = STATE(809), + [sym__empty_declaration] = STATE(22), + [sym_macro_type_specifier] = STATE(1069), + [aux_sym_preproc_if_repeat1] = STATE(22), + [aux_sym__declaration_specifiers_repeat1] = STATE(855), + [aux_sym_attributed_declarator_repeat1] = STATE(480), + [aux_sym_sized_type_specifier_repeat1] = STATE(1085), + [sym_identifier] = ACTIONS(183), + [aux_sym_preproc_include_token1] = ACTIONS(185), + [aux_sym_preproc_def_token1] = ACTIONS(187), + [aux_sym_preproc_if_token1] = ACTIONS(189), + [aux_sym_preproc_if_token2] = ACTIONS(235), + [aux_sym_preproc_ifdef_token1] = ACTIONS(193), + [aux_sym_preproc_ifdef_token2] = ACTIONS(193), + [aux_sym_preproc_else_token1] = ACTIONS(117), + [aux_sym_preproc_elif_token1] = ACTIONS(119), + [sym_preproc_directive] = ACTIONS(195), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(197), + [anon_sym___extension__] = ACTIONS(199), + [anon_sym_typedef] = ACTIONS(201), + [anon_sym_extern] = ACTIONS(203), + [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(205), + [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), + [sym_primitive_type] = ACTIONS(53), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [anon_sym_if] = ACTIONS(207), + [anon_sym_switch] = ACTIONS(209), + [anon_sym_case] = ACTIONS(211), + [anon_sym_default] = ACTIONS(213), + [anon_sym_while] = ACTIONS(215), + [anon_sym_do] = ACTIONS(217), + [anon_sym_for] = ACTIONS(219), + [anon_sym_return] = ACTIONS(221), + [anon_sym_break] = ACTIONS(223), + [anon_sym_continue] = ACTIONS(225), + [anon_sym_goto] = ACTIONS(227), + [anon_sym___try] = ACTIONS(229), + [anon_sym___leave] = ACTIONS(231), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [sym_number_literal] = ACTIONS(161), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(163), + [sym_false] = ACTIONS(163), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + }, + [15] = { [sym_preproc_include] = STATE(27), [sym_preproc_def] = STATE(27), [sym_preproc_function_def] = STATE(27), [sym_preproc_call] = STATE(27), [sym_preproc_if] = STATE(27), [sym_preproc_ifdef] = STATE(27), - [sym_preproc_else] = STATE(2184), - [sym_preproc_elif] = STATE(2184), + [sym_preproc_else] = STATE(2210), + [sym_preproc_elif] = STATE(2210), [sym_function_definition] = STATE(27), - [sym__old_style_function_definition] = STATE(227), + [sym__old_style_function_definition] = STATE(228), [sym_declaration] = STATE(27), [sym_type_definition] = STATE(27), - [sym__declaration_modifiers] = STATE(861), - [sym__declaration_specifiers] = STATE(1487), + [sym__declaration_modifiers] = STATE(855), + [sym__declaration_specifiers] = STATE(1523), [sym_linkage_specification] = STATE(27), - [sym_attribute_specifier] = STATE(861), - [sym_attribute_declaration] = STATE(504), - [sym_ms_declspec_modifier] = STATE(861), - [sym_ms_call_modifier] = STATE(857), + [sym_attribute_specifier] = STATE(855), + [sym_attribute_declaration] = STATE(495), + [sym_ms_declspec_modifier] = STATE(855), + [sym_ms_call_modifier] = STATE(848), [sym_compound_statement] = STATE(27), - [sym_storage_class_specifier] = STATE(861), - [sym_type_qualifier] = STATE(861), - [sym__type_specifier] = STATE(1127), - [sym_sized_type_specifier] = STATE(1106), - [sym_enum_specifier] = STATE(1106), - [sym_struct_specifier] = STATE(1106), - [sym_union_specifier] = STATE(1106), + [sym_storage_class_specifier] = STATE(855), + [sym_type_qualifier] = STATE(855), + [sym__type_specifier] = STATE(1118), + [sym_sized_type_specifier] = STATE(1069), + [sym_enum_specifier] = STATE(1069), + [sym_struct_specifier] = STATE(1069), + [sym_union_specifier] = STATE(1069), [sym_attributed_statement] = STATE(27), [sym_labeled_statement] = STATE(27), [sym_expression_statement] = STATE(27), @@ -18488,46 +18491,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(27), [sym_seh_try_statement] = STATE(27), [sym_seh_leave_statement] = STATE(27), - [sym__expression] = STATE(1230), - [sym__expression_not_binary] = STATE(792), - [sym_comma_expression] = STATE(2008), - [sym_conditional_expression] = STATE(792), - [sym_assignment_expression] = STATE(792), - [sym_pointer_expression] = STATE(901), - [sym_unary_expression] = STATE(792), - [sym_binary_expression] = STATE(792), - [sym_update_expression] = STATE(792), - [sym_cast_expression] = STATE(792), - [sym_sizeof_expression] = STATE(792), - [sym_alignof_expression] = STATE(792), - [sym_offsetof_expression] = STATE(792), - [sym_generic_expression] = STATE(792), - [sym_subscript_expression] = STATE(901), - [sym_call_expression] = STATE(901), - [sym_gnu_asm_expression] = STATE(792), - [sym_field_expression] = STATE(901), - [sym_compound_literal_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(901), - [sym_char_literal] = STATE(792), - [sym_concatenated_string] = STATE(792), - [sym_string_literal] = STATE(675), - [sym_null] = STATE(792), + [sym__expression] = STATE(1258), + [sym__expression_not_binary] = STATE(809), + [sym_comma_expression] = STATE(2110), + [sym_conditional_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_pointer_expression] = STATE(877), + [sym_unary_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_update_expression] = STATE(809), + [sym_cast_expression] = STATE(809), + [sym_sizeof_expression] = STATE(809), + [sym_alignof_expression] = STATE(809), + [sym_offsetof_expression] = STATE(809), + [sym_generic_expression] = STATE(809), + [sym_subscript_expression] = STATE(877), + [sym_call_expression] = STATE(877), + [sym_gnu_asm_expression] = STATE(809), + [sym_field_expression] = STATE(877), + [sym_compound_literal_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(877), + [sym_char_literal] = STATE(809), + [sym_concatenated_string] = STATE(809), + [sym_string_literal] = STATE(573), + [sym_null] = STATE(809), [sym__empty_declaration] = STATE(27), - [sym_macro_type_specifier] = STATE(1106), + [sym_macro_type_specifier] = STATE(1069), [aux_sym_preproc_if_repeat1] = STATE(27), - [aux_sym__declaration_specifiers_repeat1] = STATE(861), - [aux_sym_attributed_declarator_repeat1] = STATE(435), - [aux_sym_sized_type_specifier_repeat1] = STATE(1113), - [sym_identifier] = ACTIONS(181), - [aux_sym_preproc_include_token1] = ACTIONS(183), - [aux_sym_preproc_def_token1] = ACTIONS(185), - [aux_sym_preproc_if_token1] = ACTIONS(187), - [aux_sym_preproc_if_token2] = ACTIONS(392), - [aux_sym_preproc_ifdef_token1] = ACTIONS(191), - [aux_sym_preproc_ifdef_token2] = ACTIONS(191), - [aux_sym_preproc_else_token1] = ACTIONS(115), - [aux_sym_preproc_elif_token1] = ACTIONS(117), - [sym_preproc_directive] = ACTIONS(193), + [aux_sym__declaration_specifiers_repeat1] = STATE(855), + [aux_sym_attributed_declarator_repeat1] = STATE(480), + [aux_sym_sized_type_specifier_repeat1] = STATE(1085), + [sym_identifier] = ACTIONS(183), + [aux_sym_preproc_include_token1] = ACTIONS(185), + [aux_sym_preproc_def_token1] = ACTIONS(187), + [aux_sym_preproc_if_token1] = ACTIONS(189), + [aux_sym_preproc_if_token2] = ACTIONS(237), + [aux_sym_preproc_ifdef_token1] = ACTIONS(193), + [aux_sym_preproc_ifdef_token2] = ACTIONS(193), + [aux_sym_preproc_else_token1] = ACTIONS(117), + [aux_sym_preproc_elif_token1] = ACTIONS(119), + [sym_preproc_directive] = ACTIONS(195), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -18535,87 +18538,445 @@ 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(195), - [anon_sym___extension__] = ACTIONS(197), - [anon_sym_typedef] = ACTIONS(199), - [anon_sym_extern] = ACTIONS(201), + [anon_sym_SEMI] = ACTIONS(197), + [anon_sym___extension__] = ACTIONS(199), + [anon_sym_typedef] = ACTIONS(201), + [anon_sym_extern] = ACTIONS(203), [anon_sym___attribute__] = ACTIONS(33), [anon_sym___scanf] = ACTIONS(35), [anon_sym___printf] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym___cdecl] = ACTIONS(41), - [anon_sym___clrcall] = ACTIONS(41), - [anon_sym___stdcall] = ACTIONS(41), - [anon_sym___fastcall] = ACTIONS(41), - [anon_sym___thiscall] = ACTIONS(41), - [anon_sym___vectorcall] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(203), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [sym_primitive_type] = ACTIONS(51), - [anon_sym_enum] = ACTIONS(53), - [anon_sym_struct] = ACTIONS(55), - [anon_sym_union] = ACTIONS(57), - [anon_sym_if] = ACTIONS(205), - [anon_sym_switch] = ACTIONS(207), - [anon_sym_case] = ACTIONS(209), - [anon_sym_default] = ACTIONS(211), - [anon_sym_while] = ACTIONS(213), - [anon_sym_do] = ACTIONS(215), - [anon_sym_for] = ACTIONS(217), - [anon_sym_return] = ACTIONS(219), - [anon_sym_break] = ACTIONS(221), - [anon_sym_continue] = ACTIONS(223), - [anon_sym_goto] = ACTIONS(225), - [anon_sym___try] = ACTIONS(227), - [anon_sym___leave] = ACTIONS(229), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(83), - [anon_sym___alignof__] = ACTIONS(85), - [anon_sym___alignof] = ACTIONS(85), - [anon_sym__alignof] = ACTIONS(85), - [anon_sym_alignof] = ACTIONS(85), - [anon_sym__Alignof] = ACTIONS(85), - [anon_sym_offsetof] = ACTIONS(87), - [anon_sym__Generic] = ACTIONS(89), - [anon_sym_asm] = ACTIONS(91), - [anon_sym___asm__] = ACTIONS(91), - [sym_number_literal] = ACTIONS(159), - [anon_sym_L_SQUOTE] = ACTIONS(95), - [anon_sym_u_SQUOTE] = ACTIONS(95), - [anon_sym_U_SQUOTE] = ACTIONS(95), - [anon_sym_u8_SQUOTE] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(95), - [anon_sym_L_DQUOTE] = ACTIONS(97), - [anon_sym_u_DQUOTE] = ACTIONS(97), - [anon_sym_U_DQUOTE] = ACTIONS(97), - [anon_sym_u8_DQUOTE] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(97), - [sym_true] = ACTIONS(161), - [sym_false] = ACTIONS(161), - [anon_sym_NULL] = ACTIONS(101), - [anon_sym_nullptr] = ACTIONS(101), + [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(205), + [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), + [sym_primitive_type] = ACTIONS(53), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [anon_sym_if] = ACTIONS(207), + [anon_sym_switch] = ACTIONS(209), + [anon_sym_case] = ACTIONS(211), + [anon_sym_default] = ACTIONS(213), + [anon_sym_while] = ACTIONS(215), + [anon_sym_do] = ACTIONS(217), + [anon_sym_for] = ACTIONS(219), + [anon_sym_return] = ACTIONS(221), + [anon_sym_break] = ACTIONS(223), + [anon_sym_continue] = ACTIONS(225), + [anon_sym_goto] = ACTIONS(227), + [anon_sym___try] = ACTIONS(229), + [anon_sym___leave] = ACTIONS(231), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [sym_number_literal] = ACTIONS(161), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(163), + [sym_false] = ACTIONS(163), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + }, + [16] = { + [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(2180), + [sym_preproc_elif] = STATE(2180), + [sym_function_definition] = STATE(13), + [sym__old_style_function_definition] = STATE(228), + [sym_declaration] = STATE(13), + [sym_type_definition] = STATE(13), + [sym__declaration_modifiers] = STATE(855), + [sym__declaration_specifiers] = STATE(1523), + [sym_linkage_specification] = STATE(13), + [sym_attribute_specifier] = STATE(855), + [sym_attribute_declaration] = STATE(495), + [sym_ms_declspec_modifier] = STATE(855), + [sym_ms_call_modifier] = STATE(848), + [sym_compound_statement] = STATE(13), + [sym_storage_class_specifier] = STATE(855), + [sym_type_qualifier] = STATE(855), + [sym__type_specifier] = STATE(1118), + [sym_sized_type_specifier] = STATE(1069), + [sym_enum_specifier] = STATE(1069), + [sym_struct_specifier] = STATE(1069), + [sym_union_specifier] = STATE(1069), + [sym_attributed_statement] = STATE(13), + [sym_labeled_statement] = STATE(13), + [sym_expression_statement] = STATE(13), + [sym_if_statement] = STATE(13), + [sym_switch_statement] = STATE(13), + [sym_case_statement] = STATE(13), + [sym_while_statement] = STATE(13), + [sym_do_statement] = STATE(13), + [sym_for_statement] = STATE(13), + [sym_return_statement] = STATE(13), + [sym_break_statement] = STATE(13), + [sym_continue_statement] = STATE(13), + [sym_goto_statement] = STATE(13), + [sym_seh_try_statement] = STATE(13), + [sym_seh_leave_statement] = STATE(13), + [sym__expression] = STATE(1258), + [sym__expression_not_binary] = STATE(809), + [sym_comma_expression] = STATE(2110), + [sym_conditional_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_pointer_expression] = STATE(877), + [sym_unary_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_update_expression] = STATE(809), + [sym_cast_expression] = STATE(809), + [sym_sizeof_expression] = STATE(809), + [sym_alignof_expression] = STATE(809), + [sym_offsetof_expression] = STATE(809), + [sym_generic_expression] = STATE(809), + [sym_subscript_expression] = STATE(877), + [sym_call_expression] = STATE(877), + [sym_gnu_asm_expression] = STATE(809), + [sym_field_expression] = STATE(877), + [sym_compound_literal_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(877), + [sym_char_literal] = STATE(809), + [sym_concatenated_string] = STATE(809), + [sym_string_literal] = STATE(573), + [sym_null] = STATE(809), + [sym__empty_declaration] = STATE(13), + [sym_macro_type_specifier] = STATE(1069), + [aux_sym_preproc_if_repeat1] = STATE(13), + [aux_sym__declaration_specifiers_repeat1] = STATE(855), + [aux_sym_attributed_declarator_repeat1] = STATE(480), + [aux_sym_sized_type_specifier_repeat1] = STATE(1085), + [sym_identifier] = ACTIONS(183), + [aux_sym_preproc_include_token1] = ACTIONS(185), + [aux_sym_preproc_def_token1] = ACTIONS(187), + [aux_sym_preproc_if_token1] = ACTIONS(189), + [aux_sym_preproc_if_token2] = ACTIONS(239), + [aux_sym_preproc_ifdef_token1] = ACTIONS(193), + [aux_sym_preproc_ifdef_token2] = ACTIONS(193), + [aux_sym_preproc_else_token1] = ACTIONS(117), + [aux_sym_preproc_elif_token1] = ACTIONS(119), + [sym_preproc_directive] = ACTIONS(195), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(197), + [anon_sym___extension__] = ACTIONS(199), + [anon_sym_typedef] = ACTIONS(201), + [anon_sym_extern] = ACTIONS(203), + [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(205), + [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), + [sym_primitive_type] = ACTIONS(53), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [anon_sym_if] = ACTIONS(207), + [anon_sym_switch] = ACTIONS(209), + [anon_sym_case] = ACTIONS(211), + [anon_sym_default] = ACTIONS(213), + [anon_sym_while] = ACTIONS(215), + [anon_sym_do] = ACTIONS(217), + [anon_sym_for] = ACTIONS(219), + [anon_sym_return] = ACTIONS(221), + [anon_sym_break] = ACTIONS(223), + [anon_sym_continue] = ACTIONS(225), + [anon_sym_goto] = ACTIONS(227), + [anon_sym___try] = ACTIONS(229), + [anon_sym___leave] = ACTIONS(231), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [sym_number_literal] = ACTIONS(161), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(163), + [sym_false] = ACTIONS(163), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + }, + [17] = { + [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(2248), + [sym_preproc_elif] = STATE(2248), + [sym_function_definition] = STATE(20), + [sym__old_style_function_definition] = STATE(228), + [sym_declaration] = STATE(20), + [sym_type_definition] = STATE(20), + [sym__declaration_modifiers] = STATE(855), + [sym__declaration_specifiers] = STATE(1523), + [sym_linkage_specification] = STATE(20), + [sym_attribute_specifier] = STATE(855), + [sym_attribute_declaration] = STATE(495), + [sym_ms_declspec_modifier] = STATE(855), + [sym_ms_call_modifier] = STATE(848), + [sym_compound_statement] = STATE(20), + [sym_storage_class_specifier] = STATE(855), + [sym_type_qualifier] = STATE(855), + [sym__type_specifier] = STATE(1118), + [sym_sized_type_specifier] = STATE(1069), + [sym_enum_specifier] = STATE(1069), + [sym_struct_specifier] = STATE(1069), + [sym_union_specifier] = STATE(1069), + [sym_attributed_statement] = STATE(20), + [sym_labeled_statement] = STATE(20), + [sym_expression_statement] = STATE(20), + [sym_if_statement] = STATE(20), + [sym_switch_statement] = STATE(20), + [sym_case_statement] = STATE(20), + [sym_while_statement] = STATE(20), + [sym_do_statement] = STATE(20), + [sym_for_statement] = STATE(20), + [sym_return_statement] = STATE(20), + [sym_break_statement] = STATE(20), + [sym_continue_statement] = STATE(20), + [sym_goto_statement] = STATE(20), + [sym_seh_try_statement] = STATE(20), + [sym_seh_leave_statement] = STATE(20), + [sym__expression] = STATE(1258), + [sym__expression_not_binary] = STATE(809), + [sym_comma_expression] = STATE(2110), + [sym_conditional_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_pointer_expression] = STATE(877), + [sym_unary_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_update_expression] = STATE(809), + [sym_cast_expression] = STATE(809), + [sym_sizeof_expression] = STATE(809), + [sym_alignof_expression] = STATE(809), + [sym_offsetof_expression] = STATE(809), + [sym_generic_expression] = STATE(809), + [sym_subscript_expression] = STATE(877), + [sym_call_expression] = STATE(877), + [sym_gnu_asm_expression] = STATE(809), + [sym_field_expression] = STATE(877), + [sym_compound_literal_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(877), + [sym_char_literal] = STATE(809), + [sym_concatenated_string] = STATE(809), + [sym_string_literal] = STATE(573), + [sym_null] = STATE(809), + [sym__empty_declaration] = STATE(20), + [sym_macro_type_specifier] = STATE(1069), + [aux_sym_preproc_if_repeat1] = STATE(20), + [aux_sym__declaration_specifiers_repeat1] = STATE(855), + [aux_sym_attributed_declarator_repeat1] = STATE(480), + [aux_sym_sized_type_specifier_repeat1] = STATE(1085), + [sym_identifier] = ACTIONS(183), + [aux_sym_preproc_include_token1] = ACTIONS(185), + [aux_sym_preproc_def_token1] = ACTIONS(187), + [aux_sym_preproc_if_token1] = ACTIONS(189), + [aux_sym_preproc_if_token2] = ACTIONS(241), + [aux_sym_preproc_ifdef_token1] = ACTIONS(193), + [aux_sym_preproc_ifdef_token2] = ACTIONS(193), + [aux_sym_preproc_else_token1] = ACTIONS(117), + [aux_sym_preproc_elif_token1] = ACTIONS(119), + [sym_preproc_directive] = ACTIONS(195), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(197), + [anon_sym___extension__] = ACTIONS(199), + [anon_sym_typedef] = ACTIONS(201), + [anon_sym_extern] = ACTIONS(203), + [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(205), + [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), + [sym_primitive_type] = ACTIONS(53), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [anon_sym_if] = ACTIONS(207), + [anon_sym_switch] = ACTIONS(209), + [anon_sym_case] = ACTIONS(211), + [anon_sym_default] = ACTIONS(213), + [anon_sym_while] = ACTIONS(215), + [anon_sym_do] = ACTIONS(217), + [anon_sym_for] = ACTIONS(219), + [anon_sym_return] = ACTIONS(221), + [anon_sym_break] = ACTIONS(223), + [anon_sym_continue] = ACTIONS(225), + [anon_sym_goto] = ACTIONS(227), + [anon_sym___try] = ACTIONS(229), + [anon_sym___leave] = ACTIONS(231), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [sym_number_literal] = ACTIONS(161), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(163), + [sym_false] = ACTIONS(163), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, [18] = { @@ -18625,27 +18986,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(27), [sym_preproc_if] = STATE(27), [sym_preproc_ifdef] = STATE(27), - [sym_preproc_else] = STATE(1991), - [sym_preproc_elif] = STATE(1991), + [sym_preproc_else] = STATE(1995), + [sym_preproc_elif] = STATE(1995), [sym_function_definition] = STATE(27), - [sym__old_style_function_definition] = STATE(227), + [sym__old_style_function_definition] = STATE(228), [sym_declaration] = STATE(27), [sym_type_definition] = STATE(27), - [sym__declaration_modifiers] = STATE(861), - [sym__declaration_specifiers] = STATE(1487), + [sym__declaration_modifiers] = STATE(855), + [sym__declaration_specifiers] = STATE(1523), [sym_linkage_specification] = STATE(27), - [sym_attribute_specifier] = STATE(861), - [sym_attribute_declaration] = STATE(504), - [sym_ms_declspec_modifier] = STATE(861), - [sym_ms_call_modifier] = STATE(857), + [sym_attribute_specifier] = STATE(855), + [sym_attribute_declaration] = STATE(495), + [sym_ms_declspec_modifier] = STATE(855), + [sym_ms_call_modifier] = STATE(848), [sym_compound_statement] = STATE(27), - [sym_storage_class_specifier] = STATE(861), - [sym_type_qualifier] = STATE(861), - [sym__type_specifier] = STATE(1127), - [sym_sized_type_specifier] = STATE(1106), - [sym_enum_specifier] = STATE(1106), - [sym_struct_specifier] = STATE(1106), - [sym_union_specifier] = STATE(1106), + [sym_storage_class_specifier] = STATE(855), + [sym_type_qualifier] = STATE(855), + [sym__type_specifier] = STATE(1118), + [sym_sized_type_specifier] = STATE(1069), + [sym_enum_specifier] = STATE(1069), + [sym_struct_specifier] = STATE(1069), + [sym_union_specifier] = STATE(1069), [sym_attributed_statement] = STATE(27), [sym_labeled_statement] = STATE(27), [sym_expression_statement] = STATE(27), @@ -18661,46 +19022,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(27), [sym_seh_try_statement] = STATE(27), [sym_seh_leave_statement] = STATE(27), - [sym__expression] = STATE(1230), - [sym__expression_not_binary] = STATE(792), - [sym_comma_expression] = STATE(2008), - [sym_conditional_expression] = STATE(792), - [sym_assignment_expression] = STATE(792), - [sym_pointer_expression] = STATE(901), - [sym_unary_expression] = STATE(792), - [sym_binary_expression] = STATE(792), - [sym_update_expression] = STATE(792), - [sym_cast_expression] = STATE(792), - [sym_sizeof_expression] = STATE(792), - [sym_alignof_expression] = STATE(792), - [sym_offsetof_expression] = STATE(792), - [sym_generic_expression] = STATE(792), - [sym_subscript_expression] = STATE(901), - [sym_call_expression] = STATE(901), - [sym_gnu_asm_expression] = STATE(792), - [sym_field_expression] = STATE(901), - [sym_compound_literal_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(901), - [sym_char_literal] = STATE(792), - [sym_concatenated_string] = STATE(792), - [sym_string_literal] = STATE(675), - [sym_null] = STATE(792), + [sym__expression] = STATE(1258), + [sym__expression_not_binary] = STATE(809), + [sym_comma_expression] = STATE(2110), + [sym_conditional_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_pointer_expression] = STATE(877), + [sym_unary_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_update_expression] = STATE(809), + [sym_cast_expression] = STATE(809), + [sym_sizeof_expression] = STATE(809), + [sym_alignof_expression] = STATE(809), + [sym_offsetof_expression] = STATE(809), + [sym_generic_expression] = STATE(809), + [sym_subscript_expression] = STATE(877), + [sym_call_expression] = STATE(877), + [sym_gnu_asm_expression] = STATE(809), + [sym_field_expression] = STATE(877), + [sym_compound_literal_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(877), + [sym_char_literal] = STATE(809), + [sym_concatenated_string] = STATE(809), + [sym_string_literal] = STATE(573), + [sym_null] = STATE(809), [sym__empty_declaration] = STATE(27), - [sym_macro_type_specifier] = STATE(1106), + [sym_macro_type_specifier] = STATE(1069), [aux_sym_preproc_if_repeat1] = STATE(27), - [aux_sym__declaration_specifiers_repeat1] = STATE(861), - [aux_sym_attributed_declarator_repeat1] = STATE(435), - [aux_sym_sized_type_specifier_repeat1] = STATE(1113), - [sym_identifier] = ACTIONS(181), - [aux_sym_preproc_include_token1] = ACTIONS(183), - [aux_sym_preproc_def_token1] = ACTIONS(185), - [aux_sym_preproc_if_token1] = ACTIONS(187), - [aux_sym_preproc_if_token2] = ACTIONS(394), - [aux_sym_preproc_ifdef_token1] = ACTIONS(191), - [aux_sym_preproc_ifdef_token2] = ACTIONS(191), - [aux_sym_preproc_else_token1] = ACTIONS(115), - [aux_sym_preproc_elif_token1] = ACTIONS(117), - [sym_preproc_directive] = ACTIONS(193), + [aux_sym__declaration_specifiers_repeat1] = STATE(855), + [aux_sym_attributed_declarator_repeat1] = STATE(480), + [aux_sym_sized_type_specifier_repeat1] = STATE(1085), + [sym_identifier] = ACTIONS(183), + [aux_sym_preproc_include_token1] = ACTIONS(185), + [aux_sym_preproc_def_token1] = ACTIONS(187), + [aux_sym_preproc_if_token1] = ACTIONS(189), + [aux_sym_preproc_if_token2] = ACTIONS(243), + [aux_sym_preproc_ifdef_token1] = ACTIONS(193), + [aux_sym_preproc_ifdef_token2] = ACTIONS(193), + [aux_sym_preproc_else_token1] = ACTIONS(117), + [aux_sym_preproc_elif_token1] = ACTIONS(119), + [sym_preproc_directive] = ACTIONS(195), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -18708,518 +19069,176 @@ 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(195), - [anon_sym___extension__] = ACTIONS(197), - [anon_sym_typedef] = ACTIONS(199), - [anon_sym_extern] = ACTIONS(201), + [anon_sym_SEMI] = ACTIONS(197), + [anon_sym___extension__] = ACTIONS(199), + [anon_sym_typedef] = ACTIONS(201), + [anon_sym_extern] = ACTIONS(203), [anon_sym___attribute__] = ACTIONS(33), [anon_sym___scanf] = ACTIONS(35), [anon_sym___printf] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym___cdecl] = ACTIONS(41), - [anon_sym___clrcall] = ACTIONS(41), - [anon_sym___stdcall] = ACTIONS(41), - [anon_sym___fastcall] = ACTIONS(41), - [anon_sym___thiscall] = ACTIONS(41), - [anon_sym___vectorcall] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(203), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [sym_primitive_type] = ACTIONS(51), - [anon_sym_enum] = ACTIONS(53), - [anon_sym_struct] = ACTIONS(55), - [anon_sym_union] = ACTIONS(57), - [anon_sym_if] = ACTIONS(205), - [anon_sym_switch] = ACTIONS(207), - [anon_sym_case] = ACTIONS(209), - [anon_sym_default] = ACTIONS(211), - [anon_sym_while] = ACTIONS(213), - [anon_sym_do] = ACTIONS(215), - [anon_sym_for] = ACTIONS(217), - [anon_sym_return] = ACTIONS(219), - [anon_sym_break] = ACTIONS(221), - [anon_sym_continue] = ACTIONS(223), - [anon_sym_goto] = ACTIONS(225), - [anon_sym___try] = ACTIONS(227), - [anon_sym___leave] = ACTIONS(229), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(83), - [anon_sym___alignof__] = ACTIONS(85), - [anon_sym___alignof] = ACTIONS(85), - [anon_sym__alignof] = ACTIONS(85), - [anon_sym_alignof] = ACTIONS(85), - [anon_sym__Alignof] = ACTIONS(85), - [anon_sym_offsetof] = ACTIONS(87), - [anon_sym__Generic] = ACTIONS(89), - [anon_sym_asm] = ACTIONS(91), - [anon_sym___asm__] = ACTIONS(91), - [sym_number_literal] = ACTIONS(159), - [anon_sym_L_SQUOTE] = ACTIONS(95), - [anon_sym_u_SQUOTE] = ACTIONS(95), - [anon_sym_U_SQUOTE] = ACTIONS(95), - [anon_sym_u8_SQUOTE] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(95), - [anon_sym_L_DQUOTE] = ACTIONS(97), - [anon_sym_u_DQUOTE] = ACTIONS(97), - [anon_sym_U_DQUOTE] = ACTIONS(97), - [anon_sym_u8_DQUOTE] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(97), - [sym_true] = ACTIONS(161), - [sym_false] = ACTIONS(161), - [anon_sym_NULL] = ACTIONS(101), - [anon_sym_nullptr] = ACTIONS(101), + [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(205), + [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), + [sym_primitive_type] = ACTIONS(53), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [anon_sym_if] = ACTIONS(207), + [anon_sym_switch] = ACTIONS(209), + [anon_sym_case] = ACTIONS(211), + [anon_sym_default] = ACTIONS(213), + [anon_sym_while] = ACTIONS(215), + [anon_sym_do] = ACTIONS(217), + [anon_sym_for] = ACTIONS(219), + [anon_sym_return] = ACTIONS(221), + [anon_sym_break] = ACTIONS(223), + [anon_sym_continue] = ACTIONS(225), + [anon_sym_goto] = ACTIONS(227), + [anon_sym___try] = ACTIONS(229), + [anon_sym___leave] = ACTIONS(231), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [sym_number_literal] = ACTIONS(161), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(163), + [sym_false] = ACTIONS(163), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, [19] = { - [sym_preproc_include] = STATE(16), - [sym_preproc_def] = STATE(16), - [sym_preproc_function_def] = STATE(16), - [sym_preproc_call] = STATE(16), - [sym_preproc_if] = STATE(16), - [sym_preproc_ifdef] = STATE(16), - [sym_preproc_else] = STATE(2141), - [sym_preproc_elif] = STATE(2141), - [sym_function_definition] = STATE(16), - [sym__old_style_function_definition] = STATE(227), - [sym_declaration] = STATE(16), - [sym_type_definition] = STATE(16), - [sym__declaration_modifiers] = STATE(861), - [sym__declaration_specifiers] = STATE(1487), - [sym_linkage_specification] = STATE(16), - [sym_attribute_specifier] = STATE(861), - [sym_attribute_declaration] = STATE(504), - [sym_ms_declspec_modifier] = STATE(861), - [sym_ms_call_modifier] = STATE(857), - [sym_compound_statement] = STATE(16), - [sym_storage_class_specifier] = STATE(861), - [sym_type_qualifier] = STATE(861), - [sym__type_specifier] = STATE(1127), - [sym_sized_type_specifier] = STATE(1106), - [sym_enum_specifier] = STATE(1106), - [sym_struct_specifier] = STATE(1106), - [sym_union_specifier] = STATE(1106), - [sym_attributed_statement] = STATE(16), - [sym_labeled_statement] = STATE(16), - [sym_expression_statement] = STATE(16), - [sym_if_statement] = STATE(16), - [sym_switch_statement] = STATE(16), - [sym_case_statement] = STATE(16), - [sym_while_statement] = STATE(16), - [sym_do_statement] = STATE(16), - [sym_for_statement] = STATE(16), - [sym_return_statement] = STATE(16), - [sym_break_statement] = STATE(16), - [sym_continue_statement] = STATE(16), - [sym_goto_statement] = STATE(16), - [sym_seh_try_statement] = STATE(16), - [sym_seh_leave_statement] = STATE(16), - [sym__expression] = STATE(1230), - [sym__expression_not_binary] = STATE(792), - [sym_comma_expression] = STATE(2008), - [sym_conditional_expression] = STATE(792), - [sym_assignment_expression] = STATE(792), - [sym_pointer_expression] = STATE(901), - [sym_unary_expression] = STATE(792), - [sym_binary_expression] = STATE(792), - [sym_update_expression] = STATE(792), - [sym_cast_expression] = STATE(792), - [sym_sizeof_expression] = STATE(792), - [sym_alignof_expression] = STATE(792), - [sym_offsetof_expression] = STATE(792), - [sym_generic_expression] = STATE(792), - [sym_subscript_expression] = STATE(901), - [sym_call_expression] = STATE(901), - [sym_gnu_asm_expression] = STATE(792), - [sym_field_expression] = STATE(901), - [sym_compound_literal_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(901), - [sym_char_literal] = STATE(792), - [sym_concatenated_string] = STATE(792), - [sym_string_literal] = STATE(675), - [sym_null] = STATE(792), - [sym__empty_declaration] = STATE(16), - [sym_macro_type_specifier] = STATE(1106), - [aux_sym_preproc_if_repeat1] = STATE(16), - [aux_sym__declaration_specifiers_repeat1] = STATE(861), - [aux_sym_attributed_declarator_repeat1] = STATE(435), - [aux_sym_sized_type_specifier_repeat1] = STATE(1113), - [sym_identifier] = ACTIONS(181), - [aux_sym_preproc_include_token1] = ACTIONS(183), - [aux_sym_preproc_def_token1] = ACTIONS(185), - [aux_sym_preproc_if_token1] = ACTIONS(187), - [aux_sym_preproc_if_token2] = ACTIONS(396), - [aux_sym_preproc_ifdef_token1] = ACTIONS(191), - [aux_sym_preproc_ifdef_token2] = ACTIONS(191), - [aux_sym_preproc_else_token1] = ACTIONS(115), - [aux_sym_preproc_elif_token1] = ACTIONS(117), - [sym_preproc_directive] = ACTIONS(193), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(195), - [anon_sym___extension__] = ACTIONS(197), - [anon_sym_typedef] = ACTIONS(199), - [anon_sym_extern] = ACTIONS(201), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym___scanf] = ACTIONS(35), - [anon_sym___printf] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym___cdecl] = ACTIONS(41), - [anon_sym___clrcall] = ACTIONS(41), - [anon_sym___stdcall] = ACTIONS(41), - [anon_sym___fastcall] = ACTIONS(41), - [anon_sym___thiscall] = ACTIONS(41), - [anon_sym___vectorcall] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(203), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [sym_primitive_type] = ACTIONS(51), - [anon_sym_enum] = ACTIONS(53), - [anon_sym_struct] = ACTIONS(55), - [anon_sym_union] = ACTIONS(57), - [anon_sym_if] = ACTIONS(205), - [anon_sym_switch] = ACTIONS(207), - [anon_sym_case] = ACTIONS(209), - [anon_sym_default] = ACTIONS(211), - [anon_sym_while] = ACTIONS(213), - [anon_sym_do] = ACTIONS(215), - [anon_sym_for] = ACTIONS(217), - [anon_sym_return] = ACTIONS(219), - [anon_sym_break] = ACTIONS(221), - [anon_sym_continue] = ACTIONS(223), - [anon_sym_goto] = ACTIONS(225), - [anon_sym___try] = ACTIONS(227), - [anon_sym___leave] = ACTIONS(229), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(83), - [anon_sym___alignof__] = ACTIONS(85), - [anon_sym___alignof] = ACTIONS(85), - [anon_sym__alignof] = ACTIONS(85), - [anon_sym_alignof] = ACTIONS(85), - [anon_sym__Alignof] = ACTIONS(85), - [anon_sym_offsetof] = ACTIONS(87), - [anon_sym__Generic] = ACTIONS(89), - [anon_sym_asm] = ACTIONS(91), - [anon_sym___asm__] = ACTIONS(91), - [sym_number_literal] = ACTIONS(159), - [anon_sym_L_SQUOTE] = ACTIONS(95), - [anon_sym_u_SQUOTE] = ACTIONS(95), - [anon_sym_U_SQUOTE] = ACTIONS(95), - [anon_sym_u8_SQUOTE] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(95), - [anon_sym_L_DQUOTE] = ACTIONS(97), - [anon_sym_u_DQUOTE] = ACTIONS(97), - [anon_sym_U_DQUOTE] = ACTIONS(97), - [anon_sym_u8_DQUOTE] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(97), - [sym_true] = ACTIONS(161), - [sym_false] = ACTIONS(161), - [anon_sym_NULL] = ACTIONS(101), - [anon_sym_nullptr] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - }, - [20] = { - [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(2227), - [sym_preproc_elif] = STATE(2227), - [sym_function_definition] = STATE(22), - [sym__old_style_function_definition] = STATE(227), - [sym_declaration] = STATE(22), - [sym_type_definition] = STATE(22), - [sym__declaration_modifiers] = STATE(861), - [sym__declaration_specifiers] = STATE(1487), - [sym_linkage_specification] = STATE(22), - [sym_attribute_specifier] = STATE(861), - [sym_attribute_declaration] = STATE(504), - [sym_ms_declspec_modifier] = STATE(861), - [sym_ms_call_modifier] = STATE(857), - [sym_compound_statement] = STATE(22), - [sym_storage_class_specifier] = STATE(861), - [sym_type_qualifier] = STATE(861), - [sym__type_specifier] = STATE(1127), - [sym_sized_type_specifier] = STATE(1106), - [sym_enum_specifier] = STATE(1106), - [sym_struct_specifier] = STATE(1106), - [sym_union_specifier] = STATE(1106), - [sym_attributed_statement] = STATE(22), - [sym_labeled_statement] = STATE(22), - [sym_expression_statement] = STATE(22), - [sym_if_statement] = STATE(22), - [sym_switch_statement] = STATE(22), - [sym_case_statement] = STATE(22), - [sym_while_statement] = STATE(22), - [sym_do_statement] = STATE(22), - [sym_for_statement] = STATE(22), - [sym_return_statement] = STATE(22), - [sym_break_statement] = STATE(22), - [sym_continue_statement] = STATE(22), - [sym_goto_statement] = STATE(22), - [sym_seh_try_statement] = STATE(22), - [sym_seh_leave_statement] = STATE(22), - [sym__expression] = STATE(1230), - [sym__expression_not_binary] = STATE(792), - [sym_comma_expression] = STATE(2008), - [sym_conditional_expression] = STATE(792), - [sym_assignment_expression] = STATE(792), - [sym_pointer_expression] = STATE(901), - [sym_unary_expression] = STATE(792), - [sym_binary_expression] = STATE(792), - [sym_update_expression] = STATE(792), - [sym_cast_expression] = STATE(792), - [sym_sizeof_expression] = STATE(792), - [sym_alignof_expression] = STATE(792), - [sym_offsetof_expression] = STATE(792), - [sym_generic_expression] = STATE(792), - [sym_subscript_expression] = STATE(901), - [sym_call_expression] = STATE(901), - [sym_gnu_asm_expression] = STATE(792), - [sym_field_expression] = STATE(901), - [sym_compound_literal_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(901), - [sym_char_literal] = STATE(792), - [sym_concatenated_string] = STATE(792), - [sym_string_literal] = STATE(675), - [sym_null] = STATE(792), - [sym__empty_declaration] = STATE(22), - [sym_macro_type_specifier] = STATE(1106), - [aux_sym_preproc_if_repeat1] = STATE(22), - [aux_sym__declaration_specifiers_repeat1] = STATE(861), - [aux_sym_attributed_declarator_repeat1] = STATE(435), - [aux_sym_sized_type_specifier_repeat1] = STATE(1113), - [sym_identifier] = ACTIONS(181), - [aux_sym_preproc_include_token1] = ACTIONS(183), - [aux_sym_preproc_def_token1] = ACTIONS(185), - [aux_sym_preproc_if_token1] = ACTIONS(187), - [aux_sym_preproc_if_token2] = ACTIONS(398), - [aux_sym_preproc_ifdef_token1] = ACTIONS(191), - [aux_sym_preproc_ifdef_token2] = ACTIONS(191), - [aux_sym_preproc_else_token1] = ACTIONS(115), - [aux_sym_preproc_elif_token1] = ACTIONS(117), - [sym_preproc_directive] = ACTIONS(193), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(195), - [anon_sym___extension__] = ACTIONS(197), - [anon_sym_typedef] = ACTIONS(199), - [anon_sym_extern] = ACTIONS(201), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym___scanf] = ACTIONS(35), - [anon_sym___printf] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym___cdecl] = ACTIONS(41), - [anon_sym___clrcall] = ACTIONS(41), - [anon_sym___stdcall] = ACTIONS(41), - [anon_sym___fastcall] = ACTIONS(41), - [anon_sym___thiscall] = ACTIONS(41), - [anon_sym___vectorcall] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(203), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [sym_primitive_type] = ACTIONS(51), - [anon_sym_enum] = ACTIONS(53), - [anon_sym_struct] = ACTIONS(55), - [anon_sym_union] = ACTIONS(57), - [anon_sym_if] = ACTIONS(205), - [anon_sym_switch] = ACTIONS(207), - [anon_sym_case] = ACTIONS(209), - [anon_sym_default] = ACTIONS(211), - [anon_sym_while] = ACTIONS(213), - [anon_sym_do] = ACTIONS(215), - [anon_sym_for] = ACTIONS(217), - [anon_sym_return] = ACTIONS(219), - [anon_sym_break] = ACTIONS(221), - [anon_sym_continue] = ACTIONS(223), - [anon_sym_goto] = ACTIONS(225), - [anon_sym___try] = ACTIONS(227), - [anon_sym___leave] = ACTIONS(229), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(83), - [anon_sym___alignof__] = ACTIONS(85), - [anon_sym___alignof] = ACTIONS(85), - [anon_sym__alignof] = ACTIONS(85), - [anon_sym_alignof] = ACTIONS(85), - [anon_sym__Alignof] = ACTIONS(85), - [anon_sym_offsetof] = ACTIONS(87), - [anon_sym__Generic] = ACTIONS(89), - [anon_sym_asm] = ACTIONS(91), - [anon_sym___asm__] = ACTIONS(91), - [sym_number_literal] = ACTIONS(159), - [anon_sym_L_SQUOTE] = ACTIONS(95), - [anon_sym_u_SQUOTE] = ACTIONS(95), - [anon_sym_U_SQUOTE] = ACTIONS(95), - [anon_sym_u8_SQUOTE] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(95), - [anon_sym_L_DQUOTE] = ACTIONS(97), - [anon_sym_u_DQUOTE] = ACTIONS(97), - [anon_sym_U_DQUOTE] = ACTIONS(97), - [anon_sym_u8_DQUOTE] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(97), - [sym_true] = ACTIONS(161), - [sym_false] = ACTIONS(161), - [anon_sym_NULL] = ACTIONS(101), - [anon_sym_nullptr] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - }, - [21] = { - [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(1999), - [sym_preproc_elif] = STATE(1999), - [sym_function_definition] = STATE(18), - [sym__old_style_function_definition] = STATE(227), - [sym_declaration] = STATE(18), - [sym_type_definition] = STATE(18), - [sym__declaration_modifiers] = STATE(861), - [sym__declaration_specifiers] = STATE(1487), - [sym_linkage_specification] = STATE(18), - [sym_attribute_specifier] = STATE(861), - [sym_attribute_declaration] = STATE(504), - [sym_ms_declspec_modifier] = STATE(861), - [sym_ms_call_modifier] = STATE(857), - [sym_compound_statement] = STATE(18), - [sym_storage_class_specifier] = STATE(861), - [sym_type_qualifier] = STATE(861), - [sym__type_specifier] = STATE(1127), - [sym_sized_type_specifier] = STATE(1106), - [sym_enum_specifier] = STATE(1106), - [sym_struct_specifier] = STATE(1106), - [sym_union_specifier] = STATE(1106), - [sym_attributed_statement] = STATE(18), - [sym_labeled_statement] = STATE(18), - [sym_expression_statement] = STATE(18), - [sym_if_statement] = STATE(18), - [sym_switch_statement] = STATE(18), - [sym_case_statement] = STATE(18), - [sym_while_statement] = STATE(18), - [sym_do_statement] = STATE(18), - [sym_for_statement] = STATE(18), - [sym_return_statement] = STATE(18), - [sym_break_statement] = STATE(18), - [sym_continue_statement] = STATE(18), - [sym_goto_statement] = STATE(18), - [sym_seh_try_statement] = STATE(18), - [sym_seh_leave_statement] = STATE(18), - [sym__expression] = STATE(1230), - [sym__expression_not_binary] = STATE(792), - [sym_comma_expression] = STATE(2008), - [sym_conditional_expression] = STATE(792), - [sym_assignment_expression] = STATE(792), - [sym_pointer_expression] = STATE(901), - [sym_unary_expression] = STATE(792), - [sym_binary_expression] = STATE(792), - [sym_update_expression] = STATE(792), - [sym_cast_expression] = STATE(792), - [sym_sizeof_expression] = STATE(792), - [sym_alignof_expression] = STATE(792), - [sym_offsetof_expression] = STATE(792), - [sym_generic_expression] = STATE(792), - [sym_subscript_expression] = STATE(901), - [sym_call_expression] = STATE(901), - [sym_gnu_asm_expression] = STATE(792), - [sym_field_expression] = STATE(901), - [sym_compound_literal_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(901), - [sym_char_literal] = STATE(792), - [sym_concatenated_string] = STATE(792), - [sym_string_literal] = STATE(675), - [sym_null] = STATE(792), - [sym__empty_declaration] = STATE(18), - [sym_macro_type_specifier] = STATE(1106), - [aux_sym_preproc_if_repeat1] = STATE(18), - [aux_sym__declaration_specifiers_repeat1] = STATE(861), - [aux_sym_attributed_declarator_repeat1] = STATE(435), - [aux_sym_sized_type_specifier_repeat1] = STATE(1113), - [sym_identifier] = ACTIONS(181), - [aux_sym_preproc_include_token1] = ACTIONS(183), - [aux_sym_preproc_def_token1] = ACTIONS(185), - [aux_sym_preproc_if_token1] = ACTIONS(187), - [aux_sym_preproc_if_token2] = ACTIONS(400), - [aux_sym_preproc_ifdef_token1] = ACTIONS(191), - [aux_sym_preproc_ifdef_token2] = ACTIONS(191), - [aux_sym_preproc_else_token1] = ACTIONS(115), - [aux_sym_preproc_elif_token1] = ACTIONS(117), - [sym_preproc_directive] = ACTIONS(193), + [sym_preproc_include] = STATE(25), + [sym_preproc_def] = STATE(25), + [sym_preproc_function_def] = STATE(25), + [sym_preproc_call] = STATE(25), + [sym_preproc_if] = STATE(25), + [sym_preproc_ifdef] = STATE(25), + [sym_preproc_else] = STATE(2082), + [sym_preproc_elif] = STATE(2082), + [sym_function_definition] = STATE(25), + [sym__old_style_function_definition] = STATE(228), + [sym_declaration] = STATE(25), + [sym_type_definition] = STATE(25), + [sym__declaration_modifiers] = STATE(855), + [sym__declaration_specifiers] = STATE(1523), + [sym_linkage_specification] = STATE(25), + [sym_attribute_specifier] = STATE(855), + [sym_attribute_declaration] = STATE(495), + [sym_ms_declspec_modifier] = STATE(855), + [sym_ms_call_modifier] = STATE(848), + [sym_compound_statement] = STATE(25), + [sym_storage_class_specifier] = STATE(855), + [sym_type_qualifier] = STATE(855), + [sym__type_specifier] = STATE(1118), + [sym_sized_type_specifier] = STATE(1069), + [sym_enum_specifier] = STATE(1069), + [sym_struct_specifier] = STATE(1069), + [sym_union_specifier] = STATE(1069), + [sym_attributed_statement] = STATE(25), + [sym_labeled_statement] = STATE(25), + [sym_expression_statement] = STATE(25), + [sym_if_statement] = STATE(25), + [sym_switch_statement] = STATE(25), + [sym_case_statement] = STATE(25), + [sym_while_statement] = STATE(25), + [sym_do_statement] = STATE(25), + [sym_for_statement] = STATE(25), + [sym_return_statement] = STATE(25), + [sym_break_statement] = STATE(25), + [sym_continue_statement] = STATE(25), + [sym_goto_statement] = STATE(25), + [sym_seh_try_statement] = STATE(25), + [sym_seh_leave_statement] = STATE(25), + [sym__expression] = STATE(1258), + [sym__expression_not_binary] = STATE(809), + [sym_comma_expression] = STATE(2110), + [sym_conditional_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_pointer_expression] = STATE(877), + [sym_unary_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_update_expression] = STATE(809), + [sym_cast_expression] = STATE(809), + [sym_sizeof_expression] = STATE(809), + [sym_alignof_expression] = STATE(809), + [sym_offsetof_expression] = STATE(809), + [sym_generic_expression] = STATE(809), + [sym_subscript_expression] = STATE(877), + [sym_call_expression] = STATE(877), + [sym_gnu_asm_expression] = STATE(809), + [sym_field_expression] = STATE(877), + [sym_compound_literal_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(877), + [sym_char_literal] = STATE(809), + [sym_concatenated_string] = STATE(809), + [sym_string_literal] = STATE(573), + [sym_null] = STATE(809), + [sym__empty_declaration] = STATE(25), + [sym_macro_type_specifier] = STATE(1069), + [aux_sym_preproc_if_repeat1] = STATE(25), + [aux_sym__declaration_specifiers_repeat1] = STATE(855), + [aux_sym_attributed_declarator_repeat1] = STATE(480), + [aux_sym_sized_type_specifier_repeat1] = STATE(1085), + [sym_identifier] = ACTIONS(183), + [aux_sym_preproc_include_token1] = ACTIONS(185), + [aux_sym_preproc_def_token1] = ACTIONS(187), + [aux_sym_preproc_if_token1] = ACTIONS(189), + [aux_sym_preproc_if_token2] = ACTIONS(245), + [aux_sym_preproc_ifdef_token1] = ACTIONS(193), + [aux_sym_preproc_ifdef_token2] = ACTIONS(193), + [aux_sym_preproc_else_token1] = ACTIONS(117), + [aux_sym_preproc_elif_token1] = ACTIONS(119), + [sym_preproc_directive] = ACTIONS(195), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -19227,117 +19246,121 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(195), - [anon_sym___extension__] = ACTIONS(197), - [anon_sym_typedef] = ACTIONS(199), - [anon_sym_extern] = ACTIONS(201), + [anon_sym_SEMI] = ACTIONS(197), + [anon_sym___extension__] = ACTIONS(199), + [anon_sym_typedef] = ACTIONS(201), + [anon_sym_extern] = ACTIONS(203), [anon_sym___attribute__] = ACTIONS(33), [anon_sym___scanf] = ACTIONS(35), [anon_sym___printf] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym___cdecl] = ACTIONS(41), - [anon_sym___clrcall] = ACTIONS(41), - [anon_sym___stdcall] = ACTIONS(41), - [anon_sym___fastcall] = ACTIONS(41), - [anon_sym___thiscall] = ACTIONS(41), - [anon_sym___vectorcall] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(203), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [sym_primitive_type] = ACTIONS(51), - [anon_sym_enum] = ACTIONS(53), - [anon_sym_struct] = ACTIONS(55), - [anon_sym_union] = ACTIONS(57), - [anon_sym_if] = ACTIONS(205), - [anon_sym_switch] = ACTIONS(207), - [anon_sym_case] = ACTIONS(209), - [anon_sym_default] = ACTIONS(211), - [anon_sym_while] = ACTIONS(213), - [anon_sym_do] = ACTIONS(215), - [anon_sym_for] = ACTIONS(217), - [anon_sym_return] = ACTIONS(219), - [anon_sym_break] = ACTIONS(221), - [anon_sym_continue] = ACTIONS(223), - [anon_sym_goto] = ACTIONS(225), - [anon_sym___try] = ACTIONS(227), - [anon_sym___leave] = ACTIONS(229), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(83), - [anon_sym___alignof__] = ACTIONS(85), - [anon_sym___alignof] = ACTIONS(85), - [anon_sym__alignof] = ACTIONS(85), - [anon_sym_alignof] = ACTIONS(85), - [anon_sym__Alignof] = ACTIONS(85), - [anon_sym_offsetof] = ACTIONS(87), - [anon_sym__Generic] = ACTIONS(89), - [anon_sym_asm] = ACTIONS(91), - [anon_sym___asm__] = ACTIONS(91), - [sym_number_literal] = ACTIONS(159), - [anon_sym_L_SQUOTE] = ACTIONS(95), - [anon_sym_u_SQUOTE] = ACTIONS(95), - [anon_sym_U_SQUOTE] = ACTIONS(95), - [anon_sym_u8_SQUOTE] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(95), - [anon_sym_L_DQUOTE] = ACTIONS(97), - [anon_sym_u_DQUOTE] = ACTIONS(97), - [anon_sym_U_DQUOTE] = ACTIONS(97), - [anon_sym_u8_DQUOTE] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(97), - [sym_true] = ACTIONS(161), - [sym_false] = ACTIONS(161), - [anon_sym_NULL] = ACTIONS(101), - [anon_sym_nullptr] = ACTIONS(101), + [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(205), + [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), + [sym_primitive_type] = ACTIONS(53), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [anon_sym_if] = ACTIONS(207), + [anon_sym_switch] = ACTIONS(209), + [anon_sym_case] = ACTIONS(211), + [anon_sym_default] = ACTIONS(213), + [anon_sym_while] = ACTIONS(215), + [anon_sym_do] = ACTIONS(217), + [anon_sym_for] = ACTIONS(219), + [anon_sym_return] = ACTIONS(221), + [anon_sym_break] = ACTIONS(223), + [anon_sym_continue] = ACTIONS(225), + [anon_sym_goto] = ACTIONS(227), + [anon_sym___try] = ACTIONS(229), + [anon_sym___leave] = ACTIONS(231), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [sym_number_literal] = ACTIONS(161), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(163), + [sym_false] = ACTIONS(163), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [22] = { + [20] = { [sym_preproc_include] = STATE(27), [sym_preproc_def] = STATE(27), [sym_preproc_function_def] = STATE(27), [sym_preproc_call] = STATE(27), [sym_preproc_if] = STATE(27), [sym_preproc_ifdef] = STATE(27), - [sym_preproc_else] = STATE(2205), - [sym_preproc_elif] = STATE(2205), + [sym_preproc_else] = STATE(2288), + [sym_preproc_elif] = STATE(2288), [sym_function_definition] = STATE(27), - [sym__old_style_function_definition] = STATE(227), + [sym__old_style_function_definition] = STATE(228), [sym_declaration] = STATE(27), [sym_type_definition] = STATE(27), - [sym__declaration_modifiers] = STATE(861), - [sym__declaration_specifiers] = STATE(1487), + [sym__declaration_modifiers] = STATE(855), + [sym__declaration_specifiers] = STATE(1523), [sym_linkage_specification] = STATE(27), - [sym_attribute_specifier] = STATE(861), - [sym_attribute_declaration] = STATE(504), - [sym_ms_declspec_modifier] = STATE(861), - [sym_ms_call_modifier] = STATE(857), + [sym_attribute_specifier] = STATE(855), + [sym_attribute_declaration] = STATE(495), + [sym_ms_declspec_modifier] = STATE(855), + [sym_ms_call_modifier] = STATE(848), [sym_compound_statement] = STATE(27), - [sym_storage_class_specifier] = STATE(861), - [sym_type_qualifier] = STATE(861), - [sym__type_specifier] = STATE(1127), - [sym_sized_type_specifier] = STATE(1106), - [sym_enum_specifier] = STATE(1106), - [sym_struct_specifier] = STATE(1106), - [sym_union_specifier] = STATE(1106), + [sym_storage_class_specifier] = STATE(855), + [sym_type_qualifier] = STATE(855), + [sym__type_specifier] = STATE(1118), + [sym_sized_type_specifier] = STATE(1069), + [sym_enum_specifier] = STATE(1069), + [sym_struct_specifier] = STATE(1069), + [sym_union_specifier] = STATE(1069), [sym_attributed_statement] = STATE(27), [sym_labeled_statement] = STATE(27), [sym_expression_statement] = STATE(27), @@ -19353,46 +19376,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(27), [sym_seh_try_statement] = STATE(27), [sym_seh_leave_statement] = STATE(27), - [sym__expression] = STATE(1230), - [sym__expression_not_binary] = STATE(792), - [sym_comma_expression] = STATE(2008), - [sym_conditional_expression] = STATE(792), - [sym_assignment_expression] = STATE(792), - [sym_pointer_expression] = STATE(901), - [sym_unary_expression] = STATE(792), - [sym_binary_expression] = STATE(792), - [sym_update_expression] = STATE(792), - [sym_cast_expression] = STATE(792), - [sym_sizeof_expression] = STATE(792), - [sym_alignof_expression] = STATE(792), - [sym_offsetof_expression] = STATE(792), - [sym_generic_expression] = STATE(792), - [sym_subscript_expression] = STATE(901), - [sym_call_expression] = STATE(901), - [sym_gnu_asm_expression] = STATE(792), - [sym_field_expression] = STATE(901), - [sym_compound_literal_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(901), - [sym_char_literal] = STATE(792), - [sym_concatenated_string] = STATE(792), - [sym_string_literal] = STATE(675), - [sym_null] = STATE(792), + [sym__expression] = STATE(1258), + [sym__expression_not_binary] = STATE(809), + [sym_comma_expression] = STATE(2110), + [sym_conditional_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_pointer_expression] = STATE(877), + [sym_unary_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_update_expression] = STATE(809), + [sym_cast_expression] = STATE(809), + [sym_sizeof_expression] = STATE(809), + [sym_alignof_expression] = STATE(809), + [sym_offsetof_expression] = STATE(809), + [sym_generic_expression] = STATE(809), + [sym_subscript_expression] = STATE(877), + [sym_call_expression] = STATE(877), + [sym_gnu_asm_expression] = STATE(809), + [sym_field_expression] = STATE(877), + [sym_compound_literal_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(877), + [sym_char_literal] = STATE(809), + [sym_concatenated_string] = STATE(809), + [sym_string_literal] = STATE(573), + [sym_null] = STATE(809), [sym__empty_declaration] = STATE(27), - [sym_macro_type_specifier] = STATE(1106), + [sym_macro_type_specifier] = STATE(1069), [aux_sym_preproc_if_repeat1] = STATE(27), - [aux_sym__declaration_specifiers_repeat1] = STATE(861), - [aux_sym_attributed_declarator_repeat1] = STATE(435), - [aux_sym_sized_type_specifier_repeat1] = STATE(1113), - [sym_identifier] = ACTIONS(181), - [aux_sym_preproc_include_token1] = ACTIONS(183), - [aux_sym_preproc_def_token1] = ACTIONS(185), - [aux_sym_preproc_if_token1] = ACTIONS(187), - [aux_sym_preproc_if_token2] = ACTIONS(402), - [aux_sym_preproc_ifdef_token1] = ACTIONS(191), - [aux_sym_preproc_ifdef_token2] = ACTIONS(191), - [aux_sym_preproc_else_token1] = ACTIONS(115), - [aux_sym_preproc_elif_token1] = ACTIONS(117), - [sym_preproc_directive] = ACTIONS(193), + [aux_sym__declaration_specifiers_repeat1] = STATE(855), + [aux_sym_attributed_declarator_repeat1] = STATE(480), + [aux_sym_sized_type_specifier_repeat1] = STATE(1085), + [sym_identifier] = ACTIONS(183), + [aux_sym_preproc_include_token1] = ACTIONS(185), + [aux_sym_preproc_def_token1] = ACTIONS(187), + [aux_sym_preproc_if_token1] = ACTIONS(189), + [aux_sym_preproc_if_token2] = ACTIONS(247), + [aux_sym_preproc_ifdef_token1] = ACTIONS(193), + [aux_sym_preproc_ifdef_token2] = ACTIONS(193), + [aux_sym_preproc_else_token1] = ACTIONS(117), + [aux_sym_preproc_elif_token1] = ACTIONS(119), + [sym_preproc_directive] = ACTIONS(195), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -19400,172 +19423,176 @@ 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(195), - [anon_sym___extension__] = ACTIONS(197), - [anon_sym_typedef] = ACTIONS(199), - [anon_sym_extern] = ACTIONS(201), + [anon_sym_SEMI] = ACTIONS(197), + [anon_sym___extension__] = ACTIONS(199), + [anon_sym_typedef] = ACTIONS(201), + [anon_sym_extern] = ACTIONS(203), [anon_sym___attribute__] = ACTIONS(33), [anon_sym___scanf] = ACTIONS(35), [anon_sym___printf] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym___cdecl] = ACTIONS(41), - [anon_sym___clrcall] = ACTIONS(41), - [anon_sym___stdcall] = ACTIONS(41), - [anon_sym___fastcall] = ACTIONS(41), - [anon_sym___thiscall] = ACTIONS(41), - [anon_sym___vectorcall] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(203), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [sym_primitive_type] = ACTIONS(51), - [anon_sym_enum] = ACTIONS(53), - [anon_sym_struct] = ACTIONS(55), - [anon_sym_union] = ACTIONS(57), - [anon_sym_if] = ACTIONS(205), - [anon_sym_switch] = ACTIONS(207), - [anon_sym_case] = ACTIONS(209), - [anon_sym_default] = ACTIONS(211), - [anon_sym_while] = ACTIONS(213), - [anon_sym_do] = ACTIONS(215), - [anon_sym_for] = ACTIONS(217), - [anon_sym_return] = ACTIONS(219), - [anon_sym_break] = ACTIONS(221), - [anon_sym_continue] = ACTIONS(223), - [anon_sym_goto] = ACTIONS(225), - [anon_sym___try] = ACTIONS(227), - [anon_sym___leave] = ACTIONS(229), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(83), - [anon_sym___alignof__] = ACTIONS(85), - [anon_sym___alignof] = ACTIONS(85), - [anon_sym__alignof] = ACTIONS(85), - [anon_sym_alignof] = ACTIONS(85), - [anon_sym__Alignof] = ACTIONS(85), - [anon_sym_offsetof] = ACTIONS(87), - [anon_sym__Generic] = ACTIONS(89), - [anon_sym_asm] = ACTIONS(91), - [anon_sym___asm__] = ACTIONS(91), - [sym_number_literal] = ACTIONS(159), - [anon_sym_L_SQUOTE] = ACTIONS(95), - [anon_sym_u_SQUOTE] = ACTIONS(95), - [anon_sym_U_SQUOTE] = ACTIONS(95), - [anon_sym_u8_SQUOTE] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(95), - [anon_sym_L_DQUOTE] = ACTIONS(97), - [anon_sym_u_DQUOTE] = ACTIONS(97), - [anon_sym_U_DQUOTE] = ACTIONS(97), - [anon_sym_u8_DQUOTE] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(97), - [sym_true] = ACTIONS(161), - [sym_false] = ACTIONS(161), - [anon_sym_NULL] = ACTIONS(101), - [anon_sym_nullptr] = ACTIONS(101), + [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(205), + [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), + [sym_primitive_type] = ACTIONS(53), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [anon_sym_if] = ACTIONS(207), + [anon_sym_switch] = ACTIONS(209), + [anon_sym_case] = ACTIONS(211), + [anon_sym_default] = ACTIONS(213), + [anon_sym_while] = ACTIONS(215), + [anon_sym_do] = ACTIONS(217), + [anon_sym_for] = ACTIONS(219), + [anon_sym_return] = ACTIONS(221), + [anon_sym_break] = ACTIONS(223), + [anon_sym_continue] = ACTIONS(225), + [anon_sym_goto] = ACTIONS(227), + [anon_sym___try] = ACTIONS(229), + [anon_sym___leave] = ACTIONS(231), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [sym_number_literal] = ACTIONS(161), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(163), + [sym_false] = ACTIONS(163), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [23] = { - [sym_preproc_include] = STATE(17), - [sym_preproc_def] = STATE(17), - [sym_preproc_function_def] = STATE(17), - [sym_preproc_call] = STATE(17), - [sym_preproc_if] = STATE(17), - [sym_preproc_ifdef] = STATE(17), - [sym_preproc_else] = STATE(2206), - [sym_preproc_elif] = STATE(2206), - [sym_function_definition] = STATE(17), - [sym__old_style_function_definition] = STATE(227), - [sym_declaration] = STATE(17), - [sym_type_definition] = STATE(17), - [sym__declaration_modifiers] = STATE(861), - [sym__declaration_specifiers] = STATE(1487), - [sym_linkage_specification] = STATE(17), - [sym_attribute_specifier] = STATE(861), - [sym_attribute_declaration] = STATE(504), - [sym_ms_declspec_modifier] = STATE(861), - [sym_ms_call_modifier] = STATE(857), - [sym_compound_statement] = STATE(17), - [sym_storage_class_specifier] = STATE(861), - [sym_type_qualifier] = STATE(861), - [sym__type_specifier] = STATE(1127), - [sym_sized_type_specifier] = STATE(1106), - [sym_enum_specifier] = STATE(1106), - [sym_struct_specifier] = STATE(1106), - [sym_union_specifier] = STATE(1106), - [sym_attributed_statement] = STATE(17), - [sym_labeled_statement] = STATE(17), - [sym_expression_statement] = STATE(17), - [sym_if_statement] = STATE(17), - [sym_switch_statement] = STATE(17), - [sym_case_statement] = STATE(17), - [sym_while_statement] = STATE(17), - [sym_do_statement] = STATE(17), - [sym_for_statement] = STATE(17), - [sym_return_statement] = STATE(17), - [sym_break_statement] = STATE(17), - [sym_continue_statement] = STATE(17), - [sym_goto_statement] = STATE(17), - [sym_seh_try_statement] = STATE(17), - [sym_seh_leave_statement] = STATE(17), - [sym__expression] = STATE(1230), - [sym__expression_not_binary] = STATE(792), - [sym_comma_expression] = STATE(2008), - [sym_conditional_expression] = STATE(792), - [sym_assignment_expression] = STATE(792), - [sym_pointer_expression] = STATE(901), - [sym_unary_expression] = STATE(792), - [sym_binary_expression] = STATE(792), - [sym_update_expression] = STATE(792), - [sym_cast_expression] = STATE(792), - [sym_sizeof_expression] = STATE(792), - [sym_alignof_expression] = STATE(792), - [sym_offsetof_expression] = STATE(792), - [sym_generic_expression] = STATE(792), - [sym_subscript_expression] = STATE(901), - [sym_call_expression] = STATE(901), - [sym_gnu_asm_expression] = STATE(792), - [sym_field_expression] = STATE(901), - [sym_compound_literal_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(901), - [sym_char_literal] = STATE(792), - [sym_concatenated_string] = STATE(792), - [sym_string_literal] = STATE(675), - [sym_null] = STATE(792), - [sym__empty_declaration] = STATE(17), - [sym_macro_type_specifier] = STATE(1106), - [aux_sym_preproc_if_repeat1] = STATE(17), - [aux_sym__declaration_specifiers_repeat1] = STATE(861), - [aux_sym_attributed_declarator_repeat1] = STATE(435), - [aux_sym_sized_type_specifier_repeat1] = STATE(1113), - [sym_identifier] = ACTIONS(181), - [aux_sym_preproc_include_token1] = ACTIONS(183), - [aux_sym_preproc_def_token1] = ACTIONS(185), - [aux_sym_preproc_if_token1] = ACTIONS(187), - [aux_sym_preproc_if_token2] = ACTIONS(404), - [aux_sym_preproc_ifdef_token1] = ACTIONS(191), - [aux_sym_preproc_ifdef_token2] = ACTIONS(191), - [aux_sym_preproc_else_token1] = ACTIONS(115), - [aux_sym_preproc_elif_token1] = ACTIONS(117), - [sym_preproc_directive] = ACTIONS(193), + [21] = { + [sym_preproc_include] = STATE(15), + [sym_preproc_def] = STATE(15), + [sym_preproc_function_def] = STATE(15), + [sym_preproc_call] = STATE(15), + [sym_preproc_if] = STATE(15), + [sym_preproc_ifdef] = STATE(15), + [sym_preproc_else] = STATE(2080), + [sym_preproc_elif] = STATE(2080), + [sym_function_definition] = STATE(15), + [sym__old_style_function_definition] = STATE(228), + [sym_declaration] = STATE(15), + [sym_type_definition] = STATE(15), + [sym__declaration_modifiers] = STATE(855), + [sym__declaration_specifiers] = STATE(1523), + [sym_linkage_specification] = STATE(15), + [sym_attribute_specifier] = STATE(855), + [sym_attribute_declaration] = STATE(495), + [sym_ms_declspec_modifier] = STATE(855), + [sym_ms_call_modifier] = STATE(848), + [sym_compound_statement] = STATE(15), + [sym_storage_class_specifier] = STATE(855), + [sym_type_qualifier] = STATE(855), + [sym__type_specifier] = STATE(1118), + [sym_sized_type_specifier] = STATE(1069), + [sym_enum_specifier] = STATE(1069), + [sym_struct_specifier] = STATE(1069), + [sym_union_specifier] = STATE(1069), + [sym_attributed_statement] = STATE(15), + [sym_labeled_statement] = STATE(15), + [sym_expression_statement] = STATE(15), + [sym_if_statement] = STATE(15), + [sym_switch_statement] = STATE(15), + [sym_case_statement] = STATE(15), + [sym_while_statement] = STATE(15), + [sym_do_statement] = STATE(15), + [sym_for_statement] = STATE(15), + [sym_return_statement] = STATE(15), + [sym_break_statement] = STATE(15), + [sym_continue_statement] = STATE(15), + [sym_goto_statement] = STATE(15), + [sym_seh_try_statement] = STATE(15), + [sym_seh_leave_statement] = STATE(15), + [sym__expression] = STATE(1258), + [sym__expression_not_binary] = STATE(809), + [sym_comma_expression] = STATE(2110), + [sym_conditional_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_pointer_expression] = STATE(877), + [sym_unary_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_update_expression] = STATE(809), + [sym_cast_expression] = STATE(809), + [sym_sizeof_expression] = STATE(809), + [sym_alignof_expression] = STATE(809), + [sym_offsetof_expression] = STATE(809), + [sym_generic_expression] = STATE(809), + [sym_subscript_expression] = STATE(877), + [sym_call_expression] = STATE(877), + [sym_gnu_asm_expression] = STATE(809), + [sym_field_expression] = STATE(877), + [sym_compound_literal_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(877), + [sym_char_literal] = STATE(809), + [sym_concatenated_string] = STATE(809), + [sym_string_literal] = STATE(573), + [sym_null] = STATE(809), + [sym__empty_declaration] = STATE(15), + [sym_macro_type_specifier] = STATE(1069), + [aux_sym_preproc_if_repeat1] = STATE(15), + [aux_sym__declaration_specifiers_repeat1] = STATE(855), + [aux_sym_attributed_declarator_repeat1] = STATE(480), + [aux_sym_sized_type_specifier_repeat1] = STATE(1085), + [sym_identifier] = ACTIONS(183), + [aux_sym_preproc_include_token1] = ACTIONS(185), + [aux_sym_preproc_def_token1] = ACTIONS(187), + [aux_sym_preproc_if_token1] = ACTIONS(189), + [aux_sym_preproc_if_token2] = ACTIONS(249), + [aux_sym_preproc_ifdef_token1] = ACTIONS(193), + [aux_sym_preproc_ifdef_token2] = ACTIONS(193), + [aux_sym_preproc_else_token1] = ACTIONS(117), + [aux_sym_preproc_elif_token1] = ACTIONS(119), + [sym_preproc_directive] = ACTIONS(195), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -19573,117 +19600,121 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(195), - [anon_sym___extension__] = ACTIONS(197), - [anon_sym_typedef] = ACTIONS(199), - [anon_sym_extern] = ACTIONS(201), + [anon_sym_SEMI] = ACTIONS(197), + [anon_sym___extension__] = ACTIONS(199), + [anon_sym_typedef] = ACTIONS(201), + [anon_sym_extern] = ACTIONS(203), [anon_sym___attribute__] = ACTIONS(33), [anon_sym___scanf] = ACTIONS(35), [anon_sym___printf] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym___cdecl] = ACTIONS(41), - [anon_sym___clrcall] = ACTIONS(41), - [anon_sym___stdcall] = ACTIONS(41), - [anon_sym___fastcall] = ACTIONS(41), - [anon_sym___thiscall] = ACTIONS(41), - [anon_sym___vectorcall] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(203), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [sym_primitive_type] = ACTIONS(51), - [anon_sym_enum] = ACTIONS(53), - [anon_sym_struct] = ACTIONS(55), - [anon_sym_union] = ACTIONS(57), - [anon_sym_if] = ACTIONS(205), - [anon_sym_switch] = ACTIONS(207), - [anon_sym_case] = ACTIONS(209), - [anon_sym_default] = ACTIONS(211), - [anon_sym_while] = ACTIONS(213), - [anon_sym_do] = ACTIONS(215), - [anon_sym_for] = ACTIONS(217), - [anon_sym_return] = ACTIONS(219), - [anon_sym_break] = ACTIONS(221), - [anon_sym_continue] = ACTIONS(223), - [anon_sym_goto] = ACTIONS(225), - [anon_sym___try] = ACTIONS(227), - [anon_sym___leave] = ACTIONS(229), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(83), - [anon_sym___alignof__] = ACTIONS(85), - [anon_sym___alignof] = ACTIONS(85), - [anon_sym__alignof] = ACTIONS(85), - [anon_sym_alignof] = ACTIONS(85), - [anon_sym__Alignof] = ACTIONS(85), - [anon_sym_offsetof] = ACTIONS(87), - [anon_sym__Generic] = ACTIONS(89), - [anon_sym_asm] = ACTIONS(91), - [anon_sym___asm__] = ACTIONS(91), - [sym_number_literal] = ACTIONS(159), - [anon_sym_L_SQUOTE] = ACTIONS(95), - [anon_sym_u_SQUOTE] = ACTIONS(95), - [anon_sym_U_SQUOTE] = ACTIONS(95), - [anon_sym_u8_SQUOTE] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(95), - [anon_sym_L_DQUOTE] = ACTIONS(97), - [anon_sym_u_DQUOTE] = ACTIONS(97), - [anon_sym_U_DQUOTE] = ACTIONS(97), - [anon_sym_u8_DQUOTE] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(97), - [sym_true] = ACTIONS(161), - [sym_false] = ACTIONS(161), - [anon_sym_NULL] = ACTIONS(101), - [anon_sym_nullptr] = ACTIONS(101), + [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(205), + [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), + [sym_primitive_type] = ACTIONS(53), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [anon_sym_if] = ACTIONS(207), + [anon_sym_switch] = ACTIONS(209), + [anon_sym_case] = ACTIONS(211), + [anon_sym_default] = ACTIONS(213), + [anon_sym_while] = ACTIONS(215), + [anon_sym_do] = ACTIONS(217), + [anon_sym_for] = ACTIONS(219), + [anon_sym_return] = ACTIONS(221), + [anon_sym_break] = ACTIONS(223), + [anon_sym_continue] = ACTIONS(225), + [anon_sym_goto] = ACTIONS(227), + [anon_sym___try] = ACTIONS(229), + [anon_sym___leave] = ACTIONS(231), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [sym_number_literal] = ACTIONS(161), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(163), + [sym_false] = ACTIONS(163), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [24] = { + [22] = { [sym_preproc_include] = STATE(27), [sym_preproc_def] = STATE(27), [sym_preproc_function_def] = STATE(27), [sym_preproc_call] = STATE(27), [sym_preproc_if] = STATE(27), [sym_preproc_ifdef] = STATE(27), - [sym_preproc_else] = STATE(2021), - [sym_preproc_elif] = STATE(2021), + [sym_preproc_else] = STATE(1984), + [sym_preproc_elif] = STATE(1984), [sym_function_definition] = STATE(27), - [sym__old_style_function_definition] = STATE(227), + [sym__old_style_function_definition] = STATE(228), [sym_declaration] = STATE(27), [sym_type_definition] = STATE(27), - [sym__declaration_modifiers] = STATE(861), - [sym__declaration_specifiers] = STATE(1487), + [sym__declaration_modifiers] = STATE(855), + [sym__declaration_specifiers] = STATE(1523), [sym_linkage_specification] = STATE(27), - [sym_attribute_specifier] = STATE(861), - [sym_attribute_declaration] = STATE(504), - [sym_ms_declspec_modifier] = STATE(861), - [sym_ms_call_modifier] = STATE(857), + [sym_attribute_specifier] = STATE(855), + [sym_attribute_declaration] = STATE(495), + [sym_ms_declspec_modifier] = STATE(855), + [sym_ms_call_modifier] = STATE(848), [sym_compound_statement] = STATE(27), - [sym_storage_class_specifier] = STATE(861), - [sym_type_qualifier] = STATE(861), - [sym__type_specifier] = STATE(1127), - [sym_sized_type_specifier] = STATE(1106), - [sym_enum_specifier] = STATE(1106), - [sym_struct_specifier] = STATE(1106), - [sym_union_specifier] = STATE(1106), + [sym_storage_class_specifier] = STATE(855), + [sym_type_qualifier] = STATE(855), + [sym__type_specifier] = STATE(1118), + [sym_sized_type_specifier] = STATE(1069), + [sym_enum_specifier] = STATE(1069), + [sym_struct_specifier] = STATE(1069), + [sym_union_specifier] = STATE(1069), [sym_attributed_statement] = STATE(27), [sym_labeled_statement] = STATE(27), [sym_expression_statement] = STATE(27), @@ -19699,46 +19730,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(27), [sym_seh_try_statement] = STATE(27), [sym_seh_leave_statement] = STATE(27), - [sym__expression] = STATE(1230), - [sym__expression_not_binary] = STATE(792), - [sym_comma_expression] = STATE(2008), - [sym_conditional_expression] = STATE(792), - [sym_assignment_expression] = STATE(792), - [sym_pointer_expression] = STATE(901), - [sym_unary_expression] = STATE(792), - [sym_binary_expression] = STATE(792), - [sym_update_expression] = STATE(792), - [sym_cast_expression] = STATE(792), - [sym_sizeof_expression] = STATE(792), - [sym_alignof_expression] = STATE(792), - [sym_offsetof_expression] = STATE(792), - [sym_generic_expression] = STATE(792), - [sym_subscript_expression] = STATE(901), - [sym_call_expression] = STATE(901), - [sym_gnu_asm_expression] = STATE(792), - [sym_field_expression] = STATE(901), - [sym_compound_literal_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(901), - [sym_char_literal] = STATE(792), - [sym_concatenated_string] = STATE(792), - [sym_string_literal] = STATE(675), - [sym_null] = STATE(792), + [sym__expression] = STATE(1258), + [sym__expression_not_binary] = STATE(809), + [sym_comma_expression] = STATE(2110), + [sym_conditional_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_pointer_expression] = STATE(877), + [sym_unary_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_update_expression] = STATE(809), + [sym_cast_expression] = STATE(809), + [sym_sizeof_expression] = STATE(809), + [sym_alignof_expression] = STATE(809), + [sym_offsetof_expression] = STATE(809), + [sym_generic_expression] = STATE(809), + [sym_subscript_expression] = STATE(877), + [sym_call_expression] = STATE(877), + [sym_gnu_asm_expression] = STATE(809), + [sym_field_expression] = STATE(877), + [sym_compound_literal_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(877), + [sym_char_literal] = STATE(809), + [sym_concatenated_string] = STATE(809), + [sym_string_literal] = STATE(573), + [sym_null] = STATE(809), [sym__empty_declaration] = STATE(27), - [sym_macro_type_specifier] = STATE(1106), + [sym_macro_type_specifier] = STATE(1069), [aux_sym_preproc_if_repeat1] = STATE(27), - [aux_sym__declaration_specifiers_repeat1] = STATE(861), - [aux_sym_attributed_declarator_repeat1] = STATE(435), - [aux_sym_sized_type_specifier_repeat1] = STATE(1113), - [sym_identifier] = ACTIONS(181), - [aux_sym_preproc_include_token1] = ACTIONS(183), - [aux_sym_preproc_def_token1] = ACTIONS(185), - [aux_sym_preproc_if_token1] = ACTIONS(187), - [aux_sym_preproc_if_token2] = ACTIONS(406), - [aux_sym_preproc_ifdef_token1] = ACTIONS(191), - [aux_sym_preproc_ifdef_token2] = ACTIONS(191), - [aux_sym_preproc_else_token1] = ACTIONS(115), - [aux_sym_preproc_elif_token1] = ACTIONS(117), - [sym_preproc_directive] = ACTIONS(193), + [aux_sym__declaration_specifiers_repeat1] = STATE(855), + [aux_sym_attributed_declarator_repeat1] = STATE(480), + [aux_sym_sized_type_specifier_repeat1] = STATE(1085), + [sym_identifier] = ACTIONS(183), + [aux_sym_preproc_include_token1] = ACTIONS(185), + [aux_sym_preproc_def_token1] = ACTIONS(187), + [aux_sym_preproc_if_token1] = ACTIONS(189), + [aux_sym_preproc_if_token2] = ACTIONS(251), + [aux_sym_preproc_ifdef_token1] = ACTIONS(193), + [aux_sym_preproc_ifdef_token2] = ACTIONS(193), + [aux_sym_preproc_else_token1] = ACTIONS(117), + [aux_sym_preproc_elif_token1] = ACTIONS(119), + [sym_preproc_directive] = ACTIONS(195), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -19746,117 +19777,298 @@ 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(195), - [anon_sym___extension__] = ACTIONS(197), - [anon_sym_typedef] = ACTIONS(199), - [anon_sym_extern] = ACTIONS(201), + [anon_sym_SEMI] = ACTIONS(197), + [anon_sym___extension__] = ACTIONS(199), + [anon_sym_typedef] = ACTIONS(201), + [anon_sym_extern] = ACTIONS(203), [anon_sym___attribute__] = ACTIONS(33), [anon_sym___scanf] = ACTIONS(35), [anon_sym___printf] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym___cdecl] = ACTIONS(41), - [anon_sym___clrcall] = ACTIONS(41), - [anon_sym___stdcall] = ACTIONS(41), - [anon_sym___fastcall] = ACTIONS(41), - [anon_sym___thiscall] = ACTIONS(41), - [anon_sym___vectorcall] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(203), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [sym_primitive_type] = ACTIONS(51), - [anon_sym_enum] = ACTIONS(53), - [anon_sym_struct] = ACTIONS(55), - [anon_sym_union] = ACTIONS(57), - [anon_sym_if] = ACTIONS(205), - [anon_sym_switch] = ACTIONS(207), - [anon_sym_case] = ACTIONS(209), - [anon_sym_default] = ACTIONS(211), - [anon_sym_while] = ACTIONS(213), - [anon_sym_do] = ACTIONS(215), - [anon_sym_for] = ACTIONS(217), - [anon_sym_return] = ACTIONS(219), - [anon_sym_break] = ACTIONS(221), - [anon_sym_continue] = ACTIONS(223), - [anon_sym_goto] = ACTIONS(225), - [anon_sym___try] = ACTIONS(227), - [anon_sym___leave] = ACTIONS(229), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(83), - [anon_sym___alignof__] = ACTIONS(85), - [anon_sym___alignof] = ACTIONS(85), - [anon_sym__alignof] = ACTIONS(85), - [anon_sym_alignof] = ACTIONS(85), - [anon_sym__Alignof] = ACTIONS(85), - [anon_sym_offsetof] = ACTIONS(87), - [anon_sym__Generic] = ACTIONS(89), - [anon_sym_asm] = ACTIONS(91), - [anon_sym___asm__] = ACTIONS(91), - [sym_number_literal] = ACTIONS(159), - [anon_sym_L_SQUOTE] = ACTIONS(95), - [anon_sym_u_SQUOTE] = ACTIONS(95), - [anon_sym_U_SQUOTE] = ACTIONS(95), - [anon_sym_u8_SQUOTE] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(95), - [anon_sym_L_DQUOTE] = ACTIONS(97), - [anon_sym_u_DQUOTE] = ACTIONS(97), - [anon_sym_U_DQUOTE] = ACTIONS(97), - [anon_sym_u8_DQUOTE] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(97), - [sym_true] = ACTIONS(161), - [sym_false] = ACTIONS(161), - [anon_sym_NULL] = ACTIONS(101), - [anon_sym_nullptr] = ACTIONS(101), + [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(205), + [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), + [sym_primitive_type] = ACTIONS(53), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [anon_sym_if] = ACTIONS(207), + [anon_sym_switch] = ACTIONS(209), + [anon_sym_case] = ACTIONS(211), + [anon_sym_default] = ACTIONS(213), + [anon_sym_while] = ACTIONS(215), + [anon_sym_do] = ACTIONS(217), + [anon_sym_for] = ACTIONS(219), + [anon_sym_return] = ACTIONS(221), + [anon_sym_break] = ACTIONS(223), + [anon_sym_continue] = ACTIONS(225), + [anon_sym_goto] = ACTIONS(227), + [anon_sym___try] = ACTIONS(229), + [anon_sym___leave] = ACTIONS(231), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [sym_number_literal] = ACTIONS(161), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(163), + [sym_false] = ACTIONS(163), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [25] = { + [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(135), + [sym_declaration] = STATE(23), + [sym_type_definition] = STATE(23), + [sym__declaration_modifiers] = STATE(855), + [sym__declaration_specifiers] = STATE(1530), + [sym_linkage_specification] = STATE(23), + [sym_attribute_specifier] = STATE(855), + [sym_attribute_declaration] = STATE(495), + [sym_ms_declspec_modifier] = STATE(855), + [sym_ms_call_modifier] = STATE(846), + [sym_compound_statement] = STATE(23), + [sym_storage_class_specifier] = STATE(855), + [sym_type_qualifier] = STATE(855), + [sym__type_specifier] = STATE(1124), + [sym_sized_type_specifier] = STATE(1069), + [sym_enum_specifier] = STATE(1069), + [sym_struct_specifier] = STATE(1069), + [sym_union_specifier] = STATE(1069), + [sym_attributed_statement] = STATE(23), + [sym_labeled_statement] = STATE(23), + [sym_expression_statement] = STATE(23), + [sym_if_statement] = STATE(23), + [sym_switch_statement] = STATE(23), + [sym_case_statement] = STATE(23), + [sym_while_statement] = STATE(23), + [sym_do_statement] = STATE(23), + [sym_for_statement] = STATE(23), + [sym_return_statement] = STATE(23), + [sym_break_statement] = STATE(23), + [sym_continue_statement] = STATE(23), + [sym_goto_statement] = STATE(23), + [sym_seh_try_statement] = STATE(23), + [sym_seh_leave_statement] = STATE(23), + [sym__expression] = STATE(1239), + [sym__expression_not_binary] = STATE(809), + [sym_comma_expression] = STATE(2249), + [sym_conditional_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_pointer_expression] = STATE(877), + [sym_unary_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_update_expression] = STATE(809), + [sym_cast_expression] = STATE(809), + [sym_sizeof_expression] = STATE(809), + [sym_alignof_expression] = STATE(809), + [sym_offsetof_expression] = STATE(809), + [sym_generic_expression] = STATE(809), + [sym_subscript_expression] = STATE(877), + [sym_call_expression] = STATE(877), + [sym_gnu_asm_expression] = STATE(809), + [sym_field_expression] = STATE(877), + [sym_compound_literal_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(877), + [sym_char_literal] = STATE(809), + [sym_concatenated_string] = STATE(809), + [sym_string_literal] = STATE(573), + [sym_null] = STATE(809), + [sym__empty_declaration] = STATE(23), + [sym_macro_type_specifier] = STATE(1069), + [aux_sym_preproc_if_repeat1] = STATE(23), + [aux_sym__declaration_specifiers_repeat1] = STATE(855), + [aux_sym_attributed_declarator_repeat1] = STATE(435), + [aux_sym_sized_type_specifier_repeat1] = STATE(1085), + [sym_identifier] = ACTIONS(253), + [aux_sym_preproc_include_token1] = ACTIONS(256), + [aux_sym_preproc_def_token1] = ACTIONS(259), + [aux_sym_preproc_if_token1] = ACTIONS(262), + [aux_sym_preproc_if_token2] = ACTIONS(265), + [aux_sym_preproc_ifdef_token1] = ACTIONS(267), + [aux_sym_preproc_ifdef_token2] = ACTIONS(267), + [aux_sym_preproc_else_token1] = ACTIONS(265), + [aux_sym_preproc_elif_token1] = ACTIONS(265), + [aux_sym_preproc_elifdef_token1] = ACTIONS(265), + [aux_sym_preproc_elifdef_token2] = ACTIONS(265), + [sym_preproc_directive] = ACTIONS(270), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_BANG] = ACTIONS(276), + [anon_sym_TILDE] = ACTIONS(276), + [anon_sym_DASH] = ACTIONS(279), + [anon_sym_PLUS] = ACTIONS(279), + [anon_sym_STAR] = ACTIONS(282), + [anon_sym_AMP] = ACTIONS(282), + [anon_sym_SEMI] = ACTIONS(285), + [anon_sym___extension__] = ACTIONS(288), + [anon_sym_typedef] = ACTIONS(291), + [anon_sym_extern] = ACTIONS(294), + [anon_sym___attribute__] = ACTIONS(297), + [anon_sym___scanf] = ACTIONS(300), + [anon_sym___printf] = ACTIONS(300), + [anon_sym___read_mostly] = ACTIONS(303), + [anon_sym___must_hold] = ACTIONS(297), + [anon_sym___ro_after_init] = ACTIONS(303), + [anon_sym___init] = ACTIONS(303), + [anon_sym_LBRACK_LBRACK] = ACTIONS(306), + [anon_sym___declspec] = ACTIONS(309), + [anon_sym___cdecl] = ACTIONS(312), + [anon_sym___clrcall] = ACTIONS(312), + [anon_sym___stdcall] = ACTIONS(312), + [anon_sym___fastcall] = ACTIONS(312), + [anon_sym___thiscall] = ACTIONS(312), + [anon_sym___vectorcall] = ACTIONS(312), + [anon_sym_LBRACE] = ACTIONS(315), + [anon_sym_signed] = ACTIONS(318), + [anon_sym_unsigned] = ACTIONS(318), + [anon_sym_long] = ACTIONS(318), + [anon_sym_short] = ACTIONS(318), + [anon_sym_static] = ACTIONS(321), + [anon_sym_auto] = ACTIONS(321), + [anon_sym_register] = ACTIONS(321), + [anon_sym_inline] = ACTIONS(321), + [anon_sym___inline] = ACTIONS(321), + [anon_sym___inline__] = ACTIONS(321), + [anon_sym___forceinline] = ACTIONS(321), + [anon_sym_thread_local] = ACTIONS(321), + [anon_sym___thread] = ACTIONS(321), + [anon_sym_const] = ACTIONS(324), + [anon_sym_constexpr] = ACTIONS(324), + [anon_sym_volatile] = ACTIONS(324), + [anon_sym_restrict] = ACTIONS(324), + [anon_sym___restrict__] = ACTIONS(324), + [anon_sym__Atomic] = ACTIONS(324), + [anon_sym__Noreturn] = ACTIONS(324), + [anon_sym_noreturn] = ACTIONS(324), + [sym_primitive_type] = ACTIONS(327), + [anon_sym_enum] = ACTIONS(330), + [anon_sym_struct] = ACTIONS(333), + [anon_sym_union] = ACTIONS(336), + [anon_sym_if] = ACTIONS(339), + [anon_sym_switch] = ACTIONS(342), + [anon_sym_case] = ACTIONS(345), + [anon_sym_default] = ACTIONS(348), + [anon_sym_while] = ACTIONS(351), + [anon_sym_do] = ACTIONS(354), + [anon_sym_for] = ACTIONS(357), + [anon_sym_return] = ACTIONS(360), + [anon_sym_break] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(366), + [anon_sym_goto] = ACTIONS(369), + [anon_sym___try] = ACTIONS(372), + [anon_sym___leave] = ACTIONS(375), + [anon_sym_DASH_DASH] = ACTIONS(378), + [anon_sym_PLUS_PLUS] = ACTIONS(378), + [anon_sym_sizeof] = ACTIONS(381), + [anon_sym___alignof__] = ACTIONS(384), + [anon_sym___alignof] = ACTIONS(384), + [anon_sym__alignof] = ACTIONS(384), + [anon_sym_alignof] = ACTIONS(384), + [anon_sym__Alignof] = ACTIONS(384), + [anon_sym_offsetof] = ACTIONS(387), + [anon_sym__Generic] = ACTIONS(390), + [anon_sym_asm] = ACTIONS(393), + [anon_sym___asm__] = ACTIONS(393), + [sym_number_literal] = ACTIONS(396), + [anon_sym_L_SQUOTE] = ACTIONS(399), + [anon_sym_u_SQUOTE] = ACTIONS(399), + [anon_sym_U_SQUOTE] = ACTIONS(399), + [anon_sym_u8_SQUOTE] = ACTIONS(399), + [anon_sym_SQUOTE] = ACTIONS(399), + [anon_sym_L_DQUOTE] = ACTIONS(402), + [anon_sym_u_DQUOTE] = ACTIONS(402), + [anon_sym_U_DQUOTE] = ACTIONS(402), + [anon_sym_u8_DQUOTE] = ACTIONS(402), + [anon_sym_DQUOTE] = ACTIONS(402), + [sym_true] = ACTIONS(405), + [sym_false] = ACTIONS(405), + [anon_sym_NULL] = ACTIONS(408), + [anon_sym_nullptr] = ACTIONS(408), + [sym_comment] = ACTIONS(3), + }, + [24] = { [sym_preproc_include] = STATE(27), [sym_preproc_def] = STATE(27), [sym_preproc_function_def] = STATE(27), [sym_preproc_call] = STATE(27), [sym_preproc_if] = STATE(27), [sym_preproc_ifdef] = STATE(27), - [sym_preproc_else] = STATE(2067), - [sym_preproc_elif] = STATE(2067), + [sym_preproc_else] = STATE(2081), + [sym_preproc_elif] = STATE(2081), [sym_function_definition] = STATE(27), - [sym__old_style_function_definition] = STATE(227), + [sym__old_style_function_definition] = STATE(228), [sym_declaration] = STATE(27), [sym_type_definition] = STATE(27), - [sym__declaration_modifiers] = STATE(861), - [sym__declaration_specifiers] = STATE(1487), + [sym__declaration_modifiers] = STATE(855), + [sym__declaration_specifiers] = STATE(1523), [sym_linkage_specification] = STATE(27), - [sym_attribute_specifier] = STATE(861), - [sym_attribute_declaration] = STATE(504), - [sym_ms_declspec_modifier] = STATE(861), - [sym_ms_call_modifier] = STATE(857), + [sym_attribute_specifier] = STATE(855), + [sym_attribute_declaration] = STATE(495), + [sym_ms_declspec_modifier] = STATE(855), + [sym_ms_call_modifier] = STATE(848), [sym_compound_statement] = STATE(27), - [sym_storage_class_specifier] = STATE(861), - [sym_type_qualifier] = STATE(861), - [sym__type_specifier] = STATE(1127), - [sym_sized_type_specifier] = STATE(1106), - [sym_enum_specifier] = STATE(1106), - [sym_struct_specifier] = STATE(1106), - [sym_union_specifier] = STATE(1106), + [sym_storage_class_specifier] = STATE(855), + [sym_type_qualifier] = STATE(855), + [sym__type_specifier] = STATE(1118), + [sym_sized_type_specifier] = STATE(1069), + [sym_enum_specifier] = STATE(1069), + [sym_struct_specifier] = STATE(1069), + [sym_union_specifier] = STATE(1069), [sym_attributed_statement] = STATE(27), [sym_labeled_statement] = STATE(27), [sym_expression_statement] = STATE(27), @@ -19872,46 +20084,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(27), [sym_seh_try_statement] = STATE(27), [sym_seh_leave_statement] = STATE(27), - [sym__expression] = STATE(1230), - [sym__expression_not_binary] = STATE(792), - [sym_comma_expression] = STATE(2008), - [sym_conditional_expression] = STATE(792), - [sym_assignment_expression] = STATE(792), - [sym_pointer_expression] = STATE(901), - [sym_unary_expression] = STATE(792), - [sym_binary_expression] = STATE(792), - [sym_update_expression] = STATE(792), - [sym_cast_expression] = STATE(792), - [sym_sizeof_expression] = STATE(792), - [sym_alignof_expression] = STATE(792), - [sym_offsetof_expression] = STATE(792), - [sym_generic_expression] = STATE(792), - [sym_subscript_expression] = STATE(901), - [sym_call_expression] = STATE(901), - [sym_gnu_asm_expression] = STATE(792), - [sym_field_expression] = STATE(901), - [sym_compound_literal_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(901), - [sym_char_literal] = STATE(792), - [sym_concatenated_string] = STATE(792), - [sym_string_literal] = STATE(675), - [sym_null] = STATE(792), + [sym__expression] = STATE(1258), + [sym__expression_not_binary] = STATE(809), + [sym_comma_expression] = STATE(2110), + [sym_conditional_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_pointer_expression] = STATE(877), + [sym_unary_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_update_expression] = STATE(809), + [sym_cast_expression] = STATE(809), + [sym_sizeof_expression] = STATE(809), + [sym_alignof_expression] = STATE(809), + [sym_offsetof_expression] = STATE(809), + [sym_generic_expression] = STATE(809), + [sym_subscript_expression] = STATE(877), + [sym_call_expression] = STATE(877), + [sym_gnu_asm_expression] = STATE(809), + [sym_field_expression] = STATE(877), + [sym_compound_literal_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(877), + [sym_char_literal] = STATE(809), + [sym_concatenated_string] = STATE(809), + [sym_string_literal] = STATE(573), + [sym_null] = STATE(809), [sym__empty_declaration] = STATE(27), - [sym_macro_type_specifier] = STATE(1106), + [sym_macro_type_specifier] = STATE(1069), [aux_sym_preproc_if_repeat1] = STATE(27), - [aux_sym__declaration_specifiers_repeat1] = STATE(861), - [aux_sym_attributed_declarator_repeat1] = STATE(435), - [aux_sym_sized_type_specifier_repeat1] = STATE(1113), - [sym_identifier] = ACTIONS(181), - [aux_sym_preproc_include_token1] = ACTIONS(183), - [aux_sym_preproc_def_token1] = ACTIONS(185), - [aux_sym_preproc_if_token1] = ACTIONS(187), - [aux_sym_preproc_if_token2] = ACTIONS(408), - [aux_sym_preproc_ifdef_token1] = ACTIONS(191), - [aux_sym_preproc_ifdef_token2] = ACTIONS(191), - [aux_sym_preproc_else_token1] = ACTIONS(115), - [aux_sym_preproc_elif_token1] = ACTIONS(117), - [sym_preproc_directive] = ACTIONS(193), + [aux_sym__declaration_specifiers_repeat1] = STATE(855), + [aux_sym_attributed_declarator_repeat1] = STATE(480), + [aux_sym_sized_type_specifier_repeat1] = STATE(1085), + [sym_identifier] = ACTIONS(183), + [aux_sym_preproc_include_token1] = ACTIONS(185), + [aux_sym_preproc_def_token1] = ACTIONS(187), + [aux_sym_preproc_if_token1] = ACTIONS(189), + [aux_sym_preproc_if_token2] = ACTIONS(411), + [aux_sym_preproc_ifdef_token1] = ACTIONS(193), + [aux_sym_preproc_ifdef_token2] = ACTIONS(193), + [aux_sym_preproc_else_token1] = ACTIONS(117), + [aux_sym_preproc_elif_token1] = ACTIONS(119), + [sym_preproc_directive] = ACTIONS(195), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -19919,117 +20131,121 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(195), - [anon_sym___extension__] = ACTIONS(197), - [anon_sym_typedef] = ACTIONS(199), - [anon_sym_extern] = ACTIONS(201), + [anon_sym_SEMI] = ACTIONS(197), + [anon_sym___extension__] = ACTIONS(199), + [anon_sym_typedef] = ACTIONS(201), + [anon_sym_extern] = ACTIONS(203), [anon_sym___attribute__] = ACTIONS(33), [anon_sym___scanf] = ACTIONS(35), [anon_sym___printf] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym___cdecl] = ACTIONS(41), - [anon_sym___clrcall] = ACTIONS(41), - [anon_sym___stdcall] = ACTIONS(41), - [anon_sym___fastcall] = ACTIONS(41), - [anon_sym___thiscall] = ACTIONS(41), - [anon_sym___vectorcall] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(203), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [sym_primitive_type] = ACTIONS(51), - [anon_sym_enum] = ACTIONS(53), - [anon_sym_struct] = ACTIONS(55), - [anon_sym_union] = ACTIONS(57), - [anon_sym_if] = ACTIONS(205), - [anon_sym_switch] = ACTIONS(207), - [anon_sym_case] = ACTIONS(209), - [anon_sym_default] = ACTIONS(211), - [anon_sym_while] = ACTIONS(213), - [anon_sym_do] = ACTIONS(215), - [anon_sym_for] = ACTIONS(217), - [anon_sym_return] = ACTIONS(219), - [anon_sym_break] = ACTIONS(221), - [anon_sym_continue] = ACTIONS(223), - [anon_sym_goto] = ACTIONS(225), - [anon_sym___try] = ACTIONS(227), - [anon_sym___leave] = ACTIONS(229), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(83), - [anon_sym___alignof__] = ACTIONS(85), - [anon_sym___alignof] = ACTIONS(85), - [anon_sym__alignof] = ACTIONS(85), - [anon_sym_alignof] = ACTIONS(85), - [anon_sym__Alignof] = ACTIONS(85), - [anon_sym_offsetof] = ACTIONS(87), - [anon_sym__Generic] = ACTIONS(89), - [anon_sym_asm] = ACTIONS(91), - [anon_sym___asm__] = ACTIONS(91), - [sym_number_literal] = ACTIONS(159), - [anon_sym_L_SQUOTE] = ACTIONS(95), - [anon_sym_u_SQUOTE] = ACTIONS(95), - [anon_sym_U_SQUOTE] = ACTIONS(95), - [anon_sym_u8_SQUOTE] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(95), - [anon_sym_L_DQUOTE] = ACTIONS(97), - [anon_sym_u_DQUOTE] = ACTIONS(97), - [anon_sym_U_DQUOTE] = ACTIONS(97), - [anon_sym_u8_DQUOTE] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(97), - [sym_true] = ACTIONS(161), - [sym_false] = ACTIONS(161), - [anon_sym_NULL] = ACTIONS(101), - [anon_sym_nullptr] = ACTIONS(101), + [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(205), + [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), + [sym_primitive_type] = ACTIONS(53), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [anon_sym_if] = ACTIONS(207), + [anon_sym_switch] = ACTIONS(209), + [anon_sym_case] = ACTIONS(211), + [anon_sym_default] = ACTIONS(213), + [anon_sym_while] = ACTIONS(215), + [anon_sym_do] = ACTIONS(217), + [anon_sym_for] = ACTIONS(219), + [anon_sym_return] = ACTIONS(221), + [anon_sym_break] = ACTIONS(223), + [anon_sym_continue] = ACTIONS(225), + [anon_sym_goto] = ACTIONS(227), + [anon_sym___try] = ACTIONS(229), + [anon_sym___leave] = ACTIONS(231), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [sym_number_literal] = ACTIONS(161), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(163), + [sym_false] = ACTIONS(163), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [26] = { + [25] = { [sym_preproc_include] = STATE(27), [sym_preproc_def] = STATE(27), [sym_preproc_function_def] = STATE(27), [sym_preproc_call] = STATE(27), [sym_preproc_if] = STATE(27), [sym_preproc_ifdef] = STATE(27), - [sym_preproc_else] = STATE(1948), - [sym_preproc_elif] = STATE(1948), + [sym_preproc_else] = STATE(2065), + [sym_preproc_elif] = STATE(2065), [sym_function_definition] = STATE(27), - [sym__old_style_function_definition] = STATE(227), + [sym__old_style_function_definition] = STATE(228), [sym_declaration] = STATE(27), [sym_type_definition] = STATE(27), - [sym__declaration_modifiers] = STATE(861), - [sym__declaration_specifiers] = STATE(1487), + [sym__declaration_modifiers] = STATE(855), + [sym__declaration_specifiers] = STATE(1523), [sym_linkage_specification] = STATE(27), - [sym_attribute_specifier] = STATE(861), - [sym_attribute_declaration] = STATE(504), - [sym_ms_declspec_modifier] = STATE(861), - [sym_ms_call_modifier] = STATE(857), + [sym_attribute_specifier] = STATE(855), + [sym_attribute_declaration] = STATE(495), + [sym_ms_declspec_modifier] = STATE(855), + [sym_ms_call_modifier] = STATE(848), [sym_compound_statement] = STATE(27), - [sym_storage_class_specifier] = STATE(861), - [sym_type_qualifier] = STATE(861), - [sym__type_specifier] = STATE(1127), - [sym_sized_type_specifier] = STATE(1106), - [sym_enum_specifier] = STATE(1106), - [sym_struct_specifier] = STATE(1106), - [sym_union_specifier] = STATE(1106), + [sym_storage_class_specifier] = STATE(855), + [sym_type_qualifier] = STATE(855), + [sym__type_specifier] = STATE(1118), + [sym_sized_type_specifier] = STATE(1069), + [sym_enum_specifier] = STATE(1069), + [sym_struct_specifier] = STATE(1069), + [sym_union_specifier] = STATE(1069), [sym_attributed_statement] = STATE(27), [sym_labeled_statement] = STATE(27), [sym_expression_statement] = STATE(27), @@ -20045,46 +20261,223 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(27), [sym_seh_try_statement] = STATE(27), [sym_seh_leave_statement] = STATE(27), - [sym__expression] = STATE(1230), - [sym__expression_not_binary] = STATE(792), - [sym_comma_expression] = STATE(2008), - [sym_conditional_expression] = STATE(792), - [sym_assignment_expression] = STATE(792), - [sym_pointer_expression] = STATE(901), - [sym_unary_expression] = STATE(792), - [sym_binary_expression] = STATE(792), - [sym_update_expression] = STATE(792), - [sym_cast_expression] = STATE(792), - [sym_sizeof_expression] = STATE(792), - [sym_alignof_expression] = STATE(792), - [sym_offsetof_expression] = STATE(792), - [sym_generic_expression] = STATE(792), - [sym_subscript_expression] = STATE(901), - [sym_call_expression] = STATE(901), - [sym_gnu_asm_expression] = STATE(792), - [sym_field_expression] = STATE(901), - [sym_compound_literal_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(901), - [sym_char_literal] = STATE(792), - [sym_concatenated_string] = STATE(792), - [sym_string_literal] = STATE(675), - [sym_null] = STATE(792), + [sym__expression] = STATE(1258), + [sym__expression_not_binary] = STATE(809), + [sym_comma_expression] = STATE(2110), + [sym_conditional_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_pointer_expression] = STATE(877), + [sym_unary_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_update_expression] = STATE(809), + [sym_cast_expression] = STATE(809), + [sym_sizeof_expression] = STATE(809), + [sym_alignof_expression] = STATE(809), + [sym_offsetof_expression] = STATE(809), + [sym_generic_expression] = STATE(809), + [sym_subscript_expression] = STATE(877), + [sym_call_expression] = STATE(877), + [sym_gnu_asm_expression] = STATE(809), + [sym_field_expression] = STATE(877), + [sym_compound_literal_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(877), + [sym_char_literal] = STATE(809), + [sym_concatenated_string] = STATE(809), + [sym_string_literal] = STATE(573), + [sym_null] = STATE(809), [sym__empty_declaration] = STATE(27), - [sym_macro_type_specifier] = STATE(1106), + [sym_macro_type_specifier] = STATE(1069), [aux_sym_preproc_if_repeat1] = STATE(27), - [aux_sym__declaration_specifiers_repeat1] = STATE(861), - [aux_sym_attributed_declarator_repeat1] = STATE(435), - [aux_sym_sized_type_specifier_repeat1] = STATE(1113), - [sym_identifier] = ACTIONS(181), - [aux_sym_preproc_include_token1] = ACTIONS(183), - [aux_sym_preproc_def_token1] = ACTIONS(185), - [aux_sym_preproc_if_token1] = ACTIONS(187), - [aux_sym_preproc_if_token2] = ACTIONS(410), - [aux_sym_preproc_ifdef_token1] = ACTIONS(191), - [aux_sym_preproc_ifdef_token2] = ACTIONS(191), - [aux_sym_preproc_else_token1] = ACTIONS(115), - [aux_sym_preproc_elif_token1] = ACTIONS(117), - [sym_preproc_directive] = ACTIONS(193), + [aux_sym__declaration_specifiers_repeat1] = STATE(855), + [aux_sym_attributed_declarator_repeat1] = STATE(480), + [aux_sym_sized_type_specifier_repeat1] = STATE(1085), + [sym_identifier] = ACTIONS(183), + [aux_sym_preproc_include_token1] = ACTIONS(185), + [aux_sym_preproc_def_token1] = ACTIONS(187), + [aux_sym_preproc_if_token1] = ACTIONS(189), + [aux_sym_preproc_if_token2] = ACTIONS(413), + [aux_sym_preproc_ifdef_token1] = ACTIONS(193), + [aux_sym_preproc_ifdef_token2] = ACTIONS(193), + [aux_sym_preproc_else_token1] = ACTIONS(117), + [aux_sym_preproc_elif_token1] = ACTIONS(119), + [sym_preproc_directive] = ACTIONS(195), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(197), + [anon_sym___extension__] = ACTIONS(199), + [anon_sym_typedef] = ACTIONS(201), + [anon_sym_extern] = ACTIONS(203), + [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(205), + [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), + [sym_primitive_type] = ACTIONS(53), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [anon_sym_if] = ACTIONS(207), + [anon_sym_switch] = ACTIONS(209), + [anon_sym_case] = ACTIONS(211), + [anon_sym_default] = ACTIONS(213), + [anon_sym_while] = ACTIONS(215), + [anon_sym_do] = ACTIONS(217), + [anon_sym_for] = ACTIONS(219), + [anon_sym_return] = ACTIONS(221), + [anon_sym_break] = ACTIONS(223), + [anon_sym_continue] = ACTIONS(225), + [anon_sym_goto] = ACTIONS(227), + [anon_sym___try] = ACTIONS(229), + [anon_sym___leave] = ACTIONS(231), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [sym_number_literal] = ACTIONS(161), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(163), + [sym_false] = ACTIONS(163), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + }, + [26] = { + [sym_preproc_include] = STATE(24), + [sym_preproc_def] = STATE(24), + [sym_preproc_function_def] = STATE(24), + [sym_preproc_call] = STATE(24), + [sym_preproc_if] = STATE(24), + [sym_preproc_ifdef] = STATE(24), + [sym_preproc_else] = STATE(1988), + [sym_preproc_elif] = STATE(1988), + [sym_function_definition] = STATE(24), + [sym__old_style_function_definition] = STATE(228), + [sym_declaration] = STATE(24), + [sym_type_definition] = STATE(24), + [sym__declaration_modifiers] = STATE(855), + [sym__declaration_specifiers] = STATE(1523), + [sym_linkage_specification] = STATE(24), + [sym_attribute_specifier] = STATE(855), + [sym_attribute_declaration] = STATE(495), + [sym_ms_declspec_modifier] = STATE(855), + [sym_ms_call_modifier] = STATE(848), + [sym_compound_statement] = STATE(24), + [sym_storage_class_specifier] = STATE(855), + [sym_type_qualifier] = STATE(855), + [sym__type_specifier] = STATE(1118), + [sym_sized_type_specifier] = STATE(1069), + [sym_enum_specifier] = STATE(1069), + [sym_struct_specifier] = STATE(1069), + [sym_union_specifier] = STATE(1069), + [sym_attributed_statement] = STATE(24), + [sym_labeled_statement] = STATE(24), + [sym_expression_statement] = STATE(24), + [sym_if_statement] = STATE(24), + [sym_switch_statement] = STATE(24), + [sym_case_statement] = STATE(24), + [sym_while_statement] = STATE(24), + [sym_do_statement] = STATE(24), + [sym_for_statement] = STATE(24), + [sym_return_statement] = STATE(24), + [sym_break_statement] = STATE(24), + [sym_continue_statement] = STATE(24), + [sym_goto_statement] = STATE(24), + [sym_seh_try_statement] = STATE(24), + [sym_seh_leave_statement] = STATE(24), + [sym__expression] = STATE(1258), + [sym__expression_not_binary] = STATE(809), + [sym_comma_expression] = STATE(2110), + [sym_conditional_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_pointer_expression] = STATE(877), + [sym_unary_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_update_expression] = STATE(809), + [sym_cast_expression] = STATE(809), + [sym_sizeof_expression] = STATE(809), + [sym_alignof_expression] = STATE(809), + [sym_offsetof_expression] = STATE(809), + [sym_generic_expression] = STATE(809), + [sym_subscript_expression] = STATE(877), + [sym_call_expression] = STATE(877), + [sym_gnu_asm_expression] = STATE(809), + [sym_field_expression] = STATE(877), + [sym_compound_literal_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(877), + [sym_char_literal] = STATE(809), + [sym_concatenated_string] = STATE(809), + [sym_string_literal] = STATE(573), + [sym_null] = STATE(809), + [sym__empty_declaration] = STATE(24), + [sym_macro_type_specifier] = STATE(1069), + [aux_sym_preproc_if_repeat1] = STATE(24), + [aux_sym__declaration_specifiers_repeat1] = STATE(855), + [aux_sym_attributed_declarator_repeat1] = STATE(480), + [aux_sym_sized_type_specifier_repeat1] = STATE(1085), + [sym_identifier] = ACTIONS(183), + [aux_sym_preproc_include_token1] = ACTIONS(185), + [aux_sym_preproc_def_token1] = ACTIONS(187), + [aux_sym_preproc_if_token1] = ACTIONS(189), + [aux_sym_preproc_if_token2] = ACTIONS(415), + [aux_sym_preproc_ifdef_token1] = ACTIONS(193), + [aux_sym_preproc_ifdef_token2] = ACTIONS(193), + [aux_sym_preproc_else_token1] = ACTIONS(117), + [aux_sym_preproc_elif_token1] = ACTIONS(119), + [sym_preproc_directive] = ACTIONS(195), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -20092,87 +20485,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_SEMI] = ACTIONS(195), - [anon_sym___extension__] = ACTIONS(197), - [anon_sym_typedef] = ACTIONS(199), - [anon_sym_extern] = ACTIONS(201), + [anon_sym_SEMI] = ACTIONS(197), + [anon_sym___extension__] = ACTIONS(199), + [anon_sym_typedef] = ACTIONS(201), + [anon_sym_extern] = ACTIONS(203), [anon_sym___attribute__] = ACTIONS(33), [anon_sym___scanf] = ACTIONS(35), [anon_sym___printf] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym___cdecl] = ACTIONS(41), - [anon_sym___clrcall] = ACTIONS(41), - [anon_sym___stdcall] = ACTIONS(41), - [anon_sym___fastcall] = ACTIONS(41), - [anon_sym___thiscall] = ACTIONS(41), - [anon_sym___vectorcall] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(203), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [sym_primitive_type] = ACTIONS(51), - [anon_sym_enum] = ACTIONS(53), - [anon_sym_struct] = ACTIONS(55), - [anon_sym_union] = ACTIONS(57), - [anon_sym_if] = ACTIONS(205), - [anon_sym_switch] = ACTIONS(207), - [anon_sym_case] = ACTIONS(209), - [anon_sym_default] = ACTIONS(211), - [anon_sym_while] = ACTIONS(213), - [anon_sym_do] = ACTIONS(215), - [anon_sym_for] = ACTIONS(217), - [anon_sym_return] = ACTIONS(219), - [anon_sym_break] = ACTIONS(221), - [anon_sym_continue] = ACTIONS(223), - [anon_sym_goto] = ACTIONS(225), - [anon_sym___try] = ACTIONS(227), - [anon_sym___leave] = ACTIONS(229), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(83), - [anon_sym___alignof__] = ACTIONS(85), - [anon_sym___alignof] = ACTIONS(85), - [anon_sym__alignof] = ACTIONS(85), - [anon_sym_alignof] = ACTIONS(85), - [anon_sym__Alignof] = ACTIONS(85), - [anon_sym_offsetof] = ACTIONS(87), - [anon_sym__Generic] = ACTIONS(89), - [anon_sym_asm] = ACTIONS(91), - [anon_sym___asm__] = ACTIONS(91), - [sym_number_literal] = ACTIONS(159), - [anon_sym_L_SQUOTE] = ACTIONS(95), - [anon_sym_u_SQUOTE] = ACTIONS(95), - [anon_sym_U_SQUOTE] = ACTIONS(95), - [anon_sym_u8_SQUOTE] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(95), - [anon_sym_L_DQUOTE] = ACTIONS(97), - [anon_sym_u_DQUOTE] = ACTIONS(97), - [anon_sym_U_DQUOTE] = ACTIONS(97), - [anon_sym_u8_DQUOTE] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(97), - [sym_true] = ACTIONS(161), - [sym_false] = ACTIONS(161), - [anon_sym_NULL] = ACTIONS(101), - [anon_sym_nullptr] = ACTIONS(101), + [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(205), + [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), + [sym_primitive_type] = ACTIONS(53), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [anon_sym_if] = ACTIONS(207), + [anon_sym_switch] = ACTIONS(209), + [anon_sym_case] = ACTIONS(211), + [anon_sym_default] = ACTIONS(213), + [anon_sym_while] = ACTIONS(215), + [anon_sym_do] = ACTIONS(217), + [anon_sym_for] = ACTIONS(219), + [anon_sym_return] = ACTIONS(221), + [anon_sym_break] = ACTIONS(223), + [anon_sym_continue] = ACTIONS(225), + [anon_sym_goto] = ACTIONS(227), + [anon_sym___try] = ACTIONS(229), + [anon_sym___leave] = ACTIONS(231), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [sym_number_literal] = ACTIONS(161), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(163), + [sym_false] = ACTIONS(163), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, [27] = { @@ -20183,24 +20580,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_if] = STATE(27), [sym_preproc_ifdef] = STATE(27), [sym_function_definition] = STATE(27), - [sym__old_style_function_definition] = STATE(227), + [sym__old_style_function_definition] = STATE(228), [sym_declaration] = STATE(27), [sym_type_definition] = STATE(27), - [sym__declaration_modifiers] = STATE(861), - [sym__declaration_specifiers] = STATE(1487), + [sym__declaration_modifiers] = STATE(855), + [sym__declaration_specifiers] = STATE(1523), [sym_linkage_specification] = STATE(27), - [sym_attribute_specifier] = STATE(861), - [sym_attribute_declaration] = STATE(504), - [sym_ms_declspec_modifier] = STATE(861), - [sym_ms_call_modifier] = STATE(857), + [sym_attribute_specifier] = STATE(855), + [sym_attribute_declaration] = STATE(495), + [sym_ms_declspec_modifier] = STATE(855), + [sym_ms_call_modifier] = STATE(848), [sym_compound_statement] = STATE(27), - [sym_storage_class_specifier] = STATE(861), - [sym_type_qualifier] = STATE(861), - [sym__type_specifier] = STATE(1127), - [sym_sized_type_specifier] = STATE(1106), - [sym_enum_specifier] = STATE(1106), - [sym_struct_specifier] = STATE(1106), - [sym_union_specifier] = STATE(1106), + [sym_storage_class_specifier] = STATE(855), + [sym_type_qualifier] = STATE(855), + [sym__type_specifier] = STATE(1118), + [sym_sized_type_specifier] = STATE(1069), + [sym_enum_specifier] = STATE(1069), + [sym_struct_specifier] = STATE(1069), + [sym_union_specifier] = STATE(1069), [sym_attributed_statement] = STATE(27), [sym_labeled_statement] = STATE(27), [sym_expression_statement] = STATE(27), @@ -20216,137 +20613,833 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(27), [sym_seh_try_statement] = STATE(27), [sym_seh_leave_statement] = STATE(27), - [sym__expression] = STATE(1230), - [sym__expression_not_binary] = STATE(792), - [sym_comma_expression] = STATE(2008), - [sym_conditional_expression] = STATE(792), - [sym_assignment_expression] = STATE(792), - [sym_pointer_expression] = STATE(901), - [sym_unary_expression] = STATE(792), - [sym_binary_expression] = STATE(792), - [sym_update_expression] = STATE(792), - [sym_cast_expression] = STATE(792), - [sym_sizeof_expression] = STATE(792), - [sym_alignof_expression] = STATE(792), - [sym_offsetof_expression] = STATE(792), - [sym_generic_expression] = STATE(792), - [sym_subscript_expression] = STATE(901), - [sym_call_expression] = STATE(901), - [sym_gnu_asm_expression] = STATE(792), - [sym_field_expression] = STATE(901), - [sym_compound_literal_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(901), - [sym_char_literal] = STATE(792), - [sym_concatenated_string] = STATE(792), - [sym_string_literal] = STATE(675), - [sym_null] = STATE(792), + [sym__expression] = STATE(1258), + [sym__expression_not_binary] = STATE(809), + [sym_comma_expression] = STATE(2110), + [sym_conditional_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_pointer_expression] = STATE(877), + [sym_unary_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_update_expression] = STATE(809), + [sym_cast_expression] = STATE(809), + [sym_sizeof_expression] = STATE(809), + [sym_alignof_expression] = STATE(809), + [sym_offsetof_expression] = STATE(809), + [sym_generic_expression] = STATE(809), + [sym_subscript_expression] = STATE(877), + [sym_call_expression] = STATE(877), + [sym_gnu_asm_expression] = STATE(809), + [sym_field_expression] = STATE(877), + [sym_compound_literal_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(877), + [sym_char_literal] = STATE(809), + [sym_concatenated_string] = STATE(809), + [sym_string_literal] = STATE(573), + [sym_null] = STATE(809), [sym__empty_declaration] = STATE(27), - [sym_macro_type_specifier] = STATE(1106), + [sym_macro_type_specifier] = STATE(1069), [aux_sym_preproc_if_repeat1] = STATE(27), - [aux_sym__declaration_specifiers_repeat1] = STATE(861), - [aux_sym_attributed_declarator_repeat1] = STATE(435), - [aux_sym_sized_type_specifier_repeat1] = STATE(1113), - [sym_identifier] = ACTIONS(412), - [aux_sym_preproc_include_token1] = ACTIONS(415), - [aux_sym_preproc_def_token1] = ACTIONS(418), - [aux_sym_preproc_if_token1] = ACTIONS(421), - [aux_sym_preproc_if_token2] = ACTIONS(247), - [aux_sym_preproc_ifdef_token1] = ACTIONS(424), - [aux_sym_preproc_ifdef_token2] = ACTIONS(424), - [aux_sym_preproc_else_token1] = ACTIONS(247), - [aux_sym_preproc_elif_token1] = ACTIONS(247), - [sym_preproc_directive] = ACTIONS(427), - [anon_sym_LPAREN2] = ACTIONS(255), - [anon_sym_BANG] = ACTIONS(258), - [anon_sym_TILDE] = ACTIONS(258), - [anon_sym_DASH] = ACTIONS(261), - [anon_sym_PLUS] = ACTIONS(261), - [anon_sym_STAR] = ACTIONS(264), - [anon_sym_AMP] = ACTIONS(264), - [anon_sym_SEMI] = ACTIONS(430), - [anon_sym___extension__] = ACTIONS(433), - [anon_sym_typedef] = ACTIONS(436), - [anon_sym_extern] = ACTIONS(439), - [anon_sym___attribute__] = ACTIONS(279), - [anon_sym___scanf] = ACTIONS(282), - [anon_sym___printf] = ACTIONS(282), - [anon_sym_LBRACK_LBRACK] = ACTIONS(285), - [anon_sym___declspec] = ACTIONS(288), - [anon_sym___cdecl] = ACTIONS(291), - [anon_sym___clrcall] = ACTIONS(291), - [anon_sym___stdcall] = ACTIONS(291), - [anon_sym___fastcall] = ACTIONS(291), - [anon_sym___thiscall] = ACTIONS(291), - [anon_sym___vectorcall] = ACTIONS(291), - [anon_sym_LBRACE] = ACTIONS(442), - [anon_sym_signed] = ACTIONS(297), - [anon_sym_unsigned] = ACTIONS(297), - [anon_sym_long] = ACTIONS(297), - [anon_sym_short] = ACTIONS(297), - [anon_sym_static] = ACTIONS(300), - [anon_sym_auto] = ACTIONS(300), - [anon_sym_register] = ACTIONS(300), - [anon_sym_inline] = ACTIONS(300), - [anon_sym___inline] = ACTIONS(300), - [anon_sym___inline__] = ACTIONS(300), - [anon_sym___forceinline] = ACTIONS(300), - [anon_sym_thread_local] = ACTIONS(300), - [anon_sym___thread] = ACTIONS(300), - [anon_sym_const] = ACTIONS(303), - [anon_sym_constexpr] = ACTIONS(303), - [anon_sym_volatile] = ACTIONS(303), - [anon_sym_restrict] = ACTIONS(303), - [anon_sym___restrict__] = ACTIONS(303), - [anon_sym__Atomic] = ACTIONS(303), - [anon_sym__Noreturn] = ACTIONS(303), - [anon_sym_noreturn] = ACTIONS(303), - [sym_primitive_type] = ACTIONS(306), - [anon_sym_enum] = ACTIONS(309), - [anon_sym_struct] = ACTIONS(312), - [anon_sym_union] = ACTIONS(315), - [anon_sym_if] = ACTIONS(445), - [anon_sym_switch] = ACTIONS(448), - [anon_sym_case] = ACTIONS(451), - [anon_sym_default] = ACTIONS(454), - [anon_sym_while] = ACTIONS(457), - [anon_sym_do] = ACTIONS(460), - [anon_sym_for] = ACTIONS(463), - [anon_sym_return] = ACTIONS(466), - [anon_sym_break] = ACTIONS(469), - [anon_sym_continue] = ACTIONS(472), - [anon_sym_goto] = ACTIONS(475), - [anon_sym___try] = ACTIONS(478), - [anon_sym___leave] = ACTIONS(481), - [anon_sym_DASH_DASH] = ACTIONS(357), - [anon_sym_PLUS_PLUS] = ACTIONS(357), - [anon_sym_sizeof] = ACTIONS(360), - [anon_sym___alignof__] = ACTIONS(363), - [anon_sym___alignof] = ACTIONS(363), - [anon_sym__alignof] = ACTIONS(363), - [anon_sym_alignof] = ACTIONS(363), - [anon_sym__Alignof] = ACTIONS(363), - [anon_sym_offsetof] = ACTIONS(366), - [anon_sym__Generic] = ACTIONS(369), - [anon_sym_asm] = ACTIONS(372), - [anon_sym___asm__] = ACTIONS(372), - [sym_number_literal] = ACTIONS(375), - [anon_sym_L_SQUOTE] = ACTIONS(378), - [anon_sym_u_SQUOTE] = ACTIONS(378), - [anon_sym_U_SQUOTE] = ACTIONS(378), - [anon_sym_u8_SQUOTE] = ACTIONS(378), - [anon_sym_SQUOTE] = ACTIONS(378), - [anon_sym_L_DQUOTE] = ACTIONS(381), - [anon_sym_u_DQUOTE] = ACTIONS(381), - [anon_sym_U_DQUOTE] = ACTIONS(381), - [anon_sym_u8_DQUOTE] = ACTIONS(381), - [anon_sym_DQUOTE] = ACTIONS(381), - [sym_true] = ACTIONS(384), - [sym_false] = ACTIONS(384), - [anon_sym_NULL] = ACTIONS(387), - [anon_sym_nullptr] = ACTIONS(387), + [aux_sym__declaration_specifiers_repeat1] = STATE(855), + [aux_sym_attributed_declarator_repeat1] = STATE(480), + [aux_sym_sized_type_specifier_repeat1] = STATE(1085), + [sym_identifier] = ACTIONS(417), + [aux_sym_preproc_include_token1] = ACTIONS(420), + [aux_sym_preproc_def_token1] = ACTIONS(423), + [aux_sym_preproc_if_token1] = ACTIONS(426), + [aux_sym_preproc_if_token2] = ACTIONS(265), + [aux_sym_preproc_ifdef_token1] = ACTIONS(429), + [aux_sym_preproc_ifdef_token2] = ACTIONS(429), + [aux_sym_preproc_else_token1] = ACTIONS(265), + [aux_sym_preproc_elif_token1] = ACTIONS(265), + [sym_preproc_directive] = ACTIONS(432), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_BANG] = ACTIONS(276), + [anon_sym_TILDE] = ACTIONS(276), + [anon_sym_DASH] = ACTIONS(279), + [anon_sym_PLUS] = ACTIONS(279), + [anon_sym_STAR] = ACTIONS(282), + [anon_sym_AMP] = ACTIONS(282), + [anon_sym_SEMI] = ACTIONS(435), + [anon_sym___extension__] = ACTIONS(438), + [anon_sym_typedef] = ACTIONS(441), + [anon_sym_extern] = ACTIONS(444), + [anon_sym___attribute__] = ACTIONS(297), + [anon_sym___scanf] = ACTIONS(300), + [anon_sym___printf] = ACTIONS(300), + [anon_sym___read_mostly] = ACTIONS(303), + [anon_sym___must_hold] = ACTIONS(297), + [anon_sym___ro_after_init] = ACTIONS(303), + [anon_sym___init] = ACTIONS(303), + [anon_sym_LBRACK_LBRACK] = ACTIONS(306), + [anon_sym___declspec] = ACTIONS(309), + [anon_sym___cdecl] = ACTIONS(312), + [anon_sym___clrcall] = ACTIONS(312), + [anon_sym___stdcall] = ACTIONS(312), + [anon_sym___fastcall] = ACTIONS(312), + [anon_sym___thiscall] = ACTIONS(312), + [anon_sym___vectorcall] = ACTIONS(312), + [anon_sym_LBRACE] = ACTIONS(447), + [anon_sym_signed] = ACTIONS(318), + [anon_sym_unsigned] = ACTIONS(318), + [anon_sym_long] = ACTIONS(318), + [anon_sym_short] = ACTIONS(318), + [anon_sym_static] = ACTIONS(321), + [anon_sym_auto] = ACTIONS(321), + [anon_sym_register] = ACTIONS(321), + [anon_sym_inline] = ACTIONS(321), + [anon_sym___inline] = ACTIONS(321), + [anon_sym___inline__] = ACTIONS(321), + [anon_sym___forceinline] = ACTIONS(321), + [anon_sym_thread_local] = ACTIONS(321), + [anon_sym___thread] = ACTIONS(321), + [anon_sym_const] = ACTIONS(324), + [anon_sym_constexpr] = ACTIONS(324), + [anon_sym_volatile] = ACTIONS(324), + [anon_sym_restrict] = ACTIONS(324), + [anon_sym___restrict__] = ACTIONS(324), + [anon_sym__Atomic] = ACTIONS(324), + [anon_sym__Noreturn] = ACTIONS(324), + [anon_sym_noreturn] = ACTIONS(324), + [sym_primitive_type] = ACTIONS(327), + [anon_sym_enum] = ACTIONS(330), + [anon_sym_struct] = ACTIONS(333), + [anon_sym_union] = ACTIONS(336), + [anon_sym_if] = ACTIONS(450), + [anon_sym_switch] = ACTIONS(453), + [anon_sym_case] = ACTIONS(456), + [anon_sym_default] = ACTIONS(459), + [anon_sym_while] = ACTIONS(462), + [anon_sym_do] = ACTIONS(465), + [anon_sym_for] = ACTIONS(468), + [anon_sym_return] = ACTIONS(471), + [anon_sym_break] = ACTIONS(474), + [anon_sym_continue] = ACTIONS(477), + [anon_sym_goto] = ACTIONS(480), + [anon_sym___try] = ACTIONS(483), + [anon_sym___leave] = ACTIONS(486), + [anon_sym_DASH_DASH] = ACTIONS(378), + [anon_sym_PLUS_PLUS] = ACTIONS(378), + [anon_sym_sizeof] = ACTIONS(381), + [anon_sym___alignof__] = ACTIONS(384), + [anon_sym___alignof] = ACTIONS(384), + [anon_sym__alignof] = ACTIONS(384), + [anon_sym_alignof] = ACTIONS(384), + [anon_sym__Alignof] = ACTIONS(384), + [anon_sym_offsetof] = ACTIONS(387), + [anon_sym__Generic] = ACTIONS(390), + [anon_sym_asm] = ACTIONS(393), + [anon_sym___asm__] = ACTIONS(393), + [sym_number_literal] = ACTIONS(396), + [anon_sym_L_SQUOTE] = ACTIONS(399), + [anon_sym_u_SQUOTE] = ACTIONS(399), + [anon_sym_U_SQUOTE] = ACTIONS(399), + [anon_sym_u8_SQUOTE] = ACTIONS(399), + [anon_sym_SQUOTE] = ACTIONS(399), + [anon_sym_L_DQUOTE] = ACTIONS(402), + [anon_sym_u_DQUOTE] = ACTIONS(402), + [anon_sym_U_DQUOTE] = ACTIONS(402), + [anon_sym_u8_DQUOTE] = ACTIONS(402), + [anon_sym_DQUOTE] = ACTIONS(402), + [sym_true] = ACTIONS(405), + [sym_false] = ACTIONS(405), + [anon_sym_NULL] = ACTIONS(408), + [anon_sym_nullptr] = ACTIONS(408), [sym_comment] = ACTIONS(3), }, [28] = { + [sym_preproc_include] = STATE(47), + [sym_preproc_def] = STATE(47), + [sym_preproc_function_def] = STATE(47), + [sym_preproc_call] = STATE(47), + [sym_preproc_if] = STATE(47), + [sym_preproc_ifdef] = STATE(47), + [sym_function_definition] = STATE(47), + [sym__old_style_function_definition] = STATE(360), + [sym_declaration] = STATE(47), + [sym_type_definition] = STATE(47), + [sym__declaration_modifiers] = STATE(855), + [sym__declaration_specifiers] = STATE(1526), + [sym_linkage_specification] = STATE(47), + [sym_attribute_specifier] = STATE(855), + [sym_attribute_declaration] = STATE(495), + [sym_ms_declspec_modifier] = STATE(855), + [sym_ms_call_modifier] = STATE(850), + [sym_compound_statement] = STATE(47), + [sym_storage_class_specifier] = STATE(855), + [sym_type_qualifier] = STATE(855), + [sym__type_specifier] = STATE(1119), + [sym_sized_type_specifier] = STATE(1069), + [sym_enum_specifier] = STATE(1069), + [sym_struct_specifier] = STATE(1069), + [sym_union_specifier] = STATE(1069), + [sym_attributed_statement] = STATE(47), + [sym_labeled_statement] = STATE(47), + [sym_expression_statement] = STATE(47), + [sym_if_statement] = STATE(47), + [sym_switch_statement] = STATE(47), + [sym_case_statement] = STATE(47), + [sym_while_statement] = STATE(47), + [sym_do_statement] = STATE(47), + [sym_for_statement] = STATE(47), + [sym_return_statement] = STATE(47), + [sym_break_statement] = STATE(47), + [sym_continue_statement] = STATE(47), + [sym_goto_statement] = STATE(47), + [sym_seh_try_statement] = STATE(47), + [sym_seh_leave_statement] = STATE(47), + [sym__expression] = STATE(1269), + [sym__expression_not_binary] = STATE(809), + [sym_comma_expression] = STATE(2019), + [sym_conditional_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_pointer_expression] = STATE(877), + [sym_unary_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_update_expression] = STATE(809), + [sym_cast_expression] = STATE(809), + [sym_sizeof_expression] = STATE(809), + [sym_alignof_expression] = STATE(809), + [sym_offsetof_expression] = STATE(809), + [sym_generic_expression] = STATE(809), + [sym_subscript_expression] = STATE(877), + [sym_call_expression] = STATE(877), + [sym_gnu_asm_expression] = STATE(809), + [sym_field_expression] = STATE(877), + [sym_compound_literal_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(877), + [sym_char_literal] = STATE(809), + [sym_concatenated_string] = STATE(809), + [sym_string_literal] = STATE(573), + [sym_null] = STATE(809), + [sym__empty_declaration] = STATE(47), + [sym_macro_type_specifier] = STATE(1069), + [aux_sym_preproc_if_repeat1] = STATE(47), + [aux_sym__declaration_specifiers_repeat1] = STATE(855), + [aux_sym_attributed_declarator_repeat1] = STATE(450), + [aux_sym_sized_type_specifier_repeat1] = STATE(1085), + [sym_identifier] = ACTIONS(489), + [aux_sym_preproc_include_token1] = ACTIONS(491), + [aux_sym_preproc_def_token1] = ACTIONS(493), + [aux_sym_preproc_if_token1] = ACTIONS(495), + [aux_sym_preproc_if_token2] = ACTIONS(497), + [aux_sym_preproc_ifdef_token1] = ACTIONS(499), + [aux_sym_preproc_ifdef_token2] = ACTIONS(499), + [sym_preproc_directive] = ACTIONS(501), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(503), + [anon_sym___extension__] = ACTIONS(505), + [anon_sym_typedef] = ACTIONS(507), + [anon_sym_extern] = ACTIONS(509), + [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(511), + [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), + [sym_primitive_type] = ACTIONS(53), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [anon_sym_if] = ACTIONS(513), + [anon_sym_switch] = ACTIONS(515), + [anon_sym_case] = ACTIONS(517), + [anon_sym_default] = ACTIONS(519), + [anon_sym_while] = ACTIONS(521), + [anon_sym_do] = ACTIONS(523), + [anon_sym_for] = ACTIONS(525), + [anon_sym_return] = ACTIONS(527), + [anon_sym_break] = ACTIONS(529), + [anon_sym_continue] = ACTIONS(531), + [anon_sym_goto] = ACTIONS(533), + [anon_sym___try] = ACTIONS(535), + [anon_sym___leave] = ACTIONS(537), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [sym_number_literal] = ACTIONS(161), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(163), + [sym_false] = ACTIONS(163), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + }, + [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(360), + [sym_declaration] = STATE(29), + [sym_type_definition] = STATE(29), + [sym__declaration_modifiers] = STATE(855), + [sym__declaration_specifiers] = STATE(1526), + [sym_linkage_specification] = STATE(29), + [sym_attribute_specifier] = STATE(855), + [sym_attribute_declaration] = STATE(495), + [sym_ms_declspec_modifier] = STATE(855), + [sym_ms_call_modifier] = STATE(850), + [sym_compound_statement] = STATE(29), + [sym_storage_class_specifier] = STATE(855), + [sym_type_qualifier] = STATE(855), + [sym__type_specifier] = STATE(1119), + [sym_sized_type_specifier] = STATE(1069), + [sym_enum_specifier] = STATE(1069), + [sym_struct_specifier] = STATE(1069), + [sym_union_specifier] = STATE(1069), + [sym_attributed_statement] = STATE(29), + [sym_labeled_statement] = STATE(29), + [sym_expression_statement] = STATE(29), + [sym_if_statement] = STATE(29), + [sym_switch_statement] = STATE(29), + [sym_case_statement] = STATE(29), + [sym_while_statement] = STATE(29), + [sym_do_statement] = STATE(29), + [sym_for_statement] = STATE(29), + [sym_return_statement] = STATE(29), + [sym_break_statement] = STATE(29), + [sym_continue_statement] = STATE(29), + [sym_goto_statement] = STATE(29), + [sym_seh_try_statement] = STATE(29), + [sym_seh_leave_statement] = STATE(29), + [sym__expression] = STATE(1269), + [sym__expression_not_binary] = STATE(809), + [sym_comma_expression] = STATE(2019), + [sym_conditional_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_pointer_expression] = STATE(877), + [sym_unary_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_update_expression] = STATE(809), + [sym_cast_expression] = STATE(809), + [sym_sizeof_expression] = STATE(809), + [sym_alignof_expression] = STATE(809), + [sym_offsetof_expression] = STATE(809), + [sym_generic_expression] = STATE(809), + [sym_subscript_expression] = STATE(877), + [sym_call_expression] = STATE(877), + [sym_gnu_asm_expression] = STATE(809), + [sym_field_expression] = STATE(877), + [sym_compound_literal_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(877), + [sym_char_literal] = STATE(809), + [sym_concatenated_string] = STATE(809), + [sym_string_literal] = STATE(573), + [sym_null] = STATE(809), + [sym__empty_declaration] = STATE(29), + [sym_macro_type_specifier] = STATE(1069), + [aux_sym_preproc_if_repeat1] = STATE(29), + [aux_sym__declaration_specifiers_repeat1] = STATE(855), + [aux_sym_attributed_declarator_repeat1] = STATE(450), + [aux_sym_sized_type_specifier_repeat1] = STATE(1085), + [sym_identifier] = ACTIONS(539), + [aux_sym_preproc_include_token1] = ACTIONS(542), + [aux_sym_preproc_def_token1] = ACTIONS(545), + [aux_sym_preproc_if_token1] = ACTIONS(548), + [aux_sym_preproc_if_token2] = ACTIONS(265), + [aux_sym_preproc_ifdef_token1] = ACTIONS(551), + [aux_sym_preproc_ifdef_token2] = ACTIONS(551), + [sym_preproc_directive] = ACTIONS(554), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_BANG] = ACTIONS(276), + [anon_sym_TILDE] = ACTIONS(276), + [anon_sym_DASH] = ACTIONS(279), + [anon_sym_PLUS] = ACTIONS(279), + [anon_sym_STAR] = ACTIONS(282), + [anon_sym_AMP] = ACTIONS(282), + [anon_sym_SEMI] = ACTIONS(557), + [anon_sym___extension__] = ACTIONS(560), + [anon_sym_typedef] = ACTIONS(563), + [anon_sym_extern] = ACTIONS(566), + [anon_sym___attribute__] = ACTIONS(297), + [anon_sym___scanf] = ACTIONS(300), + [anon_sym___printf] = ACTIONS(300), + [anon_sym___read_mostly] = ACTIONS(303), + [anon_sym___must_hold] = ACTIONS(297), + [anon_sym___ro_after_init] = ACTIONS(303), + [anon_sym___init] = ACTIONS(303), + [anon_sym_LBRACK_LBRACK] = ACTIONS(306), + [anon_sym___declspec] = ACTIONS(309), + [anon_sym___cdecl] = ACTIONS(312), + [anon_sym___clrcall] = ACTIONS(312), + [anon_sym___stdcall] = ACTIONS(312), + [anon_sym___fastcall] = ACTIONS(312), + [anon_sym___thiscall] = ACTIONS(312), + [anon_sym___vectorcall] = ACTIONS(312), + [anon_sym_LBRACE] = ACTIONS(569), + [anon_sym_signed] = ACTIONS(318), + [anon_sym_unsigned] = ACTIONS(318), + [anon_sym_long] = ACTIONS(318), + [anon_sym_short] = ACTIONS(318), + [anon_sym_static] = ACTIONS(321), + [anon_sym_auto] = ACTIONS(321), + [anon_sym_register] = ACTIONS(321), + [anon_sym_inline] = ACTIONS(321), + [anon_sym___inline] = ACTIONS(321), + [anon_sym___inline__] = ACTIONS(321), + [anon_sym___forceinline] = ACTIONS(321), + [anon_sym_thread_local] = ACTIONS(321), + [anon_sym___thread] = ACTIONS(321), + [anon_sym_const] = ACTIONS(324), + [anon_sym_constexpr] = ACTIONS(324), + [anon_sym_volatile] = ACTIONS(324), + [anon_sym_restrict] = ACTIONS(324), + [anon_sym___restrict__] = ACTIONS(324), + [anon_sym__Atomic] = ACTIONS(324), + [anon_sym__Noreturn] = ACTIONS(324), + [anon_sym_noreturn] = ACTIONS(324), + [sym_primitive_type] = ACTIONS(327), + [anon_sym_enum] = ACTIONS(330), + [anon_sym_struct] = ACTIONS(333), + [anon_sym_union] = ACTIONS(336), + [anon_sym_if] = ACTIONS(572), + [anon_sym_switch] = ACTIONS(575), + [anon_sym_case] = ACTIONS(578), + [anon_sym_default] = ACTIONS(581), + [anon_sym_while] = ACTIONS(584), + [anon_sym_do] = ACTIONS(587), + [anon_sym_for] = ACTIONS(590), + [anon_sym_return] = ACTIONS(593), + [anon_sym_break] = ACTIONS(596), + [anon_sym_continue] = ACTIONS(599), + [anon_sym_goto] = ACTIONS(602), + [anon_sym___try] = ACTIONS(605), + [anon_sym___leave] = ACTIONS(608), + [anon_sym_DASH_DASH] = ACTIONS(378), + [anon_sym_PLUS_PLUS] = ACTIONS(378), + [anon_sym_sizeof] = ACTIONS(381), + [anon_sym___alignof__] = ACTIONS(384), + [anon_sym___alignof] = ACTIONS(384), + [anon_sym__alignof] = ACTIONS(384), + [anon_sym_alignof] = ACTIONS(384), + [anon_sym__Alignof] = ACTIONS(384), + [anon_sym_offsetof] = ACTIONS(387), + [anon_sym__Generic] = ACTIONS(390), + [anon_sym_asm] = ACTIONS(393), + [anon_sym___asm__] = ACTIONS(393), + [sym_number_literal] = ACTIONS(396), + [anon_sym_L_SQUOTE] = ACTIONS(399), + [anon_sym_u_SQUOTE] = ACTIONS(399), + [anon_sym_U_SQUOTE] = ACTIONS(399), + [anon_sym_u8_SQUOTE] = ACTIONS(399), + [anon_sym_SQUOTE] = ACTIONS(399), + [anon_sym_L_DQUOTE] = ACTIONS(402), + [anon_sym_u_DQUOTE] = ACTIONS(402), + [anon_sym_U_DQUOTE] = ACTIONS(402), + [anon_sym_u8_DQUOTE] = ACTIONS(402), + [anon_sym_DQUOTE] = ACTIONS(402), + [sym_true] = ACTIONS(405), + [sym_false] = ACTIONS(405), + [anon_sym_NULL] = ACTIONS(408), + [anon_sym_nullptr] = ACTIONS(408), + [sym_comment] = ACTIONS(3), + }, + [30] = { + [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(355), + [sym_declaration] = STATE(41), + [sym_type_definition] = STATE(41), + [sym__declaration_modifiers] = STATE(855), + [sym__declaration_specifiers] = STATE(1524), + [sym_linkage_specification] = STATE(41), + [sym_attribute_specifier] = STATE(855), + [sym_attribute_declaration] = STATE(495), + [sym_ms_declspec_modifier] = STATE(855), + [sym_ms_call_modifier] = STATE(844), + [sym_compound_statement] = STATE(41), + [sym_storage_class_specifier] = STATE(855), + [sym_type_qualifier] = STATE(855), + [sym__type_specifier] = STATE(1122), + [sym_sized_type_specifier] = STATE(1069), + [sym_enum_specifier] = STATE(1069), + [sym_struct_specifier] = STATE(1069), + [sym_union_specifier] = STATE(1069), + [sym_attributed_statement] = STATE(41), + [sym_labeled_statement] = STATE(41), + [sym_expression_statement] = STATE(41), + [sym_if_statement] = STATE(41), + [sym_switch_statement] = STATE(41), + [sym_case_statement] = STATE(41), + [sym_while_statement] = STATE(41), + [sym_do_statement] = STATE(41), + [sym_for_statement] = STATE(41), + [sym_return_statement] = STATE(41), + [sym_break_statement] = STATE(41), + [sym_continue_statement] = STATE(41), + [sym_goto_statement] = STATE(41), + [sym_seh_try_statement] = STATE(41), + [sym_seh_leave_statement] = STATE(41), + [sym__expression] = STATE(1272), + [sym__expression_not_binary] = STATE(809), + [sym_comma_expression] = STATE(2198), + [sym_conditional_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_pointer_expression] = STATE(877), + [sym_unary_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_update_expression] = STATE(809), + [sym_cast_expression] = STATE(809), + [sym_sizeof_expression] = STATE(809), + [sym_alignof_expression] = STATE(809), + [sym_offsetof_expression] = STATE(809), + [sym_generic_expression] = STATE(809), + [sym_subscript_expression] = STATE(877), + [sym_call_expression] = STATE(877), + [sym_gnu_asm_expression] = STATE(809), + [sym_field_expression] = STATE(877), + [sym_compound_literal_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(877), + [sym_char_literal] = STATE(809), + [sym_concatenated_string] = STATE(809), + [sym_string_literal] = STATE(573), + [sym_null] = STATE(809), + [sym__empty_declaration] = STATE(41), + [sym_macro_type_specifier] = STATE(1069), + [aux_sym_preproc_if_repeat1] = STATE(41), + [aux_sym__declaration_specifiers_repeat1] = STATE(855), + [aux_sym_attributed_declarator_repeat1] = STATE(478), + [aux_sym_sized_type_specifier_repeat1] = STATE(1085), + [sym_identifier] = ACTIONS(611), + [aux_sym_preproc_include_token1] = ACTIONS(613), + [aux_sym_preproc_def_token1] = ACTIONS(615), + [aux_sym_preproc_if_token1] = ACTIONS(617), + [aux_sym_preproc_ifdef_token1] = ACTIONS(619), + [aux_sym_preproc_ifdef_token2] = ACTIONS(619), + [sym_preproc_directive] = ACTIONS(621), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(623), + [anon_sym___extension__] = ACTIONS(625), + [anon_sym_typedef] = ACTIONS(627), + [anon_sym_extern] = ACTIONS(629), + [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(631), + [anon_sym_RBRACE] = ACTIONS(633), + [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), + [sym_primitive_type] = ACTIONS(53), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [anon_sym_if] = ACTIONS(635), + [anon_sym_switch] = ACTIONS(637), + [anon_sym_case] = ACTIONS(639), + [anon_sym_default] = ACTIONS(641), + [anon_sym_while] = ACTIONS(643), + [anon_sym_do] = ACTIONS(645), + [anon_sym_for] = ACTIONS(647), + [anon_sym_return] = ACTIONS(649), + [anon_sym_break] = ACTIONS(651), + [anon_sym_continue] = ACTIONS(653), + [anon_sym_goto] = ACTIONS(655), + [anon_sym___try] = ACTIONS(657), + [anon_sym___leave] = ACTIONS(659), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [sym_number_literal] = ACTIONS(161), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(163), + [sym_false] = ACTIONS(163), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + }, + [31] = { + [sym_preproc_include] = STATE(51), + [sym_preproc_def] = STATE(51), + [sym_preproc_function_def] = STATE(51), + [sym_preproc_call] = STATE(51), + [sym_preproc_if] = STATE(51), + [sym_preproc_ifdef] = STATE(51), + [sym_function_definition] = STATE(51), + [sym__old_style_function_definition] = STATE(355), + [sym_declaration] = STATE(51), + [sym_type_definition] = STATE(51), + [sym__declaration_modifiers] = STATE(855), + [sym__declaration_specifiers] = STATE(1524), + [sym_linkage_specification] = STATE(51), + [sym_attribute_specifier] = STATE(855), + [sym_attribute_declaration] = STATE(495), + [sym_ms_declspec_modifier] = STATE(855), + [sym_ms_call_modifier] = STATE(844), + [sym_compound_statement] = STATE(51), + [sym_storage_class_specifier] = STATE(855), + [sym_type_qualifier] = STATE(855), + [sym__type_specifier] = STATE(1122), + [sym_sized_type_specifier] = STATE(1069), + [sym_enum_specifier] = STATE(1069), + [sym_struct_specifier] = STATE(1069), + [sym_union_specifier] = STATE(1069), + [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_case_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(1272), + [sym__expression_not_binary] = STATE(809), + [sym_comma_expression] = STATE(2198), + [sym_conditional_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_pointer_expression] = STATE(877), + [sym_unary_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_update_expression] = STATE(809), + [sym_cast_expression] = STATE(809), + [sym_sizeof_expression] = STATE(809), + [sym_alignof_expression] = STATE(809), + [sym_offsetof_expression] = STATE(809), + [sym_generic_expression] = STATE(809), + [sym_subscript_expression] = STATE(877), + [sym_call_expression] = STATE(877), + [sym_gnu_asm_expression] = STATE(809), + [sym_field_expression] = STATE(877), + [sym_compound_literal_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(877), + [sym_char_literal] = STATE(809), + [sym_concatenated_string] = STATE(809), + [sym_string_literal] = STATE(573), + [sym_null] = STATE(809), + [sym__empty_declaration] = STATE(51), + [sym_macro_type_specifier] = STATE(1069), + [aux_sym_preproc_if_repeat1] = STATE(51), + [aux_sym__declaration_specifiers_repeat1] = STATE(855), + [aux_sym_attributed_declarator_repeat1] = STATE(478), + [aux_sym_sized_type_specifier_repeat1] = STATE(1085), + [sym_identifier] = ACTIONS(611), + [aux_sym_preproc_include_token1] = ACTIONS(613), + [aux_sym_preproc_def_token1] = ACTIONS(615), + [aux_sym_preproc_if_token1] = ACTIONS(617), + [aux_sym_preproc_ifdef_token1] = ACTIONS(619), + [aux_sym_preproc_ifdef_token2] = ACTIONS(619), + [sym_preproc_directive] = ACTIONS(621), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(623), + [anon_sym___extension__] = ACTIONS(625), + [anon_sym_typedef] = ACTIONS(627), + [anon_sym_extern] = ACTIONS(629), + [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(631), + [anon_sym_RBRACE] = ACTIONS(661), + [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), + [sym_primitive_type] = ACTIONS(53), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [anon_sym_if] = ACTIONS(635), + [anon_sym_switch] = ACTIONS(637), + [anon_sym_case] = ACTIONS(639), + [anon_sym_default] = ACTIONS(641), + [anon_sym_while] = ACTIONS(643), + [anon_sym_do] = ACTIONS(645), + [anon_sym_for] = ACTIONS(647), + [anon_sym_return] = ACTIONS(649), + [anon_sym_break] = ACTIONS(651), + [anon_sym_continue] = ACTIONS(653), + [anon_sym_goto] = ACTIONS(655), + [anon_sym___try] = ACTIONS(657), + [anon_sym___leave] = ACTIONS(659), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [sym_number_literal] = ACTIONS(161), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(163), + [sym_false] = ACTIONS(163), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + }, + [32] = { [sym_preproc_include] = STATE(44), [sym_preproc_def] = STATE(44), [sym_preproc_function_def] = STATE(44), @@ -20354,24 +21447,24 @@ 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(392), + [sym__old_style_function_definition] = STATE(355), [sym_declaration] = STATE(44), [sym_type_definition] = STATE(44), - [sym__declaration_modifiers] = STATE(861), - [sym__declaration_specifiers] = STATE(1483), + [sym__declaration_modifiers] = STATE(855), + [sym__declaration_specifiers] = STATE(1524), [sym_linkage_specification] = STATE(44), - [sym_attribute_specifier] = STATE(861), - [sym_attribute_declaration] = STATE(504), - [sym_ms_declspec_modifier] = STATE(861), - [sym_ms_call_modifier] = STATE(851), + [sym_attribute_specifier] = STATE(855), + [sym_attribute_declaration] = STATE(495), + [sym_ms_declspec_modifier] = STATE(855), + [sym_ms_call_modifier] = STATE(844), [sym_compound_statement] = STATE(44), - [sym_storage_class_specifier] = STATE(861), - [sym_type_qualifier] = STATE(861), - [sym__type_specifier] = STATE(1120), - [sym_sized_type_specifier] = STATE(1106), - [sym_enum_specifier] = STATE(1106), - [sym_struct_specifier] = STATE(1106), - [sym_union_specifier] = STATE(1106), + [sym_storage_class_specifier] = STATE(855), + [sym_type_qualifier] = STATE(855), + [sym__type_specifier] = STATE(1122), + [sym_sized_type_specifier] = STATE(1069), + [sym_enum_specifier] = STATE(1069), + [sym_struct_specifier] = STATE(1069), + [sym_union_specifier] = STATE(1069), [sym_attributed_statement] = STATE(44), [sym_labeled_statement] = STATE(44), [sym_expression_statement] = STATE(44), @@ -20387,212 +21480,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(44), [sym_seh_try_statement] = STATE(44), [sym_seh_leave_statement] = STATE(44), - [sym__expression] = STATE(1221), - [sym__expression_not_binary] = STATE(792), - [sym_comma_expression] = STATE(2106), - [sym_conditional_expression] = STATE(792), - [sym_assignment_expression] = STATE(792), - [sym_pointer_expression] = STATE(901), - [sym_unary_expression] = STATE(792), - [sym_binary_expression] = STATE(792), - [sym_update_expression] = STATE(792), - [sym_cast_expression] = STATE(792), - [sym_sizeof_expression] = STATE(792), - [sym_alignof_expression] = STATE(792), - [sym_offsetof_expression] = STATE(792), - [sym_generic_expression] = STATE(792), - [sym_subscript_expression] = STATE(901), - [sym_call_expression] = STATE(901), - [sym_gnu_asm_expression] = STATE(792), - [sym_field_expression] = STATE(901), - [sym_compound_literal_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(901), - [sym_char_literal] = STATE(792), - [sym_concatenated_string] = STATE(792), - [sym_string_literal] = STATE(675), - [sym_null] = STATE(792), + [sym__expression] = STATE(1272), + [sym__expression_not_binary] = STATE(809), + [sym_comma_expression] = STATE(2198), + [sym_conditional_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_pointer_expression] = STATE(877), + [sym_unary_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_update_expression] = STATE(809), + [sym_cast_expression] = STATE(809), + [sym_sizeof_expression] = STATE(809), + [sym_alignof_expression] = STATE(809), + [sym_offsetof_expression] = STATE(809), + [sym_generic_expression] = STATE(809), + [sym_subscript_expression] = STATE(877), + [sym_call_expression] = STATE(877), + [sym_gnu_asm_expression] = STATE(809), + [sym_field_expression] = STATE(877), + [sym_compound_literal_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(877), + [sym_char_literal] = STATE(809), + [sym_concatenated_string] = STATE(809), + [sym_string_literal] = STATE(573), + [sym_null] = STATE(809), [sym__empty_declaration] = STATE(44), - [sym_macro_type_specifier] = STATE(1106), + [sym_macro_type_specifier] = STATE(1069), [aux_sym_preproc_if_repeat1] = STATE(44), - [aux_sym__declaration_specifiers_repeat1] = STATE(861), - [aux_sym_attributed_declarator_repeat1] = STATE(445), - [aux_sym_sized_type_specifier_repeat1] = STATE(1113), - [sym_identifier] = ACTIONS(484), - [aux_sym_preproc_include_token1] = ACTIONS(486), - [aux_sym_preproc_def_token1] = ACTIONS(488), - [aux_sym_preproc_if_token1] = ACTIONS(490), - [aux_sym_preproc_ifdef_token1] = ACTIONS(492), - [aux_sym_preproc_ifdef_token2] = ACTIONS(492), - [sym_preproc_directive] = ACTIONS(494), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(496), - [anon_sym___extension__] = ACTIONS(498), - [anon_sym_typedef] = ACTIONS(500), - [anon_sym_extern] = ACTIONS(502), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym___scanf] = ACTIONS(35), - [anon_sym___printf] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym___cdecl] = ACTIONS(41), - [anon_sym___clrcall] = ACTIONS(41), - [anon_sym___stdcall] = ACTIONS(41), - [anon_sym___fastcall] = ACTIONS(41), - [anon_sym___thiscall] = ACTIONS(41), - [anon_sym___vectorcall] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(504), - [anon_sym_RBRACE] = ACTIONS(506), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [sym_primitive_type] = ACTIONS(51), - [anon_sym_enum] = ACTIONS(53), - [anon_sym_struct] = ACTIONS(55), - [anon_sym_union] = ACTIONS(57), - [anon_sym_if] = ACTIONS(508), - [anon_sym_switch] = ACTIONS(510), - [anon_sym_case] = ACTIONS(512), - [anon_sym_default] = ACTIONS(514), - [anon_sym_while] = ACTIONS(516), - [anon_sym_do] = ACTIONS(518), - [anon_sym_for] = ACTIONS(520), - [anon_sym_return] = ACTIONS(522), - [anon_sym_break] = ACTIONS(524), - [anon_sym_continue] = ACTIONS(526), - [anon_sym_goto] = ACTIONS(528), - [anon_sym___try] = ACTIONS(530), - [anon_sym___leave] = ACTIONS(532), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(83), - [anon_sym___alignof__] = ACTIONS(85), - [anon_sym___alignof] = ACTIONS(85), - [anon_sym__alignof] = ACTIONS(85), - [anon_sym_alignof] = ACTIONS(85), - [anon_sym__Alignof] = ACTIONS(85), - [anon_sym_offsetof] = ACTIONS(87), - [anon_sym__Generic] = ACTIONS(89), - [anon_sym_asm] = ACTIONS(91), - [anon_sym___asm__] = ACTIONS(91), - [sym_number_literal] = ACTIONS(159), - [anon_sym_L_SQUOTE] = ACTIONS(95), - [anon_sym_u_SQUOTE] = ACTIONS(95), - [anon_sym_U_SQUOTE] = ACTIONS(95), - [anon_sym_u8_SQUOTE] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(95), - [anon_sym_L_DQUOTE] = ACTIONS(97), - [anon_sym_u_DQUOTE] = ACTIONS(97), - [anon_sym_U_DQUOTE] = ACTIONS(97), - [anon_sym_u8_DQUOTE] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(97), - [sym_true] = ACTIONS(161), - [sym_false] = ACTIONS(161), - [anon_sym_NULL] = ACTIONS(101), - [anon_sym_nullptr] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - }, - [29] = { - [sym_preproc_include] = STATE(48), - [sym_preproc_def] = STATE(48), - [sym_preproc_function_def] = STATE(48), - [sym_preproc_call] = STATE(48), - [sym_preproc_if] = STATE(48), - [sym_preproc_ifdef] = STATE(48), - [sym_function_definition] = STATE(48), - [sym__old_style_function_definition] = STATE(392), - [sym_declaration] = STATE(48), - [sym_type_definition] = STATE(48), - [sym__declaration_modifiers] = STATE(861), - [sym__declaration_specifiers] = STATE(1483), - [sym_linkage_specification] = STATE(48), - [sym_attribute_specifier] = STATE(861), - [sym_attribute_declaration] = STATE(504), - [sym_ms_declspec_modifier] = STATE(861), - [sym_ms_call_modifier] = STATE(851), - [sym_compound_statement] = STATE(48), - [sym_storage_class_specifier] = STATE(861), - [sym_type_qualifier] = STATE(861), - [sym__type_specifier] = STATE(1120), - [sym_sized_type_specifier] = STATE(1106), - [sym_enum_specifier] = STATE(1106), - [sym_struct_specifier] = STATE(1106), - [sym_union_specifier] = STATE(1106), - [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_case_statement] = STATE(48), - [sym_while_statement] = STATE(48), - [sym_do_statement] = STATE(48), - [sym_for_statement] = STATE(48), - [sym_return_statement] = STATE(48), - [sym_break_statement] = STATE(48), - [sym_continue_statement] = STATE(48), - [sym_goto_statement] = STATE(48), - [sym_seh_try_statement] = STATE(48), - [sym_seh_leave_statement] = STATE(48), - [sym__expression] = STATE(1221), - [sym__expression_not_binary] = STATE(792), - [sym_comma_expression] = STATE(2106), - [sym_conditional_expression] = STATE(792), - [sym_assignment_expression] = STATE(792), - [sym_pointer_expression] = STATE(901), - [sym_unary_expression] = STATE(792), - [sym_binary_expression] = STATE(792), - [sym_update_expression] = STATE(792), - [sym_cast_expression] = STATE(792), - [sym_sizeof_expression] = STATE(792), - [sym_alignof_expression] = STATE(792), - [sym_offsetof_expression] = STATE(792), - [sym_generic_expression] = STATE(792), - [sym_subscript_expression] = STATE(901), - [sym_call_expression] = STATE(901), - [sym_gnu_asm_expression] = STATE(792), - [sym_field_expression] = STATE(901), - [sym_compound_literal_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(901), - [sym_char_literal] = STATE(792), - [sym_concatenated_string] = STATE(792), - [sym_string_literal] = STATE(675), - [sym_null] = STATE(792), - [sym__empty_declaration] = STATE(48), - [sym_macro_type_specifier] = STATE(1106), - [aux_sym_preproc_if_repeat1] = STATE(48), - [aux_sym__declaration_specifiers_repeat1] = STATE(861), - [aux_sym_attributed_declarator_repeat1] = STATE(445), - [aux_sym_sized_type_specifier_repeat1] = STATE(1113), - [sym_identifier] = ACTIONS(484), - [aux_sym_preproc_include_token1] = ACTIONS(486), - [aux_sym_preproc_def_token1] = ACTIONS(488), - [aux_sym_preproc_if_token1] = ACTIONS(490), - [aux_sym_preproc_ifdef_token1] = ACTIONS(492), - [aux_sym_preproc_ifdef_token2] = ACTIONS(492), - [sym_preproc_directive] = ACTIONS(494), + [aux_sym__declaration_specifiers_repeat1] = STATE(855), + [aux_sym_attributed_declarator_repeat1] = STATE(478), + [aux_sym_sized_type_specifier_repeat1] = STATE(1085), + [sym_identifier] = ACTIONS(611), + [aux_sym_preproc_include_token1] = ACTIONS(613), + [aux_sym_preproc_def_token1] = ACTIONS(615), + [aux_sym_preproc_if_token1] = ACTIONS(617), + [aux_sym_preproc_ifdef_token1] = ACTIONS(619), + [aux_sym_preproc_ifdef_token2] = ACTIONS(619), + [sym_preproc_directive] = ACTIONS(621), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -20600,168 +21524,172 @@ 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(496), - [anon_sym___extension__] = ACTIONS(498), - [anon_sym_typedef] = ACTIONS(500), - [anon_sym_extern] = ACTIONS(502), + [anon_sym_SEMI] = ACTIONS(623), + [anon_sym___extension__] = ACTIONS(625), + [anon_sym_typedef] = ACTIONS(627), + [anon_sym_extern] = ACTIONS(629), [anon_sym___attribute__] = ACTIONS(33), [anon_sym___scanf] = ACTIONS(35), [anon_sym___printf] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym___cdecl] = ACTIONS(41), - [anon_sym___clrcall] = ACTIONS(41), - [anon_sym___stdcall] = ACTIONS(41), - [anon_sym___fastcall] = ACTIONS(41), - [anon_sym___thiscall] = ACTIONS(41), - [anon_sym___vectorcall] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(504), - [anon_sym_RBRACE] = ACTIONS(534), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [sym_primitive_type] = ACTIONS(51), - [anon_sym_enum] = ACTIONS(53), - [anon_sym_struct] = ACTIONS(55), - [anon_sym_union] = ACTIONS(57), - [anon_sym_if] = ACTIONS(508), - [anon_sym_switch] = ACTIONS(510), - [anon_sym_case] = ACTIONS(512), - [anon_sym_default] = ACTIONS(514), - [anon_sym_while] = ACTIONS(516), - [anon_sym_do] = ACTIONS(518), - [anon_sym_for] = ACTIONS(520), - [anon_sym_return] = ACTIONS(522), - [anon_sym_break] = ACTIONS(524), - [anon_sym_continue] = ACTIONS(526), - [anon_sym_goto] = ACTIONS(528), - [anon_sym___try] = ACTIONS(530), - [anon_sym___leave] = ACTIONS(532), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(83), - [anon_sym___alignof__] = ACTIONS(85), - [anon_sym___alignof] = ACTIONS(85), - [anon_sym__alignof] = ACTIONS(85), - [anon_sym_alignof] = ACTIONS(85), - [anon_sym__Alignof] = ACTIONS(85), - [anon_sym_offsetof] = ACTIONS(87), - [anon_sym__Generic] = ACTIONS(89), - [anon_sym_asm] = ACTIONS(91), - [anon_sym___asm__] = ACTIONS(91), - [sym_number_literal] = ACTIONS(159), - [anon_sym_L_SQUOTE] = ACTIONS(95), - [anon_sym_u_SQUOTE] = ACTIONS(95), - [anon_sym_U_SQUOTE] = ACTIONS(95), - [anon_sym_u8_SQUOTE] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(95), - [anon_sym_L_DQUOTE] = ACTIONS(97), - [anon_sym_u_DQUOTE] = ACTIONS(97), - [anon_sym_U_DQUOTE] = ACTIONS(97), - [anon_sym_u8_DQUOTE] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(97), - [sym_true] = ACTIONS(161), - [sym_false] = ACTIONS(161), - [anon_sym_NULL] = ACTIONS(101), - [anon_sym_nullptr] = ACTIONS(101), + [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(631), + [anon_sym_RBRACE] = ACTIONS(663), + [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), + [sym_primitive_type] = ACTIONS(53), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [anon_sym_if] = ACTIONS(635), + [anon_sym_switch] = ACTIONS(637), + [anon_sym_case] = ACTIONS(639), + [anon_sym_default] = ACTIONS(641), + [anon_sym_while] = ACTIONS(643), + [anon_sym_do] = ACTIONS(645), + [anon_sym_for] = ACTIONS(647), + [anon_sym_return] = ACTIONS(649), + [anon_sym_break] = ACTIONS(651), + [anon_sym_continue] = ACTIONS(653), + [anon_sym_goto] = ACTIONS(655), + [anon_sym___try] = ACTIONS(657), + [anon_sym___leave] = ACTIONS(659), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [sym_number_literal] = ACTIONS(161), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(163), + [sym_false] = ACTIONS(163), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [30] = { - [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(392), - [sym_declaration] = STATE(36), - [sym_type_definition] = STATE(36), - [sym__declaration_modifiers] = STATE(861), - [sym__declaration_specifiers] = STATE(1483), - [sym_linkage_specification] = STATE(36), - [sym_attribute_specifier] = STATE(861), - [sym_attribute_declaration] = STATE(504), - [sym_ms_declspec_modifier] = STATE(861), - [sym_ms_call_modifier] = STATE(851), - [sym_compound_statement] = STATE(36), - [sym_storage_class_specifier] = STATE(861), - [sym_type_qualifier] = STATE(861), - [sym__type_specifier] = STATE(1120), - [sym_sized_type_specifier] = STATE(1106), - [sym_enum_specifier] = STATE(1106), - [sym_struct_specifier] = STATE(1106), - [sym_union_specifier] = STATE(1106), - [sym_attributed_statement] = STATE(36), - [sym_labeled_statement] = STATE(36), - [sym_expression_statement] = STATE(36), - [sym_if_statement] = STATE(36), - [sym_switch_statement] = STATE(36), - [sym_case_statement] = STATE(36), - [sym_while_statement] = STATE(36), - [sym_do_statement] = STATE(36), - [sym_for_statement] = STATE(36), - [sym_return_statement] = STATE(36), - [sym_break_statement] = STATE(36), - [sym_continue_statement] = STATE(36), - [sym_goto_statement] = STATE(36), - [sym_seh_try_statement] = STATE(36), - [sym_seh_leave_statement] = STATE(36), - [sym__expression] = STATE(1221), - [sym__expression_not_binary] = STATE(792), - [sym_comma_expression] = STATE(2106), - [sym_conditional_expression] = STATE(792), - [sym_assignment_expression] = STATE(792), - [sym_pointer_expression] = STATE(901), - [sym_unary_expression] = STATE(792), - [sym_binary_expression] = STATE(792), - [sym_update_expression] = STATE(792), - [sym_cast_expression] = STATE(792), - [sym_sizeof_expression] = STATE(792), - [sym_alignof_expression] = STATE(792), - [sym_offsetof_expression] = STATE(792), - [sym_generic_expression] = STATE(792), - [sym_subscript_expression] = STATE(901), - [sym_call_expression] = STATE(901), - [sym_gnu_asm_expression] = STATE(792), - [sym_field_expression] = STATE(901), - [sym_compound_literal_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(901), - [sym_char_literal] = STATE(792), - [sym_concatenated_string] = STATE(792), - [sym_string_literal] = STATE(675), - [sym_null] = STATE(792), - [sym__empty_declaration] = STATE(36), - [sym_macro_type_specifier] = STATE(1106), - [aux_sym_preproc_if_repeat1] = STATE(36), - [aux_sym__declaration_specifiers_repeat1] = STATE(861), - [aux_sym_attributed_declarator_repeat1] = STATE(445), - [aux_sym_sized_type_specifier_repeat1] = STATE(1113), - [sym_identifier] = ACTIONS(484), - [aux_sym_preproc_include_token1] = ACTIONS(486), - [aux_sym_preproc_def_token1] = ACTIONS(488), - [aux_sym_preproc_if_token1] = ACTIONS(490), - [aux_sym_preproc_ifdef_token1] = ACTIONS(492), - [aux_sym_preproc_ifdef_token2] = ACTIONS(492), - [sym_preproc_directive] = ACTIONS(494), + [33] = { + [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(355), + [sym_declaration] = STATE(41), + [sym_type_definition] = STATE(41), + [sym__declaration_modifiers] = STATE(855), + [sym__declaration_specifiers] = STATE(1524), + [sym_linkage_specification] = STATE(41), + [sym_attribute_specifier] = STATE(855), + [sym_attribute_declaration] = STATE(495), + [sym_ms_declspec_modifier] = STATE(855), + [sym_ms_call_modifier] = STATE(844), + [sym_compound_statement] = STATE(41), + [sym_storage_class_specifier] = STATE(855), + [sym_type_qualifier] = STATE(855), + [sym__type_specifier] = STATE(1122), + [sym_sized_type_specifier] = STATE(1069), + [sym_enum_specifier] = STATE(1069), + [sym_struct_specifier] = STATE(1069), + [sym_union_specifier] = STATE(1069), + [sym_attributed_statement] = STATE(41), + [sym_labeled_statement] = STATE(41), + [sym_expression_statement] = STATE(41), + [sym_if_statement] = STATE(41), + [sym_switch_statement] = STATE(41), + [sym_case_statement] = STATE(41), + [sym_while_statement] = STATE(41), + [sym_do_statement] = STATE(41), + [sym_for_statement] = STATE(41), + [sym_return_statement] = STATE(41), + [sym_break_statement] = STATE(41), + [sym_continue_statement] = STATE(41), + [sym_goto_statement] = STATE(41), + [sym_seh_try_statement] = STATE(41), + [sym_seh_leave_statement] = STATE(41), + [sym__expression] = STATE(1272), + [sym__expression_not_binary] = STATE(809), + [sym_comma_expression] = STATE(2198), + [sym_conditional_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_pointer_expression] = STATE(877), + [sym_unary_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_update_expression] = STATE(809), + [sym_cast_expression] = STATE(809), + [sym_sizeof_expression] = STATE(809), + [sym_alignof_expression] = STATE(809), + [sym_offsetof_expression] = STATE(809), + [sym_generic_expression] = STATE(809), + [sym_subscript_expression] = STATE(877), + [sym_call_expression] = STATE(877), + [sym_gnu_asm_expression] = STATE(809), + [sym_field_expression] = STATE(877), + [sym_compound_literal_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(877), + [sym_char_literal] = STATE(809), + [sym_concatenated_string] = STATE(809), + [sym_string_literal] = STATE(573), + [sym_null] = STATE(809), + [sym__empty_declaration] = STATE(41), + [sym_macro_type_specifier] = STATE(1069), + [aux_sym_preproc_if_repeat1] = STATE(41), + [aux_sym__declaration_specifiers_repeat1] = STATE(855), + [aux_sym_attributed_declarator_repeat1] = STATE(478), + [aux_sym_sized_type_specifier_repeat1] = STATE(1085), + [sym_identifier] = ACTIONS(611), + [aux_sym_preproc_include_token1] = ACTIONS(613), + [aux_sym_preproc_def_token1] = ACTIONS(615), + [aux_sym_preproc_if_token1] = ACTIONS(617), + [aux_sym_preproc_ifdef_token1] = ACTIONS(619), + [aux_sym_preproc_ifdef_token2] = ACTIONS(619), + [sym_preproc_directive] = ACTIONS(621), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -20769,168 +21697,172 @@ 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(496), - [anon_sym___extension__] = ACTIONS(498), - [anon_sym_typedef] = ACTIONS(500), - [anon_sym_extern] = ACTIONS(502), + [anon_sym_SEMI] = ACTIONS(623), + [anon_sym___extension__] = ACTIONS(625), + [anon_sym_typedef] = ACTIONS(627), + [anon_sym_extern] = ACTIONS(629), [anon_sym___attribute__] = ACTIONS(33), [anon_sym___scanf] = ACTIONS(35), [anon_sym___printf] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym___cdecl] = ACTIONS(41), - [anon_sym___clrcall] = ACTIONS(41), - [anon_sym___stdcall] = ACTIONS(41), - [anon_sym___fastcall] = ACTIONS(41), - [anon_sym___thiscall] = ACTIONS(41), - [anon_sym___vectorcall] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(504), - [anon_sym_RBRACE] = ACTIONS(536), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [sym_primitive_type] = ACTIONS(51), - [anon_sym_enum] = ACTIONS(53), - [anon_sym_struct] = ACTIONS(55), - [anon_sym_union] = ACTIONS(57), - [anon_sym_if] = ACTIONS(508), - [anon_sym_switch] = ACTIONS(510), - [anon_sym_case] = ACTIONS(512), - [anon_sym_default] = ACTIONS(514), - [anon_sym_while] = ACTIONS(516), - [anon_sym_do] = ACTIONS(518), - [anon_sym_for] = ACTIONS(520), - [anon_sym_return] = ACTIONS(522), - [anon_sym_break] = ACTIONS(524), - [anon_sym_continue] = ACTIONS(526), - [anon_sym_goto] = ACTIONS(528), - [anon_sym___try] = ACTIONS(530), - [anon_sym___leave] = ACTIONS(532), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(83), - [anon_sym___alignof__] = ACTIONS(85), - [anon_sym___alignof] = ACTIONS(85), - [anon_sym__alignof] = ACTIONS(85), - [anon_sym_alignof] = ACTIONS(85), - [anon_sym__Alignof] = ACTIONS(85), - [anon_sym_offsetof] = ACTIONS(87), - [anon_sym__Generic] = ACTIONS(89), - [anon_sym_asm] = ACTIONS(91), - [anon_sym___asm__] = ACTIONS(91), - [sym_number_literal] = ACTIONS(159), - [anon_sym_L_SQUOTE] = ACTIONS(95), - [anon_sym_u_SQUOTE] = ACTIONS(95), - [anon_sym_U_SQUOTE] = ACTIONS(95), - [anon_sym_u8_SQUOTE] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(95), - [anon_sym_L_DQUOTE] = ACTIONS(97), - [anon_sym_u_DQUOTE] = ACTIONS(97), - [anon_sym_U_DQUOTE] = ACTIONS(97), - [anon_sym_u8_DQUOTE] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(97), - [sym_true] = ACTIONS(161), - [sym_false] = ACTIONS(161), - [anon_sym_NULL] = ACTIONS(101), - [anon_sym_nullptr] = ACTIONS(101), + [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(631), + [anon_sym_RBRACE] = ACTIONS(665), + [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), + [sym_primitive_type] = ACTIONS(53), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [anon_sym_if] = ACTIONS(635), + [anon_sym_switch] = ACTIONS(637), + [anon_sym_case] = ACTIONS(639), + [anon_sym_default] = ACTIONS(641), + [anon_sym_while] = ACTIONS(643), + [anon_sym_do] = ACTIONS(645), + [anon_sym_for] = ACTIONS(647), + [anon_sym_return] = ACTIONS(649), + [anon_sym_break] = ACTIONS(651), + [anon_sym_continue] = ACTIONS(653), + [anon_sym_goto] = ACTIONS(655), + [anon_sym___try] = ACTIONS(657), + [anon_sym___leave] = ACTIONS(659), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [sym_number_literal] = ACTIONS(161), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(163), + [sym_false] = ACTIONS(163), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [31] = { - [sym_preproc_include] = STATE(30), - [sym_preproc_def] = STATE(30), - [sym_preproc_function_def] = STATE(30), - [sym_preproc_call] = STATE(30), - [sym_preproc_if] = STATE(30), - [sym_preproc_ifdef] = STATE(30), - [sym_function_definition] = STATE(30), - [sym__old_style_function_definition] = STATE(392), - [sym_declaration] = STATE(30), - [sym_type_definition] = STATE(30), - [sym__declaration_modifiers] = STATE(861), - [sym__declaration_specifiers] = STATE(1483), - [sym_linkage_specification] = STATE(30), - [sym_attribute_specifier] = STATE(861), - [sym_attribute_declaration] = STATE(504), - [sym_ms_declspec_modifier] = STATE(861), - [sym_ms_call_modifier] = STATE(851), - [sym_compound_statement] = STATE(30), - [sym_storage_class_specifier] = STATE(861), - [sym_type_qualifier] = STATE(861), - [sym__type_specifier] = STATE(1120), - [sym_sized_type_specifier] = STATE(1106), - [sym_enum_specifier] = STATE(1106), - [sym_struct_specifier] = STATE(1106), - [sym_union_specifier] = STATE(1106), - [sym_attributed_statement] = STATE(30), - [sym_labeled_statement] = STATE(30), - [sym_expression_statement] = STATE(30), - [sym_if_statement] = STATE(30), - [sym_switch_statement] = STATE(30), - [sym_case_statement] = STATE(30), - [sym_while_statement] = STATE(30), - [sym_do_statement] = STATE(30), - [sym_for_statement] = STATE(30), - [sym_return_statement] = STATE(30), - [sym_break_statement] = STATE(30), - [sym_continue_statement] = STATE(30), - [sym_goto_statement] = STATE(30), - [sym_seh_try_statement] = STATE(30), - [sym_seh_leave_statement] = STATE(30), - [sym__expression] = STATE(1221), - [sym__expression_not_binary] = STATE(792), - [sym_comma_expression] = STATE(2106), - [sym_conditional_expression] = STATE(792), - [sym_assignment_expression] = STATE(792), - [sym_pointer_expression] = STATE(901), - [sym_unary_expression] = STATE(792), - [sym_binary_expression] = STATE(792), - [sym_update_expression] = STATE(792), - [sym_cast_expression] = STATE(792), - [sym_sizeof_expression] = STATE(792), - [sym_alignof_expression] = STATE(792), - [sym_offsetof_expression] = STATE(792), - [sym_generic_expression] = STATE(792), - [sym_subscript_expression] = STATE(901), - [sym_call_expression] = STATE(901), - [sym_gnu_asm_expression] = STATE(792), - [sym_field_expression] = STATE(901), - [sym_compound_literal_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(901), - [sym_char_literal] = STATE(792), - [sym_concatenated_string] = STATE(792), - [sym_string_literal] = STATE(675), - [sym_null] = STATE(792), - [sym__empty_declaration] = STATE(30), - [sym_macro_type_specifier] = STATE(1106), - [aux_sym_preproc_if_repeat1] = STATE(30), - [aux_sym__declaration_specifiers_repeat1] = STATE(861), - [aux_sym_attributed_declarator_repeat1] = STATE(445), - [aux_sym_sized_type_specifier_repeat1] = STATE(1113), - [sym_identifier] = ACTIONS(484), - [aux_sym_preproc_include_token1] = ACTIONS(486), - [aux_sym_preproc_def_token1] = ACTIONS(488), - [aux_sym_preproc_if_token1] = ACTIONS(490), - [aux_sym_preproc_ifdef_token1] = ACTIONS(492), - [aux_sym_preproc_ifdef_token2] = ACTIONS(492), - [sym_preproc_directive] = ACTIONS(494), + [34] = { + [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(355), + [sym_declaration] = STATE(41), + [sym_type_definition] = STATE(41), + [sym__declaration_modifiers] = STATE(855), + [sym__declaration_specifiers] = STATE(1524), + [sym_linkage_specification] = STATE(41), + [sym_attribute_specifier] = STATE(855), + [sym_attribute_declaration] = STATE(495), + [sym_ms_declspec_modifier] = STATE(855), + [sym_ms_call_modifier] = STATE(844), + [sym_compound_statement] = STATE(41), + [sym_storage_class_specifier] = STATE(855), + [sym_type_qualifier] = STATE(855), + [sym__type_specifier] = STATE(1122), + [sym_sized_type_specifier] = STATE(1069), + [sym_enum_specifier] = STATE(1069), + [sym_struct_specifier] = STATE(1069), + [sym_union_specifier] = STATE(1069), + [sym_attributed_statement] = STATE(41), + [sym_labeled_statement] = STATE(41), + [sym_expression_statement] = STATE(41), + [sym_if_statement] = STATE(41), + [sym_switch_statement] = STATE(41), + [sym_case_statement] = STATE(41), + [sym_while_statement] = STATE(41), + [sym_do_statement] = STATE(41), + [sym_for_statement] = STATE(41), + [sym_return_statement] = STATE(41), + [sym_break_statement] = STATE(41), + [sym_continue_statement] = STATE(41), + [sym_goto_statement] = STATE(41), + [sym_seh_try_statement] = STATE(41), + [sym_seh_leave_statement] = STATE(41), + [sym__expression] = STATE(1272), + [sym__expression_not_binary] = STATE(809), + [sym_comma_expression] = STATE(2198), + [sym_conditional_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_pointer_expression] = STATE(877), + [sym_unary_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_update_expression] = STATE(809), + [sym_cast_expression] = STATE(809), + [sym_sizeof_expression] = STATE(809), + [sym_alignof_expression] = STATE(809), + [sym_offsetof_expression] = STATE(809), + [sym_generic_expression] = STATE(809), + [sym_subscript_expression] = STATE(877), + [sym_call_expression] = STATE(877), + [sym_gnu_asm_expression] = STATE(809), + [sym_field_expression] = STATE(877), + [sym_compound_literal_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(877), + [sym_char_literal] = STATE(809), + [sym_concatenated_string] = STATE(809), + [sym_string_literal] = STATE(573), + [sym_null] = STATE(809), + [sym__empty_declaration] = STATE(41), + [sym_macro_type_specifier] = STATE(1069), + [aux_sym_preproc_if_repeat1] = STATE(41), + [aux_sym__declaration_specifiers_repeat1] = STATE(855), + [aux_sym_attributed_declarator_repeat1] = STATE(478), + [aux_sym_sized_type_specifier_repeat1] = STATE(1085), + [sym_identifier] = ACTIONS(611), + [aux_sym_preproc_include_token1] = ACTIONS(613), + [aux_sym_preproc_def_token1] = ACTIONS(615), + [aux_sym_preproc_if_token1] = ACTIONS(617), + [aux_sym_preproc_ifdef_token1] = ACTIONS(619), + [aux_sym_preproc_ifdef_token2] = ACTIONS(619), + [sym_preproc_directive] = ACTIONS(621), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -20938,168 +21870,172 @@ 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(496), - [anon_sym___extension__] = ACTIONS(498), - [anon_sym_typedef] = ACTIONS(500), - [anon_sym_extern] = ACTIONS(502), + [anon_sym_SEMI] = ACTIONS(623), + [anon_sym___extension__] = ACTIONS(625), + [anon_sym_typedef] = ACTIONS(627), + [anon_sym_extern] = ACTIONS(629), [anon_sym___attribute__] = ACTIONS(33), [anon_sym___scanf] = ACTIONS(35), [anon_sym___printf] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym___cdecl] = ACTIONS(41), - [anon_sym___clrcall] = ACTIONS(41), - [anon_sym___stdcall] = ACTIONS(41), - [anon_sym___fastcall] = ACTIONS(41), - [anon_sym___thiscall] = ACTIONS(41), - [anon_sym___vectorcall] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(504), - [anon_sym_RBRACE] = ACTIONS(538), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [sym_primitive_type] = ACTIONS(51), - [anon_sym_enum] = ACTIONS(53), - [anon_sym_struct] = ACTIONS(55), - [anon_sym_union] = ACTIONS(57), - [anon_sym_if] = ACTIONS(508), - [anon_sym_switch] = ACTIONS(510), - [anon_sym_case] = ACTIONS(512), - [anon_sym_default] = ACTIONS(514), - [anon_sym_while] = ACTIONS(516), - [anon_sym_do] = ACTIONS(518), - [anon_sym_for] = ACTIONS(520), - [anon_sym_return] = ACTIONS(522), - [anon_sym_break] = ACTIONS(524), - [anon_sym_continue] = ACTIONS(526), - [anon_sym_goto] = ACTIONS(528), - [anon_sym___try] = ACTIONS(530), - [anon_sym___leave] = ACTIONS(532), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(83), - [anon_sym___alignof__] = ACTIONS(85), - [anon_sym___alignof] = ACTIONS(85), - [anon_sym__alignof] = ACTIONS(85), - [anon_sym_alignof] = ACTIONS(85), - [anon_sym__Alignof] = ACTIONS(85), - [anon_sym_offsetof] = ACTIONS(87), - [anon_sym__Generic] = ACTIONS(89), - [anon_sym_asm] = ACTIONS(91), - [anon_sym___asm__] = ACTIONS(91), - [sym_number_literal] = ACTIONS(159), - [anon_sym_L_SQUOTE] = ACTIONS(95), - [anon_sym_u_SQUOTE] = ACTIONS(95), - [anon_sym_U_SQUOTE] = ACTIONS(95), - [anon_sym_u8_SQUOTE] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(95), - [anon_sym_L_DQUOTE] = ACTIONS(97), - [anon_sym_u_DQUOTE] = ACTIONS(97), - [anon_sym_U_DQUOTE] = ACTIONS(97), - [anon_sym_u8_DQUOTE] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(97), - [sym_true] = ACTIONS(161), - [sym_false] = ACTIONS(161), - [anon_sym_NULL] = ACTIONS(101), - [anon_sym_nullptr] = ACTIONS(101), + [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(631), + [anon_sym_RBRACE] = ACTIONS(667), + [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), + [sym_primitive_type] = ACTIONS(53), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [anon_sym_if] = ACTIONS(635), + [anon_sym_switch] = ACTIONS(637), + [anon_sym_case] = ACTIONS(639), + [anon_sym_default] = ACTIONS(641), + [anon_sym_while] = ACTIONS(643), + [anon_sym_do] = ACTIONS(645), + [anon_sym_for] = ACTIONS(647), + [anon_sym_return] = ACTIONS(649), + [anon_sym_break] = ACTIONS(651), + [anon_sym_continue] = ACTIONS(653), + [anon_sym_goto] = ACTIONS(655), + [anon_sym___try] = ACTIONS(657), + [anon_sym___leave] = ACTIONS(659), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [sym_number_literal] = ACTIONS(161), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(163), + [sym_false] = ACTIONS(163), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [32] = { - [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(392), - [sym_declaration] = STATE(36), - [sym_type_definition] = STATE(36), - [sym__declaration_modifiers] = STATE(861), - [sym__declaration_specifiers] = STATE(1483), - [sym_linkage_specification] = STATE(36), - [sym_attribute_specifier] = STATE(861), - [sym_attribute_declaration] = STATE(504), - [sym_ms_declspec_modifier] = STATE(861), - [sym_ms_call_modifier] = STATE(851), - [sym_compound_statement] = STATE(36), - [sym_storage_class_specifier] = STATE(861), - [sym_type_qualifier] = STATE(861), - [sym__type_specifier] = STATE(1120), - [sym_sized_type_specifier] = STATE(1106), - [sym_enum_specifier] = STATE(1106), - [sym_struct_specifier] = STATE(1106), - [sym_union_specifier] = STATE(1106), - [sym_attributed_statement] = STATE(36), - [sym_labeled_statement] = STATE(36), - [sym_expression_statement] = STATE(36), - [sym_if_statement] = STATE(36), - [sym_switch_statement] = STATE(36), - [sym_case_statement] = STATE(36), - [sym_while_statement] = STATE(36), - [sym_do_statement] = STATE(36), - [sym_for_statement] = STATE(36), - [sym_return_statement] = STATE(36), - [sym_break_statement] = STATE(36), - [sym_continue_statement] = STATE(36), - [sym_goto_statement] = STATE(36), - [sym_seh_try_statement] = STATE(36), - [sym_seh_leave_statement] = STATE(36), - [sym__expression] = STATE(1221), - [sym__expression_not_binary] = STATE(792), - [sym_comma_expression] = STATE(2106), - [sym_conditional_expression] = STATE(792), - [sym_assignment_expression] = STATE(792), - [sym_pointer_expression] = STATE(901), - [sym_unary_expression] = STATE(792), - [sym_binary_expression] = STATE(792), - [sym_update_expression] = STATE(792), - [sym_cast_expression] = STATE(792), - [sym_sizeof_expression] = STATE(792), - [sym_alignof_expression] = STATE(792), - [sym_offsetof_expression] = STATE(792), - [sym_generic_expression] = STATE(792), - [sym_subscript_expression] = STATE(901), - [sym_call_expression] = STATE(901), - [sym_gnu_asm_expression] = STATE(792), - [sym_field_expression] = STATE(901), - [sym_compound_literal_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(901), - [sym_char_literal] = STATE(792), - [sym_concatenated_string] = STATE(792), - [sym_string_literal] = STATE(675), - [sym_null] = STATE(792), - [sym__empty_declaration] = STATE(36), - [sym_macro_type_specifier] = STATE(1106), - [aux_sym_preproc_if_repeat1] = STATE(36), - [aux_sym__declaration_specifiers_repeat1] = STATE(861), - [aux_sym_attributed_declarator_repeat1] = STATE(445), - [aux_sym_sized_type_specifier_repeat1] = STATE(1113), - [sym_identifier] = ACTIONS(484), - [aux_sym_preproc_include_token1] = ACTIONS(486), - [aux_sym_preproc_def_token1] = ACTIONS(488), - [aux_sym_preproc_if_token1] = ACTIONS(490), - [aux_sym_preproc_ifdef_token1] = ACTIONS(492), - [aux_sym_preproc_ifdef_token2] = ACTIONS(492), - [sym_preproc_directive] = ACTIONS(494), + [35] = { + [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(355), + [sym_declaration] = STATE(41), + [sym_type_definition] = STATE(41), + [sym__declaration_modifiers] = STATE(855), + [sym__declaration_specifiers] = STATE(1524), + [sym_linkage_specification] = STATE(41), + [sym_attribute_specifier] = STATE(855), + [sym_attribute_declaration] = STATE(495), + [sym_ms_declspec_modifier] = STATE(855), + [sym_ms_call_modifier] = STATE(844), + [sym_compound_statement] = STATE(41), + [sym_storage_class_specifier] = STATE(855), + [sym_type_qualifier] = STATE(855), + [sym__type_specifier] = STATE(1122), + [sym_sized_type_specifier] = STATE(1069), + [sym_enum_specifier] = STATE(1069), + [sym_struct_specifier] = STATE(1069), + [sym_union_specifier] = STATE(1069), + [sym_attributed_statement] = STATE(41), + [sym_labeled_statement] = STATE(41), + [sym_expression_statement] = STATE(41), + [sym_if_statement] = STATE(41), + [sym_switch_statement] = STATE(41), + [sym_case_statement] = STATE(41), + [sym_while_statement] = STATE(41), + [sym_do_statement] = STATE(41), + [sym_for_statement] = STATE(41), + [sym_return_statement] = STATE(41), + [sym_break_statement] = STATE(41), + [sym_continue_statement] = STATE(41), + [sym_goto_statement] = STATE(41), + [sym_seh_try_statement] = STATE(41), + [sym_seh_leave_statement] = STATE(41), + [sym__expression] = STATE(1272), + [sym__expression_not_binary] = STATE(809), + [sym_comma_expression] = STATE(2198), + [sym_conditional_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_pointer_expression] = STATE(877), + [sym_unary_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_update_expression] = STATE(809), + [sym_cast_expression] = STATE(809), + [sym_sizeof_expression] = STATE(809), + [sym_alignof_expression] = STATE(809), + [sym_offsetof_expression] = STATE(809), + [sym_generic_expression] = STATE(809), + [sym_subscript_expression] = STATE(877), + [sym_call_expression] = STATE(877), + [sym_gnu_asm_expression] = STATE(809), + [sym_field_expression] = STATE(877), + [sym_compound_literal_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(877), + [sym_char_literal] = STATE(809), + [sym_concatenated_string] = STATE(809), + [sym_string_literal] = STATE(573), + [sym_null] = STATE(809), + [sym__empty_declaration] = STATE(41), + [sym_macro_type_specifier] = STATE(1069), + [aux_sym_preproc_if_repeat1] = STATE(41), + [aux_sym__declaration_specifiers_repeat1] = STATE(855), + [aux_sym_attributed_declarator_repeat1] = STATE(478), + [aux_sym_sized_type_specifier_repeat1] = STATE(1085), + [sym_identifier] = ACTIONS(611), + [aux_sym_preproc_include_token1] = ACTIONS(613), + [aux_sym_preproc_def_token1] = ACTIONS(615), + [aux_sym_preproc_if_token1] = ACTIONS(617), + [aux_sym_preproc_ifdef_token1] = ACTIONS(619), + [aux_sym_preproc_ifdef_token2] = ACTIONS(619), + [sym_preproc_directive] = ACTIONS(621), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -21107,168 +22043,172 @@ 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(496), - [anon_sym___extension__] = ACTIONS(498), - [anon_sym_typedef] = ACTIONS(500), - [anon_sym_extern] = ACTIONS(502), + [anon_sym_SEMI] = ACTIONS(623), + [anon_sym___extension__] = ACTIONS(625), + [anon_sym_typedef] = ACTIONS(627), + [anon_sym_extern] = ACTIONS(629), [anon_sym___attribute__] = ACTIONS(33), [anon_sym___scanf] = ACTIONS(35), [anon_sym___printf] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym___cdecl] = ACTIONS(41), - [anon_sym___clrcall] = ACTIONS(41), - [anon_sym___stdcall] = ACTIONS(41), - [anon_sym___fastcall] = ACTIONS(41), - [anon_sym___thiscall] = ACTIONS(41), - [anon_sym___vectorcall] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(504), - [anon_sym_RBRACE] = ACTIONS(540), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [sym_primitive_type] = ACTIONS(51), - [anon_sym_enum] = ACTIONS(53), - [anon_sym_struct] = ACTIONS(55), - [anon_sym_union] = ACTIONS(57), - [anon_sym_if] = ACTIONS(508), - [anon_sym_switch] = ACTIONS(510), - [anon_sym_case] = ACTIONS(512), - [anon_sym_default] = ACTIONS(514), - [anon_sym_while] = ACTIONS(516), - [anon_sym_do] = ACTIONS(518), - [anon_sym_for] = ACTIONS(520), - [anon_sym_return] = ACTIONS(522), - [anon_sym_break] = ACTIONS(524), - [anon_sym_continue] = ACTIONS(526), - [anon_sym_goto] = ACTIONS(528), - [anon_sym___try] = ACTIONS(530), - [anon_sym___leave] = ACTIONS(532), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(83), - [anon_sym___alignof__] = ACTIONS(85), - [anon_sym___alignof] = ACTIONS(85), - [anon_sym__alignof] = ACTIONS(85), - [anon_sym_alignof] = ACTIONS(85), - [anon_sym__Alignof] = ACTIONS(85), - [anon_sym_offsetof] = ACTIONS(87), - [anon_sym__Generic] = ACTIONS(89), - [anon_sym_asm] = ACTIONS(91), - [anon_sym___asm__] = ACTIONS(91), - [sym_number_literal] = ACTIONS(159), - [anon_sym_L_SQUOTE] = ACTIONS(95), - [anon_sym_u_SQUOTE] = ACTIONS(95), - [anon_sym_U_SQUOTE] = ACTIONS(95), - [anon_sym_u8_SQUOTE] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(95), - [anon_sym_L_DQUOTE] = ACTIONS(97), - [anon_sym_u_DQUOTE] = ACTIONS(97), - [anon_sym_U_DQUOTE] = ACTIONS(97), - [anon_sym_u8_DQUOTE] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(97), - [sym_true] = ACTIONS(161), - [sym_false] = ACTIONS(161), - [anon_sym_NULL] = ACTIONS(101), - [anon_sym_nullptr] = ACTIONS(101), + [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(631), + [anon_sym_RBRACE] = ACTIONS(669), + [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), + [sym_primitive_type] = ACTIONS(53), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [anon_sym_if] = ACTIONS(635), + [anon_sym_switch] = ACTIONS(637), + [anon_sym_case] = ACTIONS(639), + [anon_sym_default] = ACTIONS(641), + [anon_sym_while] = ACTIONS(643), + [anon_sym_do] = ACTIONS(645), + [anon_sym_for] = ACTIONS(647), + [anon_sym_return] = ACTIONS(649), + [anon_sym_break] = ACTIONS(651), + [anon_sym_continue] = ACTIONS(653), + [anon_sym_goto] = ACTIONS(655), + [anon_sym___try] = ACTIONS(657), + [anon_sym___leave] = ACTIONS(659), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [sym_number_literal] = ACTIONS(161), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(163), + [sym_false] = ACTIONS(163), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [33] = { - [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(392), - [sym_declaration] = STATE(38), - [sym_type_definition] = STATE(38), - [sym__declaration_modifiers] = STATE(861), - [sym__declaration_specifiers] = STATE(1483), - [sym_linkage_specification] = STATE(38), - [sym_attribute_specifier] = STATE(861), - [sym_attribute_declaration] = STATE(504), - [sym_ms_declspec_modifier] = STATE(861), - [sym_ms_call_modifier] = STATE(851), - [sym_compound_statement] = STATE(38), - [sym_storage_class_specifier] = STATE(861), - [sym_type_qualifier] = STATE(861), - [sym__type_specifier] = STATE(1120), - [sym_sized_type_specifier] = STATE(1106), - [sym_enum_specifier] = STATE(1106), - [sym_struct_specifier] = STATE(1106), - [sym_union_specifier] = STATE(1106), - [sym_attributed_statement] = STATE(38), - [sym_labeled_statement] = STATE(38), - [sym_expression_statement] = STATE(38), - [sym_if_statement] = STATE(38), - [sym_switch_statement] = STATE(38), - [sym_case_statement] = STATE(38), - [sym_while_statement] = STATE(38), - [sym_do_statement] = STATE(38), - [sym_for_statement] = STATE(38), - [sym_return_statement] = STATE(38), - [sym_break_statement] = STATE(38), - [sym_continue_statement] = STATE(38), - [sym_goto_statement] = STATE(38), - [sym_seh_try_statement] = STATE(38), - [sym_seh_leave_statement] = STATE(38), - [sym__expression] = STATE(1221), - [sym__expression_not_binary] = STATE(792), - [sym_comma_expression] = STATE(2106), - [sym_conditional_expression] = STATE(792), - [sym_assignment_expression] = STATE(792), - [sym_pointer_expression] = STATE(901), - [sym_unary_expression] = STATE(792), - [sym_binary_expression] = STATE(792), - [sym_update_expression] = STATE(792), - [sym_cast_expression] = STATE(792), - [sym_sizeof_expression] = STATE(792), - [sym_alignof_expression] = STATE(792), - [sym_offsetof_expression] = STATE(792), - [sym_generic_expression] = STATE(792), - [sym_subscript_expression] = STATE(901), - [sym_call_expression] = STATE(901), - [sym_gnu_asm_expression] = STATE(792), - [sym_field_expression] = STATE(901), - [sym_compound_literal_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(901), - [sym_char_literal] = STATE(792), - [sym_concatenated_string] = STATE(792), - [sym_string_literal] = STATE(675), - [sym_null] = STATE(792), - [sym__empty_declaration] = STATE(38), - [sym_macro_type_specifier] = STATE(1106), - [aux_sym_preproc_if_repeat1] = STATE(38), - [aux_sym__declaration_specifiers_repeat1] = STATE(861), - [aux_sym_attributed_declarator_repeat1] = STATE(445), - [aux_sym_sized_type_specifier_repeat1] = STATE(1113), - [sym_identifier] = ACTIONS(484), - [aux_sym_preproc_include_token1] = ACTIONS(486), - [aux_sym_preproc_def_token1] = ACTIONS(488), - [aux_sym_preproc_if_token1] = ACTIONS(490), - [aux_sym_preproc_ifdef_token1] = ACTIONS(492), - [aux_sym_preproc_ifdef_token2] = ACTIONS(492), - [sym_preproc_directive] = ACTIONS(494), + [36] = { + [sym_preproc_include] = STATE(50), + [sym_preproc_def] = STATE(50), + [sym_preproc_function_def] = STATE(50), + [sym_preproc_call] = STATE(50), + [sym_preproc_if] = STATE(50), + [sym_preproc_ifdef] = STATE(50), + [sym_function_definition] = STATE(50), + [sym__old_style_function_definition] = STATE(355), + [sym_declaration] = STATE(50), + [sym_type_definition] = STATE(50), + [sym__declaration_modifiers] = STATE(855), + [sym__declaration_specifiers] = STATE(1524), + [sym_linkage_specification] = STATE(50), + [sym_attribute_specifier] = STATE(855), + [sym_attribute_declaration] = STATE(495), + [sym_ms_declspec_modifier] = STATE(855), + [sym_ms_call_modifier] = STATE(844), + [sym_compound_statement] = STATE(50), + [sym_storage_class_specifier] = STATE(855), + [sym_type_qualifier] = STATE(855), + [sym__type_specifier] = STATE(1122), + [sym_sized_type_specifier] = STATE(1069), + [sym_enum_specifier] = STATE(1069), + [sym_struct_specifier] = STATE(1069), + [sym_union_specifier] = STATE(1069), + [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_case_statement] = STATE(50), + [sym_while_statement] = STATE(50), + [sym_do_statement] = STATE(50), + [sym_for_statement] = STATE(50), + [sym_return_statement] = STATE(50), + [sym_break_statement] = STATE(50), + [sym_continue_statement] = STATE(50), + [sym_goto_statement] = STATE(50), + [sym_seh_try_statement] = STATE(50), + [sym_seh_leave_statement] = STATE(50), + [sym__expression] = STATE(1272), + [sym__expression_not_binary] = STATE(809), + [sym_comma_expression] = STATE(2198), + [sym_conditional_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_pointer_expression] = STATE(877), + [sym_unary_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_update_expression] = STATE(809), + [sym_cast_expression] = STATE(809), + [sym_sizeof_expression] = STATE(809), + [sym_alignof_expression] = STATE(809), + [sym_offsetof_expression] = STATE(809), + [sym_generic_expression] = STATE(809), + [sym_subscript_expression] = STATE(877), + [sym_call_expression] = STATE(877), + [sym_gnu_asm_expression] = STATE(809), + [sym_field_expression] = STATE(877), + [sym_compound_literal_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(877), + [sym_char_literal] = STATE(809), + [sym_concatenated_string] = STATE(809), + [sym_string_literal] = STATE(573), + [sym_null] = STATE(809), + [sym__empty_declaration] = STATE(50), + [sym_macro_type_specifier] = STATE(1069), + [aux_sym_preproc_if_repeat1] = STATE(50), + [aux_sym__declaration_specifiers_repeat1] = STATE(855), + [aux_sym_attributed_declarator_repeat1] = STATE(478), + [aux_sym_sized_type_specifier_repeat1] = STATE(1085), + [sym_identifier] = ACTIONS(611), + [aux_sym_preproc_include_token1] = ACTIONS(613), + [aux_sym_preproc_def_token1] = ACTIONS(615), + [aux_sym_preproc_if_token1] = ACTIONS(617), + [aux_sym_preproc_ifdef_token1] = ACTIONS(619), + [aux_sym_preproc_ifdef_token2] = ACTIONS(619), + [sym_preproc_directive] = ACTIONS(621), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -21276,91 +22216,95 @@ 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(496), - [anon_sym___extension__] = ACTIONS(498), - [anon_sym_typedef] = ACTIONS(500), - [anon_sym_extern] = ACTIONS(502), + [anon_sym_SEMI] = ACTIONS(623), + [anon_sym___extension__] = ACTIONS(625), + [anon_sym_typedef] = ACTIONS(627), + [anon_sym_extern] = ACTIONS(629), [anon_sym___attribute__] = ACTIONS(33), [anon_sym___scanf] = ACTIONS(35), [anon_sym___printf] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym___cdecl] = ACTIONS(41), - [anon_sym___clrcall] = ACTIONS(41), - [anon_sym___stdcall] = ACTIONS(41), - [anon_sym___fastcall] = ACTIONS(41), - [anon_sym___thiscall] = ACTIONS(41), - [anon_sym___vectorcall] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(504), - [anon_sym_RBRACE] = ACTIONS(542), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [sym_primitive_type] = ACTIONS(51), - [anon_sym_enum] = ACTIONS(53), - [anon_sym_struct] = ACTIONS(55), - [anon_sym_union] = ACTIONS(57), - [anon_sym_if] = ACTIONS(508), - [anon_sym_switch] = ACTIONS(510), - [anon_sym_case] = ACTIONS(512), - [anon_sym_default] = ACTIONS(514), - [anon_sym_while] = ACTIONS(516), - [anon_sym_do] = ACTIONS(518), - [anon_sym_for] = ACTIONS(520), - [anon_sym_return] = ACTIONS(522), - [anon_sym_break] = ACTIONS(524), - [anon_sym_continue] = ACTIONS(526), - [anon_sym_goto] = ACTIONS(528), - [anon_sym___try] = ACTIONS(530), - [anon_sym___leave] = ACTIONS(532), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(83), - [anon_sym___alignof__] = ACTIONS(85), - [anon_sym___alignof] = ACTIONS(85), - [anon_sym__alignof] = ACTIONS(85), - [anon_sym_alignof] = ACTIONS(85), - [anon_sym__Alignof] = ACTIONS(85), - [anon_sym_offsetof] = ACTIONS(87), - [anon_sym__Generic] = ACTIONS(89), - [anon_sym_asm] = ACTIONS(91), - [anon_sym___asm__] = ACTIONS(91), - [sym_number_literal] = ACTIONS(159), - [anon_sym_L_SQUOTE] = ACTIONS(95), - [anon_sym_u_SQUOTE] = ACTIONS(95), - [anon_sym_U_SQUOTE] = ACTIONS(95), - [anon_sym_u8_SQUOTE] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(95), - [anon_sym_L_DQUOTE] = ACTIONS(97), - [anon_sym_u_DQUOTE] = ACTIONS(97), - [anon_sym_U_DQUOTE] = ACTIONS(97), - [anon_sym_u8_DQUOTE] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(97), - [sym_true] = ACTIONS(161), - [sym_false] = ACTIONS(161), - [anon_sym_NULL] = ACTIONS(101), - [anon_sym_nullptr] = ACTIONS(101), + [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(631), + [anon_sym_RBRACE] = ACTIONS(671), + [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), + [sym_primitive_type] = ACTIONS(53), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [anon_sym_if] = ACTIONS(635), + [anon_sym_switch] = ACTIONS(637), + [anon_sym_case] = ACTIONS(639), + [anon_sym_default] = ACTIONS(641), + [anon_sym_while] = ACTIONS(643), + [anon_sym_do] = ACTIONS(645), + [anon_sym_for] = ACTIONS(647), + [anon_sym_return] = ACTIONS(649), + [anon_sym_break] = ACTIONS(651), + [anon_sym_continue] = ACTIONS(653), + [anon_sym_goto] = ACTIONS(655), + [anon_sym___try] = ACTIONS(657), + [anon_sym___leave] = ACTIONS(659), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [sym_number_literal] = ACTIONS(161), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(163), + [sym_false] = ACTIONS(163), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [34] = { + [37] = { [sym_preproc_include] = STATE(40), [sym_preproc_def] = STATE(40), [sym_preproc_function_def] = STATE(40), @@ -21368,24 +22312,24 @@ 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(392), + [sym__old_style_function_definition] = STATE(355), [sym_declaration] = STATE(40), [sym_type_definition] = STATE(40), - [sym__declaration_modifiers] = STATE(861), - [sym__declaration_specifiers] = STATE(1483), + [sym__declaration_modifiers] = STATE(855), + [sym__declaration_specifiers] = STATE(1524), [sym_linkage_specification] = STATE(40), - [sym_attribute_specifier] = STATE(861), - [sym_attribute_declaration] = STATE(504), - [sym_ms_declspec_modifier] = STATE(861), - [sym_ms_call_modifier] = STATE(851), + [sym_attribute_specifier] = STATE(855), + [sym_attribute_declaration] = STATE(495), + [sym_ms_declspec_modifier] = STATE(855), + [sym_ms_call_modifier] = STATE(844), [sym_compound_statement] = STATE(40), - [sym_storage_class_specifier] = STATE(861), - [sym_type_qualifier] = STATE(861), - [sym__type_specifier] = STATE(1120), - [sym_sized_type_specifier] = STATE(1106), - [sym_enum_specifier] = STATE(1106), - [sym_struct_specifier] = STATE(1106), - [sym_union_specifier] = STATE(1106), + [sym_storage_class_specifier] = STATE(855), + [sym_type_qualifier] = STATE(855), + [sym__type_specifier] = STATE(1122), + [sym_sized_type_specifier] = STATE(1069), + [sym_enum_specifier] = STATE(1069), + [sym_struct_specifier] = STATE(1069), + [sym_union_specifier] = STATE(1069), [sym_attributed_statement] = STATE(40), [sym_labeled_statement] = STATE(40), [sym_expression_statement] = STATE(40), @@ -21401,43 +22345,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(40), [sym_seh_try_statement] = STATE(40), [sym_seh_leave_statement] = STATE(40), - [sym__expression] = STATE(1221), - [sym__expression_not_binary] = STATE(792), - [sym_comma_expression] = STATE(2106), - [sym_conditional_expression] = STATE(792), - [sym_assignment_expression] = STATE(792), - [sym_pointer_expression] = STATE(901), - [sym_unary_expression] = STATE(792), - [sym_binary_expression] = STATE(792), - [sym_update_expression] = STATE(792), - [sym_cast_expression] = STATE(792), - [sym_sizeof_expression] = STATE(792), - [sym_alignof_expression] = STATE(792), - [sym_offsetof_expression] = STATE(792), - [sym_generic_expression] = STATE(792), - [sym_subscript_expression] = STATE(901), - [sym_call_expression] = STATE(901), - [sym_gnu_asm_expression] = STATE(792), - [sym_field_expression] = STATE(901), - [sym_compound_literal_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(901), - [sym_char_literal] = STATE(792), - [sym_concatenated_string] = STATE(792), - [sym_string_literal] = STATE(675), - [sym_null] = STATE(792), + [sym__expression] = STATE(1272), + [sym__expression_not_binary] = STATE(809), + [sym_comma_expression] = STATE(2198), + [sym_conditional_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_pointer_expression] = STATE(877), + [sym_unary_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_update_expression] = STATE(809), + [sym_cast_expression] = STATE(809), + [sym_sizeof_expression] = STATE(809), + [sym_alignof_expression] = STATE(809), + [sym_offsetof_expression] = STATE(809), + [sym_generic_expression] = STATE(809), + [sym_subscript_expression] = STATE(877), + [sym_call_expression] = STATE(877), + [sym_gnu_asm_expression] = STATE(809), + [sym_field_expression] = STATE(877), + [sym_compound_literal_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(877), + [sym_char_literal] = STATE(809), + [sym_concatenated_string] = STATE(809), + [sym_string_literal] = STATE(573), + [sym_null] = STATE(809), [sym__empty_declaration] = STATE(40), - [sym_macro_type_specifier] = STATE(1106), + [sym_macro_type_specifier] = STATE(1069), [aux_sym_preproc_if_repeat1] = STATE(40), - [aux_sym__declaration_specifiers_repeat1] = STATE(861), - [aux_sym_attributed_declarator_repeat1] = STATE(445), - [aux_sym_sized_type_specifier_repeat1] = STATE(1113), - [sym_identifier] = ACTIONS(484), - [aux_sym_preproc_include_token1] = ACTIONS(486), - [aux_sym_preproc_def_token1] = ACTIONS(488), - [aux_sym_preproc_if_token1] = ACTIONS(490), - [aux_sym_preproc_ifdef_token1] = ACTIONS(492), - [aux_sym_preproc_ifdef_token2] = ACTIONS(492), - [sym_preproc_directive] = ACTIONS(494), + [aux_sym__declaration_specifiers_repeat1] = STATE(855), + [aux_sym_attributed_declarator_repeat1] = STATE(478), + [aux_sym_sized_type_specifier_repeat1] = STATE(1085), + [sym_identifier] = ACTIONS(611), + [aux_sym_preproc_include_token1] = ACTIONS(613), + [aux_sym_preproc_def_token1] = ACTIONS(615), + [aux_sym_preproc_if_token1] = ACTIONS(617), + [aux_sym_preproc_ifdef_token1] = ACTIONS(619), + [aux_sym_preproc_ifdef_token2] = ACTIONS(619), + [sym_preproc_directive] = ACTIONS(621), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -21445,168 +22389,172 @@ 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(496), - [anon_sym___extension__] = ACTIONS(498), - [anon_sym_typedef] = ACTIONS(500), - [anon_sym_extern] = ACTIONS(502), + [anon_sym_SEMI] = ACTIONS(623), + [anon_sym___extension__] = ACTIONS(625), + [anon_sym_typedef] = ACTIONS(627), + [anon_sym_extern] = ACTIONS(629), [anon_sym___attribute__] = ACTIONS(33), [anon_sym___scanf] = ACTIONS(35), [anon_sym___printf] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym___cdecl] = ACTIONS(41), - [anon_sym___clrcall] = ACTIONS(41), - [anon_sym___stdcall] = ACTIONS(41), - [anon_sym___fastcall] = ACTIONS(41), - [anon_sym___thiscall] = ACTIONS(41), - [anon_sym___vectorcall] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(504), - [anon_sym_RBRACE] = ACTIONS(544), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [sym_primitive_type] = ACTIONS(51), - [anon_sym_enum] = ACTIONS(53), - [anon_sym_struct] = ACTIONS(55), - [anon_sym_union] = ACTIONS(57), - [anon_sym_if] = ACTIONS(508), - [anon_sym_switch] = ACTIONS(510), - [anon_sym_case] = ACTIONS(512), - [anon_sym_default] = ACTIONS(514), - [anon_sym_while] = ACTIONS(516), - [anon_sym_do] = ACTIONS(518), - [anon_sym_for] = ACTIONS(520), - [anon_sym_return] = ACTIONS(522), - [anon_sym_break] = ACTIONS(524), - [anon_sym_continue] = ACTIONS(526), - [anon_sym_goto] = ACTIONS(528), - [anon_sym___try] = ACTIONS(530), - [anon_sym___leave] = ACTIONS(532), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(83), - [anon_sym___alignof__] = ACTIONS(85), - [anon_sym___alignof] = ACTIONS(85), - [anon_sym__alignof] = ACTIONS(85), - [anon_sym_alignof] = ACTIONS(85), - [anon_sym__Alignof] = ACTIONS(85), - [anon_sym_offsetof] = ACTIONS(87), - [anon_sym__Generic] = ACTIONS(89), - [anon_sym_asm] = ACTIONS(91), - [anon_sym___asm__] = ACTIONS(91), - [sym_number_literal] = ACTIONS(159), - [anon_sym_L_SQUOTE] = ACTIONS(95), - [anon_sym_u_SQUOTE] = ACTIONS(95), - [anon_sym_U_SQUOTE] = ACTIONS(95), - [anon_sym_u8_SQUOTE] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(95), - [anon_sym_L_DQUOTE] = ACTIONS(97), - [anon_sym_u_DQUOTE] = ACTIONS(97), - [anon_sym_U_DQUOTE] = ACTIONS(97), - [anon_sym_u8_DQUOTE] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(97), - [sym_true] = ACTIONS(161), - [sym_false] = ACTIONS(161), - [anon_sym_NULL] = ACTIONS(101), - [anon_sym_nullptr] = ACTIONS(101), + [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(631), + [anon_sym_RBRACE] = ACTIONS(673), + [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), + [sym_primitive_type] = ACTIONS(53), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [anon_sym_if] = ACTIONS(635), + [anon_sym_switch] = ACTIONS(637), + [anon_sym_case] = ACTIONS(639), + [anon_sym_default] = ACTIONS(641), + [anon_sym_while] = ACTIONS(643), + [anon_sym_do] = ACTIONS(645), + [anon_sym_for] = ACTIONS(647), + [anon_sym_return] = ACTIONS(649), + [anon_sym_break] = ACTIONS(651), + [anon_sym_continue] = ACTIONS(653), + [anon_sym_goto] = ACTIONS(655), + [anon_sym___try] = ACTIONS(657), + [anon_sym___leave] = ACTIONS(659), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [sym_number_literal] = ACTIONS(161), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(163), + [sym_false] = ACTIONS(163), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [35] = { - [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(392), - [sym_declaration] = STATE(36), - [sym_type_definition] = STATE(36), - [sym__declaration_modifiers] = STATE(861), - [sym__declaration_specifiers] = STATE(1483), - [sym_linkage_specification] = STATE(36), - [sym_attribute_specifier] = STATE(861), - [sym_attribute_declaration] = STATE(504), - [sym_ms_declspec_modifier] = STATE(861), - [sym_ms_call_modifier] = STATE(851), - [sym_compound_statement] = STATE(36), - [sym_storage_class_specifier] = STATE(861), - [sym_type_qualifier] = STATE(861), - [sym__type_specifier] = STATE(1120), - [sym_sized_type_specifier] = STATE(1106), - [sym_enum_specifier] = STATE(1106), - [sym_struct_specifier] = STATE(1106), - [sym_union_specifier] = STATE(1106), - [sym_attributed_statement] = STATE(36), - [sym_labeled_statement] = STATE(36), - [sym_expression_statement] = STATE(36), - [sym_if_statement] = STATE(36), - [sym_switch_statement] = STATE(36), - [sym_case_statement] = STATE(36), - [sym_while_statement] = STATE(36), - [sym_do_statement] = STATE(36), - [sym_for_statement] = STATE(36), - [sym_return_statement] = STATE(36), - [sym_break_statement] = STATE(36), - [sym_continue_statement] = STATE(36), - [sym_goto_statement] = STATE(36), - [sym_seh_try_statement] = STATE(36), - [sym_seh_leave_statement] = STATE(36), - [sym__expression] = STATE(1221), - [sym__expression_not_binary] = STATE(792), - [sym_comma_expression] = STATE(2106), - [sym_conditional_expression] = STATE(792), - [sym_assignment_expression] = STATE(792), - [sym_pointer_expression] = STATE(901), - [sym_unary_expression] = STATE(792), - [sym_binary_expression] = STATE(792), - [sym_update_expression] = STATE(792), - [sym_cast_expression] = STATE(792), - [sym_sizeof_expression] = STATE(792), - [sym_alignof_expression] = STATE(792), - [sym_offsetof_expression] = STATE(792), - [sym_generic_expression] = STATE(792), - [sym_subscript_expression] = STATE(901), - [sym_call_expression] = STATE(901), - [sym_gnu_asm_expression] = STATE(792), - [sym_field_expression] = STATE(901), - [sym_compound_literal_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(901), - [sym_char_literal] = STATE(792), - [sym_concatenated_string] = STATE(792), - [sym_string_literal] = STATE(675), - [sym_null] = STATE(792), - [sym__empty_declaration] = STATE(36), - [sym_macro_type_specifier] = STATE(1106), - [aux_sym_preproc_if_repeat1] = STATE(36), - [aux_sym__declaration_specifiers_repeat1] = STATE(861), - [aux_sym_attributed_declarator_repeat1] = STATE(445), - [aux_sym_sized_type_specifier_repeat1] = STATE(1113), - [sym_identifier] = ACTIONS(484), - [aux_sym_preproc_include_token1] = ACTIONS(486), - [aux_sym_preproc_def_token1] = ACTIONS(488), - [aux_sym_preproc_if_token1] = ACTIONS(490), - [aux_sym_preproc_ifdef_token1] = ACTIONS(492), - [aux_sym_preproc_ifdef_token2] = ACTIONS(492), - [sym_preproc_directive] = ACTIONS(494), + [38] = { + [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(355), + [sym_declaration] = STATE(35), + [sym_type_definition] = STATE(35), + [sym__declaration_modifiers] = STATE(855), + [sym__declaration_specifiers] = STATE(1524), + [sym_linkage_specification] = STATE(35), + [sym_attribute_specifier] = STATE(855), + [sym_attribute_declaration] = STATE(495), + [sym_ms_declspec_modifier] = STATE(855), + [sym_ms_call_modifier] = STATE(844), + [sym_compound_statement] = STATE(35), + [sym_storage_class_specifier] = STATE(855), + [sym_type_qualifier] = STATE(855), + [sym__type_specifier] = STATE(1122), + [sym_sized_type_specifier] = STATE(1069), + [sym_enum_specifier] = STATE(1069), + [sym_struct_specifier] = STATE(1069), + [sym_union_specifier] = STATE(1069), + [sym_attributed_statement] = STATE(35), + [sym_labeled_statement] = STATE(35), + [sym_expression_statement] = STATE(35), + [sym_if_statement] = STATE(35), + [sym_switch_statement] = STATE(35), + [sym_case_statement] = STATE(35), + [sym_while_statement] = STATE(35), + [sym_do_statement] = STATE(35), + [sym_for_statement] = STATE(35), + [sym_return_statement] = STATE(35), + [sym_break_statement] = STATE(35), + [sym_continue_statement] = STATE(35), + [sym_goto_statement] = STATE(35), + [sym_seh_try_statement] = STATE(35), + [sym_seh_leave_statement] = STATE(35), + [sym__expression] = STATE(1272), + [sym__expression_not_binary] = STATE(809), + [sym_comma_expression] = STATE(2198), + [sym_conditional_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_pointer_expression] = STATE(877), + [sym_unary_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_update_expression] = STATE(809), + [sym_cast_expression] = STATE(809), + [sym_sizeof_expression] = STATE(809), + [sym_alignof_expression] = STATE(809), + [sym_offsetof_expression] = STATE(809), + [sym_generic_expression] = STATE(809), + [sym_subscript_expression] = STATE(877), + [sym_call_expression] = STATE(877), + [sym_gnu_asm_expression] = STATE(809), + [sym_field_expression] = STATE(877), + [sym_compound_literal_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(877), + [sym_char_literal] = STATE(809), + [sym_concatenated_string] = STATE(809), + [sym_string_literal] = STATE(573), + [sym_null] = STATE(809), + [sym__empty_declaration] = STATE(35), + [sym_macro_type_specifier] = STATE(1069), + [aux_sym_preproc_if_repeat1] = STATE(35), + [aux_sym__declaration_specifiers_repeat1] = STATE(855), + [aux_sym_attributed_declarator_repeat1] = STATE(478), + [aux_sym_sized_type_specifier_repeat1] = STATE(1085), + [sym_identifier] = ACTIONS(611), + [aux_sym_preproc_include_token1] = ACTIONS(613), + [aux_sym_preproc_def_token1] = ACTIONS(615), + [aux_sym_preproc_if_token1] = ACTIONS(617), + [aux_sym_preproc_ifdef_token1] = ACTIONS(619), + [aux_sym_preproc_ifdef_token2] = ACTIONS(619), + [sym_preproc_directive] = ACTIONS(621), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -21614,337 +22562,345 @@ 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(496), - [anon_sym___extension__] = ACTIONS(498), - [anon_sym_typedef] = ACTIONS(500), - [anon_sym_extern] = ACTIONS(502), + [anon_sym_SEMI] = ACTIONS(623), + [anon_sym___extension__] = ACTIONS(625), + [anon_sym_typedef] = ACTIONS(627), + [anon_sym_extern] = ACTIONS(629), [anon_sym___attribute__] = ACTIONS(33), [anon_sym___scanf] = ACTIONS(35), [anon_sym___printf] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym___cdecl] = ACTIONS(41), - [anon_sym___clrcall] = ACTIONS(41), - [anon_sym___stdcall] = ACTIONS(41), - [anon_sym___fastcall] = ACTIONS(41), - [anon_sym___thiscall] = ACTIONS(41), - [anon_sym___vectorcall] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(504), - [anon_sym_RBRACE] = ACTIONS(546), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [sym_primitive_type] = ACTIONS(51), - [anon_sym_enum] = ACTIONS(53), - [anon_sym_struct] = ACTIONS(55), - [anon_sym_union] = ACTIONS(57), - [anon_sym_if] = ACTIONS(508), - [anon_sym_switch] = ACTIONS(510), - [anon_sym_case] = ACTIONS(512), - [anon_sym_default] = ACTIONS(514), - [anon_sym_while] = ACTIONS(516), - [anon_sym_do] = ACTIONS(518), - [anon_sym_for] = ACTIONS(520), - [anon_sym_return] = ACTIONS(522), - [anon_sym_break] = ACTIONS(524), - [anon_sym_continue] = ACTIONS(526), - [anon_sym_goto] = ACTIONS(528), - [anon_sym___try] = ACTIONS(530), - [anon_sym___leave] = ACTIONS(532), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(83), - [anon_sym___alignof__] = ACTIONS(85), - [anon_sym___alignof] = ACTIONS(85), - [anon_sym__alignof] = ACTIONS(85), - [anon_sym_alignof] = ACTIONS(85), - [anon_sym__Alignof] = ACTIONS(85), - [anon_sym_offsetof] = ACTIONS(87), - [anon_sym__Generic] = ACTIONS(89), - [anon_sym_asm] = ACTIONS(91), - [anon_sym___asm__] = ACTIONS(91), - [sym_number_literal] = ACTIONS(159), - [anon_sym_L_SQUOTE] = ACTIONS(95), - [anon_sym_u_SQUOTE] = ACTIONS(95), - [anon_sym_U_SQUOTE] = ACTIONS(95), - [anon_sym_u8_SQUOTE] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(95), - [anon_sym_L_DQUOTE] = ACTIONS(97), - [anon_sym_u_DQUOTE] = ACTIONS(97), - [anon_sym_U_DQUOTE] = ACTIONS(97), - [anon_sym_u8_DQUOTE] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(97), - [sym_true] = ACTIONS(161), - [sym_false] = ACTIONS(161), - [anon_sym_NULL] = ACTIONS(101), - [anon_sym_nullptr] = ACTIONS(101), + [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(631), + [anon_sym_RBRACE] = ACTIONS(675), + [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), + [sym_primitive_type] = ACTIONS(53), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [anon_sym_if] = ACTIONS(635), + [anon_sym_switch] = ACTIONS(637), + [anon_sym_case] = ACTIONS(639), + [anon_sym_default] = ACTIONS(641), + [anon_sym_while] = ACTIONS(643), + [anon_sym_do] = ACTIONS(645), + [anon_sym_for] = ACTIONS(647), + [anon_sym_return] = ACTIONS(649), + [anon_sym_break] = ACTIONS(651), + [anon_sym_continue] = ACTIONS(653), + [anon_sym_goto] = ACTIONS(655), + [anon_sym___try] = ACTIONS(657), + [anon_sym___leave] = ACTIONS(659), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [sym_number_literal] = ACTIONS(161), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(163), + [sym_false] = ACTIONS(163), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [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(392), - [sym_declaration] = STATE(36), - [sym_type_definition] = STATE(36), - [sym__declaration_modifiers] = STATE(861), - [sym__declaration_specifiers] = STATE(1483), - [sym_linkage_specification] = STATE(36), - [sym_attribute_specifier] = STATE(861), - [sym_attribute_declaration] = STATE(504), - [sym_ms_declspec_modifier] = STATE(861), - [sym_ms_call_modifier] = STATE(851), - [sym_compound_statement] = STATE(36), - [sym_storage_class_specifier] = STATE(861), - [sym_type_qualifier] = STATE(861), - [sym__type_specifier] = STATE(1120), - [sym_sized_type_specifier] = STATE(1106), - [sym_enum_specifier] = STATE(1106), - [sym_struct_specifier] = STATE(1106), - [sym_union_specifier] = STATE(1106), - [sym_attributed_statement] = STATE(36), - [sym_labeled_statement] = STATE(36), - [sym_expression_statement] = STATE(36), - [sym_if_statement] = STATE(36), - [sym_switch_statement] = STATE(36), - [sym_case_statement] = STATE(36), - [sym_while_statement] = STATE(36), - [sym_do_statement] = STATE(36), - [sym_for_statement] = STATE(36), - [sym_return_statement] = STATE(36), - [sym_break_statement] = STATE(36), - [sym_continue_statement] = STATE(36), - [sym_goto_statement] = STATE(36), - [sym_seh_try_statement] = STATE(36), - [sym_seh_leave_statement] = STATE(36), - [sym__expression] = STATE(1221), - [sym__expression_not_binary] = STATE(792), - [sym_comma_expression] = STATE(2106), - [sym_conditional_expression] = STATE(792), - [sym_assignment_expression] = STATE(792), - [sym_pointer_expression] = STATE(901), - [sym_unary_expression] = STATE(792), - [sym_binary_expression] = STATE(792), - [sym_update_expression] = STATE(792), - [sym_cast_expression] = STATE(792), - [sym_sizeof_expression] = STATE(792), - [sym_alignof_expression] = STATE(792), - [sym_offsetof_expression] = STATE(792), - [sym_generic_expression] = STATE(792), - [sym_subscript_expression] = STATE(901), - [sym_call_expression] = STATE(901), - [sym_gnu_asm_expression] = STATE(792), - [sym_field_expression] = STATE(901), - [sym_compound_literal_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(901), - [sym_char_literal] = STATE(792), - [sym_concatenated_string] = STATE(792), - [sym_string_literal] = STATE(675), - [sym_null] = STATE(792), - [sym__empty_declaration] = STATE(36), - [sym_macro_type_specifier] = STATE(1106), - [aux_sym_preproc_if_repeat1] = STATE(36), - [aux_sym__declaration_specifiers_repeat1] = STATE(861), - [aux_sym_attributed_declarator_repeat1] = STATE(445), - [aux_sym_sized_type_specifier_repeat1] = STATE(1113), - [sym_identifier] = ACTIONS(548), - [aux_sym_preproc_include_token1] = ACTIONS(551), - [aux_sym_preproc_def_token1] = ACTIONS(554), - [aux_sym_preproc_if_token1] = ACTIONS(557), - [aux_sym_preproc_ifdef_token1] = ACTIONS(560), - [aux_sym_preproc_ifdef_token2] = ACTIONS(560), - [sym_preproc_directive] = ACTIONS(563), - [anon_sym_LPAREN2] = ACTIONS(255), - [anon_sym_BANG] = ACTIONS(258), - [anon_sym_TILDE] = ACTIONS(258), - [anon_sym_DASH] = ACTIONS(261), - [anon_sym_PLUS] = ACTIONS(261), - [anon_sym_STAR] = ACTIONS(264), - [anon_sym_AMP] = ACTIONS(264), - [anon_sym_SEMI] = ACTIONS(566), - [anon_sym___extension__] = ACTIONS(569), - [anon_sym_typedef] = ACTIONS(572), - [anon_sym_extern] = ACTIONS(575), - [anon_sym___attribute__] = ACTIONS(279), - [anon_sym___scanf] = ACTIONS(282), - [anon_sym___printf] = ACTIONS(282), - [anon_sym_LBRACK_LBRACK] = ACTIONS(285), - [anon_sym___declspec] = ACTIONS(288), - [anon_sym___cdecl] = ACTIONS(291), - [anon_sym___clrcall] = ACTIONS(291), - [anon_sym___stdcall] = ACTIONS(291), - [anon_sym___fastcall] = ACTIONS(291), - [anon_sym___thiscall] = ACTIONS(291), - [anon_sym___vectorcall] = ACTIONS(291), - [anon_sym_LBRACE] = ACTIONS(578), - [anon_sym_RBRACE] = ACTIONS(581), - [anon_sym_signed] = ACTIONS(297), - [anon_sym_unsigned] = ACTIONS(297), - [anon_sym_long] = ACTIONS(297), - [anon_sym_short] = ACTIONS(297), - [anon_sym_static] = ACTIONS(300), - [anon_sym_auto] = ACTIONS(300), - [anon_sym_register] = ACTIONS(300), - [anon_sym_inline] = ACTIONS(300), - [anon_sym___inline] = ACTIONS(300), - [anon_sym___inline__] = ACTIONS(300), - [anon_sym___forceinline] = ACTIONS(300), - [anon_sym_thread_local] = ACTIONS(300), - [anon_sym___thread] = ACTIONS(300), - [anon_sym_const] = ACTIONS(303), - [anon_sym_constexpr] = ACTIONS(303), - [anon_sym_volatile] = ACTIONS(303), - [anon_sym_restrict] = ACTIONS(303), - [anon_sym___restrict__] = ACTIONS(303), - [anon_sym__Atomic] = ACTIONS(303), - [anon_sym__Noreturn] = ACTIONS(303), - [anon_sym_noreturn] = ACTIONS(303), - [sym_primitive_type] = ACTIONS(306), - [anon_sym_enum] = ACTIONS(309), - [anon_sym_struct] = ACTIONS(312), - [anon_sym_union] = ACTIONS(315), - [anon_sym_if] = ACTIONS(583), - [anon_sym_switch] = ACTIONS(586), - [anon_sym_case] = ACTIONS(589), - [anon_sym_default] = ACTIONS(592), - [anon_sym_while] = ACTIONS(595), - [anon_sym_do] = ACTIONS(598), - [anon_sym_for] = ACTIONS(601), - [anon_sym_return] = ACTIONS(604), - [anon_sym_break] = ACTIONS(607), - [anon_sym_continue] = ACTIONS(610), - [anon_sym_goto] = ACTIONS(613), - [anon_sym___try] = ACTIONS(616), - [anon_sym___leave] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(357), - [anon_sym_PLUS_PLUS] = ACTIONS(357), - [anon_sym_sizeof] = ACTIONS(360), - [anon_sym___alignof__] = ACTIONS(363), - [anon_sym___alignof] = ACTIONS(363), - [anon_sym__alignof] = ACTIONS(363), - [anon_sym_alignof] = ACTIONS(363), - [anon_sym__Alignof] = ACTIONS(363), - [anon_sym_offsetof] = ACTIONS(366), - [anon_sym__Generic] = ACTIONS(369), - [anon_sym_asm] = ACTIONS(372), - [anon_sym___asm__] = ACTIONS(372), - [sym_number_literal] = ACTIONS(375), - [anon_sym_L_SQUOTE] = ACTIONS(378), - [anon_sym_u_SQUOTE] = ACTIONS(378), - [anon_sym_U_SQUOTE] = ACTIONS(378), - [anon_sym_u8_SQUOTE] = ACTIONS(378), - [anon_sym_SQUOTE] = ACTIONS(378), - [anon_sym_L_DQUOTE] = ACTIONS(381), - [anon_sym_u_DQUOTE] = ACTIONS(381), - [anon_sym_U_DQUOTE] = ACTIONS(381), - [anon_sym_u8_DQUOTE] = ACTIONS(381), - [anon_sym_DQUOTE] = ACTIONS(381), - [sym_true] = ACTIONS(384), - [sym_false] = ACTIONS(384), - [anon_sym_NULL] = ACTIONS(387), - [anon_sym_nullptr] = ACTIONS(387), + [39] = { + [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(355), + [sym_declaration] = STATE(33), + [sym_type_definition] = STATE(33), + [sym__declaration_modifiers] = STATE(855), + [sym__declaration_specifiers] = STATE(1524), + [sym_linkage_specification] = STATE(33), + [sym_attribute_specifier] = STATE(855), + [sym_attribute_declaration] = STATE(495), + [sym_ms_declspec_modifier] = STATE(855), + [sym_ms_call_modifier] = STATE(844), + [sym_compound_statement] = STATE(33), + [sym_storage_class_specifier] = STATE(855), + [sym_type_qualifier] = STATE(855), + [sym__type_specifier] = STATE(1122), + [sym_sized_type_specifier] = STATE(1069), + [sym_enum_specifier] = STATE(1069), + [sym_struct_specifier] = STATE(1069), + [sym_union_specifier] = STATE(1069), + [sym_attributed_statement] = STATE(33), + [sym_labeled_statement] = STATE(33), + [sym_expression_statement] = STATE(33), + [sym_if_statement] = STATE(33), + [sym_switch_statement] = STATE(33), + [sym_case_statement] = STATE(33), + [sym_while_statement] = STATE(33), + [sym_do_statement] = STATE(33), + [sym_for_statement] = STATE(33), + [sym_return_statement] = STATE(33), + [sym_break_statement] = STATE(33), + [sym_continue_statement] = STATE(33), + [sym_goto_statement] = STATE(33), + [sym_seh_try_statement] = STATE(33), + [sym_seh_leave_statement] = STATE(33), + [sym__expression] = STATE(1272), + [sym__expression_not_binary] = STATE(809), + [sym_comma_expression] = STATE(2198), + [sym_conditional_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_pointer_expression] = STATE(877), + [sym_unary_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_update_expression] = STATE(809), + [sym_cast_expression] = STATE(809), + [sym_sizeof_expression] = STATE(809), + [sym_alignof_expression] = STATE(809), + [sym_offsetof_expression] = STATE(809), + [sym_generic_expression] = STATE(809), + [sym_subscript_expression] = STATE(877), + [sym_call_expression] = STATE(877), + [sym_gnu_asm_expression] = STATE(809), + [sym_field_expression] = STATE(877), + [sym_compound_literal_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(877), + [sym_char_literal] = STATE(809), + [sym_concatenated_string] = STATE(809), + [sym_string_literal] = STATE(573), + [sym_null] = STATE(809), + [sym__empty_declaration] = STATE(33), + [sym_macro_type_specifier] = STATE(1069), + [aux_sym_preproc_if_repeat1] = STATE(33), + [aux_sym__declaration_specifiers_repeat1] = STATE(855), + [aux_sym_attributed_declarator_repeat1] = STATE(478), + [aux_sym_sized_type_specifier_repeat1] = STATE(1085), + [sym_identifier] = ACTIONS(611), + [aux_sym_preproc_include_token1] = ACTIONS(613), + [aux_sym_preproc_def_token1] = ACTIONS(615), + [aux_sym_preproc_if_token1] = ACTIONS(617), + [aux_sym_preproc_ifdef_token1] = ACTIONS(619), + [aux_sym_preproc_ifdef_token2] = ACTIONS(619), + [sym_preproc_directive] = ACTIONS(621), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(623), + [anon_sym___extension__] = ACTIONS(625), + [anon_sym_typedef] = ACTIONS(627), + [anon_sym_extern] = ACTIONS(629), + [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(631), + [anon_sym_RBRACE] = ACTIONS(677), + [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), + [sym_primitive_type] = ACTIONS(53), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [anon_sym_if] = ACTIONS(635), + [anon_sym_switch] = ACTIONS(637), + [anon_sym_case] = ACTIONS(639), + [anon_sym_default] = ACTIONS(641), + [anon_sym_while] = ACTIONS(643), + [anon_sym_do] = ACTIONS(645), + [anon_sym_for] = ACTIONS(647), + [anon_sym_return] = ACTIONS(649), + [anon_sym_break] = ACTIONS(651), + [anon_sym_continue] = ACTIONS(653), + [anon_sym_goto] = ACTIONS(655), + [anon_sym___try] = ACTIONS(657), + [anon_sym___leave] = ACTIONS(659), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [sym_number_literal] = ACTIONS(161), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(163), + [sym_false] = ACTIONS(163), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [37] = { - [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(392), - [sym_declaration] = STATE(36), - [sym_type_definition] = STATE(36), - [sym__declaration_modifiers] = STATE(861), - [sym__declaration_specifiers] = STATE(1483), - [sym_linkage_specification] = STATE(36), - [sym_attribute_specifier] = STATE(861), - [sym_attribute_declaration] = STATE(504), - [sym_ms_declspec_modifier] = STATE(861), - [sym_ms_call_modifier] = STATE(851), - [sym_compound_statement] = STATE(36), - [sym_storage_class_specifier] = STATE(861), - [sym_type_qualifier] = STATE(861), - [sym__type_specifier] = STATE(1120), - [sym_sized_type_specifier] = STATE(1106), - [sym_enum_specifier] = STATE(1106), - [sym_struct_specifier] = STATE(1106), - [sym_union_specifier] = STATE(1106), - [sym_attributed_statement] = STATE(36), - [sym_labeled_statement] = STATE(36), - [sym_expression_statement] = STATE(36), - [sym_if_statement] = STATE(36), - [sym_switch_statement] = STATE(36), - [sym_case_statement] = STATE(36), - [sym_while_statement] = STATE(36), - [sym_do_statement] = STATE(36), - [sym_for_statement] = STATE(36), - [sym_return_statement] = STATE(36), - [sym_break_statement] = STATE(36), - [sym_continue_statement] = STATE(36), - [sym_goto_statement] = STATE(36), - [sym_seh_try_statement] = STATE(36), - [sym_seh_leave_statement] = STATE(36), - [sym__expression] = STATE(1221), - [sym__expression_not_binary] = STATE(792), - [sym_comma_expression] = STATE(2106), - [sym_conditional_expression] = STATE(792), - [sym_assignment_expression] = STATE(792), - [sym_pointer_expression] = STATE(901), - [sym_unary_expression] = STATE(792), - [sym_binary_expression] = STATE(792), - [sym_update_expression] = STATE(792), - [sym_cast_expression] = STATE(792), - [sym_sizeof_expression] = STATE(792), - [sym_alignof_expression] = STATE(792), - [sym_offsetof_expression] = STATE(792), - [sym_generic_expression] = STATE(792), - [sym_subscript_expression] = STATE(901), - [sym_call_expression] = STATE(901), - [sym_gnu_asm_expression] = STATE(792), - [sym_field_expression] = STATE(901), - [sym_compound_literal_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(901), - [sym_char_literal] = STATE(792), - [sym_concatenated_string] = STATE(792), - [sym_string_literal] = STATE(675), - [sym_null] = STATE(792), - [sym__empty_declaration] = STATE(36), - [sym_macro_type_specifier] = STATE(1106), - [aux_sym_preproc_if_repeat1] = STATE(36), - [aux_sym__declaration_specifiers_repeat1] = STATE(861), - [aux_sym_attributed_declarator_repeat1] = STATE(445), - [aux_sym_sized_type_specifier_repeat1] = STATE(1113), - [sym_identifier] = ACTIONS(484), - [aux_sym_preproc_include_token1] = ACTIONS(486), - [aux_sym_preproc_def_token1] = ACTIONS(488), - [aux_sym_preproc_if_token1] = ACTIONS(490), - [aux_sym_preproc_ifdef_token1] = ACTIONS(492), - [aux_sym_preproc_ifdef_token2] = ACTIONS(492), - [sym_preproc_directive] = ACTIONS(494), + [40] = { + [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(355), + [sym_declaration] = STATE(41), + [sym_type_definition] = STATE(41), + [sym__declaration_modifiers] = STATE(855), + [sym__declaration_specifiers] = STATE(1524), + [sym_linkage_specification] = STATE(41), + [sym_attribute_specifier] = STATE(855), + [sym_attribute_declaration] = STATE(495), + [sym_ms_declspec_modifier] = STATE(855), + [sym_ms_call_modifier] = STATE(844), + [sym_compound_statement] = STATE(41), + [sym_storage_class_specifier] = STATE(855), + [sym_type_qualifier] = STATE(855), + [sym__type_specifier] = STATE(1122), + [sym_sized_type_specifier] = STATE(1069), + [sym_enum_specifier] = STATE(1069), + [sym_struct_specifier] = STATE(1069), + [sym_union_specifier] = STATE(1069), + [sym_attributed_statement] = STATE(41), + [sym_labeled_statement] = STATE(41), + [sym_expression_statement] = STATE(41), + [sym_if_statement] = STATE(41), + [sym_switch_statement] = STATE(41), + [sym_case_statement] = STATE(41), + [sym_while_statement] = STATE(41), + [sym_do_statement] = STATE(41), + [sym_for_statement] = STATE(41), + [sym_return_statement] = STATE(41), + [sym_break_statement] = STATE(41), + [sym_continue_statement] = STATE(41), + [sym_goto_statement] = STATE(41), + [sym_seh_try_statement] = STATE(41), + [sym_seh_leave_statement] = STATE(41), + [sym__expression] = STATE(1272), + [sym__expression_not_binary] = STATE(809), + [sym_comma_expression] = STATE(2198), + [sym_conditional_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_pointer_expression] = STATE(877), + [sym_unary_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_update_expression] = STATE(809), + [sym_cast_expression] = STATE(809), + [sym_sizeof_expression] = STATE(809), + [sym_alignof_expression] = STATE(809), + [sym_offsetof_expression] = STATE(809), + [sym_generic_expression] = STATE(809), + [sym_subscript_expression] = STATE(877), + [sym_call_expression] = STATE(877), + [sym_gnu_asm_expression] = STATE(809), + [sym_field_expression] = STATE(877), + [sym_compound_literal_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(877), + [sym_char_literal] = STATE(809), + [sym_concatenated_string] = STATE(809), + [sym_string_literal] = STATE(573), + [sym_null] = STATE(809), + [sym__empty_declaration] = STATE(41), + [sym_macro_type_specifier] = STATE(1069), + [aux_sym_preproc_if_repeat1] = STATE(41), + [aux_sym__declaration_specifiers_repeat1] = STATE(855), + [aux_sym_attributed_declarator_repeat1] = STATE(478), + [aux_sym_sized_type_specifier_repeat1] = STATE(1085), + [sym_identifier] = ACTIONS(611), + [aux_sym_preproc_include_token1] = ACTIONS(613), + [aux_sym_preproc_def_token1] = ACTIONS(615), + [aux_sym_preproc_if_token1] = ACTIONS(617), + [aux_sym_preproc_ifdef_token1] = ACTIONS(619), + [aux_sym_preproc_ifdef_token2] = ACTIONS(619), + [sym_preproc_directive] = ACTIONS(621), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -21952,168 +22908,345 @@ 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(496), - [anon_sym___extension__] = ACTIONS(498), - [anon_sym_typedef] = ACTIONS(500), - [anon_sym_extern] = ACTIONS(502), + [anon_sym_SEMI] = ACTIONS(623), + [anon_sym___extension__] = ACTIONS(625), + [anon_sym_typedef] = ACTIONS(627), + [anon_sym_extern] = ACTIONS(629), [anon_sym___attribute__] = ACTIONS(33), [anon_sym___scanf] = ACTIONS(35), [anon_sym___printf] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym___cdecl] = ACTIONS(41), - [anon_sym___clrcall] = ACTIONS(41), - [anon_sym___stdcall] = ACTIONS(41), - [anon_sym___fastcall] = ACTIONS(41), - [anon_sym___thiscall] = ACTIONS(41), - [anon_sym___vectorcall] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(504), - [anon_sym_RBRACE] = ACTIONS(622), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [sym_primitive_type] = ACTIONS(51), - [anon_sym_enum] = ACTIONS(53), - [anon_sym_struct] = ACTIONS(55), - [anon_sym_union] = ACTIONS(57), - [anon_sym_if] = ACTIONS(508), - [anon_sym_switch] = ACTIONS(510), - [anon_sym_case] = ACTIONS(512), - [anon_sym_default] = ACTIONS(514), - [anon_sym_while] = ACTIONS(516), - [anon_sym_do] = ACTIONS(518), - [anon_sym_for] = ACTIONS(520), - [anon_sym_return] = ACTIONS(522), - [anon_sym_break] = ACTIONS(524), - [anon_sym_continue] = ACTIONS(526), - [anon_sym_goto] = ACTIONS(528), - [anon_sym___try] = ACTIONS(530), - [anon_sym___leave] = ACTIONS(532), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(83), - [anon_sym___alignof__] = ACTIONS(85), - [anon_sym___alignof] = ACTIONS(85), - [anon_sym__alignof] = ACTIONS(85), - [anon_sym_alignof] = ACTIONS(85), - [anon_sym__Alignof] = ACTIONS(85), - [anon_sym_offsetof] = ACTIONS(87), - [anon_sym__Generic] = ACTIONS(89), - [anon_sym_asm] = ACTIONS(91), - [anon_sym___asm__] = ACTIONS(91), - [sym_number_literal] = ACTIONS(159), - [anon_sym_L_SQUOTE] = ACTIONS(95), - [anon_sym_u_SQUOTE] = ACTIONS(95), - [anon_sym_U_SQUOTE] = ACTIONS(95), - [anon_sym_u8_SQUOTE] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(95), - [anon_sym_L_DQUOTE] = ACTIONS(97), - [anon_sym_u_DQUOTE] = ACTIONS(97), - [anon_sym_U_DQUOTE] = ACTIONS(97), - [anon_sym_u8_DQUOTE] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(97), - [sym_true] = ACTIONS(161), - [sym_false] = ACTIONS(161), - [anon_sym_NULL] = ACTIONS(101), - [anon_sym_nullptr] = ACTIONS(101), + [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(631), + [anon_sym_RBRACE] = ACTIONS(679), + [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), + [sym_primitive_type] = ACTIONS(53), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [anon_sym_if] = ACTIONS(635), + [anon_sym_switch] = ACTIONS(637), + [anon_sym_case] = ACTIONS(639), + [anon_sym_default] = ACTIONS(641), + [anon_sym_while] = ACTIONS(643), + [anon_sym_do] = ACTIONS(645), + [anon_sym_for] = ACTIONS(647), + [anon_sym_return] = ACTIONS(649), + [anon_sym_break] = ACTIONS(651), + [anon_sym_continue] = ACTIONS(653), + [anon_sym_goto] = ACTIONS(655), + [anon_sym___try] = ACTIONS(657), + [anon_sym___leave] = ACTIONS(659), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [sym_number_literal] = ACTIONS(161), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(163), + [sym_false] = ACTIONS(163), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [38] = { - [sym_preproc_include] = STATE(36), - [sym_preproc_def] = STATE(36), - [sym_preproc_function_def] = STATE(36), - [sym_preproc_call] = STATE(36), - [sym_preproc_if] = STATE(36), - [sym_preproc_ifdef] = STATE(36), - [sym_function_definition] = STATE(36), - [sym__old_style_function_definition] = STATE(392), - [sym_declaration] = STATE(36), - [sym_type_definition] = STATE(36), - [sym__declaration_modifiers] = STATE(861), - [sym__declaration_specifiers] = STATE(1483), - [sym_linkage_specification] = STATE(36), - [sym_attribute_specifier] = STATE(861), - [sym_attribute_declaration] = STATE(504), - [sym_ms_declspec_modifier] = STATE(861), - [sym_ms_call_modifier] = STATE(851), - [sym_compound_statement] = STATE(36), - [sym_storage_class_specifier] = STATE(861), - [sym_type_qualifier] = STATE(861), - [sym__type_specifier] = STATE(1120), - [sym_sized_type_specifier] = STATE(1106), - [sym_enum_specifier] = STATE(1106), - [sym_struct_specifier] = STATE(1106), - [sym_union_specifier] = STATE(1106), - [sym_attributed_statement] = STATE(36), - [sym_labeled_statement] = STATE(36), - [sym_expression_statement] = STATE(36), - [sym_if_statement] = STATE(36), - [sym_switch_statement] = STATE(36), - [sym_case_statement] = STATE(36), - [sym_while_statement] = STATE(36), - [sym_do_statement] = STATE(36), - [sym_for_statement] = STATE(36), - [sym_return_statement] = STATE(36), - [sym_break_statement] = STATE(36), - [sym_continue_statement] = STATE(36), - [sym_goto_statement] = STATE(36), - [sym_seh_try_statement] = STATE(36), - [sym_seh_leave_statement] = STATE(36), - [sym__expression] = STATE(1221), - [sym__expression_not_binary] = STATE(792), - [sym_comma_expression] = STATE(2106), - [sym_conditional_expression] = STATE(792), - [sym_assignment_expression] = STATE(792), - [sym_pointer_expression] = STATE(901), - [sym_unary_expression] = STATE(792), - [sym_binary_expression] = STATE(792), - [sym_update_expression] = STATE(792), - [sym_cast_expression] = STATE(792), - [sym_sizeof_expression] = STATE(792), - [sym_alignof_expression] = STATE(792), - [sym_offsetof_expression] = STATE(792), - [sym_generic_expression] = STATE(792), - [sym_subscript_expression] = STATE(901), - [sym_call_expression] = STATE(901), - [sym_gnu_asm_expression] = STATE(792), - [sym_field_expression] = STATE(901), - [sym_compound_literal_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(901), - [sym_char_literal] = STATE(792), - [sym_concatenated_string] = STATE(792), - [sym_string_literal] = STATE(675), - [sym_null] = STATE(792), - [sym__empty_declaration] = STATE(36), - [sym_macro_type_specifier] = STATE(1106), - [aux_sym_preproc_if_repeat1] = STATE(36), - [aux_sym__declaration_specifiers_repeat1] = STATE(861), - [aux_sym_attributed_declarator_repeat1] = STATE(445), - [aux_sym_sized_type_specifier_repeat1] = STATE(1113), - [sym_identifier] = ACTIONS(484), - [aux_sym_preproc_include_token1] = ACTIONS(486), - [aux_sym_preproc_def_token1] = ACTIONS(488), - [aux_sym_preproc_if_token1] = ACTIONS(490), - [aux_sym_preproc_ifdef_token1] = ACTIONS(492), - [aux_sym_preproc_ifdef_token2] = ACTIONS(492), - [sym_preproc_directive] = ACTIONS(494), + [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(355), + [sym_declaration] = STATE(41), + [sym_type_definition] = STATE(41), + [sym__declaration_modifiers] = STATE(855), + [sym__declaration_specifiers] = STATE(1524), + [sym_linkage_specification] = STATE(41), + [sym_attribute_specifier] = STATE(855), + [sym_attribute_declaration] = STATE(495), + [sym_ms_declspec_modifier] = STATE(855), + [sym_ms_call_modifier] = STATE(844), + [sym_compound_statement] = STATE(41), + [sym_storage_class_specifier] = STATE(855), + [sym_type_qualifier] = STATE(855), + [sym__type_specifier] = STATE(1122), + [sym_sized_type_specifier] = STATE(1069), + [sym_enum_specifier] = STATE(1069), + [sym_struct_specifier] = STATE(1069), + [sym_union_specifier] = STATE(1069), + [sym_attributed_statement] = STATE(41), + [sym_labeled_statement] = STATE(41), + [sym_expression_statement] = STATE(41), + [sym_if_statement] = STATE(41), + [sym_switch_statement] = STATE(41), + [sym_case_statement] = STATE(41), + [sym_while_statement] = STATE(41), + [sym_do_statement] = STATE(41), + [sym_for_statement] = STATE(41), + [sym_return_statement] = STATE(41), + [sym_break_statement] = STATE(41), + [sym_continue_statement] = STATE(41), + [sym_goto_statement] = STATE(41), + [sym_seh_try_statement] = STATE(41), + [sym_seh_leave_statement] = STATE(41), + [sym__expression] = STATE(1272), + [sym__expression_not_binary] = STATE(809), + [sym_comma_expression] = STATE(2198), + [sym_conditional_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_pointer_expression] = STATE(877), + [sym_unary_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_update_expression] = STATE(809), + [sym_cast_expression] = STATE(809), + [sym_sizeof_expression] = STATE(809), + [sym_alignof_expression] = STATE(809), + [sym_offsetof_expression] = STATE(809), + [sym_generic_expression] = STATE(809), + [sym_subscript_expression] = STATE(877), + [sym_call_expression] = STATE(877), + [sym_gnu_asm_expression] = STATE(809), + [sym_field_expression] = STATE(877), + [sym_compound_literal_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(877), + [sym_char_literal] = STATE(809), + [sym_concatenated_string] = STATE(809), + [sym_string_literal] = STATE(573), + [sym_null] = STATE(809), + [sym__empty_declaration] = STATE(41), + [sym_macro_type_specifier] = STATE(1069), + [aux_sym_preproc_if_repeat1] = STATE(41), + [aux_sym__declaration_specifiers_repeat1] = STATE(855), + [aux_sym_attributed_declarator_repeat1] = STATE(478), + [aux_sym_sized_type_specifier_repeat1] = STATE(1085), + [sym_identifier] = ACTIONS(681), + [aux_sym_preproc_include_token1] = ACTIONS(684), + [aux_sym_preproc_def_token1] = ACTIONS(687), + [aux_sym_preproc_if_token1] = ACTIONS(690), + [aux_sym_preproc_ifdef_token1] = ACTIONS(693), + [aux_sym_preproc_ifdef_token2] = ACTIONS(693), + [sym_preproc_directive] = ACTIONS(696), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_BANG] = ACTIONS(276), + [anon_sym_TILDE] = ACTIONS(276), + [anon_sym_DASH] = ACTIONS(279), + [anon_sym_PLUS] = ACTIONS(279), + [anon_sym_STAR] = ACTIONS(282), + [anon_sym_AMP] = ACTIONS(282), + [anon_sym_SEMI] = ACTIONS(699), + [anon_sym___extension__] = ACTIONS(702), + [anon_sym_typedef] = ACTIONS(705), + [anon_sym_extern] = ACTIONS(708), + [anon_sym___attribute__] = ACTIONS(297), + [anon_sym___scanf] = ACTIONS(300), + [anon_sym___printf] = ACTIONS(300), + [anon_sym___read_mostly] = ACTIONS(303), + [anon_sym___must_hold] = ACTIONS(297), + [anon_sym___ro_after_init] = ACTIONS(303), + [anon_sym___init] = ACTIONS(303), + [anon_sym_LBRACK_LBRACK] = ACTIONS(306), + [anon_sym___declspec] = ACTIONS(309), + [anon_sym___cdecl] = ACTIONS(312), + [anon_sym___clrcall] = ACTIONS(312), + [anon_sym___stdcall] = ACTIONS(312), + [anon_sym___fastcall] = ACTIONS(312), + [anon_sym___thiscall] = ACTIONS(312), + [anon_sym___vectorcall] = ACTIONS(312), + [anon_sym_LBRACE] = ACTIONS(711), + [anon_sym_RBRACE] = ACTIONS(714), + [anon_sym_signed] = ACTIONS(318), + [anon_sym_unsigned] = ACTIONS(318), + [anon_sym_long] = ACTIONS(318), + [anon_sym_short] = ACTIONS(318), + [anon_sym_static] = ACTIONS(321), + [anon_sym_auto] = ACTIONS(321), + [anon_sym_register] = ACTIONS(321), + [anon_sym_inline] = ACTIONS(321), + [anon_sym___inline] = ACTIONS(321), + [anon_sym___inline__] = ACTIONS(321), + [anon_sym___forceinline] = ACTIONS(321), + [anon_sym_thread_local] = ACTIONS(321), + [anon_sym___thread] = ACTIONS(321), + [anon_sym_const] = ACTIONS(324), + [anon_sym_constexpr] = ACTIONS(324), + [anon_sym_volatile] = ACTIONS(324), + [anon_sym_restrict] = ACTIONS(324), + [anon_sym___restrict__] = ACTIONS(324), + [anon_sym__Atomic] = ACTIONS(324), + [anon_sym__Noreturn] = ACTIONS(324), + [anon_sym_noreturn] = ACTIONS(324), + [sym_primitive_type] = ACTIONS(327), + [anon_sym_enum] = ACTIONS(330), + [anon_sym_struct] = ACTIONS(333), + [anon_sym_union] = ACTIONS(336), + [anon_sym_if] = ACTIONS(716), + [anon_sym_switch] = ACTIONS(719), + [anon_sym_case] = ACTIONS(722), + [anon_sym_default] = ACTIONS(725), + [anon_sym_while] = ACTIONS(728), + [anon_sym_do] = ACTIONS(731), + [anon_sym_for] = ACTIONS(734), + [anon_sym_return] = ACTIONS(737), + [anon_sym_break] = ACTIONS(740), + [anon_sym_continue] = ACTIONS(743), + [anon_sym_goto] = ACTIONS(746), + [anon_sym___try] = ACTIONS(749), + [anon_sym___leave] = ACTIONS(752), + [anon_sym_DASH_DASH] = ACTIONS(378), + [anon_sym_PLUS_PLUS] = ACTIONS(378), + [anon_sym_sizeof] = ACTIONS(381), + [anon_sym___alignof__] = ACTIONS(384), + [anon_sym___alignof] = ACTIONS(384), + [anon_sym__alignof] = ACTIONS(384), + [anon_sym_alignof] = ACTIONS(384), + [anon_sym__Alignof] = ACTIONS(384), + [anon_sym_offsetof] = ACTIONS(387), + [anon_sym__Generic] = ACTIONS(390), + [anon_sym_asm] = ACTIONS(393), + [anon_sym___asm__] = ACTIONS(393), + [sym_number_literal] = ACTIONS(396), + [anon_sym_L_SQUOTE] = ACTIONS(399), + [anon_sym_u_SQUOTE] = ACTIONS(399), + [anon_sym_U_SQUOTE] = ACTIONS(399), + [anon_sym_u8_SQUOTE] = ACTIONS(399), + [anon_sym_SQUOTE] = ACTIONS(399), + [anon_sym_L_DQUOTE] = ACTIONS(402), + [anon_sym_u_DQUOTE] = ACTIONS(402), + [anon_sym_U_DQUOTE] = ACTIONS(402), + [anon_sym_u8_DQUOTE] = ACTIONS(402), + [anon_sym_DQUOTE] = ACTIONS(402), + [sym_true] = ACTIONS(405), + [sym_false] = ACTIONS(405), + [anon_sym_NULL] = ACTIONS(408), + [anon_sym_nullptr] = ACTIONS(408), + [sym_comment] = ACTIONS(3), + }, + [42] = { + [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(355), + [sym_declaration] = STATE(41), + [sym_type_definition] = STATE(41), + [sym__declaration_modifiers] = STATE(855), + [sym__declaration_specifiers] = STATE(1524), + [sym_linkage_specification] = STATE(41), + [sym_attribute_specifier] = STATE(855), + [sym_attribute_declaration] = STATE(495), + [sym_ms_declspec_modifier] = STATE(855), + [sym_ms_call_modifier] = STATE(844), + [sym_compound_statement] = STATE(41), + [sym_storage_class_specifier] = STATE(855), + [sym_type_qualifier] = STATE(855), + [sym__type_specifier] = STATE(1122), + [sym_sized_type_specifier] = STATE(1069), + [sym_enum_specifier] = STATE(1069), + [sym_struct_specifier] = STATE(1069), + [sym_union_specifier] = STATE(1069), + [sym_attributed_statement] = STATE(41), + [sym_labeled_statement] = STATE(41), + [sym_expression_statement] = STATE(41), + [sym_if_statement] = STATE(41), + [sym_switch_statement] = STATE(41), + [sym_case_statement] = STATE(41), + [sym_while_statement] = STATE(41), + [sym_do_statement] = STATE(41), + [sym_for_statement] = STATE(41), + [sym_return_statement] = STATE(41), + [sym_break_statement] = STATE(41), + [sym_continue_statement] = STATE(41), + [sym_goto_statement] = STATE(41), + [sym_seh_try_statement] = STATE(41), + [sym_seh_leave_statement] = STATE(41), + [sym__expression] = STATE(1272), + [sym__expression_not_binary] = STATE(809), + [sym_comma_expression] = STATE(2198), + [sym_conditional_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_pointer_expression] = STATE(877), + [sym_unary_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_update_expression] = STATE(809), + [sym_cast_expression] = STATE(809), + [sym_sizeof_expression] = STATE(809), + [sym_alignof_expression] = STATE(809), + [sym_offsetof_expression] = STATE(809), + [sym_generic_expression] = STATE(809), + [sym_subscript_expression] = STATE(877), + [sym_call_expression] = STATE(877), + [sym_gnu_asm_expression] = STATE(809), + [sym_field_expression] = STATE(877), + [sym_compound_literal_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(877), + [sym_char_literal] = STATE(809), + [sym_concatenated_string] = STATE(809), + [sym_string_literal] = STATE(573), + [sym_null] = STATE(809), + [sym__empty_declaration] = STATE(41), + [sym_macro_type_specifier] = STATE(1069), + [aux_sym_preproc_if_repeat1] = STATE(41), + [aux_sym__declaration_specifiers_repeat1] = STATE(855), + [aux_sym_attributed_declarator_repeat1] = STATE(478), + [aux_sym_sized_type_specifier_repeat1] = STATE(1085), + [sym_identifier] = ACTIONS(611), + [aux_sym_preproc_include_token1] = ACTIONS(613), + [aux_sym_preproc_def_token1] = ACTIONS(615), + [aux_sym_preproc_if_token1] = ACTIONS(617), + [aux_sym_preproc_ifdef_token1] = ACTIONS(619), + [aux_sym_preproc_ifdef_token2] = ACTIONS(619), + [sym_preproc_directive] = ACTIONS(621), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -22121,168 +23254,172 @@ 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(496), - [anon_sym___extension__] = ACTIONS(498), - [anon_sym_typedef] = ACTIONS(500), - [anon_sym_extern] = ACTIONS(502), + [anon_sym_SEMI] = ACTIONS(623), + [anon_sym___extension__] = ACTIONS(625), + [anon_sym_typedef] = ACTIONS(627), + [anon_sym_extern] = ACTIONS(629), [anon_sym___attribute__] = ACTIONS(33), [anon_sym___scanf] = ACTIONS(35), [anon_sym___printf] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym___cdecl] = ACTIONS(41), - [anon_sym___clrcall] = ACTIONS(41), - [anon_sym___stdcall] = ACTIONS(41), - [anon_sym___fastcall] = ACTIONS(41), - [anon_sym___thiscall] = ACTIONS(41), - [anon_sym___vectorcall] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(504), - [anon_sym_RBRACE] = ACTIONS(624), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [sym_primitive_type] = ACTIONS(51), - [anon_sym_enum] = ACTIONS(53), - [anon_sym_struct] = ACTIONS(55), - [anon_sym_union] = ACTIONS(57), - [anon_sym_if] = ACTIONS(508), - [anon_sym_switch] = ACTIONS(510), - [anon_sym_case] = ACTIONS(512), - [anon_sym_default] = ACTIONS(514), - [anon_sym_while] = ACTIONS(516), - [anon_sym_do] = ACTIONS(518), - [anon_sym_for] = ACTIONS(520), - [anon_sym_return] = ACTIONS(522), - [anon_sym_break] = ACTIONS(524), - [anon_sym_continue] = ACTIONS(526), - [anon_sym_goto] = ACTIONS(528), - [anon_sym___try] = ACTIONS(530), - [anon_sym___leave] = ACTIONS(532), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(83), - [anon_sym___alignof__] = ACTIONS(85), - [anon_sym___alignof] = ACTIONS(85), - [anon_sym__alignof] = ACTIONS(85), - [anon_sym_alignof] = ACTIONS(85), - [anon_sym__Alignof] = ACTIONS(85), - [anon_sym_offsetof] = ACTIONS(87), - [anon_sym__Generic] = ACTIONS(89), - [anon_sym_asm] = ACTIONS(91), - [anon_sym___asm__] = ACTIONS(91), - [sym_number_literal] = ACTIONS(159), - [anon_sym_L_SQUOTE] = ACTIONS(95), - [anon_sym_u_SQUOTE] = ACTIONS(95), - [anon_sym_U_SQUOTE] = ACTIONS(95), - [anon_sym_u8_SQUOTE] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(95), - [anon_sym_L_DQUOTE] = ACTIONS(97), - [anon_sym_u_DQUOTE] = ACTIONS(97), - [anon_sym_U_DQUOTE] = ACTIONS(97), - [anon_sym_u8_DQUOTE] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(97), - [sym_true] = ACTIONS(161), - [sym_false] = ACTIONS(161), - [anon_sym_NULL] = ACTIONS(101), - [anon_sym_nullptr] = ACTIONS(101), + [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(631), + [anon_sym_RBRACE] = ACTIONS(755), + [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), + [sym_primitive_type] = ACTIONS(53), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [anon_sym_if] = ACTIONS(635), + [anon_sym_switch] = ACTIONS(637), + [anon_sym_case] = ACTIONS(639), + [anon_sym_default] = ACTIONS(641), + [anon_sym_while] = ACTIONS(643), + [anon_sym_do] = ACTIONS(645), + [anon_sym_for] = ACTIONS(647), + [anon_sym_return] = ACTIONS(649), + [anon_sym_break] = ACTIONS(651), + [anon_sym_continue] = ACTIONS(653), + [anon_sym_goto] = ACTIONS(655), + [anon_sym___try] = ACTIONS(657), + [anon_sym___leave] = ACTIONS(659), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [sym_number_literal] = ACTIONS(161), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(163), + [sym_false] = ACTIONS(163), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [39] = { - [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(392), - [sym_declaration] = STATE(36), - [sym_type_definition] = STATE(36), - [sym__declaration_modifiers] = STATE(861), - [sym__declaration_specifiers] = STATE(1483), - [sym_linkage_specification] = STATE(36), - [sym_attribute_specifier] = STATE(861), - [sym_attribute_declaration] = STATE(504), - [sym_ms_declspec_modifier] = STATE(861), - [sym_ms_call_modifier] = STATE(851), - [sym_compound_statement] = STATE(36), - [sym_storage_class_specifier] = STATE(861), - [sym_type_qualifier] = STATE(861), - [sym__type_specifier] = STATE(1120), - [sym_sized_type_specifier] = STATE(1106), - [sym_enum_specifier] = STATE(1106), - [sym_struct_specifier] = STATE(1106), - [sym_union_specifier] = STATE(1106), - [sym_attributed_statement] = STATE(36), - [sym_labeled_statement] = STATE(36), - [sym_expression_statement] = STATE(36), - [sym_if_statement] = STATE(36), - [sym_switch_statement] = STATE(36), - [sym_case_statement] = STATE(36), - [sym_while_statement] = STATE(36), - [sym_do_statement] = STATE(36), - [sym_for_statement] = STATE(36), - [sym_return_statement] = STATE(36), - [sym_break_statement] = STATE(36), - [sym_continue_statement] = STATE(36), - [sym_goto_statement] = STATE(36), - [sym_seh_try_statement] = STATE(36), - [sym_seh_leave_statement] = STATE(36), - [sym__expression] = STATE(1221), - [sym__expression_not_binary] = STATE(792), - [sym_comma_expression] = STATE(2106), - [sym_conditional_expression] = STATE(792), - [sym_assignment_expression] = STATE(792), - [sym_pointer_expression] = STATE(901), - [sym_unary_expression] = STATE(792), - [sym_binary_expression] = STATE(792), - [sym_update_expression] = STATE(792), - [sym_cast_expression] = STATE(792), - [sym_sizeof_expression] = STATE(792), - [sym_alignof_expression] = STATE(792), - [sym_offsetof_expression] = STATE(792), - [sym_generic_expression] = STATE(792), - [sym_subscript_expression] = STATE(901), - [sym_call_expression] = STATE(901), - [sym_gnu_asm_expression] = STATE(792), - [sym_field_expression] = STATE(901), - [sym_compound_literal_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(901), - [sym_char_literal] = STATE(792), - [sym_concatenated_string] = STATE(792), - [sym_string_literal] = STATE(675), - [sym_null] = STATE(792), - [sym__empty_declaration] = STATE(36), - [sym_macro_type_specifier] = STATE(1106), - [aux_sym_preproc_if_repeat1] = STATE(36), - [aux_sym__declaration_specifiers_repeat1] = STATE(861), - [aux_sym_attributed_declarator_repeat1] = STATE(445), - [aux_sym_sized_type_specifier_repeat1] = STATE(1113), - [sym_identifier] = ACTIONS(484), - [aux_sym_preproc_include_token1] = ACTIONS(486), - [aux_sym_preproc_def_token1] = ACTIONS(488), - [aux_sym_preproc_if_token1] = ACTIONS(490), - [aux_sym_preproc_ifdef_token1] = ACTIONS(492), - [aux_sym_preproc_ifdef_token2] = ACTIONS(492), - [sym_preproc_directive] = ACTIONS(494), + [43] = { + [sym_preproc_include] = STATE(42), + [sym_preproc_def] = STATE(42), + [sym_preproc_function_def] = STATE(42), + [sym_preproc_call] = STATE(42), + [sym_preproc_if] = STATE(42), + [sym_preproc_ifdef] = STATE(42), + [sym_function_definition] = STATE(42), + [sym__old_style_function_definition] = STATE(355), + [sym_declaration] = STATE(42), + [sym_type_definition] = STATE(42), + [sym__declaration_modifiers] = STATE(855), + [sym__declaration_specifiers] = STATE(1524), + [sym_linkage_specification] = STATE(42), + [sym_attribute_specifier] = STATE(855), + [sym_attribute_declaration] = STATE(495), + [sym_ms_declspec_modifier] = STATE(855), + [sym_ms_call_modifier] = STATE(844), + [sym_compound_statement] = STATE(42), + [sym_storage_class_specifier] = STATE(855), + [sym_type_qualifier] = STATE(855), + [sym__type_specifier] = STATE(1122), + [sym_sized_type_specifier] = STATE(1069), + [sym_enum_specifier] = STATE(1069), + [sym_struct_specifier] = STATE(1069), + [sym_union_specifier] = STATE(1069), + [sym_attributed_statement] = STATE(42), + [sym_labeled_statement] = STATE(42), + [sym_expression_statement] = STATE(42), + [sym_if_statement] = STATE(42), + [sym_switch_statement] = STATE(42), + [sym_case_statement] = STATE(42), + [sym_while_statement] = STATE(42), + [sym_do_statement] = STATE(42), + [sym_for_statement] = STATE(42), + [sym_return_statement] = STATE(42), + [sym_break_statement] = STATE(42), + [sym_continue_statement] = STATE(42), + [sym_goto_statement] = STATE(42), + [sym_seh_try_statement] = STATE(42), + [sym_seh_leave_statement] = STATE(42), + [sym__expression] = STATE(1272), + [sym__expression_not_binary] = STATE(809), + [sym_comma_expression] = STATE(2198), + [sym_conditional_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_pointer_expression] = STATE(877), + [sym_unary_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_update_expression] = STATE(809), + [sym_cast_expression] = STATE(809), + [sym_sizeof_expression] = STATE(809), + [sym_alignof_expression] = STATE(809), + [sym_offsetof_expression] = STATE(809), + [sym_generic_expression] = STATE(809), + [sym_subscript_expression] = STATE(877), + [sym_call_expression] = STATE(877), + [sym_gnu_asm_expression] = STATE(809), + [sym_field_expression] = STATE(877), + [sym_compound_literal_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(877), + [sym_char_literal] = STATE(809), + [sym_concatenated_string] = STATE(809), + [sym_string_literal] = STATE(573), + [sym_null] = STATE(809), + [sym__empty_declaration] = STATE(42), + [sym_macro_type_specifier] = STATE(1069), + [aux_sym_preproc_if_repeat1] = STATE(42), + [aux_sym__declaration_specifiers_repeat1] = STATE(855), + [aux_sym_attributed_declarator_repeat1] = STATE(478), + [aux_sym_sized_type_specifier_repeat1] = STATE(1085), + [sym_identifier] = ACTIONS(611), + [aux_sym_preproc_include_token1] = ACTIONS(613), + [aux_sym_preproc_def_token1] = ACTIONS(615), + [aux_sym_preproc_if_token1] = ACTIONS(617), + [aux_sym_preproc_ifdef_token1] = ACTIONS(619), + [aux_sym_preproc_ifdef_token2] = ACTIONS(619), + [sym_preproc_directive] = ACTIONS(621), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -22290,168 +23427,172 @@ 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(496), - [anon_sym___extension__] = ACTIONS(498), - [anon_sym_typedef] = ACTIONS(500), - [anon_sym_extern] = ACTIONS(502), + [anon_sym_SEMI] = ACTIONS(623), + [anon_sym___extension__] = ACTIONS(625), + [anon_sym_typedef] = ACTIONS(627), + [anon_sym_extern] = ACTIONS(629), [anon_sym___attribute__] = ACTIONS(33), [anon_sym___scanf] = ACTIONS(35), [anon_sym___printf] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym___cdecl] = ACTIONS(41), - [anon_sym___clrcall] = ACTIONS(41), - [anon_sym___stdcall] = ACTIONS(41), - [anon_sym___fastcall] = ACTIONS(41), - [anon_sym___thiscall] = ACTIONS(41), - [anon_sym___vectorcall] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(504), - [anon_sym_RBRACE] = ACTIONS(626), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [sym_primitive_type] = ACTIONS(51), - [anon_sym_enum] = ACTIONS(53), - [anon_sym_struct] = ACTIONS(55), - [anon_sym_union] = ACTIONS(57), - [anon_sym_if] = ACTIONS(508), - [anon_sym_switch] = ACTIONS(510), - [anon_sym_case] = ACTIONS(512), - [anon_sym_default] = ACTIONS(514), - [anon_sym_while] = ACTIONS(516), - [anon_sym_do] = ACTIONS(518), - [anon_sym_for] = ACTIONS(520), - [anon_sym_return] = ACTIONS(522), - [anon_sym_break] = ACTIONS(524), - [anon_sym_continue] = ACTIONS(526), - [anon_sym_goto] = ACTIONS(528), - [anon_sym___try] = ACTIONS(530), - [anon_sym___leave] = ACTIONS(532), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(83), - [anon_sym___alignof__] = ACTIONS(85), - [anon_sym___alignof] = ACTIONS(85), - [anon_sym__alignof] = ACTIONS(85), - [anon_sym_alignof] = ACTIONS(85), - [anon_sym__Alignof] = ACTIONS(85), - [anon_sym_offsetof] = ACTIONS(87), - [anon_sym__Generic] = ACTIONS(89), - [anon_sym_asm] = ACTIONS(91), - [anon_sym___asm__] = ACTIONS(91), - [sym_number_literal] = ACTIONS(159), - [anon_sym_L_SQUOTE] = ACTIONS(95), - [anon_sym_u_SQUOTE] = ACTIONS(95), - [anon_sym_U_SQUOTE] = ACTIONS(95), - [anon_sym_u8_SQUOTE] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(95), - [anon_sym_L_DQUOTE] = ACTIONS(97), - [anon_sym_u_DQUOTE] = ACTIONS(97), - [anon_sym_U_DQUOTE] = ACTIONS(97), - [anon_sym_u8_DQUOTE] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(97), - [sym_true] = ACTIONS(161), - [sym_false] = ACTIONS(161), - [anon_sym_NULL] = ACTIONS(101), - [anon_sym_nullptr] = ACTIONS(101), + [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(631), + [anon_sym_RBRACE] = ACTIONS(757), + [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), + [sym_primitive_type] = ACTIONS(53), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [anon_sym_if] = ACTIONS(635), + [anon_sym_switch] = ACTIONS(637), + [anon_sym_case] = ACTIONS(639), + [anon_sym_default] = ACTIONS(641), + [anon_sym_while] = ACTIONS(643), + [anon_sym_do] = ACTIONS(645), + [anon_sym_for] = ACTIONS(647), + [anon_sym_return] = ACTIONS(649), + [anon_sym_break] = ACTIONS(651), + [anon_sym_continue] = ACTIONS(653), + [anon_sym_goto] = ACTIONS(655), + [anon_sym___try] = ACTIONS(657), + [anon_sym___leave] = ACTIONS(659), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [sym_number_literal] = ACTIONS(161), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(163), + [sym_false] = ACTIONS(163), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [40] = { - [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(392), - [sym_declaration] = STATE(36), - [sym_type_definition] = STATE(36), - [sym__declaration_modifiers] = STATE(861), - [sym__declaration_specifiers] = STATE(1483), - [sym_linkage_specification] = STATE(36), - [sym_attribute_specifier] = STATE(861), - [sym_attribute_declaration] = STATE(504), - [sym_ms_declspec_modifier] = STATE(861), - [sym_ms_call_modifier] = STATE(851), - [sym_compound_statement] = STATE(36), - [sym_storage_class_specifier] = STATE(861), - [sym_type_qualifier] = STATE(861), - [sym__type_specifier] = STATE(1120), - [sym_sized_type_specifier] = STATE(1106), - [sym_enum_specifier] = STATE(1106), - [sym_struct_specifier] = STATE(1106), - [sym_union_specifier] = STATE(1106), - [sym_attributed_statement] = STATE(36), - [sym_labeled_statement] = STATE(36), - [sym_expression_statement] = STATE(36), - [sym_if_statement] = STATE(36), - [sym_switch_statement] = STATE(36), - [sym_case_statement] = STATE(36), - [sym_while_statement] = STATE(36), - [sym_do_statement] = STATE(36), - [sym_for_statement] = STATE(36), - [sym_return_statement] = STATE(36), - [sym_break_statement] = STATE(36), - [sym_continue_statement] = STATE(36), - [sym_goto_statement] = STATE(36), - [sym_seh_try_statement] = STATE(36), - [sym_seh_leave_statement] = STATE(36), - [sym__expression] = STATE(1221), - [sym__expression_not_binary] = STATE(792), - [sym_comma_expression] = STATE(2106), - [sym_conditional_expression] = STATE(792), - [sym_assignment_expression] = STATE(792), - [sym_pointer_expression] = STATE(901), - [sym_unary_expression] = STATE(792), - [sym_binary_expression] = STATE(792), - [sym_update_expression] = STATE(792), - [sym_cast_expression] = STATE(792), - [sym_sizeof_expression] = STATE(792), - [sym_alignof_expression] = STATE(792), - [sym_offsetof_expression] = STATE(792), - [sym_generic_expression] = STATE(792), - [sym_subscript_expression] = STATE(901), - [sym_call_expression] = STATE(901), - [sym_gnu_asm_expression] = STATE(792), - [sym_field_expression] = STATE(901), - [sym_compound_literal_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(901), - [sym_char_literal] = STATE(792), - [sym_concatenated_string] = STATE(792), - [sym_string_literal] = STATE(675), - [sym_null] = STATE(792), - [sym__empty_declaration] = STATE(36), - [sym_macro_type_specifier] = STATE(1106), - [aux_sym_preproc_if_repeat1] = STATE(36), - [aux_sym__declaration_specifiers_repeat1] = STATE(861), - [aux_sym_attributed_declarator_repeat1] = STATE(445), - [aux_sym_sized_type_specifier_repeat1] = STATE(1113), - [sym_identifier] = ACTIONS(484), - [aux_sym_preproc_include_token1] = ACTIONS(486), - [aux_sym_preproc_def_token1] = ACTIONS(488), - [aux_sym_preproc_if_token1] = ACTIONS(490), - [aux_sym_preproc_ifdef_token1] = ACTIONS(492), - [aux_sym_preproc_ifdef_token2] = ACTIONS(492), - [sym_preproc_directive] = ACTIONS(494), + [44] = { + [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(355), + [sym_declaration] = STATE(41), + [sym_type_definition] = STATE(41), + [sym__declaration_modifiers] = STATE(855), + [sym__declaration_specifiers] = STATE(1524), + [sym_linkage_specification] = STATE(41), + [sym_attribute_specifier] = STATE(855), + [sym_attribute_declaration] = STATE(495), + [sym_ms_declspec_modifier] = STATE(855), + [sym_ms_call_modifier] = STATE(844), + [sym_compound_statement] = STATE(41), + [sym_storage_class_specifier] = STATE(855), + [sym_type_qualifier] = STATE(855), + [sym__type_specifier] = STATE(1122), + [sym_sized_type_specifier] = STATE(1069), + [sym_enum_specifier] = STATE(1069), + [sym_struct_specifier] = STATE(1069), + [sym_union_specifier] = STATE(1069), + [sym_attributed_statement] = STATE(41), + [sym_labeled_statement] = STATE(41), + [sym_expression_statement] = STATE(41), + [sym_if_statement] = STATE(41), + [sym_switch_statement] = STATE(41), + [sym_case_statement] = STATE(41), + [sym_while_statement] = STATE(41), + [sym_do_statement] = STATE(41), + [sym_for_statement] = STATE(41), + [sym_return_statement] = STATE(41), + [sym_break_statement] = STATE(41), + [sym_continue_statement] = STATE(41), + [sym_goto_statement] = STATE(41), + [sym_seh_try_statement] = STATE(41), + [sym_seh_leave_statement] = STATE(41), + [sym__expression] = STATE(1272), + [sym__expression_not_binary] = STATE(809), + [sym_comma_expression] = STATE(2198), + [sym_conditional_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_pointer_expression] = STATE(877), + [sym_unary_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_update_expression] = STATE(809), + [sym_cast_expression] = STATE(809), + [sym_sizeof_expression] = STATE(809), + [sym_alignof_expression] = STATE(809), + [sym_offsetof_expression] = STATE(809), + [sym_generic_expression] = STATE(809), + [sym_subscript_expression] = STATE(877), + [sym_call_expression] = STATE(877), + [sym_gnu_asm_expression] = STATE(809), + [sym_field_expression] = STATE(877), + [sym_compound_literal_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(877), + [sym_char_literal] = STATE(809), + [sym_concatenated_string] = STATE(809), + [sym_string_literal] = STATE(573), + [sym_null] = STATE(809), + [sym__empty_declaration] = STATE(41), + [sym_macro_type_specifier] = STATE(1069), + [aux_sym_preproc_if_repeat1] = STATE(41), + [aux_sym__declaration_specifiers_repeat1] = STATE(855), + [aux_sym_attributed_declarator_repeat1] = STATE(478), + [aux_sym_sized_type_specifier_repeat1] = STATE(1085), + [sym_identifier] = ACTIONS(611), + [aux_sym_preproc_include_token1] = ACTIONS(613), + [aux_sym_preproc_def_token1] = ACTIONS(615), + [aux_sym_preproc_if_token1] = ACTIONS(617), + [aux_sym_preproc_ifdef_token1] = ACTIONS(619), + [aux_sym_preproc_ifdef_token2] = ACTIONS(619), + [sym_preproc_directive] = ACTIONS(621), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -22459,168 +23600,172 @@ 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(496), - [anon_sym___extension__] = ACTIONS(498), - [anon_sym_typedef] = ACTIONS(500), - [anon_sym_extern] = ACTIONS(502), + [anon_sym_SEMI] = ACTIONS(623), + [anon_sym___extension__] = ACTIONS(625), + [anon_sym_typedef] = ACTIONS(627), + [anon_sym_extern] = ACTIONS(629), [anon_sym___attribute__] = ACTIONS(33), [anon_sym___scanf] = ACTIONS(35), [anon_sym___printf] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym___cdecl] = ACTIONS(41), - [anon_sym___clrcall] = ACTIONS(41), - [anon_sym___stdcall] = ACTIONS(41), - [anon_sym___fastcall] = ACTIONS(41), - [anon_sym___thiscall] = ACTIONS(41), - [anon_sym___vectorcall] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(504), - [anon_sym_RBRACE] = ACTIONS(628), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [sym_primitive_type] = ACTIONS(51), - [anon_sym_enum] = ACTIONS(53), - [anon_sym_struct] = ACTIONS(55), - [anon_sym_union] = ACTIONS(57), - [anon_sym_if] = ACTIONS(508), - [anon_sym_switch] = ACTIONS(510), - [anon_sym_case] = ACTIONS(512), - [anon_sym_default] = ACTIONS(514), - [anon_sym_while] = ACTIONS(516), - [anon_sym_do] = ACTIONS(518), - [anon_sym_for] = ACTIONS(520), - [anon_sym_return] = ACTIONS(522), - [anon_sym_break] = ACTIONS(524), - [anon_sym_continue] = ACTIONS(526), - [anon_sym_goto] = ACTIONS(528), - [anon_sym___try] = ACTIONS(530), - [anon_sym___leave] = ACTIONS(532), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(83), - [anon_sym___alignof__] = ACTIONS(85), - [anon_sym___alignof] = ACTIONS(85), - [anon_sym__alignof] = ACTIONS(85), - [anon_sym_alignof] = ACTIONS(85), - [anon_sym__Alignof] = ACTIONS(85), - [anon_sym_offsetof] = ACTIONS(87), - [anon_sym__Generic] = ACTIONS(89), - [anon_sym_asm] = ACTIONS(91), - [anon_sym___asm__] = ACTIONS(91), - [sym_number_literal] = ACTIONS(159), - [anon_sym_L_SQUOTE] = ACTIONS(95), - [anon_sym_u_SQUOTE] = ACTIONS(95), - [anon_sym_U_SQUOTE] = ACTIONS(95), - [anon_sym_u8_SQUOTE] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(95), - [anon_sym_L_DQUOTE] = ACTIONS(97), - [anon_sym_u_DQUOTE] = ACTIONS(97), - [anon_sym_U_DQUOTE] = ACTIONS(97), - [anon_sym_u8_DQUOTE] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(97), - [sym_true] = ACTIONS(161), - [sym_false] = ACTIONS(161), - [anon_sym_NULL] = ACTIONS(101), - [anon_sym_nullptr] = ACTIONS(101), + [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(631), + [anon_sym_RBRACE] = ACTIONS(759), + [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), + [sym_primitive_type] = ACTIONS(53), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [anon_sym_if] = ACTIONS(635), + [anon_sym_switch] = ACTIONS(637), + [anon_sym_case] = ACTIONS(639), + [anon_sym_default] = ACTIONS(641), + [anon_sym_while] = ACTIONS(643), + [anon_sym_do] = ACTIONS(645), + [anon_sym_for] = ACTIONS(647), + [anon_sym_return] = ACTIONS(649), + [anon_sym_break] = ACTIONS(651), + [anon_sym_continue] = ACTIONS(653), + [anon_sym_goto] = ACTIONS(655), + [anon_sym___try] = ACTIONS(657), + [anon_sym___leave] = ACTIONS(659), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [sym_number_literal] = ACTIONS(161), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(163), + [sym_false] = ACTIONS(163), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [41] = { - [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(392), - [sym_declaration] = STATE(39), - [sym_type_definition] = STATE(39), - [sym__declaration_modifiers] = STATE(861), - [sym__declaration_specifiers] = STATE(1483), - [sym_linkage_specification] = STATE(39), - [sym_attribute_specifier] = STATE(861), - [sym_attribute_declaration] = STATE(504), - [sym_ms_declspec_modifier] = STATE(861), - [sym_ms_call_modifier] = STATE(851), - [sym_compound_statement] = STATE(39), - [sym_storage_class_specifier] = STATE(861), - [sym_type_qualifier] = STATE(861), - [sym__type_specifier] = STATE(1120), - [sym_sized_type_specifier] = STATE(1106), - [sym_enum_specifier] = STATE(1106), - [sym_struct_specifier] = STATE(1106), - [sym_union_specifier] = STATE(1106), - [sym_attributed_statement] = STATE(39), - [sym_labeled_statement] = STATE(39), - [sym_expression_statement] = STATE(39), - [sym_if_statement] = STATE(39), - [sym_switch_statement] = STATE(39), - [sym_case_statement] = STATE(39), - [sym_while_statement] = STATE(39), - [sym_do_statement] = STATE(39), - [sym_for_statement] = STATE(39), - [sym_return_statement] = STATE(39), - [sym_break_statement] = STATE(39), - [sym_continue_statement] = STATE(39), - [sym_goto_statement] = STATE(39), - [sym_seh_try_statement] = STATE(39), - [sym_seh_leave_statement] = STATE(39), - [sym__expression] = STATE(1221), - [sym__expression_not_binary] = STATE(792), - [sym_comma_expression] = STATE(2106), - [sym_conditional_expression] = STATE(792), - [sym_assignment_expression] = STATE(792), - [sym_pointer_expression] = STATE(901), - [sym_unary_expression] = STATE(792), - [sym_binary_expression] = STATE(792), - [sym_update_expression] = STATE(792), - [sym_cast_expression] = STATE(792), - [sym_sizeof_expression] = STATE(792), - [sym_alignof_expression] = STATE(792), - [sym_offsetof_expression] = STATE(792), - [sym_generic_expression] = STATE(792), - [sym_subscript_expression] = STATE(901), - [sym_call_expression] = STATE(901), - [sym_gnu_asm_expression] = STATE(792), - [sym_field_expression] = STATE(901), - [sym_compound_literal_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(901), - [sym_char_literal] = STATE(792), - [sym_concatenated_string] = STATE(792), - [sym_string_literal] = STATE(675), - [sym_null] = STATE(792), - [sym__empty_declaration] = STATE(39), - [sym_macro_type_specifier] = STATE(1106), - [aux_sym_preproc_if_repeat1] = STATE(39), - [aux_sym__declaration_specifiers_repeat1] = STATE(861), - [aux_sym_attributed_declarator_repeat1] = STATE(445), - [aux_sym_sized_type_specifier_repeat1] = STATE(1113), - [sym_identifier] = ACTIONS(484), - [aux_sym_preproc_include_token1] = ACTIONS(486), - [aux_sym_preproc_def_token1] = ACTIONS(488), - [aux_sym_preproc_if_token1] = ACTIONS(490), - [aux_sym_preproc_ifdef_token1] = ACTIONS(492), - [aux_sym_preproc_ifdef_token2] = ACTIONS(492), - [sym_preproc_directive] = ACTIONS(494), + [45] = { + [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(355), + [sym_declaration] = STATE(41), + [sym_type_definition] = STATE(41), + [sym__declaration_modifiers] = STATE(855), + [sym__declaration_specifiers] = STATE(1524), + [sym_linkage_specification] = STATE(41), + [sym_attribute_specifier] = STATE(855), + [sym_attribute_declaration] = STATE(495), + [sym_ms_declspec_modifier] = STATE(855), + [sym_ms_call_modifier] = STATE(844), + [sym_compound_statement] = STATE(41), + [sym_storage_class_specifier] = STATE(855), + [sym_type_qualifier] = STATE(855), + [sym__type_specifier] = STATE(1122), + [sym_sized_type_specifier] = STATE(1069), + [sym_enum_specifier] = STATE(1069), + [sym_struct_specifier] = STATE(1069), + [sym_union_specifier] = STATE(1069), + [sym_attributed_statement] = STATE(41), + [sym_labeled_statement] = STATE(41), + [sym_expression_statement] = STATE(41), + [sym_if_statement] = STATE(41), + [sym_switch_statement] = STATE(41), + [sym_case_statement] = STATE(41), + [sym_while_statement] = STATE(41), + [sym_do_statement] = STATE(41), + [sym_for_statement] = STATE(41), + [sym_return_statement] = STATE(41), + [sym_break_statement] = STATE(41), + [sym_continue_statement] = STATE(41), + [sym_goto_statement] = STATE(41), + [sym_seh_try_statement] = STATE(41), + [sym_seh_leave_statement] = STATE(41), + [sym__expression] = STATE(1272), + [sym__expression_not_binary] = STATE(809), + [sym_comma_expression] = STATE(2198), + [sym_conditional_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_pointer_expression] = STATE(877), + [sym_unary_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_update_expression] = STATE(809), + [sym_cast_expression] = STATE(809), + [sym_sizeof_expression] = STATE(809), + [sym_alignof_expression] = STATE(809), + [sym_offsetof_expression] = STATE(809), + [sym_generic_expression] = STATE(809), + [sym_subscript_expression] = STATE(877), + [sym_call_expression] = STATE(877), + [sym_gnu_asm_expression] = STATE(809), + [sym_field_expression] = STATE(877), + [sym_compound_literal_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(877), + [sym_char_literal] = STATE(809), + [sym_concatenated_string] = STATE(809), + [sym_string_literal] = STATE(573), + [sym_null] = STATE(809), + [sym__empty_declaration] = STATE(41), + [sym_macro_type_specifier] = STATE(1069), + [aux_sym_preproc_if_repeat1] = STATE(41), + [aux_sym__declaration_specifiers_repeat1] = STATE(855), + [aux_sym_attributed_declarator_repeat1] = STATE(478), + [aux_sym_sized_type_specifier_repeat1] = STATE(1085), + [sym_identifier] = ACTIONS(611), + [aux_sym_preproc_include_token1] = ACTIONS(613), + [aux_sym_preproc_def_token1] = ACTIONS(615), + [aux_sym_preproc_if_token1] = ACTIONS(617), + [aux_sym_preproc_ifdef_token1] = ACTIONS(619), + [aux_sym_preproc_ifdef_token2] = ACTIONS(619), + [sym_preproc_directive] = ACTIONS(621), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -22628,168 +23773,172 @@ 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(496), - [anon_sym___extension__] = ACTIONS(498), - [anon_sym_typedef] = ACTIONS(500), - [anon_sym_extern] = ACTIONS(502), + [anon_sym_SEMI] = ACTIONS(623), + [anon_sym___extension__] = ACTIONS(625), + [anon_sym_typedef] = ACTIONS(627), + [anon_sym_extern] = ACTIONS(629), [anon_sym___attribute__] = ACTIONS(33), [anon_sym___scanf] = ACTIONS(35), [anon_sym___printf] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym___cdecl] = ACTIONS(41), - [anon_sym___clrcall] = ACTIONS(41), - [anon_sym___stdcall] = ACTIONS(41), - [anon_sym___fastcall] = ACTIONS(41), - [anon_sym___thiscall] = ACTIONS(41), - [anon_sym___vectorcall] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(504), - [anon_sym_RBRACE] = ACTIONS(630), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [sym_primitive_type] = ACTIONS(51), - [anon_sym_enum] = ACTIONS(53), - [anon_sym_struct] = ACTIONS(55), - [anon_sym_union] = ACTIONS(57), - [anon_sym_if] = ACTIONS(508), - [anon_sym_switch] = ACTIONS(510), - [anon_sym_case] = ACTIONS(512), - [anon_sym_default] = ACTIONS(514), - [anon_sym_while] = ACTIONS(516), - [anon_sym_do] = ACTIONS(518), - [anon_sym_for] = ACTIONS(520), - [anon_sym_return] = ACTIONS(522), - [anon_sym_break] = ACTIONS(524), - [anon_sym_continue] = ACTIONS(526), - [anon_sym_goto] = ACTIONS(528), - [anon_sym___try] = ACTIONS(530), - [anon_sym___leave] = ACTIONS(532), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(83), - [anon_sym___alignof__] = ACTIONS(85), - [anon_sym___alignof] = ACTIONS(85), - [anon_sym__alignof] = ACTIONS(85), - [anon_sym_alignof] = ACTIONS(85), - [anon_sym__Alignof] = ACTIONS(85), - [anon_sym_offsetof] = ACTIONS(87), - [anon_sym__Generic] = ACTIONS(89), - [anon_sym_asm] = ACTIONS(91), - [anon_sym___asm__] = ACTIONS(91), - [sym_number_literal] = ACTIONS(159), - [anon_sym_L_SQUOTE] = ACTIONS(95), - [anon_sym_u_SQUOTE] = ACTIONS(95), - [anon_sym_U_SQUOTE] = ACTIONS(95), - [anon_sym_u8_SQUOTE] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(95), - [anon_sym_L_DQUOTE] = ACTIONS(97), - [anon_sym_u_DQUOTE] = ACTIONS(97), - [anon_sym_U_DQUOTE] = ACTIONS(97), - [anon_sym_u8_DQUOTE] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(97), - [sym_true] = ACTIONS(161), - [sym_false] = ACTIONS(161), - [anon_sym_NULL] = ACTIONS(101), - [anon_sym_nullptr] = ACTIONS(101), + [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(631), + [anon_sym_RBRACE] = ACTIONS(761), + [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), + [sym_primitive_type] = ACTIONS(53), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [anon_sym_if] = ACTIONS(635), + [anon_sym_switch] = ACTIONS(637), + [anon_sym_case] = ACTIONS(639), + [anon_sym_default] = ACTIONS(641), + [anon_sym_while] = ACTIONS(643), + [anon_sym_do] = ACTIONS(645), + [anon_sym_for] = ACTIONS(647), + [anon_sym_return] = ACTIONS(649), + [anon_sym_break] = ACTIONS(651), + [anon_sym_continue] = ACTIONS(653), + [anon_sym_goto] = ACTIONS(655), + [anon_sym___try] = ACTIONS(657), + [anon_sym___leave] = ACTIONS(659), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [sym_number_literal] = ACTIONS(161), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(163), + [sym_false] = ACTIONS(163), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [42] = { - [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(392), - [sym_declaration] = STATE(35), - [sym_type_definition] = STATE(35), - [sym__declaration_modifiers] = STATE(861), - [sym__declaration_specifiers] = STATE(1483), - [sym_linkage_specification] = STATE(35), - [sym_attribute_specifier] = STATE(861), - [sym_attribute_declaration] = STATE(504), - [sym_ms_declspec_modifier] = STATE(861), - [sym_ms_call_modifier] = STATE(851), - [sym_compound_statement] = STATE(35), - [sym_storage_class_specifier] = STATE(861), - [sym_type_qualifier] = STATE(861), - [sym__type_specifier] = STATE(1120), - [sym_sized_type_specifier] = STATE(1106), - [sym_enum_specifier] = STATE(1106), - [sym_struct_specifier] = STATE(1106), - [sym_union_specifier] = STATE(1106), - [sym_attributed_statement] = STATE(35), - [sym_labeled_statement] = STATE(35), - [sym_expression_statement] = STATE(35), - [sym_if_statement] = STATE(35), - [sym_switch_statement] = STATE(35), - [sym_case_statement] = STATE(35), - [sym_while_statement] = STATE(35), - [sym_do_statement] = STATE(35), - [sym_for_statement] = STATE(35), - [sym_return_statement] = STATE(35), - [sym_break_statement] = STATE(35), - [sym_continue_statement] = STATE(35), - [sym_goto_statement] = STATE(35), - [sym_seh_try_statement] = STATE(35), - [sym_seh_leave_statement] = STATE(35), - [sym__expression] = STATE(1221), - [sym__expression_not_binary] = STATE(792), - [sym_comma_expression] = STATE(2106), - [sym_conditional_expression] = STATE(792), - [sym_assignment_expression] = STATE(792), - [sym_pointer_expression] = STATE(901), - [sym_unary_expression] = STATE(792), - [sym_binary_expression] = STATE(792), - [sym_update_expression] = STATE(792), - [sym_cast_expression] = STATE(792), - [sym_sizeof_expression] = STATE(792), - [sym_alignof_expression] = STATE(792), - [sym_offsetof_expression] = STATE(792), - [sym_generic_expression] = STATE(792), - [sym_subscript_expression] = STATE(901), - [sym_call_expression] = STATE(901), - [sym_gnu_asm_expression] = STATE(792), - [sym_field_expression] = STATE(901), - [sym_compound_literal_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(901), - [sym_char_literal] = STATE(792), - [sym_concatenated_string] = STATE(792), - [sym_string_literal] = STATE(675), - [sym_null] = STATE(792), - [sym__empty_declaration] = STATE(35), - [sym_macro_type_specifier] = STATE(1106), - [aux_sym_preproc_if_repeat1] = STATE(35), - [aux_sym__declaration_specifiers_repeat1] = STATE(861), - [aux_sym_attributed_declarator_repeat1] = STATE(445), - [aux_sym_sized_type_specifier_repeat1] = STATE(1113), - [sym_identifier] = ACTIONS(484), - [aux_sym_preproc_include_token1] = ACTIONS(486), - [aux_sym_preproc_def_token1] = ACTIONS(488), - [aux_sym_preproc_if_token1] = ACTIONS(490), - [aux_sym_preproc_ifdef_token1] = ACTIONS(492), - [aux_sym_preproc_ifdef_token2] = ACTIONS(492), - [sym_preproc_directive] = ACTIONS(494), + [46] = { + [sym_preproc_include] = STATE(34), + [sym_preproc_def] = STATE(34), + [sym_preproc_function_def] = STATE(34), + [sym_preproc_call] = STATE(34), + [sym_preproc_if] = STATE(34), + [sym_preproc_ifdef] = STATE(34), + [sym_function_definition] = STATE(34), + [sym__old_style_function_definition] = STATE(355), + [sym_declaration] = STATE(34), + [sym_type_definition] = STATE(34), + [sym__declaration_modifiers] = STATE(855), + [sym__declaration_specifiers] = STATE(1524), + [sym_linkage_specification] = STATE(34), + [sym_attribute_specifier] = STATE(855), + [sym_attribute_declaration] = STATE(495), + [sym_ms_declspec_modifier] = STATE(855), + [sym_ms_call_modifier] = STATE(844), + [sym_compound_statement] = STATE(34), + [sym_storage_class_specifier] = STATE(855), + [sym_type_qualifier] = STATE(855), + [sym__type_specifier] = STATE(1122), + [sym_sized_type_specifier] = STATE(1069), + [sym_enum_specifier] = STATE(1069), + [sym_struct_specifier] = STATE(1069), + [sym_union_specifier] = STATE(1069), + [sym_attributed_statement] = STATE(34), + [sym_labeled_statement] = STATE(34), + [sym_expression_statement] = STATE(34), + [sym_if_statement] = STATE(34), + [sym_switch_statement] = STATE(34), + [sym_case_statement] = STATE(34), + [sym_while_statement] = STATE(34), + [sym_do_statement] = STATE(34), + [sym_for_statement] = STATE(34), + [sym_return_statement] = STATE(34), + [sym_break_statement] = STATE(34), + [sym_continue_statement] = STATE(34), + [sym_goto_statement] = STATE(34), + [sym_seh_try_statement] = STATE(34), + [sym_seh_leave_statement] = STATE(34), + [sym__expression] = STATE(1272), + [sym__expression_not_binary] = STATE(809), + [sym_comma_expression] = STATE(2198), + [sym_conditional_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_pointer_expression] = STATE(877), + [sym_unary_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_update_expression] = STATE(809), + [sym_cast_expression] = STATE(809), + [sym_sizeof_expression] = STATE(809), + [sym_alignof_expression] = STATE(809), + [sym_offsetof_expression] = STATE(809), + [sym_generic_expression] = STATE(809), + [sym_subscript_expression] = STATE(877), + [sym_call_expression] = STATE(877), + [sym_gnu_asm_expression] = STATE(809), + [sym_field_expression] = STATE(877), + [sym_compound_literal_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(877), + [sym_char_literal] = STATE(809), + [sym_concatenated_string] = STATE(809), + [sym_string_literal] = STATE(573), + [sym_null] = STATE(809), + [sym__empty_declaration] = STATE(34), + [sym_macro_type_specifier] = STATE(1069), + [aux_sym_preproc_if_repeat1] = STATE(34), + [aux_sym__declaration_specifiers_repeat1] = STATE(855), + [aux_sym_attributed_declarator_repeat1] = STATE(478), + [aux_sym_sized_type_specifier_repeat1] = STATE(1085), + [sym_identifier] = ACTIONS(611), + [aux_sym_preproc_include_token1] = ACTIONS(613), + [aux_sym_preproc_def_token1] = ACTIONS(615), + [aux_sym_preproc_if_token1] = ACTIONS(617), + [aux_sym_preproc_ifdef_token1] = ACTIONS(619), + [aux_sym_preproc_ifdef_token2] = ACTIONS(619), + [sym_preproc_directive] = ACTIONS(621), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -22797,337 +23946,173 @@ 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(496), - [anon_sym___extension__] = ACTIONS(498), - [anon_sym_typedef] = ACTIONS(500), - [anon_sym_extern] = ACTIONS(502), + [anon_sym_SEMI] = ACTIONS(623), + [anon_sym___extension__] = ACTIONS(625), + [anon_sym_typedef] = ACTIONS(627), + [anon_sym_extern] = ACTIONS(629), [anon_sym___attribute__] = ACTIONS(33), [anon_sym___scanf] = ACTIONS(35), [anon_sym___printf] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym___cdecl] = ACTIONS(41), - [anon_sym___clrcall] = ACTIONS(41), - [anon_sym___stdcall] = ACTIONS(41), - [anon_sym___fastcall] = ACTIONS(41), - [anon_sym___thiscall] = ACTIONS(41), - [anon_sym___vectorcall] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(504), - [anon_sym_RBRACE] = ACTIONS(632), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [sym_primitive_type] = ACTIONS(51), - [anon_sym_enum] = ACTIONS(53), - [anon_sym_struct] = ACTIONS(55), - [anon_sym_union] = ACTIONS(57), - [anon_sym_if] = ACTIONS(508), - [anon_sym_switch] = ACTIONS(510), - [anon_sym_case] = ACTIONS(512), - [anon_sym_default] = ACTIONS(514), - [anon_sym_while] = ACTIONS(516), - [anon_sym_do] = ACTIONS(518), - [anon_sym_for] = ACTIONS(520), - [anon_sym_return] = ACTIONS(522), - [anon_sym_break] = ACTIONS(524), - [anon_sym_continue] = ACTIONS(526), - [anon_sym_goto] = ACTIONS(528), - [anon_sym___try] = ACTIONS(530), - [anon_sym___leave] = ACTIONS(532), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(83), - [anon_sym___alignof__] = ACTIONS(85), - [anon_sym___alignof] = ACTIONS(85), - [anon_sym__alignof] = ACTIONS(85), - [anon_sym_alignof] = ACTIONS(85), - [anon_sym__Alignof] = ACTIONS(85), - [anon_sym_offsetof] = ACTIONS(87), - [anon_sym__Generic] = ACTIONS(89), - [anon_sym_asm] = ACTIONS(91), - [anon_sym___asm__] = ACTIONS(91), - [sym_number_literal] = ACTIONS(159), - [anon_sym_L_SQUOTE] = ACTIONS(95), - [anon_sym_u_SQUOTE] = ACTIONS(95), - [anon_sym_U_SQUOTE] = ACTIONS(95), - [anon_sym_u8_SQUOTE] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(95), - [anon_sym_L_DQUOTE] = ACTIONS(97), - [anon_sym_u_DQUOTE] = ACTIONS(97), - [anon_sym_U_DQUOTE] = ACTIONS(97), - [anon_sym_u8_DQUOTE] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(97), - [sym_true] = ACTIONS(161), - [sym_false] = ACTIONS(161), - [anon_sym_NULL] = ACTIONS(101), - [anon_sym_nullptr] = ACTIONS(101), + [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(631), + [anon_sym_RBRACE] = ACTIONS(763), + [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), + [sym_primitive_type] = ACTIONS(53), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [anon_sym_if] = ACTIONS(635), + [anon_sym_switch] = ACTIONS(637), + [anon_sym_case] = ACTIONS(639), + [anon_sym_default] = ACTIONS(641), + [anon_sym_while] = ACTIONS(643), + [anon_sym_do] = ACTIONS(645), + [anon_sym_for] = ACTIONS(647), + [anon_sym_return] = ACTIONS(649), + [anon_sym_break] = ACTIONS(651), + [anon_sym_continue] = ACTIONS(653), + [anon_sym_goto] = ACTIONS(655), + [anon_sym___try] = ACTIONS(657), + [anon_sym___leave] = ACTIONS(659), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [sym_number_literal] = ACTIONS(161), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(163), + [sym_false] = ACTIONS(163), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [43] = { - [sym_preproc_include] = STATE(47), - [sym_preproc_def] = STATE(47), - [sym_preproc_function_def] = STATE(47), - [sym_preproc_call] = STATE(47), - [sym_preproc_if] = STATE(47), - [sym_preproc_ifdef] = STATE(47), - [sym_function_definition] = STATE(47), - [sym__old_style_function_definition] = STATE(379), - [sym_declaration] = STATE(47), - [sym_type_definition] = STATE(47), - [sym__declaration_modifiers] = STATE(861), - [sym__declaration_specifiers] = STATE(1488), - [sym_linkage_specification] = STATE(47), - [sym_attribute_specifier] = STATE(861), - [sym_attribute_declaration] = STATE(504), - [sym_ms_declspec_modifier] = STATE(861), + [47] = { + [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(360), + [sym_declaration] = STATE(29), + [sym_type_definition] = STATE(29), + [sym__declaration_modifiers] = STATE(855), + [sym__declaration_specifiers] = STATE(1526), + [sym_linkage_specification] = STATE(29), + [sym_attribute_specifier] = STATE(855), + [sym_attribute_declaration] = STATE(495), + [sym_ms_declspec_modifier] = STATE(855), [sym_ms_call_modifier] = STATE(850), - [sym_compound_statement] = STATE(47), - [sym_storage_class_specifier] = STATE(861), - [sym_type_qualifier] = STATE(861), - [sym__type_specifier] = STATE(1122), - [sym_sized_type_specifier] = STATE(1106), - [sym_enum_specifier] = STATE(1106), - [sym_struct_specifier] = STATE(1106), - [sym_union_specifier] = STATE(1106), - [sym_attributed_statement] = STATE(47), - [sym_labeled_statement] = STATE(47), - [sym_expression_statement] = STATE(47), - [sym_if_statement] = STATE(47), - [sym_switch_statement] = STATE(47), - [sym_case_statement] = STATE(47), - [sym_while_statement] = STATE(47), - [sym_do_statement] = STATE(47), - [sym_for_statement] = STATE(47), - [sym_return_statement] = STATE(47), - [sym_break_statement] = STATE(47), - [sym_continue_statement] = STATE(47), - [sym_goto_statement] = STATE(47), - [sym_seh_try_statement] = STATE(47), - [sym_seh_leave_statement] = STATE(47), - [sym__expression] = STATE(1229), - [sym__expression_not_binary] = STATE(792), - [sym_comma_expression] = STATE(1976), - [sym_conditional_expression] = STATE(792), - [sym_assignment_expression] = STATE(792), - [sym_pointer_expression] = STATE(901), - [sym_unary_expression] = STATE(792), - [sym_binary_expression] = STATE(792), - [sym_update_expression] = STATE(792), - [sym_cast_expression] = STATE(792), - [sym_sizeof_expression] = STATE(792), - [sym_alignof_expression] = STATE(792), - [sym_offsetof_expression] = STATE(792), - [sym_generic_expression] = STATE(792), - [sym_subscript_expression] = STATE(901), - [sym_call_expression] = STATE(901), - [sym_gnu_asm_expression] = STATE(792), - [sym_field_expression] = STATE(901), - [sym_compound_literal_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(901), - [sym_char_literal] = STATE(792), - [sym_concatenated_string] = STATE(792), - [sym_string_literal] = STATE(675), - [sym_null] = STATE(792), - [sym__empty_declaration] = STATE(47), - [sym_macro_type_specifier] = STATE(1106), - [aux_sym_preproc_if_repeat1] = STATE(47), - [aux_sym__declaration_specifiers_repeat1] = STATE(861), - [aux_sym_attributed_declarator_repeat1] = STATE(416), - [aux_sym_sized_type_specifier_repeat1] = STATE(1113), - [sym_identifier] = ACTIONS(634), - [aux_sym_preproc_include_token1] = ACTIONS(636), - [aux_sym_preproc_def_token1] = ACTIONS(638), - [aux_sym_preproc_if_token1] = ACTIONS(640), - [aux_sym_preproc_if_token2] = ACTIONS(642), - [aux_sym_preproc_ifdef_token1] = ACTIONS(644), - [aux_sym_preproc_ifdef_token2] = ACTIONS(644), - [sym_preproc_directive] = ACTIONS(646), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(648), - [anon_sym___extension__] = ACTIONS(650), - [anon_sym_typedef] = ACTIONS(652), - [anon_sym_extern] = ACTIONS(654), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym___scanf] = ACTIONS(35), - [anon_sym___printf] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym___cdecl] = ACTIONS(41), - [anon_sym___clrcall] = ACTIONS(41), - [anon_sym___stdcall] = ACTIONS(41), - [anon_sym___fastcall] = ACTIONS(41), - [anon_sym___thiscall] = ACTIONS(41), - [anon_sym___vectorcall] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(656), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [sym_primitive_type] = ACTIONS(51), - [anon_sym_enum] = ACTIONS(53), - [anon_sym_struct] = ACTIONS(55), - [anon_sym_union] = ACTIONS(57), - [anon_sym_if] = ACTIONS(658), - [anon_sym_switch] = ACTIONS(660), - [anon_sym_case] = ACTIONS(662), - [anon_sym_default] = ACTIONS(664), - [anon_sym_while] = ACTIONS(666), - [anon_sym_do] = ACTIONS(668), - [anon_sym_for] = ACTIONS(670), - [anon_sym_return] = ACTIONS(672), - [anon_sym_break] = ACTIONS(674), - [anon_sym_continue] = ACTIONS(676), - [anon_sym_goto] = ACTIONS(678), - [anon_sym___try] = ACTIONS(680), - [anon_sym___leave] = ACTIONS(682), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(83), - [anon_sym___alignof__] = ACTIONS(85), - [anon_sym___alignof] = ACTIONS(85), - [anon_sym__alignof] = ACTIONS(85), - [anon_sym_alignof] = ACTIONS(85), - [anon_sym__Alignof] = ACTIONS(85), - [anon_sym_offsetof] = ACTIONS(87), - [anon_sym__Generic] = ACTIONS(89), - [anon_sym_asm] = ACTIONS(91), - [anon_sym___asm__] = ACTIONS(91), - [sym_number_literal] = ACTIONS(159), - [anon_sym_L_SQUOTE] = ACTIONS(95), - [anon_sym_u_SQUOTE] = ACTIONS(95), - [anon_sym_U_SQUOTE] = ACTIONS(95), - [anon_sym_u8_SQUOTE] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(95), - [anon_sym_L_DQUOTE] = ACTIONS(97), - [anon_sym_u_DQUOTE] = ACTIONS(97), - [anon_sym_U_DQUOTE] = ACTIONS(97), - [anon_sym_u8_DQUOTE] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(97), - [sym_true] = ACTIONS(161), - [sym_false] = ACTIONS(161), - [anon_sym_NULL] = ACTIONS(101), - [anon_sym_nullptr] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - }, - [44] = { - [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(392), - [sym_declaration] = STATE(36), - [sym_type_definition] = STATE(36), - [sym__declaration_modifiers] = STATE(861), - [sym__declaration_specifiers] = STATE(1483), - [sym_linkage_specification] = STATE(36), - [sym_attribute_specifier] = STATE(861), - [sym_attribute_declaration] = STATE(504), - [sym_ms_declspec_modifier] = STATE(861), - [sym_ms_call_modifier] = STATE(851), - [sym_compound_statement] = STATE(36), - [sym_storage_class_specifier] = STATE(861), - [sym_type_qualifier] = STATE(861), - [sym__type_specifier] = STATE(1120), - [sym_sized_type_specifier] = STATE(1106), - [sym_enum_specifier] = STATE(1106), - [sym_struct_specifier] = STATE(1106), - [sym_union_specifier] = STATE(1106), - [sym_attributed_statement] = STATE(36), - [sym_labeled_statement] = STATE(36), - [sym_expression_statement] = STATE(36), - [sym_if_statement] = STATE(36), - [sym_switch_statement] = STATE(36), - [sym_case_statement] = STATE(36), - [sym_while_statement] = STATE(36), - [sym_do_statement] = STATE(36), - [sym_for_statement] = STATE(36), - [sym_return_statement] = STATE(36), - [sym_break_statement] = STATE(36), - [sym_continue_statement] = STATE(36), - [sym_goto_statement] = STATE(36), - [sym_seh_try_statement] = STATE(36), - [sym_seh_leave_statement] = STATE(36), - [sym__expression] = STATE(1221), - [sym__expression_not_binary] = STATE(792), - [sym_comma_expression] = STATE(2106), - [sym_conditional_expression] = STATE(792), - [sym_assignment_expression] = STATE(792), - [sym_pointer_expression] = STATE(901), - [sym_unary_expression] = STATE(792), - [sym_binary_expression] = STATE(792), - [sym_update_expression] = STATE(792), - [sym_cast_expression] = STATE(792), - [sym_sizeof_expression] = STATE(792), - [sym_alignof_expression] = STATE(792), - [sym_offsetof_expression] = STATE(792), - [sym_generic_expression] = STATE(792), - [sym_subscript_expression] = STATE(901), - [sym_call_expression] = STATE(901), - [sym_gnu_asm_expression] = STATE(792), - [sym_field_expression] = STATE(901), - [sym_compound_literal_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(901), - [sym_char_literal] = STATE(792), - [sym_concatenated_string] = STATE(792), - [sym_string_literal] = STATE(675), - [sym_null] = STATE(792), - [sym__empty_declaration] = STATE(36), - [sym_macro_type_specifier] = STATE(1106), - [aux_sym_preproc_if_repeat1] = STATE(36), - [aux_sym__declaration_specifiers_repeat1] = STATE(861), - [aux_sym_attributed_declarator_repeat1] = STATE(445), - [aux_sym_sized_type_specifier_repeat1] = STATE(1113), - [sym_identifier] = ACTIONS(484), - [aux_sym_preproc_include_token1] = ACTIONS(486), - [aux_sym_preproc_def_token1] = ACTIONS(488), - [aux_sym_preproc_if_token1] = ACTIONS(490), - [aux_sym_preproc_ifdef_token1] = ACTIONS(492), - [aux_sym_preproc_ifdef_token2] = ACTIONS(492), - [sym_preproc_directive] = ACTIONS(494), + [sym_compound_statement] = STATE(29), + [sym_storage_class_specifier] = STATE(855), + [sym_type_qualifier] = STATE(855), + [sym__type_specifier] = STATE(1119), + [sym_sized_type_specifier] = STATE(1069), + [sym_enum_specifier] = STATE(1069), + [sym_struct_specifier] = STATE(1069), + [sym_union_specifier] = STATE(1069), + [sym_attributed_statement] = STATE(29), + [sym_labeled_statement] = STATE(29), + [sym_expression_statement] = STATE(29), + [sym_if_statement] = STATE(29), + [sym_switch_statement] = STATE(29), + [sym_case_statement] = STATE(29), + [sym_while_statement] = STATE(29), + [sym_do_statement] = STATE(29), + [sym_for_statement] = STATE(29), + [sym_return_statement] = STATE(29), + [sym_break_statement] = STATE(29), + [sym_continue_statement] = STATE(29), + [sym_goto_statement] = STATE(29), + [sym_seh_try_statement] = STATE(29), + [sym_seh_leave_statement] = STATE(29), + [sym__expression] = STATE(1269), + [sym__expression_not_binary] = STATE(809), + [sym_comma_expression] = STATE(2019), + [sym_conditional_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_pointer_expression] = STATE(877), + [sym_unary_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_update_expression] = STATE(809), + [sym_cast_expression] = STATE(809), + [sym_sizeof_expression] = STATE(809), + [sym_alignof_expression] = STATE(809), + [sym_offsetof_expression] = STATE(809), + [sym_generic_expression] = STATE(809), + [sym_subscript_expression] = STATE(877), + [sym_call_expression] = STATE(877), + [sym_gnu_asm_expression] = STATE(809), + [sym_field_expression] = STATE(877), + [sym_compound_literal_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(877), + [sym_char_literal] = STATE(809), + [sym_concatenated_string] = STATE(809), + [sym_string_literal] = STATE(573), + [sym_null] = STATE(809), + [sym__empty_declaration] = STATE(29), + [sym_macro_type_specifier] = STATE(1069), + [aux_sym_preproc_if_repeat1] = STATE(29), + [aux_sym__declaration_specifiers_repeat1] = STATE(855), + [aux_sym_attributed_declarator_repeat1] = STATE(450), + [aux_sym_sized_type_specifier_repeat1] = STATE(1085), + [sym_identifier] = ACTIONS(489), + [aux_sym_preproc_include_token1] = ACTIONS(491), + [aux_sym_preproc_def_token1] = ACTIONS(493), + [aux_sym_preproc_if_token1] = ACTIONS(495), + [aux_sym_preproc_if_token2] = ACTIONS(765), + [aux_sym_preproc_ifdef_token1] = ACTIONS(499), + [aux_sym_preproc_ifdef_token2] = ACTIONS(499), + [sym_preproc_directive] = ACTIONS(501), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -23135,91 +24120,94 @@ 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(496), - [anon_sym___extension__] = ACTIONS(498), - [anon_sym_typedef] = ACTIONS(500), - [anon_sym_extern] = ACTIONS(502), + [anon_sym_SEMI] = ACTIONS(503), + [anon_sym___extension__] = ACTIONS(505), + [anon_sym_typedef] = ACTIONS(507), + [anon_sym_extern] = ACTIONS(509), [anon_sym___attribute__] = ACTIONS(33), [anon_sym___scanf] = ACTIONS(35), [anon_sym___printf] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym___cdecl] = ACTIONS(41), - [anon_sym___clrcall] = ACTIONS(41), - [anon_sym___stdcall] = ACTIONS(41), - [anon_sym___fastcall] = ACTIONS(41), - [anon_sym___thiscall] = ACTIONS(41), - [anon_sym___vectorcall] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(504), - [anon_sym_RBRACE] = ACTIONS(684), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [sym_primitive_type] = ACTIONS(51), - [anon_sym_enum] = ACTIONS(53), - [anon_sym_struct] = ACTIONS(55), - [anon_sym_union] = ACTIONS(57), - [anon_sym_if] = ACTIONS(508), - [anon_sym_switch] = ACTIONS(510), - [anon_sym_case] = ACTIONS(512), - [anon_sym_default] = ACTIONS(514), - [anon_sym_while] = ACTIONS(516), - [anon_sym_do] = ACTIONS(518), - [anon_sym_for] = ACTIONS(520), - [anon_sym_return] = ACTIONS(522), - [anon_sym_break] = ACTIONS(524), - [anon_sym_continue] = ACTIONS(526), - [anon_sym_goto] = ACTIONS(528), - [anon_sym___try] = ACTIONS(530), - [anon_sym___leave] = ACTIONS(532), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(83), - [anon_sym___alignof__] = ACTIONS(85), - [anon_sym___alignof] = ACTIONS(85), - [anon_sym__alignof] = ACTIONS(85), - [anon_sym_alignof] = ACTIONS(85), - [anon_sym__Alignof] = ACTIONS(85), - [anon_sym_offsetof] = ACTIONS(87), - [anon_sym__Generic] = ACTIONS(89), - [anon_sym_asm] = ACTIONS(91), - [anon_sym___asm__] = ACTIONS(91), - [sym_number_literal] = ACTIONS(159), - [anon_sym_L_SQUOTE] = ACTIONS(95), - [anon_sym_u_SQUOTE] = ACTIONS(95), - [anon_sym_U_SQUOTE] = ACTIONS(95), - [anon_sym_u8_SQUOTE] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(95), - [anon_sym_L_DQUOTE] = ACTIONS(97), - [anon_sym_u_DQUOTE] = ACTIONS(97), - [anon_sym_U_DQUOTE] = ACTIONS(97), - [anon_sym_u8_DQUOTE] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(97), - [sym_true] = ACTIONS(161), - [sym_false] = ACTIONS(161), - [anon_sym_NULL] = ACTIONS(101), - [anon_sym_nullptr] = ACTIONS(101), + [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(511), + [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), + [sym_primitive_type] = ACTIONS(53), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [anon_sym_if] = ACTIONS(513), + [anon_sym_switch] = ACTIONS(515), + [anon_sym_case] = ACTIONS(517), + [anon_sym_default] = ACTIONS(519), + [anon_sym_while] = ACTIONS(521), + [anon_sym_do] = ACTIONS(523), + [anon_sym_for] = ACTIONS(525), + [anon_sym_return] = ACTIONS(527), + [anon_sym_break] = ACTIONS(529), + [anon_sym_continue] = ACTIONS(531), + [anon_sym_goto] = ACTIONS(533), + [anon_sym___try] = ACTIONS(535), + [anon_sym___leave] = ACTIONS(537), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [sym_number_literal] = ACTIONS(161), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(163), + [sym_false] = ACTIONS(163), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [45] = { + [48] = { [sym_preproc_include] = STATE(45), [sym_preproc_def] = STATE(45), [sym_preproc_function_def] = STATE(45), @@ -23227,24 +24215,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_if] = STATE(45), [sym_preproc_ifdef] = STATE(45), [sym_function_definition] = STATE(45), - [sym__old_style_function_definition] = STATE(379), + [sym__old_style_function_definition] = STATE(355), [sym_declaration] = STATE(45), [sym_type_definition] = STATE(45), - [sym__declaration_modifiers] = STATE(861), - [sym__declaration_specifiers] = STATE(1488), + [sym__declaration_modifiers] = STATE(855), + [sym__declaration_specifiers] = STATE(1524), [sym_linkage_specification] = STATE(45), - [sym_attribute_specifier] = STATE(861), - [sym_attribute_declaration] = STATE(504), - [sym_ms_declspec_modifier] = STATE(861), - [sym_ms_call_modifier] = STATE(850), + [sym_attribute_specifier] = STATE(855), + [sym_attribute_declaration] = STATE(495), + [sym_ms_declspec_modifier] = STATE(855), + [sym_ms_call_modifier] = STATE(844), [sym_compound_statement] = STATE(45), - [sym_storage_class_specifier] = STATE(861), - [sym_type_qualifier] = STATE(861), + [sym_storage_class_specifier] = STATE(855), + [sym_type_qualifier] = STATE(855), [sym__type_specifier] = STATE(1122), - [sym_sized_type_specifier] = STATE(1106), - [sym_enum_specifier] = STATE(1106), - [sym_struct_specifier] = STATE(1106), - [sym_union_specifier] = STATE(1106), + [sym_sized_type_specifier] = STATE(1069), + [sym_enum_specifier] = STATE(1069), + [sym_struct_specifier] = STATE(1069), + [sym_union_specifier] = STATE(1069), [sym_attributed_statement] = STATE(45), [sym_labeled_statement] = STATE(45), [sym_expression_statement] = STATE(45), @@ -23260,212 +24248,43 @@ 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(1229), - [sym__expression_not_binary] = STATE(792), - [sym_comma_expression] = STATE(1976), - [sym_conditional_expression] = STATE(792), - [sym_assignment_expression] = STATE(792), - [sym_pointer_expression] = STATE(901), - [sym_unary_expression] = STATE(792), - [sym_binary_expression] = STATE(792), - [sym_update_expression] = STATE(792), - [sym_cast_expression] = STATE(792), - [sym_sizeof_expression] = STATE(792), - [sym_alignof_expression] = STATE(792), - [sym_offsetof_expression] = STATE(792), - [sym_generic_expression] = STATE(792), - [sym_subscript_expression] = STATE(901), - [sym_call_expression] = STATE(901), - [sym_gnu_asm_expression] = STATE(792), - [sym_field_expression] = STATE(901), - [sym_compound_literal_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(901), - [sym_char_literal] = STATE(792), - [sym_concatenated_string] = STATE(792), - [sym_string_literal] = STATE(675), - [sym_null] = STATE(792), + [sym__expression] = STATE(1272), + [sym__expression_not_binary] = STATE(809), + [sym_comma_expression] = STATE(2198), + [sym_conditional_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_pointer_expression] = STATE(877), + [sym_unary_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_update_expression] = STATE(809), + [sym_cast_expression] = STATE(809), + [sym_sizeof_expression] = STATE(809), + [sym_alignof_expression] = STATE(809), + [sym_offsetof_expression] = STATE(809), + [sym_generic_expression] = STATE(809), + [sym_subscript_expression] = STATE(877), + [sym_call_expression] = STATE(877), + [sym_gnu_asm_expression] = STATE(809), + [sym_field_expression] = STATE(877), + [sym_compound_literal_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(877), + [sym_char_literal] = STATE(809), + [sym_concatenated_string] = STATE(809), + [sym_string_literal] = STATE(573), + [sym_null] = STATE(809), [sym__empty_declaration] = STATE(45), - [sym_macro_type_specifier] = STATE(1106), + [sym_macro_type_specifier] = STATE(1069), [aux_sym_preproc_if_repeat1] = STATE(45), - [aux_sym__declaration_specifiers_repeat1] = STATE(861), - [aux_sym_attributed_declarator_repeat1] = STATE(416), - [aux_sym_sized_type_specifier_repeat1] = STATE(1113), - [sym_identifier] = ACTIONS(686), - [aux_sym_preproc_include_token1] = ACTIONS(689), - [aux_sym_preproc_def_token1] = ACTIONS(692), - [aux_sym_preproc_if_token1] = ACTIONS(695), - [aux_sym_preproc_if_token2] = ACTIONS(247), - [aux_sym_preproc_ifdef_token1] = ACTIONS(698), - [aux_sym_preproc_ifdef_token2] = ACTIONS(698), - [sym_preproc_directive] = ACTIONS(701), - [anon_sym_LPAREN2] = ACTIONS(255), - [anon_sym_BANG] = ACTIONS(258), - [anon_sym_TILDE] = ACTIONS(258), - [anon_sym_DASH] = ACTIONS(261), - [anon_sym_PLUS] = ACTIONS(261), - [anon_sym_STAR] = ACTIONS(264), - [anon_sym_AMP] = ACTIONS(264), - [anon_sym_SEMI] = ACTIONS(704), - [anon_sym___extension__] = ACTIONS(707), - [anon_sym_typedef] = ACTIONS(710), - [anon_sym_extern] = ACTIONS(713), - [anon_sym___attribute__] = ACTIONS(279), - [anon_sym___scanf] = ACTIONS(282), - [anon_sym___printf] = ACTIONS(282), - [anon_sym_LBRACK_LBRACK] = ACTIONS(285), - [anon_sym___declspec] = ACTIONS(288), - [anon_sym___cdecl] = ACTIONS(291), - [anon_sym___clrcall] = ACTIONS(291), - [anon_sym___stdcall] = ACTIONS(291), - [anon_sym___fastcall] = ACTIONS(291), - [anon_sym___thiscall] = ACTIONS(291), - [anon_sym___vectorcall] = ACTIONS(291), - [anon_sym_LBRACE] = ACTIONS(716), - [anon_sym_signed] = ACTIONS(297), - [anon_sym_unsigned] = ACTIONS(297), - [anon_sym_long] = ACTIONS(297), - [anon_sym_short] = ACTIONS(297), - [anon_sym_static] = ACTIONS(300), - [anon_sym_auto] = ACTIONS(300), - [anon_sym_register] = ACTIONS(300), - [anon_sym_inline] = ACTIONS(300), - [anon_sym___inline] = ACTIONS(300), - [anon_sym___inline__] = ACTIONS(300), - [anon_sym___forceinline] = ACTIONS(300), - [anon_sym_thread_local] = ACTIONS(300), - [anon_sym___thread] = ACTIONS(300), - [anon_sym_const] = ACTIONS(303), - [anon_sym_constexpr] = ACTIONS(303), - [anon_sym_volatile] = ACTIONS(303), - [anon_sym_restrict] = ACTIONS(303), - [anon_sym___restrict__] = ACTIONS(303), - [anon_sym__Atomic] = ACTIONS(303), - [anon_sym__Noreturn] = ACTIONS(303), - [anon_sym_noreturn] = ACTIONS(303), - [sym_primitive_type] = ACTIONS(306), - [anon_sym_enum] = ACTIONS(309), - [anon_sym_struct] = ACTIONS(312), - [anon_sym_union] = ACTIONS(315), - [anon_sym_if] = ACTIONS(719), - [anon_sym_switch] = ACTIONS(722), - [anon_sym_case] = ACTIONS(725), - [anon_sym_default] = ACTIONS(728), - [anon_sym_while] = ACTIONS(731), - [anon_sym_do] = ACTIONS(734), - [anon_sym_for] = ACTIONS(737), - [anon_sym_return] = ACTIONS(740), - [anon_sym_break] = ACTIONS(743), - [anon_sym_continue] = ACTIONS(746), - [anon_sym_goto] = ACTIONS(749), - [anon_sym___try] = ACTIONS(752), - [anon_sym___leave] = ACTIONS(755), - [anon_sym_DASH_DASH] = ACTIONS(357), - [anon_sym_PLUS_PLUS] = ACTIONS(357), - [anon_sym_sizeof] = ACTIONS(360), - [anon_sym___alignof__] = ACTIONS(363), - [anon_sym___alignof] = ACTIONS(363), - [anon_sym__alignof] = ACTIONS(363), - [anon_sym_alignof] = ACTIONS(363), - [anon_sym__Alignof] = ACTIONS(363), - [anon_sym_offsetof] = ACTIONS(366), - [anon_sym__Generic] = ACTIONS(369), - [anon_sym_asm] = ACTIONS(372), - [anon_sym___asm__] = ACTIONS(372), - [sym_number_literal] = ACTIONS(375), - [anon_sym_L_SQUOTE] = ACTIONS(378), - [anon_sym_u_SQUOTE] = ACTIONS(378), - [anon_sym_U_SQUOTE] = ACTIONS(378), - [anon_sym_u8_SQUOTE] = ACTIONS(378), - [anon_sym_SQUOTE] = ACTIONS(378), - [anon_sym_L_DQUOTE] = ACTIONS(381), - [anon_sym_u_DQUOTE] = ACTIONS(381), - [anon_sym_U_DQUOTE] = ACTIONS(381), - [anon_sym_u8_DQUOTE] = ACTIONS(381), - [anon_sym_DQUOTE] = ACTIONS(381), - [sym_true] = ACTIONS(384), - [sym_false] = ACTIONS(384), - [anon_sym_NULL] = ACTIONS(387), - [anon_sym_nullptr] = ACTIONS(387), - [sym_comment] = ACTIONS(3), - }, - [46] = { - [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(392), - [sym_declaration] = STATE(32), - [sym_type_definition] = STATE(32), - [sym__declaration_modifiers] = STATE(861), - [sym__declaration_specifiers] = STATE(1483), - [sym_linkage_specification] = STATE(32), - [sym_attribute_specifier] = STATE(861), - [sym_attribute_declaration] = STATE(504), - [sym_ms_declspec_modifier] = STATE(861), - [sym_ms_call_modifier] = STATE(851), - [sym_compound_statement] = STATE(32), - [sym_storage_class_specifier] = STATE(861), - [sym_type_qualifier] = STATE(861), - [sym__type_specifier] = STATE(1120), - [sym_sized_type_specifier] = STATE(1106), - [sym_enum_specifier] = STATE(1106), - [sym_struct_specifier] = STATE(1106), - [sym_union_specifier] = STATE(1106), - [sym_attributed_statement] = STATE(32), - [sym_labeled_statement] = STATE(32), - [sym_expression_statement] = STATE(32), - [sym_if_statement] = STATE(32), - [sym_switch_statement] = STATE(32), - [sym_case_statement] = STATE(32), - [sym_while_statement] = STATE(32), - [sym_do_statement] = STATE(32), - [sym_for_statement] = STATE(32), - [sym_return_statement] = STATE(32), - [sym_break_statement] = STATE(32), - [sym_continue_statement] = STATE(32), - [sym_goto_statement] = STATE(32), - [sym_seh_try_statement] = STATE(32), - [sym_seh_leave_statement] = STATE(32), - [sym__expression] = STATE(1221), - [sym__expression_not_binary] = STATE(792), - [sym_comma_expression] = STATE(2106), - [sym_conditional_expression] = STATE(792), - [sym_assignment_expression] = STATE(792), - [sym_pointer_expression] = STATE(901), - [sym_unary_expression] = STATE(792), - [sym_binary_expression] = STATE(792), - [sym_update_expression] = STATE(792), - [sym_cast_expression] = STATE(792), - [sym_sizeof_expression] = STATE(792), - [sym_alignof_expression] = STATE(792), - [sym_offsetof_expression] = STATE(792), - [sym_generic_expression] = STATE(792), - [sym_subscript_expression] = STATE(901), - [sym_call_expression] = STATE(901), - [sym_gnu_asm_expression] = STATE(792), - [sym_field_expression] = STATE(901), - [sym_compound_literal_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(901), - [sym_char_literal] = STATE(792), - [sym_concatenated_string] = STATE(792), - [sym_string_literal] = STATE(675), - [sym_null] = STATE(792), - [sym__empty_declaration] = STATE(32), - [sym_macro_type_specifier] = STATE(1106), - [aux_sym_preproc_if_repeat1] = STATE(32), - [aux_sym__declaration_specifiers_repeat1] = STATE(861), - [aux_sym_attributed_declarator_repeat1] = STATE(445), - [aux_sym_sized_type_specifier_repeat1] = STATE(1113), - [sym_identifier] = ACTIONS(484), - [aux_sym_preproc_include_token1] = ACTIONS(486), - [aux_sym_preproc_def_token1] = ACTIONS(488), - [aux_sym_preproc_if_token1] = ACTIONS(490), - [aux_sym_preproc_ifdef_token1] = ACTIONS(492), - [aux_sym_preproc_ifdef_token2] = ACTIONS(492), - [sym_preproc_directive] = ACTIONS(494), + [aux_sym__declaration_specifiers_repeat1] = STATE(855), + [aux_sym_attributed_declarator_repeat1] = STATE(478), + [aux_sym_sized_type_specifier_repeat1] = STATE(1085), + [sym_identifier] = ACTIONS(611), + [aux_sym_preproc_include_token1] = ACTIONS(613), + [aux_sym_preproc_def_token1] = ACTIONS(615), + [aux_sym_preproc_if_token1] = ACTIONS(617), + [aux_sym_preproc_ifdef_token1] = ACTIONS(619), + [aux_sym_preproc_ifdef_token2] = ACTIONS(619), + [sym_preproc_directive] = ACTIONS(621), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -23473,169 +24292,172 @@ 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(496), - [anon_sym___extension__] = ACTIONS(498), - [anon_sym_typedef] = ACTIONS(500), - [anon_sym_extern] = ACTIONS(502), + [anon_sym_SEMI] = ACTIONS(623), + [anon_sym___extension__] = ACTIONS(625), + [anon_sym_typedef] = ACTIONS(627), + [anon_sym_extern] = ACTIONS(629), [anon_sym___attribute__] = ACTIONS(33), [anon_sym___scanf] = ACTIONS(35), [anon_sym___printf] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym___cdecl] = ACTIONS(41), - [anon_sym___clrcall] = ACTIONS(41), - [anon_sym___stdcall] = ACTIONS(41), - [anon_sym___fastcall] = ACTIONS(41), - [anon_sym___thiscall] = ACTIONS(41), - [anon_sym___vectorcall] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(504), - [anon_sym_RBRACE] = ACTIONS(758), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [sym_primitive_type] = ACTIONS(51), - [anon_sym_enum] = ACTIONS(53), - [anon_sym_struct] = ACTIONS(55), - [anon_sym_union] = ACTIONS(57), - [anon_sym_if] = ACTIONS(508), - [anon_sym_switch] = ACTIONS(510), - [anon_sym_case] = ACTIONS(512), - [anon_sym_default] = ACTIONS(514), - [anon_sym_while] = ACTIONS(516), - [anon_sym_do] = ACTIONS(518), - [anon_sym_for] = ACTIONS(520), - [anon_sym_return] = ACTIONS(522), - [anon_sym_break] = ACTIONS(524), - [anon_sym_continue] = ACTIONS(526), - [anon_sym_goto] = ACTIONS(528), - [anon_sym___try] = ACTIONS(530), - [anon_sym___leave] = ACTIONS(532), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(83), - [anon_sym___alignof__] = ACTIONS(85), - [anon_sym___alignof] = ACTIONS(85), - [anon_sym__alignof] = ACTIONS(85), - [anon_sym_alignof] = ACTIONS(85), - [anon_sym__Alignof] = ACTIONS(85), - [anon_sym_offsetof] = ACTIONS(87), - [anon_sym__Generic] = ACTIONS(89), - [anon_sym_asm] = ACTIONS(91), - [anon_sym___asm__] = ACTIONS(91), - [sym_number_literal] = ACTIONS(159), - [anon_sym_L_SQUOTE] = ACTIONS(95), - [anon_sym_u_SQUOTE] = ACTIONS(95), - [anon_sym_U_SQUOTE] = ACTIONS(95), - [anon_sym_u8_SQUOTE] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(95), - [anon_sym_L_DQUOTE] = ACTIONS(97), - [anon_sym_u_DQUOTE] = ACTIONS(97), - [anon_sym_U_DQUOTE] = ACTIONS(97), - [anon_sym_u8_DQUOTE] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(97), - [sym_true] = ACTIONS(161), - [sym_false] = ACTIONS(161), - [anon_sym_NULL] = ACTIONS(101), - [anon_sym_nullptr] = ACTIONS(101), + [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(631), + [anon_sym_RBRACE] = ACTIONS(767), + [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), + [sym_primitive_type] = ACTIONS(53), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [anon_sym_if] = ACTIONS(635), + [anon_sym_switch] = ACTIONS(637), + [anon_sym_case] = ACTIONS(639), + [anon_sym_default] = ACTIONS(641), + [anon_sym_while] = ACTIONS(643), + [anon_sym_do] = ACTIONS(645), + [anon_sym_for] = ACTIONS(647), + [anon_sym_return] = ACTIONS(649), + [anon_sym_break] = ACTIONS(651), + [anon_sym_continue] = ACTIONS(653), + [anon_sym_goto] = ACTIONS(655), + [anon_sym___try] = ACTIONS(657), + [anon_sym___leave] = ACTIONS(659), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [sym_number_literal] = ACTIONS(161), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(163), + [sym_false] = ACTIONS(163), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [47] = { - [sym_preproc_include] = STATE(45), - [sym_preproc_def] = STATE(45), - [sym_preproc_function_def] = STATE(45), - [sym_preproc_call] = STATE(45), - [sym_preproc_if] = STATE(45), - [sym_preproc_ifdef] = STATE(45), - [sym_function_definition] = STATE(45), - [sym__old_style_function_definition] = STATE(379), - [sym_declaration] = STATE(45), - [sym_type_definition] = STATE(45), - [sym__declaration_modifiers] = STATE(861), - [sym__declaration_specifiers] = STATE(1488), - [sym_linkage_specification] = STATE(45), - [sym_attribute_specifier] = STATE(861), - [sym_attribute_declaration] = STATE(504), - [sym_ms_declspec_modifier] = STATE(861), - [sym_ms_call_modifier] = STATE(850), - [sym_compound_statement] = STATE(45), - [sym_storage_class_specifier] = STATE(861), - [sym_type_qualifier] = STATE(861), + [49] = { + [sym_preproc_include] = STATE(30), + [sym_preproc_def] = STATE(30), + [sym_preproc_function_def] = STATE(30), + [sym_preproc_call] = STATE(30), + [sym_preproc_if] = STATE(30), + [sym_preproc_ifdef] = STATE(30), + [sym_function_definition] = STATE(30), + [sym__old_style_function_definition] = STATE(355), + [sym_declaration] = STATE(30), + [sym_type_definition] = STATE(30), + [sym__declaration_modifiers] = STATE(855), + [sym__declaration_specifiers] = STATE(1524), + [sym_linkage_specification] = STATE(30), + [sym_attribute_specifier] = STATE(855), + [sym_attribute_declaration] = STATE(495), + [sym_ms_declspec_modifier] = STATE(855), + [sym_ms_call_modifier] = STATE(844), + [sym_compound_statement] = STATE(30), + [sym_storage_class_specifier] = STATE(855), + [sym_type_qualifier] = STATE(855), [sym__type_specifier] = STATE(1122), - [sym_sized_type_specifier] = STATE(1106), - [sym_enum_specifier] = STATE(1106), - [sym_struct_specifier] = STATE(1106), - [sym_union_specifier] = STATE(1106), - [sym_attributed_statement] = STATE(45), - [sym_labeled_statement] = STATE(45), - [sym_expression_statement] = STATE(45), - [sym_if_statement] = STATE(45), - [sym_switch_statement] = STATE(45), - [sym_case_statement] = STATE(45), - [sym_while_statement] = STATE(45), - [sym_do_statement] = STATE(45), - [sym_for_statement] = STATE(45), - [sym_return_statement] = STATE(45), - [sym_break_statement] = STATE(45), - [sym_continue_statement] = STATE(45), - [sym_goto_statement] = STATE(45), - [sym_seh_try_statement] = STATE(45), - [sym_seh_leave_statement] = STATE(45), - [sym__expression] = STATE(1229), - [sym__expression_not_binary] = STATE(792), - [sym_comma_expression] = STATE(1976), - [sym_conditional_expression] = STATE(792), - [sym_assignment_expression] = STATE(792), - [sym_pointer_expression] = STATE(901), - [sym_unary_expression] = STATE(792), - [sym_binary_expression] = STATE(792), - [sym_update_expression] = STATE(792), - [sym_cast_expression] = STATE(792), - [sym_sizeof_expression] = STATE(792), - [sym_alignof_expression] = STATE(792), - [sym_offsetof_expression] = STATE(792), - [sym_generic_expression] = STATE(792), - [sym_subscript_expression] = STATE(901), - [sym_call_expression] = STATE(901), - [sym_gnu_asm_expression] = STATE(792), - [sym_field_expression] = STATE(901), - [sym_compound_literal_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(901), - [sym_char_literal] = STATE(792), - [sym_concatenated_string] = STATE(792), - [sym_string_literal] = STATE(675), - [sym_null] = STATE(792), - [sym__empty_declaration] = STATE(45), - [sym_macro_type_specifier] = STATE(1106), - [aux_sym_preproc_if_repeat1] = STATE(45), - [aux_sym__declaration_specifiers_repeat1] = STATE(861), - [aux_sym_attributed_declarator_repeat1] = STATE(416), - [aux_sym_sized_type_specifier_repeat1] = STATE(1113), - [sym_identifier] = ACTIONS(634), - [aux_sym_preproc_include_token1] = ACTIONS(636), - [aux_sym_preproc_def_token1] = ACTIONS(638), - [aux_sym_preproc_if_token1] = ACTIONS(640), - [aux_sym_preproc_if_token2] = ACTIONS(760), - [aux_sym_preproc_ifdef_token1] = ACTIONS(644), - [aux_sym_preproc_ifdef_token2] = ACTIONS(644), - [sym_preproc_directive] = ACTIONS(646), + [sym_sized_type_specifier] = STATE(1069), + [sym_enum_specifier] = STATE(1069), + [sym_struct_specifier] = STATE(1069), + [sym_union_specifier] = STATE(1069), + [sym_attributed_statement] = STATE(30), + [sym_labeled_statement] = STATE(30), + [sym_expression_statement] = STATE(30), + [sym_if_statement] = STATE(30), + [sym_switch_statement] = STATE(30), + [sym_case_statement] = STATE(30), + [sym_while_statement] = STATE(30), + [sym_do_statement] = STATE(30), + [sym_for_statement] = STATE(30), + [sym_return_statement] = STATE(30), + [sym_break_statement] = STATE(30), + [sym_continue_statement] = STATE(30), + [sym_goto_statement] = STATE(30), + [sym_seh_try_statement] = STATE(30), + [sym_seh_leave_statement] = STATE(30), + [sym__expression] = STATE(1272), + [sym__expression_not_binary] = STATE(809), + [sym_comma_expression] = STATE(2198), + [sym_conditional_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_pointer_expression] = STATE(877), + [sym_unary_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_update_expression] = STATE(809), + [sym_cast_expression] = STATE(809), + [sym_sizeof_expression] = STATE(809), + [sym_alignof_expression] = STATE(809), + [sym_offsetof_expression] = STATE(809), + [sym_generic_expression] = STATE(809), + [sym_subscript_expression] = STATE(877), + [sym_call_expression] = STATE(877), + [sym_gnu_asm_expression] = STATE(809), + [sym_field_expression] = STATE(877), + [sym_compound_literal_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(877), + [sym_char_literal] = STATE(809), + [sym_concatenated_string] = STATE(809), + [sym_string_literal] = STATE(573), + [sym_null] = STATE(809), + [sym__empty_declaration] = STATE(30), + [sym_macro_type_specifier] = STATE(1069), + [aux_sym_preproc_if_repeat1] = STATE(30), + [aux_sym__declaration_specifiers_repeat1] = STATE(855), + [aux_sym_attributed_declarator_repeat1] = STATE(478), + [aux_sym_sized_type_specifier_repeat1] = STATE(1085), + [sym_identifier] = ACTIONS(611), + [aux_sym_preproc_include_token1] = ACTIONS(613), + [aux_sym_preproc_def_token1] = ACTIONS(615), + [aux_sym_preproc_if_token1] = ACTIONS(617), + [aux_sym_preproc_ifdef_token1] = ACTIONS(619), + [aux_sym_preproc_ifdef_token2] = ACTIONS(619), + [sym_preproc_directive] = ACTIONS(621), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -23643,167 +24465,172 @@ 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(648), - [anon_sym___extension__] = ACTIONS(650), - [anon_sym_typedef] = ACTIONS(652), - [anon_sym_extern] = ACTIONS(654), + [anon_sym_SEMI] = ACTIONS(623), + [anon_sym___extension__] = ACTIONS(625), + [anon_sym_typedef] = ACTIONS(627), + [anon_sym_extern] = ACTIONS(629), [anon_sym___attribute__] = ACTIONS(33), [anon_sym___scanf] = ACTIONS(35), [anon_sym___printf] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym___cdecl] = ACTIONS(41), - [anon_sym___clrcall] = ACTIONS(41), - [anon_sym___stdcall] = ACTIONS(41), - [anon_sym___fastcall] = ACTIONS(41), - [anon_sym___thiscall] = ACTIONS(41), - [anon_sym___vectorcall] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(656), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [sym_primitive_type] = ACTIONS(51), - [anon_sym_enum] = ACTIONS(53), - [anon_sym_struct] = ACTIONS(55), - [anon_sym_union] = ACTIONS(57), - [anon_sym_if] = ACTIONS(658), - [anon_sym_switch] = ACTIONS(660), - [anon_sym_case] = ACTIONS(662), - [anon_sym_default] = ACTIONS(664), - [anon_sym_while] = ACTIONS(666), - [anon_sym_do] = ACTIONS(668), - [anon_sym_for] = ACTIONS(670), - [anon_sym_return] = ACTIONS(672), - [anon_sym_break] = ACTIONS(674), - [anon_sym_continue] = ACTIONS(676), - [anon_sym_goto] = ACTIONS(678), - [anon_sym___try] = ACTIONS(680), - [anon_sym___leave] = ACTIONS(682), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(83), - [anon_sym___alignof__] = ACTIONS(85), - [anon_sym___alignof] = ACTIONS(85), - [anon_sym__alignof] = ACTIONS(85), - [anon_sym_alignof] = ACTIONS(85), - [anon_sym__Alignof] = ACTIONS(85), - [anon_sym_offsetof] = ACTIONS(87), - [anon_sym__Generic] = ACTIONS(89), - [anon_sym_asm] = ACTIONS(91), - [anon_sym___asm__] = ACTIONS(91), - [sym_number_literal] = ACTIONS(159), - [anon_sym_L_SQUOTE] = ACTIONS(95), - [anon_sym_u_SQUOTE] = ACTIONS(95), - [anon_sym_U_SQUOTE] = ACTIONS(95), - [anon_sym_u8_SQUOTE] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(95), - [anon_sym_L_DQUOTE] = ACTIONS(97), - [anon_sym_u_DQUOTE] = ACTIONS(97), - [anon_sym_U_DQUOTE] = ACTIONS(97), - [anon_sym_u8_DQUOTE] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(97), - [sym_true] = ACTIONS(161), - [sym_false] = ACTIONS(161), - [anon_sym_NULL] = ACTIONS(101), - [anon_sym_nullptr] = ACTIONS(101), + [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(631), + [anon_sym_RBRACE] = ACTIONS(769), + [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), + [sym_primitive_type] = ACTIONS(53), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [anon_sym_if] = ACTIONS(635), + [anon_sym_switch] = ACTIONS(637), + [anon_sym_case] = ACTIONS(639), + [anon_sym_default] = ACTIONS(641), + [anon_sym_while] = ACTIONS(643), + [anon_sym_do] = ACTIONS(645), + [anon_sym_for] = ACTIONS(647), + [anon_sym_return] = ACTIONS(649), + [anon_sym_break] = ACTIONS(651), + [anon_sym_continue] = ACTIONS(653), + [anon_sym_goto] = ACTIONS(655), + [anon_sym___try] = ACTIONS(657), + [anon_sym___leave] = ACTIONS(659), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [sym_number_literal] = ACTIONS(161), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(163), + [sym_false] = ACTIONS(163), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [48] = { - [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(392), - [sym_declaration] = STATE(36), - [sym_type_definition] = STATE(36), - [sym__declaration_modifiers] = STATE(861), - [sym__declaration_specifiers] = STATE(1483), - [sym_linkage_specification] = STATE(36), - [sym_attribute_specifier] = STATE(861), - [sym_attribute_declaration] = STATE(504), - [sym_ms_declspec_modifier] = STATE(861), - [sym_ms_call_modifier] = STATE(851), - [sym_compound_statement] = STATE(36), - [sym_storage_class_specifier] = STATE(861), - [sym_type_qualifier] = STATE(861), - [sym__type_specifier] = STATE(1120), - [sym_sized_type_specifier] = STATE(1106), - [sym_enum_specifier] = STATE(1106), - [sym_struct_specifier] = STATE(1106), - [sym_union_specifier] = STATE(1106), - [sym_attributed_statement] = STATE(36), - [sym_labeled_statement] = STATE(36), - [sym_expression_statement] = STATE(36), - [sym_if_statement] = STATE(36), - [sym_switch_statement] = STATE(36), - [sym_case_statement] = STATE(36), - [sym_while_statement] = STATE(36), - [sym_do_statement] = STATE(36), - [sym_for_statement] = STATE(36), - [sym_return_statement] = STATE(36), - [sym_break_statement] = STATE(36), - [sym_continue_statement] = STATE(36), - [sym_goto_statement] = STATE(36), - [sym_seh_try_statement] = STATE(36), - [sym_seh_leave_statement] = STATE(36), - [sym__expression] = STATE(1221), - [sym__expression_not_binary] = STATE(792), - [sym_comma_expression] = STATE(2106), - [sym_conditional_expression] = STATE(792), - [sym_assignment_expression] = STATE(792), - [sym_pointer_expression] = STATE(901), - [sym_unary_expression] = STATE(792), - [sym_binary_expression] = STATE(792), - [sym_update_expression] = STATE(792), - [sym_cast_expression] = STATE(792), - [sym_sizeof_expression] = STATE(792), - [sym_alignof_expression] = STATE(792), - [sym_offsetof_expression] = STATE(792), - [sym_generic_expression] = STATE(792), - [sym_subscript_expression] = STATE(901), - [sym_call_expression] = STATE(901), - [sym_gnu_asm_expression] = STATE(792), - [sym_field_expression] = STATE(901), - [sym_compound_literal_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(901), - [sym_char_literal] = STATE(792), - [sym_concatenated_string] = STATE(792), - [sym_string_literal] = STATE(675), - [sym_null] = STATE(792), - [sym__empty_declaration] = STATE(36), - [sym_macro_type_specifier] = STATE(1106), - [aux_sym_preproc_if_repeat1] = STATE(36), - [aux_sym__declaration_specifiers_repeat1] = STATE(861), - [aux_sym_attributed_declarator_repeat1] = STATE(445), - [aux_sym_sized_type_specifier_repeat1] = STATE(1113), - [sym_identifier] = ACTIONS(484), - [aux_sym_preproc_include_token1] = ACTIONS(486), - [aux_sym_preproc_def_token1] = ACTIONS(488), - [aux_sym_preproc_if_token1] = ACTIONS(490), - [aux_sym_preproc_ifdef_token1] = ACTIONS(492), - [aux_sym_preproc_ifdef_token2] = ACTIONS(492), - [sym_preproc_directive] = ACTIONS(494), + [50] = { + [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(355), + [sym_declaration] = STATE(41), + [sym_type_definition] = STATE(41), + [sym__declaration_modifiers] = STATE(855), + [sym__declaration_specifiers] = STATE(1524), + [sym_linkage_specification] = STATE(41), + [sym_attribute_specifier] = STATE(855), + [sym_attribute_declaration] = STATE(495), + [sym_ms_declspec_modifier] = STATE(855), + [sym_ms_call_modifier] = STATE(844), + [sym_compound_statement] = STATE(41), + [sym_storage_class_specifier] = STATE(855), + [sym_type_qualifier] = STATE(855), + [sym__type_specifier] = STATE(1122), + [sym_sized_type_specifier] = STATE(1069), + [sym_enum_specifier] = STATE(1069), + [sym_struct_specifier] = STATE(1069), + [sym_union_specifier] = STATE(1069), + [sym_attributed_statement] = STATE(41), + [sym_labeled_statement] = STATE(41), + [sym_expression_statement] = STATE(41), + [sym_if_statement] = STATE(41), + [sym_switch_statement] = STATE(41), + [sym_case_statement] = STATE(41), + [sym_while_statement] = STATE(41), + [sym_do_statement] = STATE(41), + [sym_for_statement] = STATE(41), + [sym_return_statement] = STATE(41), + [sym_break_statement] = STATE(41), + [sym_continue_statement] = STATE(41), + [sym_goto_statement] = STATE(41), + [sym_seh_try_statement] = STATE(41), + [sym_seh_leave_statement] = STATE(41), + [sym__expression] = STATE(1272), + [sym__expression_not_binary] = STATE(809), + [sym_comma_expression] = STATE(2198), + [sym_conditional_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_pointer_expression] = STATE(877), + [sym_unary_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_update_expression] = STATE(809), + [sym_cast_expression] = STATE(809), + [sym_sizeof_expression] = STATE(809), + [sym_alignof_expression] = STATE(809), + [sym_offsetof_expression] = STATE(809), + [sym_generic_expression] = STATE(809), + [sym_subscript_expression] = STATE(877), + [sym_call_expression] = STATE(877), + [sym_gnu_asm_expression] = STATE(809), + [sym_field_expression] = STATE(877), + [sym_compound_literal_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(877), + [sym_char_literal] = STATE(809), + [sym_concatenated_string] = STATE(809), + [sym_string_literal] = STATE(573), + [sym_null] = STATE(809), + [sym__empty_declaration] = STATE(41), + [sym_macro_type_specifier] = STATE(1069), + [aux_sym_preproc_if_repeat1] = STATE(41), + [aux_sym__declaration_specifiers_repeat1] = STATE(855), + [aux_sym_attributed_declarator_repeat1] = STATE(478), + [aux_sym_sized_type_specifier_repeat1] = STATE(1085), + [sym_identifier] = ACTIONS(611), + [aux_sym_preproc_include_token1] = ACTIONS(613), + [aux_sym_preproc_def_token1] = ACTIONS(615), + [aux_sym_preproc_if_token1] = ACTIONS(617), + [aux_sym_preproc_ifdef_token1] = ACTIONS(619), + [aux_sym_preproc_ifdef_token2] = ACTIONS(619), + [sym_preproc_directive] = ACTIONS(621), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -23811,168 +24638,172 @@ 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(496), - [anon_sym___extension__] = ACTIONS(498), - [anon_sym_typedef] = ACTIONS(500), - [anon_sym_extern] = ACTIONS(502), + [anon_sym_SEMI] = ACTIONS(623), + [anon_sym___extension__] = ACTIONS(625), + [anon_sym_typedef] = ACTIONS(627), + [anon_sym_extern] = ACTIONS(629), [anon_sym___attribute__] = ACTIONS(33), [anon_sym___scanf] = ACTIONS(35), [anon_sym___printf] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym___cdecl] = ACTIONS(41), - [anon_sym___clrcall] = ACTIONS(41), - [anon_sym___stdcall] = ACTIONS(41), - [anon_sym___fastcall] = ACTIONS(41), - [anon_sym___thiscall] = ACTIONS(41), - [anon_sym___vectorcall] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(504), - [anon_sym_RBRACE] = ACTIONS(762), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [sym_primitive_type] = ACTIONS(51), - [anon_sym_enum] = ACTIONS(53), - [anon_sym_struct] = ACTIONS(55), - [anon_sym_union] = ACTIONS(57), - [anon_sym_if] = ACTIONS(508), - [anon_sym_switch] = ACTIONS(510), - [anon_sym_case] = ACTIONS(512), - [anon_sym_default] = ACTIONS(514), - [anon_sym_while] = ACTIONS(516), - [anon_sym_do] = ACTIONS(518), - [anon_sym_for] = ACTIONS(520), - [anon_sym_return] = ACTIONS(522), - [anon_sym_break] = ACTIONS(524), - [anon_sym_continue] = ACTIONS(526), - [anon_sym_goto] = ACTIONS(528), - [anon_sym___try] = ACTIONS(530), - [anon_sym___leave] = ACTIONS(532), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(83), - [anon_sym___alignof__] = ACTIONS(85), - [anon_sym___alignof] = ACTIONS(85), - [anon_sym__alignof] = ACTIONS(85), - [anon_sym_alignof] = ACTIONS(85), - [anon_sym__Alignof] = ACTIONS(85), - [anon_sym_offsetof] = ACTIONS(87), - [anon_sym__Generic] = ACTIONS(89), - [anon_sym_asm] = ACTIONS(91), - [anon_sym___asm__] = ACTIONS(91), - [sym_number_literal] = ACTIONS(159), - [anon_sym_L_SQUOTE] = ACTIONS(95), - [anon_sym_u_SQUOTE] = ACTIONS(95), - [anon_sym_U_SQUOTE] = ACTIONS(95), - [anon_sym_u8_SQUOTE] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(95), - [anon_sym_L_DQUOTE] = ACTIONS(97), - [anon_sym_u_DQUOTE] = ACTIONS(97), - [anon_sym_U_DQUOTE] = ACTIONS(97), - [anon_sym_u8_DQUOTE] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(97), - [sym_true] = ACTIONS(161), - [sym_false] = ACTIONS(161), - [anon_sym_NULL] = ACTIONS(101), - [anon_sym_nullptr] = ACTIONS(101), + [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(631), + [anon_sym_RBRACE] = ACTIONS(771), + [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), + [sym_primitive_type] = ACTIONS(53), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [anon_sym_if] = ACTIONS(635), + [anon_sym_switch] = ACTIONS(637), + [anon_sym_case] = ACTIONS(639), + [anon_sym_default] = ACTIONS(641), + [anon_sym_while] = ACTIONS(643), + [anon_sym_do] = ACTIONS(645), + [anon_sym_for] = ACTIONS(647), + [anon_sym_return] = ACTIONS(649), + [anon_sym_break] = ACTIONS(651), + [anon_sym_continue] = ACTIONS(653), + [anon_sym_goto] = ACTIONS(655), + [anon_sym___try] = ACTIONS(657), + [anon_sym___leave] = ACTIONS(659), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [sym_number_literal] = ACTIONS(161), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(163), + [sym_false] = ACTIONS(163), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [49] = { - [sym_preproc_include] = STATE(50), - [sym_preproc_def] = STATE(50), - [sym_preproc_function_def] = STATE(50), - [sym_preproc_call] = STATE(50), - [sym_preproc_if] = STATE(50), - [sym_preproc_ifdef] = STATE(50), - [sym_function_definition] = STATE(50), - [sym__old_style_function_definition] = STATE(392), - [sym_declaration] = STATE(50), - [sym_type_definition] = STATE(50), - [sym__declaration_modifiers] = STATE(861), - [sym__declaration_specifiers] = STATE(1483), - [sym_linkage_specification] = STATE(50), - [sym_attribute_specifier] = STATE(861), - [sym_attribute_declaration] = STATE(504), - [sym_ms_declspec_modifier] = STATE(861), - [sym_ms_call_modifier] = STATE(851), - [sym_compound_statement] = STATE(50), - [sym_storage_class_specifier] = STATE(861), - [sym_type_qualifier] = STATE(861), - [sym__type_specifier] = STATE(1120), - [sym_sized_type_specifier] = STATE(1106), - [sym_enum_specifier] = STATE(1106), - [sym_struct_specifier] = STATE(1106), - [sym_union_specifier] = STATE(1106), - [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_case_statement] = STATE(50), - [sym_while_statement] = STATE(50), - [sym_do_statement] = STATE(50), - [sym_for_statement] = STATE(50), - [sym_return_statement] = STATE(50), - [sym_break_statement] = STATE(50), - [sym_continue_statement] = STATE(50), - [sym_goto_statement] = STATE(50), - [sym_seh_try_statement] = STATE(50), - [sym_seh_leave_statement] = STATE(50), - [sym__expression] = STATE(1221), - [sym__expression_not_binary] = STATE(792), - [sym_comma_expression] = STATE(2106), - [sym_conditional_expression] = STATE(792), - [sym_assignment_expression] = STATE(792), - [sym_pointer_expression] = STATE(901), - [sym_unary_expression] = STATE(792), - [sym_binary_expression] = STATE(792), - [sym_update_expression] = STATE(792), - [sym_cast_expression] = STATE(792), - [sym_sizeof_expression] = STATE(792), - [sym_alignof_expression] = STATE(792), - [sym_offsetof_expression] = STATE(792), - [sym_generic_expression] = STATE(792), - [sym_subscript_expression] = STATE(901), - [sym_call_expression] = STATE(901), - [sym_gnu_asm_expression] = STATE(792), - [sym_field_expression] = STATE(901), - [sym_compound_literal_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(901), - [sym_char_literal] = STATE(792), - [sym_concatenated_string] = STATE(792), - [sym_string_literal] = STATE(675), - [sym_null] = STATE(792), - [sym__empty_declaration] = STATE(50), - [sym_macro_type_specifier] = STATE(1106), - [aux_sym_preproc_if_repeat1] = STATE(50), - [aux_sym__declaration_specifiers_repeat1] = STATE(861), - [aux_sym_attributed_declarator_repeat1] = STATE(445), - [aux_sym_sized_type_specifier_repeat1] = STATE(1113), - [sym_identifier] = ACTIONS(484), - [aux_sym_preproc_include_token1] = ACTIONS(486), - [aux_sym_preproc_def_token1] = ACTIONS(488), - [aux_sym_preproc_if_token1] = ACTIONS(490), - [aux_sym_preproc_ifdef_token1] = ACTIONS(492), - [aux_sym_preproc_ifdef_token2] = ACTIONS(492), - [sym_preproc_directive] = ACTIONS(494), + [51] = { + [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(355), + [sym_declaration] = STATE(41), + [sym_type_definition] = STATE(41), + [sym__declaration_modifiers] = STATE(855), + [sym__declaration_specifiers] = STATE(1524), + [sym_linkage_specification] = STATE(41), + [sym_attribute_specifier] = STATE(855), + [sym_attribute_declaration] = STATE(495), + [sym_ms_declspec_modifier] = STATE(855), + [sym_ms_call_modifier] = STATE(844), + [sym_compound_statement] = STATE(41), + [sym_storage_class_specifier] = STATE(855), + [sym_type_qualifier] = STATE(855), + [sym__type_specifier] = STATE(1122), + [sym_sized_type_specifier] = STATE(1069), + [sym_enum_specifier] = STATE(1069), + [sym_struct_specifier] = STATE(1069), + [sym_union_specifier] = STATE(1069), + [sym_attributed_statement] = STATE(41), + [sym_labeled_statement] = STATE(41), + [sym_expression_statement] = STATE(41), + [sym_if_statement] = STATE(41), + [sym_switch_statement] = STATE(41), + [sym_case_statement] = STATE(41), + [sym_while_statement] = STATE(41), + [sym_do_statement] = STATE(41), + [sym_for_statement] = STATE(41), + [sym_return_statement] = STATE(41), + [sym_break_statement] = STATE(41), + [sym_continue_statement] = STATE(41), + [sym_goto_statement] = STATE(41), + [sym_seh_try_statement] = STATE(41), + [sym_seh_leave_statement] = STATE(41), + [sym__expression] = STATE(1272), + [sym__expression_not_binary] = STATE(809), + [sym_comma_expression] = STATE(2198), + [sym_conditional_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_pointer_expression] = STATE(877), + [sym_unary_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_update_expression] = STATE(809), + [sym_cast_expression] = STATE(809), + [sym_sizeof_expression] = STATE(809), + [sym_alignof_expression] = STATE(809), + [sym_offsetof_expression] = STATE(809), + [sym_generic_expression] = STATE(809), + [sym_subscript_expression] = STATE(877), + [sym_call_expression] = STATE(877), + [sym_gnu_asm_expression] = STATE(809), + [sym_field_expression] = STATE(877), + [sym_compound_literal_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(877), + [sym_char_literal] = STATE(809), + [sym_concatenated_string] = STATE(809), + [sym_string_literal] = STATE(573), + [sym_null] = STATE(809), + [sym__empty_declaration] = STATE(41), + [sym_macro_type_specifier] = STATE(1069), + [aux_sym_preproc_if_repeat1] = STATE(41), + [aux_sym__declaration_specifiers_repeat1] = STATE(855), + [aux_sym_attributed_declarator_repeat1] = STATE(478), + [aux_sym_sized_type_specifier_repeat1] = STATE(1085), + [sym_identifier] = ACTIONS(611), + [aux_sym_preproc_include_token1] = ACTIONS(613), + [aux_sym_preproc_def_token1] = ACTIONS(615), + [aux_sym_preproc_if_token1] = ACTIONS(617), + [aux_sym_preproc_ifdef_token1] = ACTIONS(619), + [aux_sym_preproc_ifdef_token2] = ACTIONS(619), + [sym_preproc_directive] = ACTIONS(621), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -23980,168 +24811,170 @@ 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(496), - [anon_sym___extension__] = ACTIONS(498), - [anon_sym_typedef] = ACTIONS(500), - [anon_sym_extern] = ACTIONS(502), + [anon_sym_SEMI] = ACTIONS(623), + [anon_sym___extension__] = ACTIONS(625), + [anon_sym_typedef] = ACTIONS(627), + [anon_sym_extern] = ACTIONS(629), [anon_sym___attribute__] = ACTIONS(33), [anon_sym___scanf] = ACTIONS(35), [anon_sym___printf] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym___cdecl] = ACTIONS(41), - [anon_sym___clrcall] = ACTIONS(41), - [anon_sym___stdcall] = ACTIONS(41), - [anon_sym___fastcall] = ACTIONS(41), - [anon_sym___thiscall] = ACTIONS(41), - [anon_sym___vectorcall] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(504), - [anon_sym_RBRACE] = ACTIONS(764), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [sym_primitive_type] = ACTIONS(51), - [anon_sym_enum] = ACTIONS(53), - [anon_sym_struct] = ACTIONS(55), - [anon_sym_union] = ACTIONS(57), - [anon_sym_if] = ACTIONS(508), - [anon_sym_switch] = ACTIONS(510), - [anon_sym_case] = ACTIONS(512), - [anon_sym_default] = ACTIONS(514), - [anon_sym_while] = ACTIONS(516), - [anon_sym_do] = ACTIONS(518), - [anon_sym_for] = ACTIONS(520), - [anon_sym_return] = ACTIONS(522), - [anon_sym_break] = ACTIONS(524), - [anon_sym_continue] = ACTIONS(526), - [anon_sym_goto] = ACTIONS(528), - [anon_sym___try] = ACTIONS(530), - [anon_sym___leave] = ACTIONS(532), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(83), - [anon_sym___alignof__] = ACTIONS(85), - [anon_sym___alignof] = ACTIONS(85), - [anon_sym__alignof] = ACTIONS(85), - [anon_sym_alignof] = ACTIONS(85), - [anon_sym__Alignof] = ACTIONS(85), - [anon_sym_offsetof] = ACTIONS(87), - [anon_sym__Generic] = ACTIONS(89), - [anon_sym_asm] = ACTIONS(91), - [anon_sym___asm__] = ACTIONS(91), - [sym_number_literal] = ACTIONS(159), - [anon_sym_L_SQUOTE] = ACTIONS(95), - [anon_sym_u_SQUOTE] = ACTIONS(95), - [anon_sym_U_SQUOTE] = ACTIONS(95), - [anon_sym_u8_SQUOTE] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(95), - [anon_sym_L_DQUOTE] = ACTIONS(97), - [anon_sym_u_DQUOTE] = ACTIONS(97), - [anon_sym_U_DQUOTE] = ACTIONS(97), - [anon_sym_u8_DQUOTE] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(97), - [sym_true] = ACTIONS(161), - [sym_false] = ACTIONS(161), - [anon_sym_NULL] = ACTIONS(101), - [anon_sym_nullptr] = ACTIONS(101), + [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(631), + [anon_sym_RBRACE] = ACTIONS(773), + [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), + [sym_primitive_type] = ACTIONS(53), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [anon_sym_if] = ACTIONS(635), + [anon_sym_switch] = ACTIONS(637), + [anon_sym_case] = ACTIONS(639), + [anon_sym_default] = ACTIONS(641), + [anon_sym_while] = ACTIONS(643), + [anon_sym_do] = ACTIONS(645), + [anon_sym_for] = ACTIONS(647), + [anon_sym_return] = ACTIONS(649), + [anon_sym_break] = ACTIONS(651), + [anon_sym_continue] = ACTIONS(653), + [anon_sym_goto] = ACTIONS(655), + [anon_sym___try] = ACTIONS(657), + [anon_sym___leave] = ACTIONS(659), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [sym_number_literal] = ACTIONS(161), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(163), + [sym_false] = ACTIONS(163), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [50] = { - [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(392), - [sym_declaration] = STATE(36), - [sym_type_definition] = STATE(36), - [sym__declaration_modifiers] = STATE(861), - [sym__declaration_specifiers] = STATE(1483), - [sym_linkage_specification] = STATE(36), - [sym_attribute_specifier] = STATE(861), - [sym_attribute_declaration] = STATE(504), - [sym_ms_declspec_modifier] = STATE(861), - [sym_ms_call_modifier] = STATE(851), - [sym_compound_statement] = STATE(36), - [sym_storage_class_specifier] = STATE(861), - [sym_type_qualifier] = STATE(861), - [sym__type_specifier] = STATE(1120), - [sym_sized_type_specifier] = STATE(1106), - [sym_enum_specifier] = STATE(1106), - [sym_struct_specifier] = STATE(1106), - [sym_union_specifier] = STATE(1106), - [sym_attributed_statement] = STATE(36), - [sym_labeled_statement] = STATE(36), - [sym_expression_statement] = STATE(36), - [sym_if_statement] = STATE(36), - [sym_switch_statement] = STATE(36), - [sym_case_statement] = STATE(36), - [sym_while_statement] = STATE(36), - [sym_do_statement] = STATE(36), - [sym_for_statement] = STATE(36), - [sym_return_statement] = STATE(36), - [sym_break_statement] = STATE(36), - [sym_continue_statement] = STATE(36), - [sym_goto_statement] = STATE(36), - [sym_seh_try_statement] = STATE(36), - [sym_seh_leave_statement] = STATE(36), - [sym__expression] = STATE(1221), - [sym__expression_not_binary] = STATE(792), - [sym_comma_expression] = STATE(2106), - [sym_conditional_expression] = STATE(792), - [sym_assignment_expression] = STATE(792), - [sym_pointer_expression] = STATE(901), - [sym_unary_expression] = STATE(792), - [sym_binary_expression] = STATE(792), - [sym_update_expression] = STATE(792), - [sym_cast_expression] = STATE(792), - [sym_sizeof_expression] = STATE(792), - [sym_alignof_expression] = STATE(792), - [sym_offsetof_expression] = STATE(792), - [sym_generic_expression] = STATE(792), - [sym_subscript_expression] = STATE(901), - [sym_call_expression] = STATE(901), - [sym_gnu_asm_expression] = STATE(792), - [sym_field_expression] = STATE(901), - [sym_compound_literal_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(901), - [sym_char_literal] = STATE(792), - [sym_concatenated_string] = STATE(792), - [sym_string_literal] = STATE(675), - [sym_null] = STATE(792), - [sym__empty_declaration] = STATE(36), - [sym_macro_type_specifier] = STATE(1106), - [aux_sym_preproc_if_repeat1] = STATE(36), - [aux_sym__declaration_specifiers_repeat1] = STATE(861), + [52] = { + [sym_preproc_include] = STATE(53), + [sym_preproc_def] = STATE(53), + [sym_preproc_function_def] = STATE(53), + [sym_preproc_call] = STATE(53), + [sym_preproc_if] = STATE(53), + [sym_preproc_ifdef] = STATE(53), + [sym_function_definition] = STATE(53), + [sym__old_style_function_definition] = STATE(421), + [sym_declaration] = STATE(53), + [sym_type_definition] = STATE(53), + [sym__declaration_modifiers] = STATE(855), + [sym__declaration_specifiers] = STATE(1528), + [sym_linkage_specification] = STATE(53), + [sym_attribute_specifier] = STATE(855), + [sym_attribute_declaration] = STATE(495), + [sym_ms_declspec_modifier] = STATE(855), + [sym_ms_call_modifier] = STATE(843), + [sym_compound_statement] = STATE(53), + [sym_storage_class_specifier] = STATE(855), + [sym_type_qualifier] = STATE(855), + [sym__type_specifier] = STATE(1121), + [sym_sized_type_specifier] = STATE(1069), + [sym_enum_specifier] = STATE(1069), + [sym_struct_specifier] = STATE(1069), + [sym_union_specifier] = STATE(1069), + [sym_attributed_statement] = STATE(53), + [sym_labeled_statement] = STATE(53), + [sym__top_level_expression_statement] = STATE(53), + [sym_if_statement] = STATE(53), + [sym_switch_statement] = STATE(53), + [sym_case_statement] = STATE(53), + [sym_while_statement] = STATE(53), + [sym_do_statement] = STATE(53), + [sym_for_statement] = STATE(53), + [sym_return_statement] = STATE(53), + [sym_break_statement] = STATE(53), + [sym_continue_statement] = STATE(53), + [sym_goto_statement] = STATE(53), + [sym__expression] = STATE(1329), + [sym__expression_not_binary] = STATE(1328), + [sym_conditional_expression] = STATE(1328), + [sym_assignment_expression] = STATE(1328), + [sym_pointer_expression] = STATE(877), + [sym_unary_expression] = STATE(1328), + [sym_binary_expression] = STATE(809), + [sym_update_expression] = STATE(1328), + [sym_cast_expression] = STATE(1328), + [sym_sizeof_expression] = STATE(1328), + [sym_alignof_expression] = STATE(1328), + [sym_offsetof_expression] = STATE(1328), + [sym_generic_expression] = STATE(1328), + [sym_subscript_expression] = STATE(877), + [sym_call_expression] = STATE(877), + [sym_gnu_asm_expression] = STATE(1328), + [sym_field_expression] = STATE(877), + [sym_compound_literal_expression] = STATE(1328), + [sym_parenthesized_expression] = STATE(877), + [sym_char_literal] = STATE(1328), + [sym_concatenated_string] = STATE(1328), + [sym_string_literal] = STATE(573), + [sym_null] = STATE(1328), + [sym__empty_declaration] = STATE(53), + [sym_macro_type_specifier] = STATE(1069), + [aux_sym_translation_unit_repeat1] = STATE(53), + [aux_sym__declaration_specifiers_repeat1] = STATE(855), [aux_sym_attributed_declarator_repeat1] = STATE(445), - [aux_sym_sized_type_specifier_repeat1] = STATE(1113), - [sym_identifier] = ACTIONS(484), - [aux_sym_preproc_include_token1] = ACTIONS(486), - [aux_sym_preproc_def_token1] = ACTIONS(488), - [aux_sym_preproc_if_token1] = ACTIONS(490), - [aux_sym_preproc_ifdef_token1] = ACTIONS(492), - [aux_sym_preproc_ifdef_token2] = ACTIONS(492), - [sym_preproc_directive] = ACTIONS(494), + [aux_sym_sized_type_specifier_repeat1] = STATE(1085), + [ts_builtin_sym_end] = ACTIONS(775), + [sym_identifier] = ACTIONS(7), + [aux_sym_preproc_include_token1] = ACTIONS(9), + [aux_sym_preproc_def_token1] = ACTIONS(11), + [aux_sym_preproc_if_token1] = ACTIONS(13), + [aux_sym_preproc_ifdef_token1] = ACTIONS(15), + [aux_sym_preproc_ifdef_token2] = ACTIONS(15), + [sym_preproc_directive] = ACTIONS(17), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -24149,168 +24982,328 @@ 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(496), - [anon_sym___extension__] = ACTIONS(498), - [anon_sym_typedef] = ACTIONS(500), - [anon_sym_extern] = ACTIONS(502), + [anon_sym___extension__] = ACTIONS(27), + [anon_sym_typedef] = ACTIONS(29), + [anon_sym_extern] = ACTIONS(31), [anon_sym___attribute__] = ACTIONS(33), [anon_sym___scanf] = ACTIONS(35), [anon_sym___printf] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym___cdecl] = ACTIONS(41), - [anon_sym___clrcall] = ACTIONS(41), - [anon_sym___stdcall] = ACTIONS(41), - [anon_sym___fastcall] = ACTIONS(41), - [anon_sym___thiscall] = ACTIONS(41), - [anon_sym___vectorcall] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(504), - [anon_sym_RBRACE] = ACTIONS(766), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [sym_primitive_type] = ACTIONS(51), - [anon_sym_enum] = ACTIONS(53), - [anon_sym_struct] = ACTIONS(55), - [anon_sym_union] = ACTIONS(57), - [anon_sym_if] = ACTIONS(508), - [anon_sym_switch] = ACTIONS(510), - [anon_sym_case] = ACTIONS(512), - [anon_sym_default] = ACTIONS(514), - [anon_sym_while] = ACTIONS(516), - [anon_sym_do] = ACTIONS(518), - [anon_sym_for] = ACTIONS(520), - [anon_sym_return] = ACTIONS(522), - [anon_sym_break] = ACTIONS(524), - [anon_sym_continue] = ACTIONS(526), - [anon_sym_goto] = ACTIONS(528), - [anon_sym___try] = ACTIONS(530), - [anon_sym___leave] = ACTIONS(532), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(83), - [anon_sym___alignof__] = ACTIONS(85), - [anon_sym___alignof] = ACTIONS(85), - [anon_sym__alignof] = ACTIONS(85), - [anon_sym_alignof] = ACTIONS(85), - [anon_sym__Alignof] = ACTIONS(85), - [anon_sym_offsetof] = ACTIONS(87), - [anon_sym__Generic] = ACTIONS(89), - [anon_sym_asm] = ACTIONS(91), - [anon_sym___asm__] = ACTIONS(91), - [sym_number_literal] = ACTIONS(159), - [anon_sym_L_SQUOTE] = ACTIONS(95), - [anon_sym_u_SQUOTE] = ACTIONS(95), - [anon_sym_U_SQUOTE] = ACTIONS(95), - [anon_sym_u8_SQUOTE] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(95), - [anon_sym_L_DQUOTE] = ACTIONS(97), - [anon_sym_u_DQUOTE] = ACTIONS(97), - [anon_sym_U_DQUOTE] = ACTIONS(97), - [anon_sym_u8_DQUOTE] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(97), - [sym_true] = ACTIONS(161), - [sym_false] = ACTIONS(161), - [anon_sym_NULL] = ACTIONS(101), - [anon_sym_nullptr] = ACTIONS(101), + [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(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), + [sym_primitive_type] = ACTIONS(53), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [anon_sym_if] = ACTIONS(61), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_case] = ACTIONS(65), + [anon_sym_default] = ACTIONS(67), + [anon_sym_while] = ACTIONS(69), + [anon_sym_do] = ACTIONS(71), + [anon_sym_for] = ACTIONS(73), + [anon_sym_return] = ACTIONS(75), + [anon_sym_break] = ACTIONS(77), + [anon_sym_continue] = ACTIONS(79), + [anon_sym_goto] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [sym_number_literal] = ACTIONS(95), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(101), + [sym_false] = ACTIONS(101), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [51] = { - [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(392), - [sym_declaration] = STATE(37), - [sym_type_definition] = STATE(37), - [sym__declaration_modifiers] = STATE(861), - [sym__declaration_specifiers] = STATE(1483), - [sym_linkage_specification] = STATE(37), - [sym_attribute_specifier] = STATE(861), - [sym_attribute_declaration] = STATE(504), - [sym_ms_declspec_modifier] = STATE(861), - [sym_ms_call_modifier] = STATE(851), - [sym_compound_statement] = STATE(37), - [sym_storage_class_specifier] = STATE(861), - [sym_type_qualifier] = STATE(861), - [sym__type_specifier] = STATE(1120), - [sym_sized_type_specifier] = STATE(1106), - [sym_enum_specifier] = STATE(1106), - [sym_struct_specifier] = STATE(1106), - [sym_union_specifier] = STATE(1106), - [sym_attributed_statement] = STATE(37), - [sym_labeled_statement] = STATE(37), - [sym_expression_statement] = STATE(37), - [sym_if_statement] = STATE(37), - [sym_switch_statement] = STATE(37), - [sym_case_statement] = STATE(37), - [sym_while_statement] = STATE(37), - [sym_do_statement] = STATE(37), - [sym_for_statement] = STATE(37), - [sym_return_statement] = STATE(37), - [sym_break_statement] = STATE(37), - [sym_continue_statement] = STATE(37), - [sym_goto_statement] = STATE(37), - [sym_seh_try_statement] = STATE(37), - [sym_seh_leave_statement] = STATE(37), - [sym__expression] = STATE(1221), - [sym__expression_not_binary] = STATE(792), - [sym_comma_expression] = STATE(2106), - [sym_conditional_expression] = STATE(792), - [sym_assignment_expression] = STATE(792), - [sym_pointer_expression] = STATE(901), - [sym_unary_expression] = STATE(792), - [sym_binary_expression] = STATE(792), - [sym_update_expression] = STATE(792), - [sym_cast_expression] = STATE(792), - [sym_sizeof_expression] = STATE(792), - [sym_alignof_expression] = STATE(792), - [sym_offsetof_expression] = STATE(792), - [sym_generic_expression] = STATE(792), - [sym_subscript_expression] = STATE(901), - [sym_call_expression] = STATE(901), - [sym_gnu_asm_expression] = STATE(792), - [sym_field_expression] = STATE(901), - [sym_compound_literal_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(901), - [sym_char_literal] = STATE(792), - [sym_concatenated_string] = STATE(792), - [sym_string_literal] = STATE(675), - [sym_null] = STATE(792), - [sym__empty_declaration] = STATE(37), - [sym_macro_type_specifier] = STATE(1106), - [aux_sym_preproc_if_repeat1] = STATE(37), - [aux_sym__declaration_specifiers_repeat1] = STATE(861), + [53] = { + [sym_preproc_include] = STATE(53), + [sym_preproc_def] = STATE(53), + [sym_preproc_function_def] = STATE(53), + [sym_preproc_call] = STATE(53), + [sym_preproc_if] = STATE(53), + [sym_preproc_ifdef] = STATE(53), + [sym_function_definition] = STATE(53), + [sym__old_style_function_definition] = STATE(421), + [sym_declaration] = STATE(53), + [sym_type_definition] = STATE(53), + [sym__declaration_modifiers] = STATE(855), + [sym__declaration_specifiers] = STATE(1528), + [sym_linkage_specification] = STATE(53), + [sym_attribute_specifier] = STATE(855), + [sym_attribute_declaration] = STATE(495), + [sym_ms_declspec_modifier] = STATE(855), + [sym_ms_call_modifier] = STATE(843), + [sym_compound_statement] = STATE(53), + [sym_storage_class_specifier] = STATE(855), + [sym_type_qualifier] = STATE(855), + [sym__type_specifier] = STATE(1121), + [sym_sized_type_specifier] = STATE(1069), + [sym_enum_specifier] = STATE(1069), + [sym_struct_specifier] = STATE(1069), + [sym_union_specifier] = STATE(1069), + [sym_attributed_statement] = STATE(53), + [sym_labeled_statement] = STATE(53), + [sym__top_level_expression_statement] = STATE(53), + [sym_if_statement] = STATE(53), + [sym_switch_statement] = STATE(53), + [sym_case_statement] = STATE(53), + [sym_while_statement] = STATE(53), + [sym_do_statement] = STATE(53), + [sym_for_statement] = STATE(53), + [sym_return_statement] = STATE(53), + [sym_break_statement] = STATE(53), + [sym_continue_statement] = STATE(53), + [sym_goto_statement] = STATE(53), + [sym__expression] = STATE(1329), + [sym__expression_not_binary] = STATE(1328), + [sym_conditional_expression] = STATE(1328), + [sym_assignment_expression] = STATE(1328), + [sym_pointer_expression] = STATE(877), + [sym_unary_expression] = STATE(1328), + [sym_binary_expression] = STATE(809), + [sym_update_expression] = STATE(1328), + [sym_cast_expression] = STATE(1328), + [sym_sizeof_expression] = STATE(1328), + [sym_alignof_expression] = STATE(1328), + [sym_offsetof_expression] = STATE(1328), + [sym_generic_expression] = STATE(1328), + [sym_subscript_expression] = STATE(877), + [sym_call_expression] = STATE(877), + [sym_gnu_asm_expression] = STATE(1328), + [sym_field_expression] = STATE(877), + [sym_compound_literal_expression] = STATE(1328), + [sym_parenthesized_expression] = STATE(877), + [sym_char_literal] = STATE(1328), + [sym_concatenated_string] = STATE(1328), + [sym_string_literal] = STATE(573), + [sym_null] = STATE(1328), + [sym__empty_declaration] = STATE(53), + [sym_macro_type_specifier] = STATE(1069), + [aux_sym_translation_unit_repeat1] = STATE(53), + [aux_sym__declaration_specifiers_repeat1] = STATE(855), [aux_sym_attributed_declarator_repeat1] = STATE(445), - [aux_sym_sized_type_specifier_repeat1] = STATE(1113), - [sym_identifier] = ACTIONS(484), - [aux_sym_preproc_include_token1] = ACTIONS(486), - [aux_sym_preproc_def_token1] = ACTIONS(488), - [aux_sym_preproc_if_token1] = ACTIONS(490), - [aux_sym_preproc_ifdef_token1] = ACTIONS(492), - [aux_sym_preproc_ifdef_token2] = ACTIONS(492), - [sym_preproc_directive] = ACTIONS(494), + [aux_sym_sized_type_specifier_repeat1] = STATE(1085), + [ts_builtin_sym_end] = ACTIONS(777), + [sym_identifier] = ACTIONS(779), + [aux_sym_preproc_include_token1] = ACTIONS(782), + [aux_sym_preproc_def_token1] = ACTIONS(785), + [aux_sym_preproc_if_token1] = ACTIONS(788), + [aux_sym_preproc_ifdef_token1] = ACTIONS(791), + [aux_sym_preproc_ifdef_token2] = ACTIONS(791), + [sym_preproc_directive] = ACTIONS(794), + [anon_sym_LPAREN2] = ACTIONS(797), + [anon_sym_BANG] = ACTIONS(800), + [anon_sym_TILDE] = ACTIONS(800), + [anon_sym_DASH] = ACTIONS(803), + [anon_sym_PLUS] = ACTIONS(803), + [anon_sym_STAR] = ACTIONS(806), + [anon_sym_AMP] = ACTIONS(806), + [anon_sym___extension__] = ACTIONS(809), + [anon_sym_typedef] = ACTIONS(812), + [anon_sym_extern] = ACTIONS(815), + [anon_sym___attribute__] = ACTIONS(818), + [anon_sym___scanf] = ACTIONS(821), + [anon_sym___printf] = ACTIONS(821), + [anon_sym___read_mostly] = ACTIONS(824), + [anon_sym___must_hold] = ACTIONS(818), + [anon_sym___ro_after_init] = ACTIONS(824), + [anon_sym___init] = ACTIONS(824), + [anon_sym_LBRACK_LBRACK] = ACTIONS(827), + [anon_sym___declspec] = ACTIONS(830), + [anon_sym___cdecl] = ACTIONS(833), + [anon_sym___clrcall] = ACTIONS(833), + [anon_sym___stdcall] = ACTIONS(833), + [anon_sym___fastcall] = ACTIONS(833), + [anon_sym___thiscall] = ACTIONS(833), + [anon_sym___vectorcall] = ACTIONS(833), + [anon_sym_LBRACE] = ACTIONS(836), + [anon_sym_signed] = ACTIONS(839), + [anon_sym_unsigned] = ACTIONS(839), + [anon_sym_long] = ACTIONS(839), + [anon_sym_short] = ACTIONS(839), + [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(845), + [anon_sym_constexpr] = ACTIONS(845), + [anon_sym_volatile] = ACTIONS(845), + [anon_sym_restrict] = ACTIONS(845), + [anon_sym___restrict__] = ACTIONS(845), + [anon_sym__Atomic] = ACTIONS(845), + [anon_sym__Noreturn] = ACTIONS(845), + [anon_sym_noreturn] = ACTIONS(845), + [sym_primitive_type] = ACTIONS(848), + [anon_sym_enum] = ACTIONS(851), + [anon_sym_struct] = ACTIONS(854), + [anon_sym_union] = ACTIONS(857), + [anon_sym_if] = ACTIONS(860), + [anon_sym_switch] = ACTIONS(863), + [anon_sym_case] = ACTIONS(866), + [anon_sym_default] = ACTIONS(869), + [anon_sym_while] = ACTIONS(872), + [anon_sym_do] = ACTIONS(875), + [anon_sym_for] = ACTIONS(878), + [anon_sym_return] = ACTIONS(881), + [anon_sym_break] = ACTIONS(884), + [anon_sym_continue] = ACTIONS(887), + [anon_sym_goto] = ACTIONS(890), + [anon_sym_DASH_DASH] = ACTIONS(893), + [anon_sym_PLUS_PLUS] = ACTIONS(893), + [anon_sym_sizeof] = ACTIONS(896), + [anon_sym___alignof__] = ACTIONS(899), + [anon_sym___alignof] = ACTIONS(899), + [anon_sym__alignof] = ACTIONS(899), + [anon_sym_alignof] = ACTIONS(899), + [anon_sym__Alignof] = ACTIONS(899), + [anon_sym_offsetof] = ACTIONS(902), + [anon_sym__Generic] = ACTIONS(905), + [anon_sym_asm] = ACTIONS(908), + [anon_sym___asm__] = ACTIONS(908), + [sym_number_literal] = ACTIONS(911), + [anon_sym_L_SQUOTE] = ACTIONS(914), + [anon_sym_u_SQUOTE] = ACTIONS(914), + [anon_sym_U_SQUOTE] = ACTIONS(914), + [anon_sym_u8_SQUOTE] = ACTIONS(914), + [anon_sym_SQUOTE] = ACTIONS(914), + [anon_sym_L_DQUOTE] = ACTIONS(917), + [anon_sym_u_DQUOTE] = ACTIONS(917), + [anon_sym_U_DQUOTE] = ACTIONS(917), + [anon_sym_u8_DQUOTE] = ACTIONS(917), + [anon_sym_DQUOTE] = ACTIONS(917), + [sym_true] = ACTIONS(920), + [sym_false] = ACTIONS(920), + [anon_sym_NULL] = ACTIONS(923), + [anon_sym_nullptr] = ACTIONS(923), + [sym_comment] = ACTIONS(3), + }, + [54] = { + [sym_declaration] = STATE(55), + [sym_type_definition] = STATE(55), + [sym__declaration_modifiers] = STATE(855), + [sym__declaration_specifiers] = STATE(1533), + [sym_attribute_specifier] = STATE(855), + [sym_attribute_declaration] = STATE(495), + [sym_ms_declspec_modifier] = STATE(855), + [sym_compound_statement] = STATE(55), + [sym_storage_class_specifier] = STATE(855), + [sym_type_qualifier] = STATE(855), + [sym__type_specifier] = STATE(974), + [sym_sized_type_specifier] = STATE(1069), + [sym_enum_specifier] = STATE(1069), + [sym_struct_specifier] = STATE(1069), + [sym_union_specifier] = STATE(1069), + [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(1239), + [sym__expression_not_binary] = STATE(809), + [sym_comma_expression] = STATE(2249), + [sym_conditional_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_pointer_expression] = STATE(877), + [sym_unary_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_update_expression] = STATE(809), + [sym_cast_expression] = STATE(809), + [sym_sizeof_expression] = STATE(809), + [sym_alignof_expression] = STATE(809), + [sym_offsetof_expression] = STATE(809), + [sym_generic_expression] = STATE(809), + [sym_subscript_expression] = STATE(877), + [sym_call_expression] = STATE(877), + [sym_gnu_asm_expression] = STATE(809), + [sym_field_expression] = STATE(877), + [sym_compound_literal_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(877), + [sym_char_literal] = STATE(809), + [sym_concatenated_string] = STATE(809), + [sym_string_literal] = STATE(573), + [sym_null] = STATE(809), + [sym_macro_type_specifier] = STATE(1069), + [aux_sym__declaration_specifiers_repeat1] = STATE(855), + [aux_sym_attributed_declarator_repeat1] = STATE(435), + [aux_sym_sized_type_specifier_repeat1] = STATE(1085), + [aux_sym_case_statement_repeat1] = STATE(55), + [sym_identifier] = ACTIONS(926), + [aux_sym_preproc_include_token1] = ACTIONS(928), + [aux_sym_preproc_def_token1] = ACTIONS(928), + [aux_sym_preproc_if_token1] = ACTIONS(928), + [aux_sym_preproc_if_token2] = ACTIONS(928), + [aux_sym_preproc_ifdef_token1] = ACTIONS(928), + [aux_sym_preproc_ifdef_token2] = ACTIONS(928), + [aux_sym_preproc_else_token1] = ACTIONS(928), + [aux_sym_preproc_elif_token1] = ACTIONS(928), + [aux_sym_preproc_elifdef_token1] = ACTIONS(928), + [aux_sym_preproc_elifdef_token2] = ACTIONS(928), + [sym_preproc_directive] = ACTIONS(928), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -24318,329 +25311,165 @@ 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(496), - [anon_sym___extension__] = ACTIONS(498), - [anon_sym_typedef] = ACTIONS(500), - [anon_sym_extern] = ACTIONS(502), + [anon_sym_SEMI] = ACTIONS(125), + [anon_sym___extension__] = ACTIONS(127), + [anon_sym_typedef] = ACTIONS(129), + [anon_sym_extern] = ACTIONS(49), [anon_sym___attribute__] = ACTIONS(33), [anon_sym___scanf] = ACTIONS(35), [anon_sym___printf] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym___cdecl] = ACTIONS(41), - [anon_sym___clrcall] = ACTIONS(41), - [anon_sym___stdcall] = ACTIONS(41), - [anon_sym___fastcall] = ACTIONS(41), - [anon_sym___thiscall] = ACTIONS(41), - [anon_sym___vectorcall] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(504), - [anon_sym_RBRACE] = ACTIONS(768), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [sym_primitive_type] = ACTIONS(51), - [anon_sym_enum] = ACTIONS(53), - [anon_sym_struct] = ACTIONS(55), - [anon_sym_union] = ACTIONS(57), - [anon_sym_if] = ACTIONS(508), - [anon_sym_switch] = ACTIONS(510), - [anon_sym_case] = ACTIONS(512), - [anon_sym_default] = ACTIONS(514), - [anon_sym_while] = ACTIONS(516), - [anon_sym_do] = ACTIONS(518), - [anon_sym_for] = ACTIONS(520), - [anon_sym_return] = ACTIONS(522), - [anon_sym_break] = ACTIONS(524), - [anon_sym_continue] = ACTIONS(526), - [anon_sym_goto] = ACTIONS(528), - [anon_sym___try] = ACTIONS(530), - [anon_sym___leave] = ACTIONS(532), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(83), - [anon_sym___alignof__] = ACTIONS(85), - [anon_sym___alignof] = ACTIONS(85), - [anon_sym__alignof] = ACTIONS(85), - [anon_sym_alignof] = ACTIONS(85), - [anon_sym__Alignof] = ACTIONS(85), - [anon_sym_offsetof] = ACTIONS(87), - [anon_sym__Generic] = ACTIONS(89), - [anon_sym_asm] = ACTIONS(91), - [anon_sym___asm__] = ACTIONS(91), - [sym_number_literal] = ACTIONS(159), - [anon_sym_L_SQUOTE] = ACTIONS(95), - [anon_sym_u_SQUOTE] = ACTIONS(95), - [anon_sym_U_SQUOTE] = ACTIONS(95), - [anon_sym_u8_SQUOTE] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(95), - [anon_sym_L_DQUOTE] = ACTIONS(97), - [anon_sym_u_DQUOTE] = ACTIONS(97), - [anon_sym_U_DQUOTE] = ACTIONS(97), - [anon_sym_u8_DQUOTE] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(97), - [sym_true] = ACTIONS(161), - [sym_false] = ACTIONS(161), - [anon_sym_NULL] = ACTIONS(101), - [anon_sym_nullptr] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - }, - [52] = { - [sym_preproc_include] = STATE(52), - [sym_preproc_def] = STATE(52), - [sym_preproc_function_def] = STATE(52), - [sym_preproc_call] = STATE(52), - [sym_preproc_if] = STATE(52), - [sym_preproc_ifdef] = STATE(52), - [sym_function_definition] = STATE(52), - [sym__old_style_function_definition] = STATE(461), - [sym_declaration] = STATE(52), - [sym_type_definition] = STATE(52), - [sym__declaration_modifiers] = STATE(861), - [sym__declaration_specifiers] = STATE(1486), - [sym_linkage_specification] = STATE(52), - [sym_attribute_specifier] = STATE(861), - [sym_attribute_declaration] = STATE(504), - [sym_ms_declspec_modifier] = STATE(861), - [sym_ms_call_modifier] = STATE(855), - [sym_compound_statement] = STATE(52), - [sym_storage_class_specifier] = STATE(861), - [sym_type_qualifier] = STATE(861), - [sym__type_specifier] = STATE(1125), - [sym_sized_type_specifier] = STATE(1106), - [sym_enum_specifier] = STATE(1106), - [sym_struct_specifier] = STATE(1106), - [sym_union_specifier] = STATE(1106), - [sym_attributed_statement] = STATE(52), - [sym_labeled_statement] = STATE(52), - [sym__top_level_expression_statement] = STATE(52), - [sym_if_statement] = STATE(52), - [sym_switch_statement] = STATE(52), - [sym_case_statement] = STATE(52), - [sym_while_statement] = STATE(52), - [sym_do_statement] = STATE(52), - [sym_for_statement] = STATE(52), - [sym_return_statement] = STATE(52), - [sym_break_statement] = STATE(52), - [sym_continue_statement] = STATE(52), - [sym_goto_statement] = STATE(52), - [sym__expression] = STATE(1307), - [sym__expression_not_binary] = STATE(1310), - [sym_conditional_expression] = STATE(1310), - [sym_assignment_expression] = STATE(1310), - [sym_pointer_expression] = STATE(901), - [sym_unary_expression] = STATE(1310), - [sym_binary_expression] = STATE(792), - [sym_update_expression] = STATE(1310), - [sym_cast_expression] = STATE(1310), - [sym_sizeof_expression] = STATE(1310), - [sym_alignof_expression] = STATE(1310), - [sym_offsetof_expression] = STATE(1310), - [sym_generic_expression] = STATE(1310), - [sym_subscript_expression] = STATE(901), - [sym_call_expression] = STATE(901), - [sym_gnu_asm_expression] = STATE(1310), - [sym_field_expression] = STATE(901), - [sym_compound_literal_expression] = STATE(1310), - [sym_parenthesized_expression] = STATE(901), - [sym_char_literal] = STATE(1310), - [sym_concatenated_string] = STATE(1310), - [sym_string_literal] = STATE(675), - [sym_null] = STATE(1310), - [sym__empty_declaration] = STATE(52), - [sym_macro_type_specifier] = STATE(1106), - [aux_sym_translation_unit_repeat1] = STATE(52), - [aux_sym__declaration_specifiers_repeat1] = STATE(861), - [aux_sym_attributed_declarator_repeat1] = STATE(449), - [aux_sym_sized_type_specifier_repeat1] = STATE(1113), - [ts_builtin_sym_end] = ACTIONS(770), - [sym_identifier] = ACTIONS(772), - [aux_sym_preproc_include_token1] = ACTIONS(775), - [aux_sym_preproc_def_token1] = ACTIONS(778), - [aux_sym_preproc_if_token1] = ACTIONS(781), - [aux_sym_preproc_ifdef_token1] = ACTIONS(784), - [aux_sym_preproc_ifdef_token2] = ACTIONS(784), - [sym_preproc_directive] = ACTIONS(787), - [anon_sym_LPAREN2] = ACTIONS(790), - [anon_sym_BANG] = ACTIONS(793), - [anon_sym_TILDE] = ACTIONS(793), - [anon_sym_DASH] = ACTIONS(796), - [anon_sym_PLUS] = ACTIONS(796), - [anon_sym_STAR] = ACTIONS(799), - [anon_sym_AMP] = ACTIONS(799), - [anon_sym___extension__] = ACTIONS(802), - [anon_sym_typedef] = ACTIONS(805), - [anon_sym_extern] = ACTIONS(808), - [anon_sym___attribute__] = ACTIONS(811), - [anon_sym___scanf] = ACTIONS(814), - [anon_sym___printf] = ACTIONS(814), - [anon_sym_LBRACK_LBRACK] = ACTIONS(817), - [anon_sym___declspec] = ACTIONS(820), - [anon_sym___cdecl] = ACTIONS(823), - [anon_sym___clrcall] = ACTIONS(823), - [anon_sym___stdcall] = ACTIONS(823), - [anon_sym___fastcall] = ACTIONS(823), - [anon_sym___thiscall] = ACTIONS(823), - [anon_sym___vectorcall] = ACTIONS(823), - [anon_sym_LBRACE] = ACTIONS(826), - [anon_sym_signed] = ACTIONS(829), - [anon_sym_unsigned] = ACTIONS(829), - [anon_sym_long] = ACTIONS(829), - [anon_sym_short] = ACTIONS(829), - [anon_sym_static] = ACTIONS(832), - [anon_sym_auto] = ACTIONS(832), - [anon_sym_register] = ACTIONS(832), - [anon_sym_inline] = ACTIONS(832), - [anon_sym___inline] = ACTIONS(832), - [anon_sym___inline__] = ACTIONS(832), - [anon_sym___forceinline] = ACTIONS(832), - [anon_sym_thread_local] = ACTIONS(832), - [anon_sym___thread] = ACTIONS(832), - [anon_sym_const] = ACTIONS(835), - [anon_sym_constexpr] = ACTIONS(835), - [anon_sym_volatile] = ACTIONS(835), - [anon_sym_restrict] = ACTIONS(835), - [anon_sym___restrict__] = ACTIONS(835), - [anon_sym__Atomic] = ACTIONS(835), - [anon_sym__Noreturn] = ACTIONS(835), - [anon_sym_noreturn] = ACTIONS(835), - [sym_primitive_type] = ACTIONS(838), - [anon_sym_enum] = ACTIONS(841), - [anon_sym_struct] = ACTIONS(844), - [anon_sym_union] = ACTIONS(847), - [anon_sym_if] = ACTIONS(850), - [anon_sym_switch] = ACTIONS(853), - [anon_sym_case] = ACTIONS(856), - [anon_sym_default] = ACTIONS(859), - [anon_sym_while] = ACTIONS(862), - [anon_sym_do] = ACTIONS(865), - [anon_sym_for] = ACTIONS(868), - [anon_sym_return] = ACTIONS(871), - [anon_sym_break] = ACTIONS(874), - [anon_sym_continue] = ACTIONS(877), - [anon_sym_goto] = ACTIONS(880), - [anon_sym_DASH_DASH] = ACTIONS(883), - [anon_sym_PLUS_PLUS] = ACTIONS(883), - [anon_sym_sizeof] = ACTIONS(886), - [anon_sym___alignof__] = ACTIONS(889), - [anon_sym___alignof] = ACTIONS(889), - [anon_sym__alignof] = ACTIONS(889), - [anon_sym_alignof] = ACTIONS(889), - [anon_sym__Alignof] = ACTIONS(889), - [anon_sym_offsetof] = ACTIONS(892), - [anon_sym__Generic] = ACTIONS(895), - [anon_sym_asm] = ACTIONS(898), - [anon_sym___asm__] = ACTIONS(898), - [sym_number_literal] = ACTIONS(901), - [anon_sym_L_SQUOTE] = ACTIONS(904), - [anon_sym_u_SQUOTE] = ACTIONS(904), - [anon_sym_U_SQUOTE] = ACTIONS(904), - [anon_sym_u8_SQUOTE] = ACTIONS(904), - [anon_sym_SQUOTE] = ACTIONS(904), - [anon_sym_L_DQUOTE] = ACTIONS(907), - [anon_sym_u_DQUOTE] = ACTIONS(907), - [anon_sym_U_DQUOTE] = ACTIONS(907), - [anon_sym_u8_DQUOTE] = ACTIONS(907), - [anon_sym_DQUOTE] = ACTIONS(907), - [sym_true] = ACTIONS(910), - [sym_false] = ACTIONS(910), - [anon_sym_NULL] = ACTIONS(913), - [anon_sym_nullptr] = ACTIONS(913), + [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(928), + [anon_sym___clrcall] = ACTIONS(928), + [anon_sym___stdcall] = ACTIONS(928), + [anon_sym___fastcall] = ACTIONS(928), + [anon_sym___thiscall] = ACTIONS(928), + [anon_sym___vectorcall] = ACTIONS(928), + [anon_sym_LBRACE] = ACTIONS(133), + [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), + [sym_primitive_type] = ACTIONS(53), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [anon_sym_if] = ACTIONS(135), + [anon_sym_else] = ACTIONS(928), + [anon_sym_switch] = ACTIONS(137), + [anon_sym_case] = ACTIONS(928), + [anon_sym_default] = ACTIONS(928), + [anon_sym_while] = ACTIONS(143), + [anon_sym_do] = ACTIONS(145), + [anon_sym_for] = ACTIONS(147), + [anon_sym_return] = ACTIONS(149), + [anon_sym_break] = ACTIONS(151), + [anon_sym_continue] = ACTIONS(153), + [anon_sym_goto] = ACTIONS(155), + [anon_sym___try] = ACTIONS(157), + [anon_sym___leave] = ACTIONS(159), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [sym_number_literal] = ACTIONS(161), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(163), + [sym_false] = ACTIONS(163), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [53] = { - [sym_preproc_include] = STATE(52), - [sym_preproc_def] = STATE(52), - [sym_preproc_function_def] = STATE(52), - [sym_preproc_call] = STATE(52), - [sym_preproc_if] = STATE(52), - [sym_preproc_ifdef] = STATE(52), - [sym_function_definition] = STATE(52), - [sym__old_style_function_definition] = STATE(461), - [sym_declaration] = STATE(52), - [sym_type_definition] = STATE(52), - [sym__declaration_modifiers] = STATE(861), - [sym__declaration_specifiers] = STATE(1486), - [sym_linkage_specification] = STATE(52), - [sym_attribute_specifier] = STATE(861), - [sym_attribute_declaration] = STATE(504), - [sym_ms_declspec_modifier] = STATE(861), - [sym_ms_call_modifier] = STATE(855), - [sym_compound_statement] = STATE(52), - [sym_storage_class_specifier] = STATE(861), - [sym_type_qualifier] = STATE(861), - [sym__type_specifier] = STATE(1125), - [sym_sized_type_specifier] = STATE(1106), - [sym_enum_specifier] = STATE(1106), - [sym_struct_specifier] = STATE(1106), - [sym_union_specifier] = STATE(1106), - [sym_attributed_statement] = STATE(52), - [sym_labeled_statement] = STATE(52), - [sym__top_level_expression_statement] = STATE(52), - [sym_if_statement] = STATE(52), - [sym_switch_statement] = STATE(52), - [sym_case_statement] = STATE(52), - [sym_while_statement] = STATE(52), - [sym_do_statement] = STATE(52), - [sym_for_statement] = STATE(52), - [sym_return_statement] = STATE(52), - [sym_break_statement] = STATE(52), - [sym_continue_statement] = STATE(52), - [sym_goto_statement] = STATE(52), - [sym__expression] = STATE(1307), - [sym__expression_not_binary] = STATE(1310), - [sym_conditional_expression] = STATE(1310), - [sym_assignment_expression] = STATE(1310), - [sym_pointer_expression] = STATE(901), - [sym_unary_expression] = STATE(1310), - [sym_binary_expression] = STATE(792), - [sym_update_expression] = STATE(1310), - [sym_cast_expression] = STATE(1310), - [sym_sizeof_expression] = STATE(1310), - [sym_alignof_expression] = STATE(1310), - [sym_offsetof_expression] = STATE(1310), - [sym_generic_expression] = STATE(1310), - [sym_subscript_expression] = STATE(901), - [sym_call_expression] = STATE(901), - [sym_gnu_asm_expression] = STATE(1310), - [sym_field_expression] = STATE(901), - [sym_compound_literal_expression] = STATE(1310), - [sym_parenthesized_expression] = STATE(901), - [sym_char_literal] = STATE(1310), - [sym_concatenated_string] = STATE(1310), - [sym_string_literal] = STATE(675), - [sym_null] = STATE(1310), - [sym__empty_declaration] = STATE(52), - [sym_macro_type_specifier] = STATE(1106), - [aux_sym_translation_unit_repeat1] = STATE(52), - [aux_sym__declaration_specifiers_repeat1] = STATE(861), - [aux_sym_attributed_declarator_repeat1] = STATE(449), - [aux_sym_sized_type_specifier_repeat1] = STATE(1113), - [ts_builtin_sym_end] = ACTIONS(916), - [sym_identifier] = ACTIONS(7), - [aux_sym_preproc_include_token1] = ACTIONS(9), - [aux_sym_preproc_def_token1] = ACTIONS(11), - [aux_sym_preproc_if_token1] = ACTIONS(13), - [aux_sym_preproc_ifdef_token1] = ACTIONS(15), - [aux_sym_preproc_ifdef_token2] = ACTIONS(15), - [sym_preproc_directive] = ACTIONS(17), + [55] = { + [sym_declaration] = STATE(57), + [sym_type_definition] = STATE(57), + [sym__declaration_modifiers] = STATE(855), + [sym__declaration_specifiers] = STATE(1533), + [sym_attribute_specifier] = STATE(855), + [sym_attribute_declaration] = STATE(495), + [sym_ms_declspec_modifier] = STATE(855), + [sym_compound_statement] = STATE(57), + [sym_storage_class_specifier] = STATE(855), + [sym_type_qualifier] = STATE(855), + [sym__type_specifier] = STATE(974), + [sym_sized_type_specifier] = STATE(1069), + [sym_enum_specifier] = STATE(1069), + [sym_struct_specifier] = STATE(1069), + [sym_union_specifier] = STATE(1069), + [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(1239), + [sym__expression_not_binary] = STATE(809), + [sym_comma_expression] = STATE(2249), + [sym_conditional_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_pointer_expression] = STATE(877), + [sym_unary_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_update_expression] = STATE(809), + [sym_cast_expression] = STATE(809), + [sym_sizeof_expression] = STATE(809), + [sym_alignof_expression] = STATE(809), + [sym_offsetof_expression] = STATE(809), + [sym_generic_expression] = STATE(809), + [sym_subscript_expression] = STATE(877), + [sym_call_expression] = STATE(877), + [sym_gnu_asm_expression] = STATE(809), + [sym_field_expression] = STATE(877), + [sym_compound_literal_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(877), + [sym_char_literal] = STATE(809), + [sym_concatenated_string] = STATE(809), + [sym_string_literal] = STATE(573), + [sym_null] = STATE(809), + [sym_macro_type_specifier] = STATE(1069), + [aux_sym__declaration_specifiers_repeat1] = STATE(855), + [aux_sym_attributed_declarator_repeat1] = STATE(435), + [aux_sym_sized_type_specifier_repeat1] = STATE(1085), + [aux_sym_case_statement_repeat1] = STATE(57), + [sym_identifier] = ACTIONS(926), + [aux_sym_preproc_include_token1] = ACTIONS(930), + [aux_sym_preproc_def_token1] = ACTIONS(930), + [aux_sym_preproc_if_token1] = ACTIONS(930), + [aux_sym_preproc_if_token2] = ACTIONS(930), + [aux_sym_preproc_ifdef_token1] = ACTIONS(930), + [aux_sym_preproc_ifdef_token2] = ACTIONS(930), + [aux_sym_preproc_else_token1] = ACTIONS(930), + [aux_sym_preproc_elif_token1] = ACTIONS(930), + [aux_sym_preproc_elifdef_token1] = ACTIONS(930), + [aux_sym_preproc_elifdef_token2] = ACTIONS(930), + [sym_preproc_directive] = ACTIONS(930), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -24648,102 +25477,110 @@ 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(27), - [anon_sym_typedef] = ACTIONS(29), - [anon_sym_extern] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(125), + [anon_sym___extension__] = ACTIONS(127), + [anon_sym_typedef] = ACTIONS(129), + [anon_sym_extern] = ACTIONS(49), [anon_sym___attribute__] = ACTIONS(33), [anon_sym___scanf] = ACTIONS(35), [anon_sym___printf] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym___cdecl] = ACTIONS(41), - [anon_sym___clrcall] = ACTIONS(41), - [anon_sym___stdcall] = ACTIONS(41), - [anon_sym___fastcall] = ACTIONS(41), - [anon_sym___thiscall] = ACTIONS(41), - [anon_sym___vectorcall] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [sym_primitive_type] = ACTIONS(51), - [anon_sym_enum] = ACTIONS(53), - [anon_sym_struct] = ACTIONS(55), - [anon_sym_union] = ACTIONS(57), - [anon_sym_if] = ACTIONS(59), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_case] = ACTIONS(63), - [anon_sym_default] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_do] = ACTIONS(69), - [anon_sym_for] = ACTIONS(71), - [anon_sym_return] = ACTIONS(73), - [anon_sym_break] = ACTIONS(75), - [anon_sym_continue] = ACTIONS(77), - [anon_sym_goto] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(83), - [anon_sym___alignof__] = ACTIONS(85), - [anon_sym___alignof] = ACTIONS(85), - [anon_sym__alignof] = ACTIONS(85), - [anon_sym_alignof] = ACTIONS(85), - [anon_sym__Alignof] = ACTIONS(85), - [anon_sym_offsetof] = ACTIONS(87), - [anon_sym__Generic] = ACTIONS(89), - [anon_sym_asm] = ACTIONS(91), - [anon_sym___asm__] = ACTIONS(91), - [sym_number_literal] = ACTIONS(93), - [anon_sym_L_SQUOTE] = ACTIONS(95), - [anon_sym_u_SQUOTE] = ACTIONS(95), - [anon_sym_U_SQUOTE] = ACTIONS(95), - [anon_sym_u8_SQUOTE] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(95), - [anon_sym_L_DQUOTE] = ACTIONS(97), - [anon_sym_u_DQUOTE] = ACTIONS(97), - [anon_sym_U_DQUOTE] = ACTIONS(97), - [anon_sym_u8_DQUOTE] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(97), - [sym_true] = ACTIONS(99), - [sym_false] = ACTIONS(99), - [anon_sym_NULL] = ACTIONS(101), - [anon_sym_nullptr] = ACTIONS(101), + [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(930), + [anon_sym___clrcall] = ACTIONS(930), + [anon_sym___stdcall] = ACTIONS(930), + [anon_sym___fastcall] = ACTIONS(930), + [anon_sym___thiscall] = ACTIONS(930), + [anon_sym___vectorcall] = ACTIONS(930), + [anon_sym_LBRACE] = ACTIONS(133), + [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), + [sym_primitive_type] = ACTIONS(53), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [anon_sym_if] = ACTIONS(135), + [anon_sym_else] = ACTIONS(930), + [anon_sym_switch] = ACTIONS(137), + [anon_sym_case] = ACTIONS(930), + [anon_sym_default] = ACTIONS(930), + [anon_sym_while] = ACTIONS(143), + [anon_sym_do] = ACTIONS(145), + [anon_sym_for] = ACTIONS(147), + [anon_sym_return] = ACTIONS(149), + [anon_sym_break] = ACTIONS(151), + [anon_sym_continue] = ACTIONS(153), + [anon_sym_goto] = ACTIONS(155), + [anon_sym___try] = ACTIONS(157), + [anon_sym___leave] = ACTIONS(159), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [sym_number_literal] = ACTIONS(161), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(163), + [sym_false] = ACTIONS(163), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [54] = { + [56] = { [sym_declaration] = STATE(57), [sym_type_definition] = STATE(57), - [sym__declaration_modifiers] = STATE(861), - [sym__declaration_specifiers] = STATE(1498), - [sym_attribute_specifier] = STATE(861), - [sym_attribute_declaration] = STATE(504), - [sym_ms_declspec_modifier] = STATE(861), + [sym__declaration_modifiers] = STATE(855), + [sym__declaration_specifiers] = STATE(1533), + [sym_attribute_specifier] = STATE(855), + [sym_attribute_declaration] = STATE(495), + [sym_ms_declspec_modifier] = STATE(855), [sym_compound_statement] = STATE(57), - [sym_storage_class_specifier] = STATE(861), - [sym_type_qualifier] = STATE(861), - [sym__type_specifier] = STATE(1040), - [sym_sized_type_specifier] = STATE(1106), - [sym_enum_specifier] = STATE(1106), - [sym_struct_specifier] = STATE(1106), - [sym_union_specifier] = STATE(1106), + [sym_storage_class_specifier] = STATE(855), + [sym_type_qualifier] = STATE(855), + [sym__type_specifier] = STATE(974), + [sym_sized_type_specifier] = STATE(1069), + [sym_enum_specifier] = STATE(1069), + [sym_struct_specifier] = STATE(1069), + [sym_union_specifier] = STATE(1069), [sym_attributed_statement] = STATE(57), [sym_labeled_statement] = STATE(57), [sym_expression_statement] = STATE(57), @@ -24758,47 +25595,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(57), [sym_seh_try_statement] = STATE(57), [sym_seh_leave_statement] = STATE(57), - [sym__expression] = STATE(1225), - [sym__expression_not_binary] = STATE(792), - [sym_comma_expression] = STATE(2038), - [sym_conditional_expression] = STATE(792), - [sym_assignment_expression] = STATE(792), - [sym_pointer_expression] = STATE(901), - [sym_unary_expression] = STATE(792), - [sym_binary_expression] = STATE(792), - [sym_update_expression] = STATE(792), - [sym_cast_expression] = STATE(792), - [sym_sizeof_expression] = STATE(792), - [sym_alignof_expression] = STATE(792), - [sym_offsetof_expression] = STATE(792), - [sym_generic_expression] = STATE(792), - [sym_subscript_expression] = STATE(901), - [sym_call_expression] = STATE(901), - [sym_gnu_asm_expression] = STATE(792), - [sym_field_expression] = STATE(901), - [sym_compound_literal_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(901), - [sym_char_literal] = STATE(792), - [sym_concatenated_string] = STATE(792), - [sym_string_literal] = STATE(675), - [sym_null] = STATE(792), - [sym_macro_type_specifier] = STATE(1106), - [aux_sym__declaration_specifiers_repeat1] = STATE(861), - [aux_sym_attributed_declarator_repeat1] = STATE(463), - [aux_sym_sized_type_specifier_repeat1] = STATE(1113), + [sym__expression] = STATE(1239), + [sym__expression_not_binary] = STATE(809), + [sym_comma_expression] = STATE(2249), + [sym_conditional_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_pointer_expression] = STATE(877), + [sym_unary_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_update_expression] = STATE(809), + [sym_cast_expression] = STATE(809), + [sym_sizeof_expression] = STATE(809), + [sym_alignof_expression] = STATE(809), + [sym_offsetof_expression] = STATE(809), + [sym_generic_expression] = STATE(809), + [sym_subscript_expression] = STATE(877), + [sym_call_expression] = STATE(877), + [sym_gnu_asm_expression] = STATE(809), + [sym_field_expression] = STATE(877), + [sym_compound_literal_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(877), + [sym_char_literal] = STATE(809), + [sym_concatenated_string] = STATE(809), + [sym_string_literal] = STATE(573), + [sym_null] = STATE(809), + [sym_macro_type_specifier] = STATE(1069), + [aux_sym__declaration_specifiers_repeat1] = STATE(855), + [aux_sym_attributed_declarator_repeat1] = STATE(435), + [aux_sym_sized_type_specifier_repeat1] = STATE(1085), [aux_sym_case_statement_repeat1] = STATE(57), - [sym_identifier] = ACTIONS(918), - [aux_sym_preproc_include_token1] = ACTIONS(920), - [aux_sym_preproc_def_token1] = ACTIONS(920), - [aux_sym_preproc_if_token1] = ACTIONS(920), - [aux_sym_preproc_if_token2] = ACTIONS(920), - [aux_sym_preproc_ifdef_token1] = ACTIONS(920), - [aux_sym_preproc_ifdef_token2] = ACTIONS(920), - [aux_sym_preproc_else_token1] = ACTIONS(920), - [aux_sym_preproc_elif_token1] = ACTIONS(920), - [aux_sym_preproc_elifdef_token1] = ACTIONS(920), - [aux_sym_preproc_elifdef_token2] = ACTIONS(920), - [sym_preproc_directive] = ACTIONS(920), + [sym_identifier] = ACTIONS(926), + [aux_sym_preproc_include_token1] = ACTIONS(932), + [aux_sym_preproc_def_token1] = ACTIONS(932), + [aux_sym_preproc_if_token1] = ACTIONS(932), + [aux_sym_preproc_if_token2] = ACTIONS(932), + [aux_sym_preproc_ifdef_token1] = ACTIONS(932), + [aux_sym_preproc_ifdef_token2] = ACTIONS(932), + [aux_sym_preproc_else_token1] = ACTIONS(932), + [aux_sym_preproc_elif_token1] = ACTIONS(932), + [aux_sym_preproc_elifdef_token1] = ACTIONS(932), + [aux_sym_preproc_elifdef_token2] = ACTIONS(932), + [sym_preproc_directive] = ACTIONS(932), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -24806,106 +25643,276 @@ 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(123), - [anon_sym___extension__] = ACTIONS(125), - [anon_sym_typedef] = ACTIONS(127), - [anon_sym_extern] = ACTIONS(47), + [anon_sym_SEMI] = ACTIONS(125), + [anon_sym___extension__] = ACTIONS(127), + [anon_sym_typedef] = ACTIONS(129), + [anon_sym_extern] = ACTIONS(49), [anon_sym___attribute__] = ACTIONS(33), [anon_sym___scanf] = ACTIONS(35), [anon_sym___printf] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym___cdecl] = ACTIONS(920), - [anon_sym___clrcall] = ACTIONS(920), - [anon_sym___stdcall] = ACTIONS(920), - [anon_sym___fastcall] = ACTIONS(920), - [anon_sym___thiscall] = ACTIONS(920), - [anon_sym___vectorcall] = ACTIONS(920), - [anon_sym_LBRACE] = ACTIONS(131), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [sym_primitive_type] = ACTIONS(51), - [anon_sym_enum] = ACTIONS(53), - [anon_sym_struct] = ACTIONS(55), - [anon_sym_union] = ACTIONS(57), - [anon_sym_if] = ACTIONS(133), - [anon_sym_else] = ACTIONS(920), - [anon_sym_switch] = ACTIONS(135), - [anon_sym_case] = ACTIONS(920), - [anon_sym_default] = ACTIONS(920), - [anon_sym_while] = ACTIONS(141), - [anon_sym_do] = ACTIONS(143), - [anon_sym_for] = ACTIONS(145), - [anon_sym_return] = ACTIONS(147), - [anon_sym_break] = ACTIONS(149), - [anon_sym_continue] = ACTIONS(151), - [anon_sym_goto] = ACTIONS(153), - [anon_sym___try] = ACTIONS(155), - [anon_sym___leave] = ACTIONS(157), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(83), - [anon_sym___alignof__] = ACTIONS(85), - [anon_sym___alignof] = ACTIONS(85), - [anon_sym__alignof] = ACTIONS(85), - [anon_sym_alignof] = ACTIONS(85), - [anon_sym__Alignof] = ACTIONS(85), - [anon_sym_offsetof] = ACTIONS(87), - [anon_sym__Generic] = ACTIONS(89), - [anon_sym_asm] = ACTIONS(91), - [anon_sym___asm__] = ACTIONS(91), - [sym_number_literal] = ACTIONS(159), - [anon_sym_L_SQUOTE] = ACTIONS(95), - [anon_sym_u_SQUOTE] = ACTIONS(95), - [anon_sym_U_SQUOTE] = ACTIONS(95), - [anon_sym_u8_SQUOTE] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(95), - [anon_sym_L_DQUOTE] = ACTIONS(97), - [anon_sym_u_DQUOTE] = ACTIONS(97), - [anon_sym_U_DQUOTE] = ACTIONS(97), - [anon_sym_u8_DQUOTE] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(97), - [sym_true] = ACTIONS(161), - [sym_false] = ACTIONS(161), - [anon_sym_NULL] = ACTIONS(101), - [anon_sym_nullptr] = ACTIONS(101), + [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(932), + [anon_sym___clrcall] = ACTIONS(932), + [anon_sym___stdcall] = ACTIONS(932), + [anon_sym___fastcall] = ACTIONS(932), + [anon_sym___thiscall] = ACTIONS(932), + [anon_sym___vectorcall] = ACTIONS(932), + [anon_sym_LBRACE] = ACTIONS(133), + [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), + [sym_primitive_type] = ACTIONS(53), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [anon_sym_if] = ACTIONS(135), + [anon_sym_else] = ACTIONS(932), + [anon_sym_switch] = ACTIONS(137), + [anon_sym_case] = ACTIONS(932), + [anon_sym_default] = ACTIONS(932), + [anon_sym_while] = ACTIONS(143), + [anon_sym_do] = ACTIONS(145), + [anon_sym_for] = ACTIONS(147), + [anon_sym_return] = ACTIONS(149), + [anon_sym_break] = ACTIONS(151), + [anon_sym_continue] = ACTIONS(153), + [anon_sym_goto] = ACTIONS(155), + [anon_sym___try] = ACTIONS(157), + [anon_sym___leave] = ACTIONS(159), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [sym_number_literal] = ACTIONS(161), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(163), + [sym_false] = ACTIONS(163), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [55] = { + [57] = { + [sym_declaration] = STATE(57), + [sym_type_definition] = STATE(57), + [sym__declaration_modifiers] = STATE(855), + [sym__declaration_specifiers] = STATE(1533), + [sym_attribute_specifier] = STATE(855), + [sym_attribute_declaration] = STATE(495), + [sym_ms_declspec_modifier] = STATE(855), + [sym_compound_statement] = STATE(57), + [sym_storage_class_specifier] = STATE(855), + [sym_type_qualifier] = STATE(855), + [sym__type_specifier] = STATE(974), + [sym_sized_type_specifier] = STATE(1069), + [sym_enum_specifier] = STATE(1069), + [sym_struct_specifier] = STATE(1069), + [sym_union_specifier] = STATE(1069), + [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(1239), + [sym__expression_not_binary] = STATE(809), + [sym_comma_expression] = STATE(2249), + [sym_conditional_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_pointer_expression] = STATE(877), + [sym_unary_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_update_expression] = STATE(809), + [sym_cast_expression] = STATE(809), + [sym_sizeof_expression] = STATE(809), + [sym_alignof_expression] = STATE(809), + [sym_offsetof_expression] = STATE(809), + [sym_generic_expression] = STATE(809), + [sym_subscript_expression] = STATE(877), + [sym_call_expression] = STATE(877), + [sym_gnu_asm_expression] = STATE(809), + [sym_field_expression] = STATE(877), + [sym_compound_literal_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(877), + [sym_char_literal] = STATE(809), + [sym_concatenated_string] = STATE(809), + [sym_string_literal] = STATE(573), + [sym_null] = STATE(809), + [sym_macro_type_specifier] = STATE(1069), + [aux_sym__declaration_specifiers_repeat1] = STATE(855), + [aux_sym_attributed_declarator_repeat1] = STATE(435), + [aux_sym_sized_type_specifier_repeat1] = STATE(1085), + [aux_sym_case_statement_repeat1] = STATE(57), + [sym_identifier] = ACTIONS(934), + [aux_sym_preproc_include_token1] = ACTIONS(937), + [aux_sym_preproc_def_token1] = ACTIONS(937), + [aux_sym_preproc_if_token1] = ACTIONS(937), + [aux_sym_preproc_if_token2] = ACTIONS(937), + [aux_sym_preproc_ifdef_token1] = ACTIONS(937), + [aux_sym_preproc_ifdef_token2] = ACTIONS(937), + [aux_sym_preproc_else_token1] = ACTIONS(937), + [aux_sym_preproc_elif_token1] = ACTIONS(937), + [aux_sym_preproc_elifdef_token1] = ACTIONS(937), + [aux_sym_preproc_elifdef_token2] = ACTIONS(937), + [sym_preproc_directive] = ACTIONS(937), + [anon_sym_LPAREN2] = ACTIONS(939), + [anon_sym_BANG] = ACTIONS(942), + [anon_sym_TILDE] = ACTIONS(942), + [anon_sym_DASH] = ACTIONS(945), + [anon_sym_PLUS] = ACTIONS(945), + [anon_sym_STAR] = ACTIONS(948), + [anon_sym_AMP] = ACTIONS(948), + [anon_sym_SEMI] = ACTIONS(951), + [anon_sym___extension__] = ACTIONS(954), + [anon_sym_typedef] = ACTIONS(957), + [anon_sym_extern] = ACTIONS(960), + [anon_sym___attribute__] = ACTIONS(963), + [anon_sym___scanf] = ACTIONS(966), + [anon_sym___printf] = ACTIONS(966), + [anon_sym___read_mostly] = ACTIONS(969), + [anon_sym___must_hold] = ACTIONS(963), + [anon_sym___ro_after_init] = ACTIONS(969), + [anon_sym___init] = ACTIONS(969), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym___declspec] = ACTIONS(975), + [anon_sym___cdecl] = ACTIONS(937), + [anon_sym___clrcall] = ACTIONS(937), + [anon_sym___stdcall] = ACTIONS(937), + [anon_sym___fastcall] = ACTIONS(937), + [anon_sym___thiscall] = ACTIONS(937), + [anon_sym___vectorcall] = ACTIONS(937), + [anon_sym_LBRACE] = ACTIONS(978), + [anon_sym_signed] = ACTIONS(981), + [anon_sym_unsigned] = ACTIONS(981), + [anon_sym_long] = ACTIONS(981), + [anon_sym_short] = ACTIONS(981), + [anon_sym_static] = ACTIONS(960), + [anon_sym_auto] = ACTIONS(960), + [anon_sym_register] = ACTIONS(960), + [anon_sym_inline] = ACTIONS(960), + [anon_sym___inline] = ACTIONS(960), + [anon_sym___inline__] = ACTIONS(960), + [anon_sym___forceinline] = ACTIONS(960), + [anon_sym_thread_local] = ACTIONS(960), + [anon_sym___thread] = ACTIONS(960), + [anon_sym_const] = ACTIONS(984), + [anon_sym_constexpr] = ACTIONS(984), + [anon_sym_volatile] = ACTIONS(984), + [anon_sym_restrict] = ACTIONS(984), + [anon_sym___restrict__] = ACTIONS(984), + [anon_sym__Atomic] = ACTIONS(984), + [anon_sym__Noreturn] = ACTIONS(984), + [anon_sym_noreturn] = ACTIONS(984), + [sym_primitive_type] = ACTIONS(987), + [anon_sym_enum] = ACTIONS(990), + [anon_sym_struct] = ACTIONS(993), + [anon_sym_union] = ACTIONS(996), + [anon_sym_if] = ACTIONS(999), + [anon_sym_else] = ACTIONS(937), + [anon_sym_switch] = ACTIONS(1002), + [anon_sym_case] = ACTIONS(937), + [anon_sym_default] = ACTIONS(937), + [anon_sym_while] = ACTIONS(1005), + [anon_sym_do] = ACTIONS(1008), + [anon_sym_for] = ACTIONS(1011), + [anon_sym_return] = ACTIONS(1014), + [anon_sym_break] = ACTIONS(1017), + [anon_sym_continue] = ACTIONS(1020), + [anon_sym_goto] = ACTIONS(1023), + [anon_sym___try] = ACTIONS(1026), + [anon_sym___leave] = ACTIONS(1029), + [anon_sym_DASH_DASH] = ACTIONS(1032), + [anon_sym_PLUS_PLUS] = ACTIONS(1032), + [anon_sym_sizeof] = ACTIONS(1035), + [anon_sym___alignof__] = ACTIONS(1038), + [anon_sym___alignof] = ACTIONS(1038), + [anon_sym__alignof] = ACTIONS(1038), + [anon_sym_alignof] = ACTIONS(1038), + [anon_sym__Alignof] = ACTIONS(1038), + [anon_sym_offsetof] = ACTIONS(1041), + [anon_sym__Generic] = ACTIONS(1044), + [anon_sym_asm] = ACTIONS(1047), + [anon_sym___asm__] = ACTIONS(1047), + [sym_number_literal] = ACTIONS(1050), + [anon_sym_L_SQUOTE] = ACTIONS(1053), + [anon_sym_u_SQUOTE] = ACTIONS(1053), + [anon_sym_U_SQUOTE] = ACTIONS(1053), + [anon_sym_u8_SQUOTE] = ACTIONS(1053), + [anon_sym_SQUOTE] = ACTIONS(1053), + [anon_sym_L_DQUOTE] = ACTIONS(1056), + [anon_sym_u_DQUOTE] = ACTIONS(1056), + [anon_sym_U_DQUOTE] = ACTIONS(1056), + [anon_sym_u8_DQUOTE] = ACTIONS(1056), + [anon_sym_DQUOTE] = ACTIONS(1056), + [sym_true] = ACTIONS(1059), + [sym_false] = ACTIONS(1059), + [anon_sym_NULL] = ACTIONS(1062), + [anon_sym_nullptr] = ACTIONS(1062), + [sym_comment] = ACTIONS(3), + }, + [58] = { [sym_declaration] = STATE(56), [sym_type_definition] = STATE(56), - [sym__declaration_modifiers] = STATE(861), - [sym__declaration_specifiers] = STATE(1498), - [sym_attribute_specifier] = STATE(861), - [sym_attribute_declaration] = STATE(504), - [sym_ms_declspec_modifier] = STATE(861), + [sym__declaration_modifiers] = STATE(855), + [sym__declaration_specifiers] = STATE(1533), + [sym_attribute_specifier] = STATE(855), + [sym_attribute_declaration] = STATE(495), + [sym_ms_declspec_modifier] = STATE(855), [sym_compound_statement] = STATE(56), - [sym_storage_class_specifier] = STATE(861), - [sym_type_qualifier] = STATE(861), - [sym__type_specifier] = STATE(1040), - [sym_sized_type_specifier] = STATE(1106), - [sym_enum_specifier] = STATE(1106), - [sym_struct_specifier] = STATE(1106), - [sym_union_specifier] = STATE(1106), + [sym_storage_class_specifier] = STATE(855), + [sym_type_qualifier] = STATE(855), + [sym__type_specifier] = STATE(974), + [sym_sized_type_specifier] = STATE(1069), + [sym_enum_specifier] = STATE(1069), + [sym_struct_specifier] = STATE(1069), + [sym_union_specifier] = STATE(1069), [sym_attributed_statement] = STATE(56), [sym_labeled_statement] = STATE(56), [sym_expression_statement] = STATE(56), @@ -24920,371 +25927,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(56), [sym_seh_try_statement] = STATE(56), [sym_seh_leave_statement] = STATE(56), - [sym__expression] = STATE(1225), - [sym__expression_not_binary] = STATE(792), - [sym_comma_expression] = STATE(2038), - [sym_conditional_expression] = STATE(792), - [sym_assignment_expression] = STATE(792), - [sym_pointer_expression] = STATE(901), - [sym_unary_expression] = STATE(792), - [sym_binary_expression] = STATE(792), - [sym_update_expression] = STATE(792), - [sym_cast_expression] = STATE(792), - [sym_sizeof_expression] = STATE(792), - [sym_alignof_expression] = STATE(792), - [sym_offsetof_expression] = STATE(792), - [sym_generic_expression] = STATE(792), - [sym_subscript_expression] = STATE(901), - [sym_call_expression] = STATE(901), - [sym_gnu_asm_expression] = STATE(792), - [sym_field_expression] = STATE(901), - [sym_compound_literal_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(901), - [sym_char_literal] = STATE(792), - [sym_concatenated_string] = STATE(792), - [sym_string_literal] = STATE(675), - [sym_null] = STATE(792), - [sym_macro_type_specifier] = STATE(1106), - [aux_sym__declaration_specifiers_repeat1] = STATE(861), - [aux_sym_attributed_declarator_repeat1] = STATE(463), - [aux_sym_sized_type_specifier_repeat1] = STATE(1113), + [sym__expression] = STATE(1239), + [sym__expression_not_binary] = STATE(809), + [sym_comma_expression] = STATE(2249), + [sym_conditional_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_pointer_expression] = STATE(877), + [sym_unary_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_update_expression] = STATE(809), + [sym_cast_expression] = STATE(809), + [sym_sizeof_expression] = STATE(809), + [sym_alignof_expression] = STATE(809), + [sym_offsetof_expression] = STATE(809), + [sym_generic_expression] = STATE(809), + [sym_subscript_expression] = STATE(877), + [sym_call_expression] = STATE(877), + [sym_gnu_asm_expression] = STATE(809), + [sym_field_expression] = STATE(877), + [sym_compound_literal_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(877), + [sym_char_literal] = STATE(809), + [sym_concatenated_string] = STATE(809), + [sym_string_literal] = STATE(573), + [sym_null] = STATE(809), + [sym_macro_type_specifier] = STATE(1069), + [aux_sym__declaration_specifiers_repeat1] = STATE(855), + [aux_sym_attributed_declarator_repeat1] = STATE(435), + [aux_sym_sized_type_specifier_repeat1] = STATE(1085), [aux_sym_case_statement_repeat1] = STATE(56), - [sym_identifier] = ACTIONS(918), - [aux_sym_preproc_include_token1] = ACTIONS(922), - [aux_sym_preproc_def_token1] = ACTIONS(922), - [aux_sym_preproc_if_token1] = ACTIONS(922), - [aux_sym_preproc_if_token2] = ACTIONS(922), - [aux_sym_preproc_ifdef_token1] = ACTIONS(922), - [aux_sym_preproc_ifdef_token2] = ACTIONS(922), - [aux_sym_preproc_else_token1] = ACTIONS(922), - [aux_sym_preproc_elif_token1] = ACTIONS(922), - [aux_sym_preproc_elifdef_token1] = ACTIONS(922), - [aux_sym_preproc_elifdef_token2] = ACTIONS(922), - [sym_preproc_directive] = ACTIONS(922), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(123), - [anon_sym___extension__] = ACTIONS(125), - [anon_sym_typedef] = ACTIONS(127), - [anon_sym_extern] = ACTIONS(47), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym___scanf] = ACTIONS(35), - [anon_sym___printf] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym___cdecl] = ACTIONS(922), - [anon_sym___clrcall] = ACTIONS(922), - [anon_sym___stdcall] = ACTIONS(922), - [anon_sym___fastcall] = ACTIONS(922), - [anon_sym___thiscall] = ACTIONS(922), - [anon_sym___vectorcall] = ACTIONS(922), - [anon_sym_LBRACE] = ACTIONS(131), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [sym_primitive_type] = ACTIONS(51), - [anon_sym_enum] = ACTIONS(53), - [anon_sym_struct] = ACTIONS(55), - [anon_sym_union] = ACTIONS(57), - [anon_sym_if] = ACTIONS(133), - [anon_sym_else] = ACTIONS(922), - [anon_sym_switch] = ACTIONS(135), - [anon_sym_case] = ACTIONS(922), - [anon_sym_default] = ACTIONS(922), - [anon_sym_while] = ACTIONS(141), - [anon_sym_do] = ACTIONS(143), - [anon_sym_for] = ACTIONS(145), - [anon_sym_return] = ACTIONS(147), - [anon_sym_break] = ACTIONS(149), - [anon_sym_continue] = ACTIONS(151), - [anon_sym_goto] = ACTIONS(153), - [anon_sym___try] = ACTIONS(155), - [anon_sym___leave] = ACTIONS(157), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(83), - [anon_sym___alignof__] = ACTIONS(85), - [anon_sym___alignof] = ACTIONS(85), - [anon_sym__alignof] = ACTIONS(85), - [anon_sym_alignof] = ACTIONS(85), - [anon_sym__Alignof] = ACTIONS(85), - [anon_sym_offsetof] = ACTIONS(87), - [anon_sym__Generic] = ACTIONS(89), - [anon_sym_asm] = ACTIONS(91), - [anon_sym___asm__] = ACTIONS(91), - [sym_number_literal] = ACTIONS(159), - [anon_sym_L_SQUOTE] = ACTIONS(95), - [anon_sym_u_SQUOTE] = ACTIONS(95), - [anon_sym_U_SQUOTE] = ACTIONS(95), - [anon_sym_u8_SQUOTE] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(95), - [anon_sym_L_DQUOTE] = ACTIONS(97), - [anon_sym_u_DQUOTE] = ACTIONS(97), - [anon_sym_U_DQUOTE] = ACTIONS(97), - [anon_sym_u8_DQUOTE] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(97), - [sym_true] = ACTIONS(161), - [sym_false] = ACTIONS(161), - [anon_sym_NULL] = ACTIONS(101), - [anon_sym_nullptr] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - }, - [56] = { - [sym_declaration] = STATE(58), - [sym_type_definition] = STATE(58), - [sym__declaration_modifiers] = STATE(861), - [sym__declaration_specifiers] = STATE(1498), - [sym_attribute_specifier] = STATE(861), - [sym_attribute_declaration] = STATE(504), - [sym_ms_declspec_modifier] = STATE(861), - [sym_compound_statement] = STATE(58), - [sym_storage_class_specifier] = STATE(861), - [sym_type_qualifier] = STATE(861), - [sym__type_specifier] = STATE(1040), - [sym_sized_type_specifier] = STATE(1106), - [sym_enum_specifier] = STATE(1106), - [sym_struct_specifier] = STATE(1106), - [sym_union_specifier] = STATE(1106), - [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(1225), - [sym__expression_not_binary] = STATE(792), - [sym_comma_expression] = STATE(2038), - [sym_conditional_expression] = STATE(792), - [sym_assignment_expression] = STATE(792), - [sym_pointer_expression] = STATE(901), - [sym_unary_expression] = STATE(792), - [sym_binary_expression] = STATE(792), - [sym_update_expression] = STATE(792), - [sym_cast_expression] = STATE(792), - [sym_sizeof_expression] = STATE(792), - [sym_alignof_expression] = STATE(792), - [sym_offsetof_expression] = STATE(792), - [sym_generic_expression] = STATE(792), - [sym_subscript_expression] = STATE(901), - [sym_call_expression] = STATE(901), - [sym_gnu_asm_expression] = STATE(792), - [sym_field_expression] = STATE(901), - [sym_compound_literal_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(901), - [sym_char_literal] = STATE(792), - [sym_concatenated_string] = STATE(792), - [sym_string_literal] = STATE(675), - [sym_null] = STATE(792), - [sym_macro_type_specifier] = STATE(1106), - [aux_sym__declaration_specifiers_repeat1] = STATE(861), - [aux_sym_attributed_declarator_repeat1] = STATE(463), - [aux_sym_sized_type_specifier_repeat1] = STATE(1113), - [aux_sym_case_statement_repeat1] = STATE(58), - [sym_identifier] = ACTIONS(918), - [aux_sym_preproc_include_token1] = ACTIONS(924), - [aux_sym_preproc_def_token1] = ACTIONS(924), - [aux_sym_preproc_if_token1] = ACTIONS(924), - [aux_sym_preproc_if_token2] = ACTIONS(924), - [aux_sym_preproc_ifdef_token1] = ACTIONS(924), - [aux_sym_preproc_ifdef_token2] = ACTIONS(924), - [aux_sym_preproc_else_token1] = ACTIONS(924), - [aux_sym_preproc_elif_token1] = ACTIONS(924), - [aux_sym_preproc_elifdef_token1] = ACTIONS(924), - [aux_sym_preproc_elifdef_token2] = ACTIONS(924), - [sym_preproc_directive] = ACTIONS(924), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(123), - [anon_sym___extension__] = ACTIONS(125), - [anon_sym_typedef] = ACTIONS(127), - [anon_sym_extern] = ACTIONS(47), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym___scanf] = ACTIONS(35), - [anon_sym___printf] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym___cdecl] = ACTIONS(924), - [anon_sym___clrcall] = ACTIONS(924), - [anon_sym___stdcall] = ACTIONS(924), - [anon_sym___fastcall] = ACTIONS(924), - [anon_sym___thiscall] = ACTIONS(924), - [anon_sym___vectorcall] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(131), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [sym_primitive_type] = ACTIONS(51), - [anon_sym_enum] = ACTIONS(53), - [anon_sym_struct] = ACTIONS(55), - [anon_sym_union] = ACTIONS(57), - [anon_sym_if] = ACTIONS(133), - [anon_sym_else] = ACTIONS(924), - [anon_sym_switch] = ACTIONS(135), - [anon_sym_case] = ACTIONS(924), - [anon_sym_default] = ACTIONS(924), - [anon_sym_while] = ACTIONS(141), - [anon_sym_do] = ACTIONS(143), - [anon_sym_for] = ACTIONS(145), - [anon_sym_return] = ACTIONS(147), - [anon_sym_break] = ACTIONS(149), - [anon_sym_continue] = ACTIONS(151), - [anon_sym_goto] = ACTIONS(153), - [anon_sym___try] = ACTIONS(155), - [anon_sym___leave] = ACTIONS(157), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(83), - [anon_sym___alignof__] = ACTIONS(85), - [anon_sym___alignof] = ACTIONS(85), - [anon_sym__alignof] = ACTIONS(85), - [anon_sym_alignof] = ACTIONS(85), - [anon_sym__Alignof] = ACTIONS(85), - [anon_sym_offsetof] = ACTIONS(87), - [anon_sym__Generic] = ACTIONS(89), - [anon_sym_asm] = ACTIONS(91), - [anon_sym___asm__] = ACTIONS(91), - [sym_number_literal] = ACTIONS(159), - [anon_sym_L_SQUOTE] = ACTIONS(95), - [anon_sym_u_SQUOTE] = ACTIONS(95), - [anon_sym_U_SQUOTE] = ACTIONS(95), - [anon_sym_u8_SQUOTE] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(95), - [anon_sym_L_DQUOTE] = ACTIONS(97), - [anon_sym_u_DQUOTE] = ACTIONS(97), - [anon_sym_U_DQUOTE] = ACTIONS(97), - [anon_sym_u8_DQUOTE] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(97), - [sym_true] = ACTIONS(161), - [sym_false] = ACTIONS(161), - [anon_sym_NULL] = ACTIONS(101), - [anon_sym_nullptr] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - }, - [57] = { - [sym_declaration] = STATE(58), - [sym_type_definition] = STATE(58), - [sym__declaration_modifiers] = STATE(861), - [sym__declaration_specifiers] = STATE(1498), - [sym_attribute_specifier] = STATE(861), - [sym_attribute_declaration] = STATE(504), - [sym_ms_declspec_modifier] = STATE(861), - [sym_compound_statement] = STATE(58), - [sym_storage_class_specifier] = STATE(861), - [sym_type_qualifier] = STATE(861), - [sym__type_specifier] = STATE(1040), - [sym_sized_type_specifier] = STATE(1106), - [sym_enum_specifier] = STATE(1106), - [sym_struct_specifier] = STATE(1106), - [sym_union_specifier] = STATE(1106), - [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(1225), - [sym__expression_not_binary] = STATE(792), - [sym_comma_expression] = STATE(2038), - [sym_conditional_expression] = STATE(792), - [sym_assignment_expression] = STATE(792), - [sym_pointer_expression] = STATE(901), - [sym_unary_expression] = STATE(792), - [sym_binary_expression] = STATE(792), - [sym_update_expression] = STATE(792), - [sym_cast_expression] = STATE(792), - [sym_sizeof_expression] = STATE(792), - [sym_alignof_expression] = STATE(792), - [sym_offsetof_expression] = STATE(792), - [sym_generic_expression] = STATE(792), - [sym_subscript_expression] = STATE(901), - [sym_call_expression] = STATE(901), - [sym_gnu_asm_expression] = STATE(792), - [sym_field_expression] = STATE(901), - [sym_compound_literal_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(901), - [sym_char_literal] = STATE(792), - [sym_concatenated_string] = STATE(792), - [sym_string_literal] = STATE(675), - [sym_null] = STATE(792), - [sym_macro_type_specifier] = STATE(1106), - [aux_sym__declaration_specifiers_repeat1] = STATE(861), - [aux_sym_attributed_declarator_repeat1] = STATE(463), - [aux_sym_sized_type_specifier_repeat1] = STATE(1113), - [aux_sym_case_statement_repeat1] = STATE(58), - [sym_identifier] = ACTIONS(918), - [aux_sym_preproc_include_token1] = ACTIONS(926), - [aux_sym_preproc_def_token1] = ACTIONS(926), - [aux_sym_preproc_if_token1] = ACTIONS(926), - [aux_sym_preproc_if_token2] = ACTIONS(926), - [aux_sym_preproc_ifdef_token1] = ACTIONS(926), - [aux_sym_preproc_ifdef_token2] = ACTIONS(926), - [aux_sym_preproc_else_token1] = ACTIONS(926), - [aux_sym_preproc_elif_token1] = ACTIONS(926), - [aux_sym_preproc_elifdef_token1] = ACTIONS(926), - [aux_sym_preproc_elifdef_token2] = ACTIONS(926), - [sym_preproc_directive] = ACTIONS(926), + [sym_identifier] = ACTIONS(926), + [aux_sym_preproc_include_token1] = ACTIONS(1065), + [aux_sym_preproc_def_token1] = ACTIONS(1065), + [aux_sym_preproc_if_token1] = ACTIONS(1065), + [aux_sym_preproc_if_token2] = ACTIONS(1065), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1065), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1065), + [aux_sym_preproc_else_token1] = ACTIONS(1065), + [aux_sym_preproc_elif_token1] = ACTIONS(1065), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1065), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1065), + [sym_preproc_directive] = ACTIONS(1065), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -25292,321 +25975,163 @@ 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(123), - [anon_sym___extension__] = ACTIONS(125), - [anon_sym_typedef] = ACTIONS(127), - [anon_sym_extern] = ACTIONS(47), + [anon_sym_SEMI] = ACTIONS(125), + [anon_sym___extension__] = ACTIONS(127), + [anon_sym_typedef] = ACTIONS(129), + [anon_sym_extern] = ACTIONS(49), [anon_sym___attribute__] = ACTIONS(33), [anon_sym___scanf] = ACTIONS(35), [anon_sym___printf] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym___cdecl] = ACTIONS(926), - [anon_sym___clrcall] = ACTIONS(926), - [anon_sym___stdcall] = ACTIONS(926), - [anon_sym___fastcall] = ACTIONS(926), - [anon_sym___thiscall] = ACTIONS(926), - [anon_sym___vectorcall] = ACTIONS(926), - [anon_sym_LBRACE] = ACTIONS(131), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [sym_primitive_type] = ACTIONS(51), - [anon_sym_enum] = ACTIONS(53), - [anon_sym_struct] = ACTIONS(55), - [anon_sym_union] = ACTIONS(57), - [anon_sym_if] = ACTIONS(133), - [anon_sym_else] = ACTIONS(926), - [anon_sym_switch] = ACTIONS(135), - [anon_sym_case] = ACTIONS(926), - [anon_sym_default] = ACTIONS(926), - [anon_sym_while] = ACTIONS(141), - [anon_sym_do] = ACTIONS(143), - [anon_sym_for] = ACTIONS(145), - [anon_sym_return] = ACTIONS(147), - [anon_sym_break] = ACTIONS(149), - [anon_sym_continue] = ACTIONS(151), - [anon_sym_goto] = ACTIONS(153), - [anon_sym___try] = ACTIONS(155), - [anon_sym___leave] = ACTIONS(157), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(83), - [anon_sym___alignof__] = ACTIONS(85), - [anon_sym___alignof] = ACTIONS(85), - [anon_sym__alignof] = ACTIONS(85), - [anon_sym_alignof] = ACTIONS(85), - [anon_sym__Alignof] = ACTIONS(85), - [anon_sym_offsetof] = ACTIONS(87), - [anon_sym__Generic] = ACTIONS(89), - [anon_sym_asm] = ACTIONS(91), - [anon_sym___asm__] = ACTIONS(91), - [sym_number_literal] = ACTIONS(159), - [anon_sym_L_SQUOTE] = ACTIONS(95), - [anon_sym_u_SQUOTE] = ACTIONS(95), - [anon_sym_U_SQUOTE] = ACTIONS(95), - [anon_sym_u8_SQUOTE] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(95), - [anon_sym_L_DQUOTE] = ACTIONS(97), - [anon_sym_u_DQUOTE] = ACTIONS(97), - [anon_sym_U_DQUOTE] = ACTIONS(97), - [anon_sym_u8_DQUOTE] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(97), - [sym_true] = ACTIONS(161), - [sym_false] = ACTIONS(161), - [anon_sym_NULL] = ACTIONS(101), - [anon_sym_nullptr] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - }, - [58] = { - [sym_declaration] = STATE(58), - [sym_type_definition] = STATE(58), - [sym__declaration_modifiers] = STATE(861), - [sym__declaration_specifiers] = STATE(1498), - [sym_attribute_specifier] = STATE(861), - [sym_attribute_declaration] = STATE(504), - [sym_ms_declspec_modifier] = STATE(861), - [sym_compound_statement] = STATE(58), - [sym_storage_class_specifier] = STATE(861), - [sym_type_qualifier] = STATE(861), - [sym__type_specifier] = STATE(1040), - [sym_sized_type_specifier] = STATE(1106), - [sym_enum_specifier] = STATE(1106), - [sym_struct_specifier] = STATE(1106), - [sym_union_specifier] = STATE(1106), - [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(1225), - [sym__expression_not_binary] = STATE(792), - [sym_comma_expression] = STATE(2038), - [sym_conditional_expression] = STATE(792), - [sym_assignment_expression] = STATE(792), - [sym_pointer_expression] = STATE(901), - [sym_unary_expression] = STATE(792), - [sym_binary_expression] = STATE(792), - [sym_update_expression] = STATE(792), - [sym_cast_expression] = STATE(792), - [sym_sizeof_expression] = STATE(792), - [sym_alignof_expression] = STATE(792), - [sym_offsetof_expression] = STATE(792), - [sym_generic_expression] = STATE(792), - [sym_subscript_expression] = STATE(901), - [sym_call_expression] = STATE(901), - [sym_gnu_asm_expression] = STATE(792), - [sym_field_expression] = STATE(901), - [sym_compound_literal_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(901), - [sym_char_literal] = STATE(792), - [sym_concatenated_string] = STATE(792), - [sym_string_literal] = STATE(675), - [sym_null] = STATE(792), - [sym_macro_type_specifier] = STATE(1106), - [aux_sym__declaration_specifiers_repeat1] = STATE(861), - [aux_sym_attributed_declarator_repeat1] = STATE(463), - [aux_sym_sized_type_specifier_repeat1] = STATE(1113), - [aux_sym_case_statement_repeat1] = STATE(58), - [sym_identifier] = ACTIONS(928), - [aux_sym_preproc_include_token1] = ACTIONS(931), - [aux_sym_preproc_def_token1] = ACTIONS(931), - [aux_sym_preproc_if_token1] = ACTIONS(931), - [aux_sym_preproc_if_token2] = ACTIONS(931), - [aux_sym_preproc_ifdef_token1] = ACTIONS(931), - [aux_sym_preproc_ifdef_token2] = ACTIONS(931), - [aux_sym_preproc_else_token1] = ACTIONS(931), - [aux_sym_preproc_elif_token1] = ACTIONS(931), - [aux_sym_preproc_elifdef_token1] = ACTIONS(931), - [aux_sym_preproc_elifdef_token2] = ACTIONS(931), - [sym_preproc_directive] = ACTIONS(931), - [anon_sym_LPAREN2] = ACTIONS(933), - [anon_sym_BANG] = ACTIONS(936), - [anon_sym_TILDE] = ACTIONS(936), - [anon_sym_DASH] = ACTIONS(939), - [anon_sym_PLUS] = ACTIONS(939), - [anon_sym_STAR] = ACTIONS(942), - [anon_sym_AMP] = ACTIONS(942), - [anon_sym_SEMI] = ACTIONS(945), - [anon_sym___extension__] = ACTIONS(948), - [anon_sym_typedef] = ACTIONS(951), - [anon_sym_extern] = ACTIONS(954), - [anon_sym___attribute__] = ACTIONS(957), - [anon_sym___scanf] = ACTIONS(960), - [anon_sym___printf] = ACTIONS(960), - [anon_sym_LBRACK_LBRACK] = ACTIONS(963), - [anon_sym___declspec] = ACTIONS(966), - [anon_sym___cdecl] = ACTIONS(931), - [anon_sym___clrcall] = ACTIONS(931), - [anon_sym___stdcall] = ACTIONS(931), - [anon_sym___fastcall] = ACTIONS(931), - [anon_sym___thiscall] = ACTIONS(931), - [anon_sym___vectorcall] = ACTIONS(931), - [anon_sym_LBRACE] = ACTIONS(969), - [anon_sym_signed] = ACTIONS(972), - [anon_sym_unsigned] = ACTIONS(972), - [anon_sym_long] = ACTIONS(972), - [anon_sym_short] = ACTIONS(972), - [anon_sym_static] = ACTIONS(954), - [anon_sym_auto] = ACTIONS(954), - [anon_sym_register] = ACTIONS(954), - [anon_sym_inline] = ACTIONS(954), - [anon_sym___inline] = ACTIONS(954), - [anon_sym___inline__] = ACTIONS(954), - [anon_sym___forceinline] = ACTIONS(954), - [anon_sym_thread_local] = ACTIONS(954), - [anon_sym___thread] = ACTIONS(954), - [anon_sym_const] = ACTIONS(975), - [anon_sym_constexpr] = ACTIONS(975), - [anon_sym_volatile] = ACTIONS(975), - [anon_sym_restrict] = ACTIONS(975), - [anon_sym___restrict__] = ACTIONS(975), - [anon_sym__Atomic] = ACTIONS(975), - [anon_sym__Noreturn] = ACTIONS(975), - [anon_sym_noreturn] = ACTIONS(975), - [sym_primitive_type] = ACTIONS(978), - [anon_sym_enum] = ACTIONS(981), - [anon_sym_struct] = ACTIONS(984), - [anon_sym_union] = ACTIONS(987), - [anon_sym_if] = ACTIONS(990), - [anon_sym_else] = ACTIONS(931), - [anon_sym_switch] = ACTIONS(993), - [anon_sym_case] = ACTIONS(931), - [anon_sym_default] = ACTIONS(931), - [anon_sym_while] = ACTIONS(996), - [anon_sym_do] = ACTIONS(999), - [anon_sym_for] = ACTIONS(1002), - [anon_sym_return] = ACTIONS(1005), - [anon_sym_break] = ACTIONS(1008), - [anon_sym_continue] = ACTIONS(1011), - [anon_sym_goto] = ACTIONS(1014), - [anon_sym___try] = ACTIONS(1017), - [anon_sym___leave] = ACTIONS(1020), - [anon_sym_DASH_DASH] = ACTIONS(1023), - [anon_sym_PLUS_PLUS] = ACTIONS(1023), - [anon_sym_sizeof] = ACTIONS(1026), - [anon_sym___alignof__] = ACTIONS(1029), - [anon_sym___alignof] = ACTIONS(1029), - [anon_sym__alignof] = ACTIONS(1029), - [anon_sym_alignof] = ACTIONS(1029), - [anon_sym__Alignof] = ACTIONS(1029), - [anon_sym_offsetof] = ACTIONS(1032), - [anon_sym__Generic] = ACTIONS(1035), - [anon_sym_asm] = ACTIONS(1038), - [anon_sym___asm__] = ACTIONS(1038), - [sym_number_literal] = ACTIONS(1041), - [anon_sym_L_SQUOTE] = ACTIONS(1044), - [anon_sym_u_SQUOTE] = ACTIONS(1044), - [anon_sym_U_SQUOTE] = ACTIONS(1044), - [anon_sym_u8_SQUOTE] = ACTIONS(1044), - [anon_sym_SQUOTE] = ACTIONS(1044), - [anon_sym_L_DQUOTE] = ACTIONS(1047), - [anon_sym_u_DQUOTE] = ACTIONS(1047), - [anon_sym_U_DQUOTE] = ACTIONS(1047), - [anon_sym_u8_DQUOTE] = ACTIONS(1047), - [anon_sym_DQUOTE] = ACTIONS(1047), - [sym_true] = ACTIONS(1050), - [sym_false] = ACTIONS(1050), - [anon_sym_NULL] = ACTIONS(1053), - [anon_sym_nullptr] = ACTIONS(1053), + [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(1065), + [anon_sym___clrcall] = ACTIONS(1065), + [anon_sym___stdcall] = ACTIONS(1065), + [anon_sym___fastcall] = ACTIONS(1065), + [anon_sym___thiscall] = ACTIONS(1065), + [anon_sym___vectorcall] = ACTIONS(1065), + [anon_sym_LBRACE] = ACTIONS(133), + [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), + [sym_primitive_type] = ACTIONS(53), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [anon_sym_if] = ACTIONS(135), + [anon_sym_else] = ACTIONS(1065), + [anon_sym_switch] = ACTIONS(137), + [anon_sym_case] = ACTIONS(1065), + [anon_sym_default] = ACTIONS(1065), + [anon_sym_while] = ACTIONS(143), + [anon_sym_do] = ACTIONS(145), + [anon_sym_for] = ACTIONS(147), + [anon_sym_return] = ACTIONS(149), + [anon_sym_break] = ACTIONS(151), + [anon_sym_continue] = ACTIONS(153), + [anon_sym_goto] = ACTIONS(155), + [anon_sym___try] = ACTIONS(157), + [anon_sym___leave] = ACTIONS(159), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [sym_number_literal] = ACTIONS(161), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(163), + [sym_false] = ACTIONS(163), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, [59] = { - [sym_declaration] = STATE(60), - [sym_type_definition] = STATE(60), - [sym__declaration_modifiers] = STATE(861), - [sym__declaration_specifiers] = STATE(1497), - [sym_attribute_specifier] = STATE(861), - [sym_attribute_declaration] = STATE(504), - [sym_ms_declspec_modifier] = STATE(861), - [sym_compound_statement] = STATE(60), - [sym_storage_class_specifier] = STATE(861), - [sym_type_qualifier] = STATE(861), - [sym__type_specifier] = STATE(1040), - [sym_sized_type_specifier] = STATE(1106), - [sym_enum_specifier] = STATE(1106), - [sym_struct_specifier] = STATE(1106), - [sym_union_specifier] = STATE(1106), - [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(1230), - [sym__expression_not_binary] = STATE(792), - [sym_comma_expression] = STATE(2008), - [sym_conditional_expression] = STATE(792), - [sym_assignment_expression] = STATE(792), - [sym_pointer_expression] = STATE(901), - [sym_unary_expression] = STATE(792), - [sym_binary_expression] = STATE(792), - [sym_update_expression] = STATE(792), - [sym_cast_expression] = STATE(792), - [sym_sizeof_expression] = STATE(792), - [sym_alignof_expression] = STATE(792), - [sym_offsetof_expression] = STATE(792), - [sym_generic_expression] = STATE(792), - [sym_subscript_expression] = STATE(901), - [sym_call_expression] = STATE(901), - [sym_gnu_asm_expression] = STATE(792), - [sym_field_expression] = STATE(901), - [sym_compound_literal_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(901), - [sym_char_literal] = STATE(792), - [sym_concatenated_string] = STATE(792), - [sym_string_literal] = STATE(675), - [sym_null] = STATE(792), - [sym_macro_type_specifier] = STATE(1106), - [aux_sym__declaration_specifiers_repeat1] = STATE(861), - [aux_sym_attributed_declarator_repeat1] = STATE(435), - [aux_sym_sized_type_specifier_repeat1] = STATE(1113), - [aux_sym_case_statement_repeat1] = STATE(60), - [sym_identifier] = ACTIONS(1056), - [aux_sym_preproc_include_token1] = ACTIONS(924), - [aux_sym_preproc_def_token1] = ACTIONS(924), - [aux_sym_preproc_if_token1] = ACTIONS(924), - [aux_sym_preproc_if_token2] = ACTIONS(924), - [aux_sym_preproc_ifdef_token1] = ACTIONS(924), - [aux_sym_preproc_ifdef_token2] = ACTIONS(924), - [aux_sym_preproc_else_token1] = ACTIONS(924), - [aux_sym_preproc_elif_token1] = ACTIONS(924), - [sym_preproc_directive] = ACTIONS(924), + [sym_declaration] = STATE(62), + [sym_type_definition] = STATE(62), + [sym__declaration_modifiers] = STATE(855), + [sym__declaration_specifiers] = STATE(1549), + [sym_attribute_specifier] = STATE(855), + [sym_attribute_declaration] = STATE(495), + [sym_ms_declspec_modifier] = STATE(855), + [sym_compound_statement] = STATE(62), + [sym_storage_class_specifier] = STATE(855), + [sym_type_qualifier] = STATE(855), + [sym__type_specifier] = STATE(974), + [sym_sized_type_specifier] = STATE(1069), + [sym_enum_specifier] = STATE(1069), + [sym_struct_specifier] = STATE(1069), + [sym_union_specifier] = STATE(1069), + [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(1258), + [sym__expression_not_binary] = STATE(809), + [sym_comma_expression] = STATE(2110), + [sym_conditional_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_pointer_expression] = STATE(877), + [sym_unary_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_update_expression] = STATE(809), + [sym_cast_expression] = STATE(809), + [sym_sizeof_expression] = STATE(809), + [sym_alignof_expression] = STATE(809), + [sym_offsetof_expression] = STATE(809), + [sym_generic_expression] = STATE(809), + [sym_subscript_expression] = STATE(877), + [sym_call_expression] = STATE(877), + [sym_gnu_asm_expression] = STATE(809), + [sym_field_expression] = STATE(877), + [sym_compound_literal_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(877), + [sym_char_literal] = STATE(809), + [sym_concatenated_string] = STATE(809), + [sym_string_literal] = STATE(573), + [sym_null] = STATE(809), + [sym_macro_type_specifier] = STATE(1069), + [aux_sym__declaration_specifiers_repeat1] = STATE(855), + [aux_sym_attributed_declarator_repeat1] = STATE(480), + [aux_sym_sized_type_specifier_repeat1] = STATE(1085), + [aux_sym_case_statement_repeat1] = STATE(62), + [sym_identifier] = ACTIONS(1067), + [aux_sym_preproc_include_token1] = ACTIONS(930), + [aux_sym_preproc_def_token1] = ACTIONS(930), + [aux_sym_preproc_if_token1] = ACTIONS(930), + [aux_sym_preproc_if_token2] = ACTIONS(930), + [aux_sym_preproc_ifdef_token1] = ACTIONS(930), + [aux_sym_preproc_ifdef_token2] = ACTIONS(930), + [aux_sym_preproc_else_token1] = ACTIONS(930), + [aux_sym_preproc_elif_token1] = ACTIONS(930), + [sym_preproc_directive] = ACTIONS(930), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -25614,426 +26139,110 @@ 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(195), - [anon_sym___extension__] = ACTIONS(197), - [anon_sym_typedef] = ACTIONS(199), - [anon_sym_extern] = ACTIONS(47), + [anon_sym_SEMI] = ACTIONS(197), + [anon_sym___extension__] = ACTIONS(199), + [anon_sym_typedef] = ACTIONS(201), + [anon_sym_extern] = ACTIONS(49), [anon_sym___attribute__] = ACTIONS(33), [anon_sym___scanf] = ACTIONS(35), [anon_sym___printf] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym___cdecl] = ACTIONS(924), - [anon_sym___clrcall] = ACTIONS(924), - [anon_sym___stdcall] = ACTIONS(924), - [anon_sym___fastcall] = ACTIONS(924), - [anon_sym___thiscall] = ACTIONS(924), - [anon_sym___vectorcall] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(203), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [sym_primitive_type] = ACTIONS(51), - [anon_sym_enum] = ACTIONS(53), - [anon_sym_struct] = ACTIONS(55), - [anon_sym_union] = ACTIONS(57), - [anon_sym_if] = ACTIONS(205), - [anon_sym_else] = ACTIONS(924), - [anon_sym_switch] = ACTIONS(207), - [anon_sym_case] = ACTIONS(924), - [anon_sym_default] = ACTIONS(924), - [anon_sym_while] = ACTIONS(213), - [anon_sym_do] = ACTIONS(215), - [anon_sym_for] = ACTIONS(217), - [anon_sym_return] = ACTIONS(219), - [anon_sym_break] = ACTIONS(221), - [anon_sym_continue] = ACTIONS(223), - [anon_sym_goto] = ACTIONS(225), - [anon_sym___try] = ACTIONS(227), - [anon_sym___leave] = ACTIONS(229), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(83), - [anon_sym___alignof__] = ACTIONS(85), - [anon_sym___alignof] = ACTIONS(85), - [anon_sym__alignof] = ACTIONS(85), - [anon_sym_alignof] = ACTIONS(85), - [anon_sym__Alignof] = ACTIONS(85), - [anon_sym_offsetof] = ACTIONS(87), - [anon_sym__Generic] = ACTIONS(89), - [anon_sym_asm] = ACTIONS(91), - [anon_sym___asm__] = ACTIONS(91), - [sym_number_literal] = ACTIONS(159), - [anon_sym_L_SQUOTE] = ACTIONS(95), - [anon_sym_u_SQUOTE] = ACTIONS(95), - [anon_sym_U_SQUOTE] = ACTIONS(95), - [anon_sym_u8_SQUOTE] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(95), - [anon_sym_L_DQUOTE] = ACTIONS(97), - [anon_sym_u_DQUOTE] = ACTIONS(97), - [anon_sym_U_DQUOTE] = ACTIONS(97), - [anon_sym_u8_DQUOTE] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(97), - [sym_true] = ACTIONS(161), - [sym_false] = ACTIONS(161), - [anon_sym_NULL] = ACTIONS(101), - [anon_sym_nullptr] = ACTIONS(101), + [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(930), + [anon_sym___clrcall] = ACTIONS(930), + [anon_sym___stdcall] = ACTIONS(930), + [anon_sym___fastcall] = ACTIONS(930), + [anon_sym___thiscall] = ACTIONS(930), + [anon_sym___vectorcall] = ACTIONS(930), + [anon_sym_LBRACE] = ACTIONS(205), + [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), + [sym_primitive_type] = ACTIONS(53), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [anon_sym_if] = ACTIONS(207), + [anon_sym_else] = ACTIONS(930), + [anon_sym_switch] = ACTIONS(209), + [anon_sym_case] = ACTIONS(930), + [anon_sym_default] = ACTIONS(930), + [anon_sym_while] = ACTIONS(215), + [anon_sym_do] = ACTIONS(217), + [anon_sym_for] = ACTIONS(219), + [anon_sym_return] = ACTIONS(221), + [anon_sym_break] = ACTIONS(223), + [anon_sym_continue] = ACTIONS(225), + [anon_sym_goto] = ACTIONS(227), + [anon_sym___try] = ACTIONS(229), + [anon_sym___leave] = ACTIONS(231), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [sym_number_literal] = ACTIONS(161), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(163), + [sym_false] = ACTIONS(163), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, [60] = { - [sym_declaration] = STATE(60), - [sym_type_definition] = STATE(60), - [sym__declaration_modifiers] = STATE(861), - [sym__declaration_specifiers] = STATE(1497), - [sym_attribute_specifier] = STATE(861), - [sym_attribute_declaration] = STATE(504), - [sym_ms_declspec_modifier] = STATE(861), - [sym_compound_statement] = STATE(60), - [sym_storage_class_specifier] = STATE(861), - [sym_type_qualifier] = STATE(861), - [sym__type_specifier] = STATE(1040), - [sym_sized_type_specifier] = STATE(1106), - [sym_enum_specifier] = STATE(1106), - [sym_struct_specifier] = STATE(1106), - [sym_union_specifier] = STATE(1106), - [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(1230), - [sym__expression_not_binary] = STATE(792), - [sym_comma_expression] = STATE(2008), - [sym_conditional_expression] = STATE(792), - [sym_assignment_expression] = STATE(792), - [sym_pointer_expression] = STATE(901), - [sym_unary_expression] = STATE(792), - [sym_binary_expression] = STATE(792), - [sym_update_expression] = STATE(792), - [sym_cast_expression] = STATE(792), - [sym_sizeof_expression] = STATE(792), - [sym_alignof_expression] = STATE(792), - [sym_offsetof_expression] = STATE(792), - [sym_generic_expression] = STATE(792), - [sym_subscript_expression] = STATE(901), - [sym_call_expression] = STATE(901), - [sym_gnu_asm_expression] = STATE(792), - [sym_field_expression] = STATE(901), - [sym_compound_literal_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(901), - [sym_char_literal] = STATE(792), - [sym_concatenated_string] = STATE(792), - [sym_string_literal] = STATE(675), - [sym_null] = STATE(792), - [sym_macro_type_specifier] = STATE(1106), - [aux_sym__declaration_specifiers_repeat1] = STATE(861), - [aux_sym_attributed_declarator_repeat1] = STATE(435), - [aux_sym_sized_type_specifier_repeat1] = STATE(1113), - [aux_sym_case_statement_repeat1] = STATE(60), - [sym_identifier] = ACTIONS(1058), - [aux_sym_preproc_include_token1] = ACTIONS(931), - [aux_sym_preproc_def_token1] = ACTIONS(931), - [aux_sym_preproc_if_token1] = ACTIONS(931), - [aux_sym_preproc_if_token2] = ACTIONS(931), - [aux_sym_preproc_ifdef_token1] = ACTIONS(931), - [aux_sym_preproc_ifdef_token2] = ACTIONS(931), - [aux_sym_preproc_else_token1] = ACTIONS(931), - [aux_sym_preproc_elif_token1] = ACTIONS(931), - [sym_preproc_directive] = ACTIONS(931), - [anon_sym_LPAREN2] = ACTIONS(933), - [anon_sym_BANG] = ACTIONS(936), - [anon_sym_TILDE] = ACTIONS(936), - [anon_sym_DASH] = ACTIONS(939), - [anon_sym_PLUS] = ACTIONS(939), - [anon_sym_STAR] = ACTIONS(942), - [anon_sym_AMP] = ACTIONS(942), - [anon_sym_SEMI] = ACTIONS(1061), - [anon_sym___extension__] = ACTIONS(1064), - [anon_sym_typedef] = ACTIONS(1067), - [anon_sym_extern] = ACTIONS(954), - [anon_sym___attribute__] = ACTIONS(957), - [anon_sym___scanf] = ACTIONS(960), - [anon_sym___printf] = ACTIONS(960), - [anon_sym_LBRACK_LBRACK] = ACTIONS(963), - [anon_sym___declspec] = ACTIONS(966), - [anon_sym___cdecl] = ACTIONS(931), - [anon_sym___clrcall] = ACTIONS(931), - [anon_sym___stdcall] = ACTIONS(931), - [anon_sym___fastcall] = ACTIONS(931), - [anon_sym___thiscall] = ACTIONS(931), - [anon_sym___vectorcall] = ACTIONS(931), - [anon_sym_LBRACE] = ACTIONS(1070), - [anon_sym_signed] = ACTIONS(972), - [anon_sym_unsigned] = ACTIONS(972), - [anon_sym_long] = ACTIONS(972), - [anon_sym_short] = ACTIONS(972), - [anon_sym_static] = ACTIONS(954), - [anon_sym_auto] = ACTIONS(954), - [anon_sym_register] = ACTIONS(954), - [anon_sym_inline] = ACTIONS(954), - [anon_sym___inline] = ACTIONS(954), - [anon_sym___inline__] = ACTIONS(954), - [anon_sym___forceinline] = ACTIONS(954), - [anon_sym_thread_local] = ACTIONS(954), - [anon_sym___thread] = ACTIONS(954), - [anon_sym_const] = ACTIONS(975), - [anon_sym_constexpr] = ACTIONS(975), - [anon_sym_volatile] = ACTIONS(975), - [anon_sym_restrict] = ACTIONS(975), - [anon_sym___restrict__] = ACTIONS(975), - [anon_sym__Atomic] = ACTIONS(975), - [anon_sym__Noreturn] = ACTIONS(975), - [anon_sym_noreturn] = ACTIONS(975), - [sym_primitive_type] = ACTIONS(978), - [anon_sym_enum] = ACTIONS(981), - [anon_sym_struct] = ACTIONS(984), - [anon_sym_union] = ACTIONS(987), - [anon_sym_if] = ACTIONS(1073), - [anon_sym_else] = ACTIONS(931), - [anon_sym_switch] = ACTIONS(1076), - [anon_sym_case] = ACTIONS(931), - [anon_sym_default] = ACTIONS(931), - [anon_sym_while] = ACTIONS(1079), - [anon_sym_do] = ACTIONS(1082), - [anon_sym_for] = ACTIONS(1085), - [anon_sym_return] = ACTIONS(1088), - [anon_sym_break] = ACTIONS(1091), - [anon_sym_continue] = ACTIONS(1094), - [anon_sym_goto] = ACTIONS(1097), - [anon_sym___try] = ACTIONS(1100), - [anon_sym___leave] = ACTIONS(1103), - [anon_sym_DASH_DASH] = ACTIONS(1023), - [anon_sym_PLUS_PLUS] = ACTIONS(1023), - [anon_sym_sizeof] = ACTIONS(1026), - [anon_sym___alignof__] = ACTIONS(1029), - [anon_sym___alignof] = ACTIONS(1029), - [anon_sym__alignof] = ACTIONS(1029), - [anon_sym_alignof] = ACTIONS(1029), - [anon_sym__Alignof] = ACTIONS(1029), - [anon_sym_offsetof] = ACTIONS(1032), - [anon_sym__Generic] = ACTIONS(1035), - [anon_sym_asm] = ACTIONS(1038), - [anon_sym___asm__] = ACTIONS(1038), - [sym_number_literal] = ACTIONS(1041), - [anon_sym_L_SQUOTE] = ACTIONS(1044), - [anon_sym_u_SQUOTE] = ACTIONS(1044), - [anon_sym_U_SQUOTE] = ACTIONS(1044), - [anon_sym_u8_SQUOTE] = ACTIONS(1044), - [anon_sym_SQUOTE] = ACTIONS(1044), - [anon_sym_L_DQUOTE] = ACTIONS(1047), - [anon_sym_u_DQUOTE] = ACTIONS(1047), - [anon_sym_U_DQUOTE] = ACTIONS(1047), - [anon_sym_u8_DQUOTE] = ACTIONS(1047), - [anon_sym_DQUOTE] = ACTIONS(1047), - [sym_true] = ACTIONS(1050), - [sym_false] = ACTIONS(1050), - [anon_sym_NULL] = ACTIONS(1053), - [anon_sym_nullptr] = ACTIONS(1053), - [sym_comment] = ACTIONS(3), - }, - [61] = { - [sym_declaration] = STATE(63), - [sym_type_definition] = STATE(63), - [sym__declaration_modifiers] = STATE(861), - [sym__declaration_specifiers] = STATE(1497), - [sym_attribute_specifier] = STATE(861), - [sym_attribute_declaration] = STATE(504), - [sym_ms_declspec_modifier] = STATE(861), - [sym_compound_statement] = STATE(63), - [sym_storage_class_specifier] = STATE(861), - [sym_type_qualifier] = STATE(861), - [sym__type_specifier] = STATE(1040), - [sym_sized_type_specifier] = STATE(1106), - [sym_enum_specifier] = STATE(1106), - [sym_struct_specifier] = STATE(1106), - [sym_union_specifier] = STATE(1106), - [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(1230), - [sym__expression_not_binary] = STATE(792), - [sym_comma_expression] = STATE(2008), - [sym_conditional_expression] = STATE(792), - [sym_assignment_expression] = STATE(792), - [sym_pointer_expression] = STATE(901), - [sym_unary_expression] = STATE(792), - [sym_binary_expression] = STATE(792), - [sym_update_expression] = STATE(792), - [sym_cast_expression] = STATE(792), - [sym_sizeof_expression] = STATE(792), - [sym_alignof_expression] = STATE(792), - [sym_offsetof_expression] = STATE(792), - [sym_generic_expression] = STATE(792), - [sym_subscript_expression] = STATE(901), - [sym_call_expression] = STATE(901), - [sym_gnu_asm_expression] = STATE(792), - [sym_field_expression] = STATE(901), - [sym_compound_literal_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(901), - [sym_char_literal] = STATE(792), - [sym_concatenated_string] = STATE(792), - [sym_string_literal] = STATE(675), - [sym_null] = STATE(792), - [sym_macro_type_specifier] = STATE(1106), - [aux_sym__declaration_specifiers_repeat1] = STATE(861), - [aux_sym_attributed_declarator_repeat1] = STATE(435), - [aux_sym_sized_type_specifier_repeat1] = STATE(1113), - [aux_sym_case_statement_repeat1] = STATE(63), - [sym_identifier] = ACTIONS(1056), - [aux_sym_preproc_include_token1] = ACTIONS(920), - [aux_sym_preproc_def_token1] = ACTIONS(920), - [aux_sym_preproc_if_token1] = ACTIONS(920), - [aux_sym_preproc_if_token2] = ACTIONS(920), - [aux_sym_preproc_ifdef_token1] = ACTIONS(920), - [aux_sym_preproc_ifdef_token2] = ACTIONS(920), - [aux_sym_preproc_else_token1] = ACTIONS(920), - [aux_sym_preproc_elif_token1] = ACTIONS(920), - [sym_preproc_directive] = ACTIONS(920), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(195), - [anon_sym___extension__] = ACTIONS(197), - [anon_sym_typedef] = ACTIONS(199), - [anon_sym_extern] = ACTIONS(47), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym___scanf] = ACTIONS(35), - [anon_sym___printf] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym___cdecl] = ACTIONS(920), - [anon_sym___clrcall] = ACTIONS(920), - [anon_sym___stdcall] = ACTIONS(920), - [anon_sym___fastcall] = ACTIONS(920), - [anon_sym___thiscall] = ACTIONS(920), - [anon_sym___vectorcall] = ACTIONS(920), - [anon_sym_LBRACE] = ACTIONS(203), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [sym_primitive_type] = ACTIONS(51), - [anon_sym_enum] = ACTIONS(53), - [anon_sym_struct] = ACTIONS(55), - [anon_sym_union] = ACTIONS(57), - [anon_sym_if] = ACTIONS(205), - [anon_sym_else] = ACTIONS(920), - [anon_sym_switch] = ACTIONS(207), - [anon_sym_case] = ACTIONS(920), - [anon_sym_default] = ACTIONS(920), - [anon_sym_while] = ACTIONS(213), - [anon_sym_do] = ACTIONS(215), - [anon_sym_for] = ACTIONS(217), - [anon_sym_return] = ACTIONS(219), - [anon_sym_break] = ACTIONS(221), - [anon_sym_continue] = ACTIONS(223), - [anon_sym_goto] = ACTIONS(225), - [anon_sym___try] = ACTIONS(227), - [anon_sym___leave] = ACTIONS(229), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(83), - [anon_sym___alignof__] = ACTIONS(85), - [anon_sym___alignof] = ACTIONS(85), - [anon_sym__alignof] = ACTIONS(85), - [anon_sym_alignof] = ACTIONS(85), - [anon_sym__Alignof] = ACTIONS(85), - [anon_sym_offsetof] = ACTIONS(87), - [anon_sym__Generic] = ACTIONS(89), - [anon_sym_asm] = ACTIONS(91), - [anon_sym___asm__] = ACTIONS(91), - [sym_number_literal] = ACTIONS(159), - [anon_sym_L_SQUOTE] = ACTIONS(95), - [anon_sym_u_SQUOTE] = ACTIONS(95), - [anon_sym_U_SQUOTE] = ACTIONS(95), - [anon_sym_u8_SQUOTE] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(95), - [anon_sym_L_DQUOTE] = ACTIONS(97), - [anon_sym_u_DQUOTE] = ACTIONS(97), - [anon_sym_U_DQUOTE] = ACTIONS(97), - [anon_sym_u8_DQUOTE] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(97), - [sym_true] = ACTIONS(161), - [sym_false] = ACTIONS(161), - [anon_sym_NULL] = ACTIONS(101), - [anon_sym_nullptr] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - }, - [62] = { [sym_declaration] = STATE(59), [sym_type_definition] = STATE(59), - [sym__declaration_modifiers] = STATE(861), - [sym__declaration_specifiers] = STATE(1497), - [sym_attribute_specifier] = STATE(861), - [sym_attribute_declaration] = STATE(504), - [sym_ms_declspec_modifier] = STATE(861), + [sym__declaration_modifiers] = STATE(855), + [sym__declaration_specifiers] = STATE(1549), + [sym_attribute_specifier] = STATE(855), + [sym_attribute_declaration] = STATE(495), + [sym_ms_declspec_modifier] = STATE(855), [sym_compound_statement] = STATE(59), - [sym_storage_class_specifier] = STATE(861), - [sym_type_qualifier] = STATE(861), - [sym__type_specifier] = STATE(1040), - [sym_sized_type_specifier] = STATE(1106), - [sym_enum_specifier] = STATE(1106), - [sym_struct_specifier] = STATE(1106), - [sym_union_specifier] = STATE(1106), + [sym_storage_class_specifier] = STATE(855), + [sym_type_qualifier] = STATE(855), + [sym__type_specifier] = STATE(974), + [sym_sized_type_specifier] = STATE(1069), + [sym_enum_specifier] = STATE(1069), + [sym_struct_specifier] = STATE(1069), + [sym_union_specifier] = STATE(1069), [sym_attributed_statement] = STATE(59), [sym_labeled_statement] = STATE(59), [sym_expression_statement] = STATE(59), @@ -26048,45 +26257,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(59), [sym_seh_try_statement] = STATE(59), [sym_seh_leave_statement] = STATE(59), - [sym__expression] = STATE(1230), - [sym__expression_not_binary] = STATE(792), - [sym_comma_expression] = STATE(2008), - [sym_conditional_expression] = STATE(792), - [sym_assignment_expression] = STATE(792), - [sym_pointer_expression] = STATE(901), - [sym_unary_expression] = STATE(792), - [sym_binary_expression] = STATE(792), - [sym_update_expression] = STATE(792), - [sym_cast_expression] = STATE(792), - [sym_sizeof_expression] = STATE(792), - [sym_alignof_expression] = STATE(792), - [sym_offsetof_expression] = STATE(792), - [sym_generic_expression] = STATE(792), - [sym_subscript_expression] = STATE(901), - [sym_call_expression] = STATE(901), - [sym_gnu_asm_expression] = STATE(792), - [sym_field_expression] = STATE(901), - [sym_compound_literal_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(901), - [sym_char_literal] = STATE(792), - [sym_concatenated_string] = STATE(792), - [sym_string_literal] = STATE(675), - [sym_null] = STATE(792), - [sym_macro_type_specifier] = STATE(1106), - [aux_sym__declaration_specifiers_repeat1] = STATE(861), - [aux_sym_attributed_declarator_repeat1] = STATE(435), - [aux_sym_sized_type_specifier_repeat1] = STATE(1113), + [sym__expression] = STATE(1258), + [sym__expression_not_binary] = STATE(809), + [sym_comma_expression] = STATE(2110), + [sym_conditional_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_pointer_expression] = STATE(877), + [sym_unary_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_update_expression] = STATE(809), + [sym_cast_expression] = STATE(809), + [sym_sizeof_expression] = STATE(809), + [sym_alignof_expression] = STATE(809), + [sym_offsetof_expression] = STATE(809), + [sym_generic_expression] = STATE(809), + [sym_subscript_expression] = STATE(877), + [sym_call_expression] = STATE(877), + [sym_gnu_asm_expression] = STATE(809), + [sym_field_expression] = STATE(877), + [sym_compound_literal_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(877), + [sym_char_literal] = STATE(809), + [sym_concatenated_string] = STATE(809), + [sym_string_literal] = STATE(573), + [sym_null] = STATE(809), + [sym_macro_type_specifier] = STATE(1069), + [aux_sym__declaration_specifiers_repeat1] = STATE(855), + [aux_sym_attributed_declarator_repeat1] = STATE(480), + [aux_sym_sized_type_specifier_repeat1] = STATE(1085), [aux_sym_case_statement_repeat1] = STATE(59), - [sym_identifier] = ACTIONS(1056), - [aux_sym_preproc_include_token1] = ACTIONS(922), - [aux_sym_preproc_def_token1] = ACTIONS(922), - [aux_sym_preproc_if_token1] = ACTIONS(922), - [aux_sym_preproc_if_token2] = ACTIONS(922), - [aux_sym_preproc_ifdef_token1] = ACTIONS(922), - [aux_sym_preproc_ifdef_token2] = ACTIONS(922), - [aux_sym_preproc_else_token1] = ACTIONS(922), - [aux_sym_preproc_elif_token1] = ACTIONS(922), - [sym_preproc_directive] = ACTIONS(922), + [sym_identifier] = ACTIONS(1067), + [aux_sym_preproc_include_token1] = ACTIONS(928), + [aux_sym_preproc_def_token1] = ACTIONS(928), + [aux_sym_preproc_if_token1] = ACTIONS(928), + [aux_sym_preproc_if_token2] = ACTIONS(928), + [aux_sym_preproc_ifdef_token1] = ACTIONS(928), + [aux_sym_preproc_ifdef_token2] = ACTIONS(928), + [aux_sym_preproc_else_token1] = ACTIONS(928), + [aux_sym_preproc_elif_token1] = ACTIONS(928), + [sym_preproc_directive] = ACTIONS(928), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -26094,159 +26303,163 @@ 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(195), - [anon_sym___extension__] = ACTIONS(197), - [anon_sym_typedef] = ACTIONS(199), - [anon_sym_extern] = ACTIONS(47), + [anon_sym_SEMI] = ACTIONS(197), + [anon_sym___extension__] = ACTIONS(199), + [anon_sym_typedef] = ACTIONS(201), + [anon_sym_extern] = ACTIONS(49), [anon_sym___attribute__] = ACTIONS(33), [anon_sym___scanf] = ACTIONS(35), [anon_sym___printf] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym___cdecl] = ACTIONS(922), - [anon_sym___clrcall] = ACTIONS(922), - [anon_sym___stdcall] = ACTIONS(922), - [anon_sym___fastcall] = ACTIONS(922), - [anon_sym___thiscall] = ACTIONS(922), - [anon_sym___vectorcall] = ACTIONS(922), - [anon_sym_LBRACE] = ACTIONS(203), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [sym_primitive_type] = ACTIONS(51), - [anon_sym_enum] = ACTIONS(53), - [anon_sym_struct] = ACTIONS(55), - [anon_sym_union] = ACTIONS(57), - [anon_sym_if] = ACTIONS(205), - [anon_sym_else] = ACTIONS(922), - [anon_sym_switch] = ACTIONS(207), - [anon_sym_case] = ACTIONS(922), - [anon_sym_default] = ACTIONS(922), - [anon_sym_while] = ACTIONS(213), - [anon_sym_do] = ACTIONS(215), - [anon_sym_for] = ACTIONS(217), - [anon_sym_return] = ACTIONS(219), - [anon_sym_break] = ACTIONS(221), - [anon_sym_continue] = ACTIONS(223), - [anon_sym_goto] = ACTIONS(225), - [anon_sym___try] = ACTIONS(227), - [anon_sym___leave] = ACTIONS(229), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(83), - [anon_sym___alignof__] = ACTIONS(85), - [anon_sym___alignof] = ACTIONS(85), - [anon_sym__alignof] = ACTIONS(85), - [anon_sym_alignof] = ACTIONS(85), - [anon_sym__Alignof] = ACTIONS(85), - [anon_sym_offsetof] = ACTIONS(87), - [anon_sym__Generic] = ACTIONS(89), - [anon_sym_asm] = ACTIONS(91), - [anon_sym___asm__] = ACTIONS(91), - [sym_number_literal] = ACTIONS(159), - [anon_sym_L_SQUOTE] = ACTIONS(95), - [anon_sym_u_SQUOTE] = ACTIONS(95), - [anon_sym_U_SQUOTE] = ACTIONS(95), - [anon_sym_u8_SQUOTE] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(95), - [anon_sym_L_DQUOTE] = ACTIONS(97), - [anon_sym_u_DQUOTE] = ACTIONS(97), - [anon_sym_U_DQUOTE] = ACTIONS(97), - [anon_sym_u8_DQUOTE] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(97), - [sym_true] = ACTIONS(161), - [sym_false] = ACTIONS(161), - [anon_sym_NULL] = ACTIONS(101), - [anon_sym_nullptr] = ACTIONS(101), + [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(928), + [anon_sym___clrcall] = ACTIONS(928), + [anon_sym___stdcall] = ACTIONS(928), + [anon_sym___fastcall] = ACTIONS(928), + [anon_sym___thiscall] = ACTIONS(928), + [anon_sym___vectorcall] = ACTIONS(928), + [anon_sym_LBRACE] = ACTIONS(205), + [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), + [sym_primitive_type] = ACTIONS(53), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [anon_sym_if] = ACTIONS(207), + [anon_sym_else] = ACTIONS(928), + [anon_sym_switch] = ACTIONS(209), + [anon_sym_case] = ACTIONS(928), + [anon_sym_default] = ACTIONS(928), + [anon_sym_while] = ACTIONS(215), + [anon_sym_do] = ACTIONS(217), + [anon_sym_for] = ACTIONS(219), + [anon_sym_return] = ACTIONS(221), + [anon_sym_break] = ACTIONS(223), + [anon_sym_continue] = ACTIONS(225), + [anon_sym_goto] = ACTIONS(227), + [anon_sym___try] = ACTIONS(229), + [anon_sym___leave] = ACTIONS(231), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [sym_number_literal] = ACTIONS(161), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(163), + [sym_false] = ACTIONS(163), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [63] = { - [sym_declaration] = STATE(60), - [sym_type_definition] = STATE(60), - [sym__declaration_modifiers] = STATE(861), - [sym__declaration_specifiers] = STATE(1497), - [sym_attribute_specifier] = STATE(861), - [sym_attribute_declaration] = STATE(504), - [sym_ms_declspec_modifier] = STATE(861), - [sym_compound_statement] = STATE(60), - [sym_storage_class_specifier] = STATE(861), - [sym_type_qualifier] = STATE(861), - [sym__type_specifier] = STATE(1040), - [sym_sized_type_specifier] = STATE(1106), - [sym_enum_specifier] = STATE(1106), - [sym_struct_specifier] = STATE(1106), - [sym_union_specifier] = STATE(1106), - [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(1230), - [sym__expression_not_binary] = STATE(792), - [sym_comma_expression] = STATE(2008), - [sym_conditional_expression] = STATE(792), - [sym_assignment_expression] = STATE(792), - [sym_pointer_expression] = STATE(901), - [sym_unary_expression] = STATE(792), - [sym_binary_expression] = STATE(792), - [sym_update_expression] = STATE(792), - [sym_cast_expression] = STATE(792), - [sym_sizeof_expression] = STATE(792), - [sym_alignof_expression] = STATE(792), - [sym_offsetof_expression] = STATE(792), - [sym_generic_expression] = STATE(792), - [sym_subscript_expression] = STATE(901), - [sym_call_expression] = STATE(901), - [sym_gnu_asm_expression] = STATE(792), - [sym_field_expression] = STATE(901), - [sym_compound_literal_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(901), - [sym_char_literal] = STATE(792), - [sym_concatenated_string] = STATE(792), - [sym_string_literal] = STATE(675), - [sym_null] = STATE(792), - [sym_macro_type_specifier] = STATE(1106), - [aux_sym__declaration_specifiers_repeat1] = STATE(861), - [aux_sym_attributed_declarator_repeat1] = STATE(435), - [aux_sym_sized_type_specifier_repeat1] = STATE(1113), - [aux_sym_case_statement_repeat1] = STATE(60), - [sym_identifier] = ACTIONS(1056), - [aux_sym_preproc_include_token1] = ACTIONS(926), - [aux_sym_preproc_def_token1] = ACTIONS(926), - [aux_sym_preproc_if_token1] = ACTIONS(926), - [aux_sym_preproc_if_token2] = ACTIONS(926), - [aux_sym_preproc_ifdef_token1] = ACTIONS(926), - [aux_sym_preproc_ifdef_token2] = ACTIONS(926), - [aux_sym_preproc_else_token1] = ACTIONS(926), - [aux_sym_preproc_elif_token1] = ACTIONS(926), - [sym_preproc_directive] = ACTIONS(926), + [61] = { + [sym_declaration] = STATE(62), + [sym_type_definition] = STATE(62), + [sym__declaration_modifiers] = STATE(855), + [sym__declaration_specifiers] = STATE(1549), + [sym_attribute_specifier] = STATE(855), + [sym_attribute_declaration] = STATE(495), + [sym_ms_declspec_modifier] = STATE(855), + [sym_compound_statement] = STATE(62), + [sym_storage_class_specifier] = STATE(855), + [sym_type_qualifier] = STATE(855), + [sym__type_specifier] = STATE(974), + [sym_sized_type_specifier] = STATE(1069), + [sym_enum_specifier] = STATE(1069), + [sym_struct_specifier] = STATE(1069), + [sym_union_specifier] = STATE(1069), + [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(1258), + [sym__expression_not_binary] = STATE(809), + [sym_comma_expression] = STATE(2110), + [sym_conditional_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_pointer_expression] = STATE(877), + [sym_unary_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_update_expression] = STATE(809), + [sym_cast_expression] = STATE(809), + [sym_sizeof_expression] = STATE(809), + [sym_alignof_expression] = STATE(809), + [sym_offsetof_expression] = STATE(809), + [sym_generic_expression] = STATE(809), + [sym_subscript_expression] = STATE(877), + [sym_call_expression] = STATE(877), + [sym_gnu_asm_expression] = STATE(809), + [sym_field_expression] = STATE(877), + [sym_compound_literal_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(877), + [sym_char_literal] = STATE(809), + [sym_concatenated_string] = STATE(809), + [sym_string_literal] = STATE(573), + [sym_null] = STATE(809), + [sym_macro_type_specifier] = STATE(1069), + [aux_sym__declaration_specifiers_repeat1] = STATE(855), + [aux_sym_attributed_declarator_repeat1] = STATE(480), + [aux_sym_sized_type_specifier_repeat1] = STATE(1085), + [aux_sym_case_statement_repeat1] = STATE(62), + [sym_identifier] = ACTIONS(1067), + [aux_sym_preproc_include_token1] = ACTIONS(932), + [aux_sym_preproc_def_token1] = ACTIONS(932), + [aux_sym_preproc_if_token1] = ACTIONS(932), + [aux_sym_preproc_if_token2] = ACTIONS(932), + [aux_sym_preproc_ifdef_token1] = ACTIONS(932), + [aux_sym_preproc_ifdef_token2] = ACTIONS(932), + [aux_sym_preproc_else_token1] = ACTIONS(932), + [aux_sym_preproc_elif_token1] = ACTIONS(932), + [sym_preproc_directive] = ACTIONS(932), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -26254,157 +26467,327 @@ 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(195), - [anon_sym___extension__] = ACTIONS(197), - [anon_sym_typedef] = ACTIONS(199), - [anon_sym_extern] = ACTIONS(47), + [anon_sym_SEMI] = ACTIONS(197), + [anon_sym___extension__] = ACTIONS(199), + [anon_sym_typedef] = ACTIONS(201), + [anon_sym_extern] = ACTIONS(49), [anon_sym___attribute__] = ACTIONS(33), [anon_sym___scanf] = ACTIONS(35), [anon_sym___printf] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym___cdecl] = ACTIONS(926), - [anon_sym___clrcall] = ACTIONS(926), - [anon_sym___stdcall] = ACTIONS(926), - [anon_sym___fastcall] = ACTIONS(926), - [anon_sym___thiscall] = ACTIONS(926), - [anon_sym___vectorcall] = ACTIONS(926), - [anon_sym_LBRACE] = ACTIONS(203), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [sym_primitive_type] = ACTIONS(51), - [anon_sym_enum] = ACTIONS(53), - [anon_sym_struct] = ACTIONS(55), - [anon_sym_union] = ACTIONS(57), - [anon_sym_if] = ACTIONS(205), - [anon_sym_else] = ACTIONS(926), - [anon_sym_switch] = ACTIONS(207), - [anon_sym_case] = ACTIONS(926), - [anon_sym_default] = ACTIONS(926), - [anon_sym_while] = ACTIONS(213), - [anon_sym_do] = ACTIONS(215), - [anon_sym_for] = ACTIONS(217), - [anon_sym_return] = ACTIONS(219), - [anon_sym_break] = ACTIONS(221), - [anon_sym_continue] = ACTIONS(223), - [anon_sym_goto] = ACTIONS(225), - [anon_sym___try] = ACTIONS(227), - [anon_sym___leave] = ACTIONS(229), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(83), - [anon_sym___alignof__] = ACTIONS(85), - [anon_sym___alignof] = ACTIONS(85), - [anon_sym__alignof] = ACTIONS(85), - [anon_sym_alignof] = ACTIONS(85), - [anon_sym__Alignof] = ACTIONS(85), - [anon_sym_offsetof] = ACTIONS(87), - [anon_sym__Generic] = ACTIONS(89), - [anon_sym_asm] = ACTIONS(91), - [anon_sym___asm__] = ACTIONS(91), - [sym_number_literal] = ACTIONS(159), - [anon_sym_L_SQUOTE] = ACTIONS(95), - [anon_sym_u_SQUOTE] = ACTIONS(95), - [anon_sym_U_SQUOTE] = ACTIONS(95), - [anon_sym_u8_SQUOTE] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(95), - [anon_sym_L_DQUOTE] = ACTIONS(97), - [anon_sym_u_DQUOTE] = ACTIONS(97), - [anon_sym_U_DQUOTE] = ACTIONS(97), - [anon_sym_u8_DQUOTE] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(97), - [sym_true] = ACTIONS(161), - [sym_false] = ACTIONS(161), - [anon_sym_NULL] = ACTIONS(101), - [anon_sym_nullptr] = ACTIONS(101), + [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(932), + [anon_sym___clrcall] = ACTIONS(932), + [anon_sym___stdcall] = ACTIONS(932), + [anon_sym___fastcall] = ACTIONS(932), + [anon_sym___thiscall] = ACTIONS(932), + [anon_sym___vectorcall] = ACTIONS(932), + [anon_sym_LBRACE] = ACTIONS(205), + [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), + [sym_primitive_type] = ACTIONS(53), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [anon_sym_if] = ACTIONS(207), + [anon_sym_else] = ACTIONS(932), + [anon_sym_switch] = ACTIONS(209), + [anon_sym_case] = ACTIONS(932), + [anon_sym_default] = ACTIONS(932), + [anon_sym_while] = ACTIONS(215), + [anon_sym_do] = ACTIONS(217), + [anon_sym_for] = ACTIONS(219), + [anon_sym_return] = ACTIONS(221), + [anon_sym_break] = ACTIONS(223), + [anon_sym_continue] = ACTIONS(225), + [anon_sym_goto] = ACTIONS(227), + [anon_sym___try] = ACTIONS(229), + [anon_sym___leave] = ACTIONS(231), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [sym_number_literal] = ACTIONS(161), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(163), + [sym_false] = ACTIONS(163), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [64] = { - [sym_declaration] = STATE(76), - [sym_type_definition] = STATE(76), - [sym__declaration_modifiers] = STATE(861), - [sym__declaration_specifiers] = STATE(1502), - [sym_attribute_specifier] = STATE(861), - [sym_attribute_declaration] = STATE(504), - [sym_ms_declspec_modifier] = STATE(861), - [sym_compound_statement] = STATE(76), - [sym_storage_class_specifier] = STATE(861), - [sym_type_qualifier] = STATE(861), - [sym__type_specifier] = STATE(1040), - [sym_sized_type_specifier] = STATE(1106), - [sym_enum_specifier] = STATE(1106), - [sym_struct_specifier] = STATE(1106), - [sym_union_specifier] = STATE(1106), - [sym_attributed_statement] = STATE(76), - [sym_labeled_statement] = STATE(76), - [sym_expression_statement] = STATE(76), - [sym_if_statement] = STATE(76), - [sym_switch_statement] = STATE(76), - [sym_while_statement] = STATE(76), - [sym_do_statement] = STATE(76), - [sym_for_statement] = STATE(76), - [sym_return_statement] = STATE(76), - [sym_break_statement] = STATE(76), - [sym_continue_statement] = STATE(76), - [sym_goto_statement] = STATE(76), - [sym_seh_try_statement] = STATE(76), - [sym_seh_leave_statement] = STATE(76), - [sym__expression] = STATE(1227), - [sym__expression_not_binary] = STATE(792), - [sym_comma_expression] = STATE(2090), - [sym_conditional_expression] = STATE(792), - [sym_assignment_expression] = STATE(792), - [sym_pointer_expression] = STATE(901), - [sym_unary_expression] = STATE(792), - [sym_binary_expression] = STATE(792), - [sym_update_expression] = STATE(792), - [sym_cast_expression] = STATE(792), - [sym_sizeof_expression] = STATE(792), - [sym_alignof_expression] = STATE(792), - [sym_offsetof_expression] = STATE(792), - [sym_generic_expression] = STATE(792), - [sym_subscript_expression] = STATE(901), - [sym_call_expression] = STATE(901), - [sym_gnu_asm_expression] = STATE(792), - [sym_field_expression] = STATE(901), - [sym_compound_literal_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(901), - [sym_char_literal] = STATE(792), - [sym_concatenated_string] = STATE(792), - [sym_string_literal] = STATE(675), - [sym_null] = STATE(792), - [sym_macro_type_specifier] = STATE(1106), - [aux_sym__declaration_specifiers_repeat1] = STATE(861), - [aux_sym_attributed_declarator_repeat1] = STATE(449), - [aux_sym_sized_type_specifier_repeat1] = STATE(1113), - [aux_sym_case_statement_repeat1] = STATE(76), - [ts_builtin_sym_end] = ACTIONS(1106), - [sym_identifier] = ACTIONS(1108), - [aux_sym_preproc_include_token1] = ACTIONS(920), - [aux_sym_preproc_def_token1] = ACTIONS(920), - [aux_sym_preproc_if_token1] = ACTIONS(920), - [aux_sym_preproc_ifdef_token1] = ACTIONS(920), - [aux_sym_preproc_ifdef_token2] = ACTIONS(920), - [sym_preproc_directive] = ACTIONS(920), + [62] = { + [sym_declaration] = STATE(62), + [sym_type_definition] = STATE(62), + [sym__declaration_modifiers] = STATE(855), + [sym__declaration_specifiers] = STATE(1549), + [sym_attribute_specifier] = STATE(855), + [sym_attribute_declaration] = STATE(495), + [sym_ms_declspec_modifier] = STATE(855), + [sym_compound_statement] = STATE(62), + [sym_storage_class_specifier] = STATE(855), + [sym_type_qualifier] = STATE(855), + [sym__type_specifier] = STATE(974), + [sym_sized_type_specifier] = STATE(1069), + [sym_enum_specifier] = STATE(1069), + [sym_struct_specifier] = STATE(1069), + [sym_union_specifier] = STATE(1069), + [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(1258), + [sym__expression_not_binary] = STATE(809), + [sym_comma_expression] = STATE(2110), + [sym_conditional_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_pointer_expression] = STATE(877), + [sym_unary_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_update_expression] = STATE(809), + [sym_cast_expression] = STATE(809), + [sym_sizeof_expression] = STATE(809), + [sym_alignof_expression] = STATE(809), + [sym_offsetof_expression] = STATE(809), + [sym_generic_expression] = STATE(809), + [sym_subscript_expression] = STATE(877), + [sym_call_expression] = STATE(877), + [sym_gnu_asm_expression] = STATE(809), + [sym_field_expression] = STATE(877), + [sym_compound_literal_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(877), + [sym_char_literal] = STATE(809), + [sym_concatenated_string] = STATE(809), + [sym_string_literal] = STATE(573), + [sym_null] = STATE(809), + [sym_macro_type_specifier] = STATE(1069), + [aux_sym__declaration_specifiers_repeat1] = STATE(855), + [aux_sym_attributed_declarator_repeat1] = STATE(480), + [aux_sym_sized_type_specifier_repeat1] = STATE(1085), + [aux_sym_case_statement_repeat1] = STATE(62), + [sym_identifier] = ACTIONS(1069), + [aux_sym_preproc_include_token1] = ACTIONS(937), + [aux_sym_preproc_def_token1] = ACTIONS(937), + [aux_sym_preproc_if_token1] = ACTIONS(937), + [aux_sym_preproc_if_token2] = ACTIONS(937), + [aux_sym_preproc_ifdef_token1] = ACTIONS(937), + [aux_sym_preproc_ifdef_token2] = ACTIONS(937), + [aux_sym_preproc_else_token1] = ACTIONS(937), + [aux_sym_preproc_elif_token1] = ACTIONS(937), + [sym_preproc_directive] = ACTIONS(937), + [anon_sym_LPAREN2] = ACTIONS(939), + [anon_sym_BANG] = ACTIONS(942), + [anon_sym_TILDE] = ACTIONS(942), + [anon_sym_DASH] = ACTIONS(945), + [anon_sym_PLUS] = ACTIONS(945), + [anon_sym_STAR] = ACTIONS(948), + [anon_sym_AMP] = ACTIONS(948), + [anon_sym_SEMI] = ACTIONS(1072), + [anon_sym___extension__] = ACTIONS(1075), + [anon_sym_typedef] = ACTIONS(1078), + [anon_sym_extern] = ACTIONS(960), + [anon_sym___attribute__] = ACTIONS(963), + [anon_sym___scanf] = ACTIONS(966), + [anon_sym___printf] = ACTIONS(966), + [anon_sym___read_mostly] = ACTIONS(969), + [anon_sym___must_hold] = ACTIONS(963), + [anon_sym___ro_after_init] = ACTIONS(969), + [anon_sym___init] = ACTIONS(969), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym___declspec] = ACTIONS(975), + [anon_sym___cdecl] = ACTIONS(937), + [anon_sym___clrcall] = ACTIONS(937), + [anon_sym___stdcall] = ACTIONS(937), + [anon_sym___fastcall] = ACTIONS(937), + [anon_sym___thiscall] = ACTIONS(937), + [anon_sym___vectorcall] = ACTIONS(937), + [anon_sym_LBRACE] = ACTIONS(1081), + [anon_sym_signed] = ACTIONS(981), + [anon_sym_unsigned] = ACTIONS(981), + [anon_sym_long] = ACTIONS(981), + [anon_sym_short] = ACTIONS(981), + [anon_sym_static] = ACTIONS(960), + [anon_sym_auto] = ACTIONS(960), + [anon_sym_register] = ACTIONS(960), + [anon_sym_inline] = ACTIONS(960), + [anon_sym___inline] = ACTIONS(960), + [anon_sym___inline__] = ACTIONS(960), + [anon_sym___forceinline] = ACTIONS(960), + [anon_sym_thread_local] = ACTIONS(960), + [anon_sym___thread] = ACTIONS(960), + [anon_sym_const] = ACTIONS(984), + [anon_sym_constexpr] = ACTIONS(984), + [anon_sym_volatile] = ACTIONS(984), + [anon_sym_restrict] = ACTIONS(984), + [anon_sym___restrict__] = ACTIONS(984), + [anon_sym__Atomic] = ACTIONS(984), + [anon_sym__Noreturn] = ACTIONS(984), + [anon_sym_noreturn] = ACTIONS(984), + [sym_primitive_type] = ACTIONS(987), + [anon_sym_enum] = ACTIONS(990), + [anon_sym_struct] = ACTIONS(993), + [anon_sym_union] = ACTIONS(996), + [anon_sym_if] = ACTIONS(1084), + [anon_sym_else] = ACTIONS(937), + [anon_sym_switch] = ACTIONS(1087), + [anon_sym_case] = ACTIONS(937), + [anon_sym_default] = ACTIONS(937), + [anon_sym_while] = ACTIONS(1090), + [anon_sym_do] = ACTIONS(1093), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_return] = ACTIONS(1099), + [anon_sym_break] = ACTIONS(1102), + [anon_sym_continue] = ACTIONS(1105), + [anon_sym_goto] = ACTIONS(1108), + [anon_sym___try] = ACTIONS(1111), + [anon_sym___leave] = ACTIONS(1114), + [anon_sym_DASH_DASH] = ACTIONS(1032), + [anon_sym_PLUS_PLUS] = ACTIONS(1032), + [anon_sym_sizeof] = ACTIONS(1035), + [anon_sym___alignof__] = ACTIONS(1038), + [anon_sym___alignof] = ACTIONS(1038), + [anon_sym__alignof] = ACTIONS(1038), + [anon_sym_alignof] = ACTIONS(1038), + [anon_sym__Alignof] = ACTIONS(1038), + [anon_sym_offsetof] = ACTIONS(1041), + [anon_sym__Generic] = ACTIONS(1044), + [anon_sym_asm] = ACTIONS(1047), + [anon_sym___asm__] = ACTIONS(1047), + [sym_number_literal] = ACTIONS(1050), + [anon_sym_L_SQUOTE] = ACTIONS(1053), + [anon_sym_u_SQUOTE] = ACTIONS(1053), + [anon_sym_U_SQUOTE] = ACTIONS(1053), + [anon_sym_u8_SQUOTE] = ACTIONS(1053), + [anon_sym_SQUOTE] = ACTIONS(1053), + [anon_sym_L_DQUOTE] = ACTIONS(1056), + [anon_sym_u_DQUOTE] = ACTIONS(1056), + [anon_sym_U_DQUOTE] = ACTIONS(1056), + [anon_sym_u8_DQUOTE] = ACTIONS(1056), + [anon_sym_DQUOTE] = ACTIONS(1056), + [sym_true] = ACTIONS(1059), + [sym_false] = ACTIONS(1059), + [anon_sym_NULL] = ACTIONS(1062), + [anon_sym_nullptr] = ACTIONS(1062), + [sym_comment] = ACTIONS(3), + }, + [63] = { + [sym_declaration] = STATE(61), + [sym_type_definition] = STATE(61), + [sym__declaration_modifiers] = STATE(855), + [sym__declaration_specifiers] = STATE(1549), + [sym_attribute_specifier] = STATE(855), + [sym_attribute_declaration] = STATE(495), + [sym_ms_declspec_modifier] = STATE(855), + [sym_compound_statement] = STATE(61), + [sym_storage_class_specifier] = STATE(855), + [sym_type_qualifier] = STATE(855), + [sym__type_specifier] = STATE(974), + [sym_sized_type_specifier] = STATE(1069), + [sym_enum_specifier] = STATE(1069), + [sym_struct_specifier] = STATE(1069), + [sym_union_specifier] = STATE(1069), + [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(1258), + [sym__expression_not_binary] = STATE(809), + [sym_comma_expression] = STATE(2110), + [sym_conditional_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_pointer_expression] = STATE(877), + [sym_unary_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_update_expression] = STATE(809), + [sym_cast_expression] = STATE(809), + [sym_sizeof_expression] = STATE(809), + [sym_alignof_expression] = STATE(809), + [sym_offsetof_expression] = STATE(809), + [sym_generic_expression] = STATE(809), + [sym_subscript_expression] = STATE(877), + [sym_call_expression] = STATE(877), + [sym_gnu_asm_expression] = STATE(809), + [sym_field_expression] = STATE(877), + [sym_compound_literal_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(877), + [sym_char_literal] = STATE(809), + [sym_concatenated_string] = STATE(809), + [sym_string_literal] = STATE(573), + [sym_null] = STATE(809), + [sym_macro_type_specifier] = STATE(1069), + [aux_sym__declaration_specifiers_repeat1] = STATE(855), + [aux_sym_attributed_declarator_repeat1] = STATE(480), + [aux_sym_sized_type_specifier_repeat1] = STATE(1085), + [aux_sym_case_statement_repeat1] = STATE(61), + [sym_identifier] = ACTIONS(1067), + [aux_sym_preproc_include_token1] = ACTIONS(1065), + [aux_sym_preproc_def_token1] = ACTIONS(1065), + [aux_sym_preproc_if_token1] = ACTIONS(1065), + [aux_sym_preproc_if_token2] = ACTIONS(1065), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1065), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1065), + [aux_sym_preproc_else_token1] = ACTIONS(1065), + [aux_sym_preproc_elif_token1] = ACTIONS(1065), + [sym_preproc_directive] = ACTIONS(1065), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -26412,106 +26795,110 @@ 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(1110), - [anon_sym___extension__] = ACTIONS(27), - [anon_sym_typedef] = ACTIONS(29), - [anon_sym_extern] = ACTIONS(47), + [anon_sym_SEMI] = ACTIONS(197), + [anon_sym___extension__] = ACTIONS(199), + [anon_sym_typedef] = ACTIONS(201), + [anon_sym_extern] = ACTIONS(49), [anon_sym___attribute__] = ACTIONS(33), [anon_sym___scanf] = ACTIONS(35), [anon_sym___printf] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym___cdecl] = ACTIONS(920), - [anon_sym___clrcall] = ACTIONS(920), - [anon_sym___stdcall] = ACTIONS(920), - [anon_sym___fastcall] = ACTIONS(920), - [anon_sym___thiscall] = ACTIONS(920), - [anon_sym___vectorcall] = ACTIONS(920), - [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [sym_primitive_type] = ACTIONS(51), - [anon_sym_enum] = ACTIONS(53), - [anon_sym_struct] = ACTIONS(55), - [anon_sym_union] = ACTIONS(57), - [anon_sym_if] = ACTIONS(59), - [anon_sym_else] = ACTIONS(920), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_case] = ACTIONS(920), - [anon_sym_default] = ACTIONS(920), - [anon_sym_while] = ACTIONS(67), - [anon_sym_do] = ACTIONS(69), - [anon_sym_for] = ACTIONS(71), - [anon_sym_return] = ACTIONS(73), - [anon_sym_break] = ACTIONS(75), - [anon_sym_continue] = ACTIONS(77), - [anon_sym_goto] = ACTIONS(79), - [anon_sym___try] = ACTIONS(1112), - [anon_sym___leave] = ACTIONS(1114), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(83), - [anon_sym___alignof__] = ACTIONS(85), - [anon_sym___alignof] = ACTIONS(85), - [anon_sym__alignof] = ACTIONS(85), - [anon_sym_alignof] = ACTIONS(85), - [anon_sym__Alignof] = ACTIONS(85), - [anon_sym_offsetof] = ACTIONS(87), - [anon_sym__Generic] = ACTIONS(89), - [anon_sym_asm] = ACTIONS(91), - [anon_sym___asm__] = ACTIONS(91), - [sym_number_literal] = ACTIONS(159), - [anon_sym_L_SQUOTE] = ACTIONS(95), - [anon_sym_u_SQUOTE] = ACTIONS(95), - [anon_sym_U_SQUOTE] = ACTIONS(95), - [anon_sym_u8_SQUOTE] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(95), - [anon_sym_L_DQUOTE] = ACTIONS(97), - [anon_sym_u_DQUOTE] = ACTIONS(97), - [anon_sym_U_DQUOTE] = ACTIONS(97), - [anon_sym_u8_DQUOTE] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(97), - [sym_true] = ACTIONS(161), - [sym_false] = ACTIONS(161), - [anon_sym_NULL] = ACTIONS(101), - [anon_sym_nullptr] = ACTIONS(101), + [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(1065), + [anon_sym___clrcall] = ACTIONS(1065), + [anon_sym___stdcall] = ACTIONS(1065), + [anon_sym___fastcall] = ACTIONS(1065), + [anon_sym___thiscall] = ACTIONS(1065), + [anon_sym___vectorcall] = ACTIONS(1065), + [anon_sym_LBRACE] = ACTIONS(205), + [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), + [sym_primitive_type] = ACTIONS(53), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [anon_sym_if] = ACTIONS(207), + [anon_sym_else] = ACTIONS(1065), + [anon_sym_switch] = ACTIONS(209), + [anon_sym_case] = ACTIONS(1065), + [anon_sym_default] = ACTIONS(1065), + [anon_sym_while] = ACTIONS(215), + [anon_sym_do] = ACTIONS(217), + [anon_sym_for] = ACTIONS(219), + [anon_sym_return] = ACTIONS(221), + [anon_sym_break] = ACTIONS(223), + [anon_sym_continue] = ACTIONS(225), + [anon_sym_goto] = ACTIONS(227), + [anon_sym___try] = ACTIONS(229), + [anon_sym___leave] = ACTIONS(231), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [sym_number_literal] = ACTIONS(161), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(163), + [sym_false] = ACTIONS(163), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [65] = { + [64] = { [sym_declaration] = STATE(65), [sym_type_definition] = STATE(65), - [sym__declaration_modifiers] = STATE(861), - [sym__declaration_specifiers] = STATE(1502), - [sym_attribute_specifier] = STATE(861), - [sym_attribute_declaration] = STATE(504), - [sym_ms_declspec_modifier] = STATE(861), + [sym__declaration_modifiers] = STATE(855), + [sym__declaration_specifiers] = STATE(1557), + [sym_attribute_specifier] = STATE(855), + [sym_attribute_declaration] = STATE(495), + [sym_ms_declspec_modifier] = STATE(855), [sym_compound_statement] = STATE(65), - [sym_storage_class_specifier] = STATE(861), - [sym_type_qualifier] = STATE(861), - [sym__type_specifier] = STATE(1040), - [sym_sized_type_specifier] = STATE(1106), - [sym_enum_specifier] = STATE(1106), - [sym_struct_specifier] = STATE(1106), - [sym_union_specifier] = STATE(1106), + [sym_storage_class_specifier] = STATE(855), + [sym_type_qualifier] = STATE(855), + [sym__type_specifier] = STATE(974), + [sym_sized_type_specifier] = STATE(1069), + [sym_enum_specifier] = STATE(1069), + [sym_struct_specifier] = STATE(1069), + [sym_union_specifier] = STATE(1069), [sym_attributed_statement] = STATE(65), [sym_labeled_statement] = STATE(65), [sym_expression_statement] = STATE(65), @@ -26526,150 +26913,154 @@ 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(1227), - [sym__expression_not_binary] = STATE(792), - [sym_comma_expression] = STATE(2090), - [sym_conditional_expression] = STATE(792), - [sym_assignment_expression] = STATE(792), - [sym_pointer_expression] = STATE(901), - [sym_unary_expression] = STATE(792), - [sym_binary_expression] = STATE(792), - [sym_update_expression] = STATE(792), - [sym_cast_expression] = STATE(792), - [sym_sizeof_expression] = STATE(792), - [sym_alignof_expression] = STATE(792), - [sym_offsetof_expression] = STATE(792), - [sym_generic_expression] = STATE(792), - [sym_subscript_expression] = STATE(901), - [sym_call_expression] = STATE(901), - [sym_gnu_asm_expression] = STATE(792), - [sym_field_expression] = STATE(901), - [sym_compound_literal_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(901), - [sym_char_literal] = STATE(792), - [sym_concatenated_string] = STATE(792), - [sym_string_literal] = STATE(675), - [sym_null] = STATE(792), - [sym_macro_type_specifier] = STATE(1106), - [aux_sym__declaration_specifiers_repeat1] = STATE(861), - [aux_sym_attributed_declarator_repeat1] = STATE(449), - [aux_sym_sized_type_specifier_repeat1] = STATE(1113), + [sym__expression] = STATE(1269), + [sym__expression_not_binary] = STATE(809), + [sym_comma_expression] = STATE(2019), + [sym_conditional_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_pointer_expression] = STATE(877), + [sym_unary_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_update_expression] = STATE(809), + [sym_cast_expression] = STATE(809), + [sym_sizeof_expression] = STATE(809), + [sym_alignof_expression] = STATE(809), + [sym_offsetof_expression] = STATE(809), + [sym_generic_expression] = STATE(809), + [sym_subscript_expression] = STATE(877), + [sym_call_expression] = STATE(877), + [sym_gnu_asm_expression] = STATE(809), + [sym_field_expression] = STATE(877), + [sym_compound_literal_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(877), + [sym_char_literal] = STATE(809), + [sym_concatenated_string] = STATE(809), + [sym_string_literal] = STATE(573), + [sym_null] = STATE(809), + [sym_macro_type_specifier] = STATE(1069), + [aux_sym__declaration_specifiers_repeat1] = STATE(855), + [aux_sym_attributed_declarator_repeat1] = STATE(450), + [aux_sym_sized_type_specifier_repeat1] = STATE(1085), [aux_sym_case_statement_repeat1] = STATE(65), - [ts_builtin_sym_end] = ACTIONS(1116), - [sym_identifier] = ACTIONS(1118), - [aux_sym_preproc_include_token1] = ACTIONS(931), - [aux_sym_preproc_def_token1] = ACTIONS(931), - [aux_sym_preproc_if_token1] = ACTIONS(931), - [aux_sym_preproc_ifdef_token1] = ACTIONS(931), - [aux_sym_preproc_ifdef_token2] = ACTIONS(931), - [sym_preproc_directive] = ACTIONS(931), - [anon_sym_LPAREN2] = ACTIONS(933), - [anon_sym_BANG] = ACTIONS(936), - [anon_sym_TILDE] = ACTIONS(936), - [anon_sym_DASH] = ACTIONS(939), - [anon_sym_PLUS] = ACTIONS(939), - [anon_sym_STAR] = ACTIONS(942), - [anon_sym_AMP] = ACTIONS(942), - [anon_sym_SEMI] = ACTIONS(1121), - [anon_sym___extension__] = ACTIONS(1124), - [anon_sym_typedef] = ACTIONS(1127), - [anon_sym_extern] = ACTIONS(954), - [anon_sym___attribute__] = ACTIONS(957), - [anon_sym___scanf] = ACTIONS(960), - [anon_sym___printf] = ACTIONS(960), - [anon_sym_LBRACK_LBRACK] = ACTIONS(963), - [anon_sym___declspec] = ACTIONS(966), - [anon_sym___cdecl] = ACTIONS(931), - [anon_sym___clrcall] = ACTIONS(931), - [anon_sym___stdcall] = ACTIONS(931), - [anon_sym___fastcall] = ACTIONS(931), - [anon_sym___thiscall] = ACTIONS(931), - [anon_sym___vectorcall] = ACTIONS(931), - [anon_sym_LBRACE] = ACTIONS(1130), - [anon_sym_signed] = ACTIONS(972), - [anon_sym_unsigned] = ACTIONS(972), - [anon_sym_long] = ACTIONS(972), - [anon_sym_short] = ACTIONS(972), - [anon_sym_static] = ACTIONS(954), - [anon_sym_auto] = ACTIONS(954), - [anon_sym_register] = ACTIONS(954), - [anon_sym_inline] = ACTIONS(954), - [anon_sym___inline] = ACTIONS(954), - [anon_sym___inline__] = ACTIONS(954), - [anon_sym___forceinline] = ACTIONS(954), - [anon_sym_thread_local] = ACTIONS(954), - [anon_sym___thread] = ACTIONS(954), - [anon_sym_const] = ACTIONS(975), - [anon_sym_constexpr] = ACTIONS(975), - [anon_sym_volatile] = ACTIONS(975), - [anon_sym_restrict] = ACTIONS(975), - [anon_sym___restrict__] = ACTIONS(975), - [anon_sym__Atomic] = ACTIONS(975), - [anon_sym__Noreturn] = ACTIONS(975), - [anon_sym_noreturn] = ACTIONS(975), - [sym_primitive_type] = ACTIONS(978), - [anon_sym_enum] = ACTIONS(981), - [anon_sym_struct] = ACTIONS(984), - [anon_sym_union] = ACTIONS(987), - [anon_sym_if] = ACTIONS(1133), - [anon_sym_else] = ACTIONS(931), - [anon_sym_switch] = ACTIONS(1136), - [anon_sym_case] = ACTIONS(931), - [anon_sym_default] = ACTIONS(931), - [anon_sym_while] = ACTIONS(1139), - [anon_sym_do] = ACTIONS(1142), - [anon_sym_for] = ACTIONS(1145), - [anon_sym_return] = ACTIONS(1148), - [anon_sym_break] = ACTIONS(1151), - [anon_sym_continue] = ACTIONS(1154), - [anon_sym_goto] = ACTIONS(1157), - [anon_sym___try] = ACTIONS(1160), - [anon_sym___leave] = ACTIONS(1163), - [anon_sym_DASH_DASH] = ACTIONS(1023), - [anon_sym_PLUS_PLUS] = ACTIONS(1023), - [anon_sym_sizeof] = ACTIONS(1026), - [anon_sym___alignof__] = ACTIONS(1029), - [anon_sym___alignof] = ACTIONS(1029), - [anon_sym__alignof] = ACTIONS(1029), - [anon_sym_alignof] = ACTIONS(1029), - [anon_sym__Alignof] = ACTIONS(1029), - [anon_sym_offsetof] = ACTIONS(1032), - [anon_sym__Generic] = ACTIONS(1035), - [anon_sym_asm] = ACTIONS(1038), - [anon_sym___asm__] = ACTIONS(1038), - [sym_number_literal] = ACTIONS(1041), - [anon_sym_L_SQUOTE] = ACTIONS(1044), - [anon_sym_u_SQUOTE] = ACTIONS(1044), - [anon_sym_U_SQUOTE] = ACTIONS(1044), - [anon_sym_u8_SQUOTE] = ACTIONS(1044), - [anon_sym_SQUOTE] = ACTIONS(1044), - [anon_sym_L_DQUOTE] = ACTIONS(1047), - [anon_sym_u_DQUOTE] = ACTIONS(1047), - [anon_sym_U_DQUOTE] = ACTIONS(1047), - [anon_sym_u8_DQUOTE] = ACTIONS(1047), - [anon_sym_DQUOTE] = ACTIONS(1047), - [sym_true] = ACTIONS(1050), - [sym_false] = ACTIONS(1050), - [anon_sym_NULL] = ACTIONS(1053), - [anon_sym_nullptr] = ACTIONS(1053), + [sym_identifier] = ACTIONS(1117), + [aux_sym_preproc_include_token1] = ACTIONS(930), + [aux_sym_preproc_def_token1] = ACTIONS(930), + [aux_sym_preproc_if_token1] = ACTIONS(930), + [aux_sym_preproc_if_token2] = ACTIONS(930), + [aux_sym_preproc_ifdef_token1] = ACTIONS(930), + [aux_sym_preproc_ifdef_token2] = ACTIONS(930), + [sym_preproc_directive] = ACTIONS(930), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(503), + [anon_sym___extension__] = ACTIONS(505), + [anon_sym_typedef] = ACTIONS(507), + [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(930), + [anon_sym___clrcall] = ACTIONS(930), + [anon_sym___stdcall] = ACTIONS(930), + [anon_sym___fastcall] = ACTIONS(930), + [anon_sym___thiscall] = ACTIONS(930), + [anon_sym___vectorcall] = ACTIONS(930), + [anon_sym_LBRACE] = ACTIONS(511), + [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), + [sym_primitive_type] = ACTIONS(53), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [anon_sym_if] = ACTIONS(513), + [anon_sym_else] = ACTIONS(930), + [anon_sym_switch] = ACTIONS(515), + [anon_sym_case] = ACTIONS(930), + [anon_sym_default] = ACTIONS(930), + [anon_sym_while] = ACTIONS(521), + [anon_sym_do] = ACTIONS(523), + [anon_sym_for] = ACTIONS(525), + [anon_sym_return] = ACTIONS(527), + [anon_sym_break] = ACTIONS(529), + [anon_sym_continue] = ACTIONS(531), + [anon_sym_goto] = ACTIONS(533), + [anon_sym___try] = ACTIONS(535), + [anon_sym___leave] = ACTIONS(537), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [sym_number_literal] = ACTIONS(161), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(163), + [sym_false] = ACTIONS(163), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [66] = { + [65] = { [sym_declaration] = STATE(65), [sym_type_definition] = STATE(65), - [sym__declaration_modifiers] = STATE(861), - [sym__declaration_specifiers] = STATE(1502), - [sym_attribute_specifier] = STATE(861), - [sym_attribute_declaration] = STATE(504), - [sym_ms_declspec_modifier] = STATE(861), + [sym__declaration_modifiers] = STATE(855), + [sym__declaration_specifiers] = STATE(1557), + [sym_attribute_specifier] = STATE(855), + [sym_attribute_declaration] = STATE(495), + [sym_ms_declspec_modifier] = STATE(855), [sym_compound_statement] = STATE(65), - [sym_storage_class_specifier] = STATE(861), - [sym_type_qualifier] = STATE(861), - [sym__type_specifier] = STATE(1040), - [sym_sized_type_specifier] = STATE(1106), - [sym_enum_specifier] = STATE(1106), - [sym_struct_specifier] = STATE(1106), - [sym_union_specifier] = STATE(1106), + [sym_storage_class_specifier] = STATE(855), + [sym_type_qualifier] = STATE(855), + [sym__type_specifier] = STATE(974), + [sym_sized_type_specifier] = STATE(1069), + [sym_enum_specifier] = STATE(1069), + [sym_struct_specifier] = STATE(1069), + [sym_union_specifier] = STATE(1069), [sym_attributed_statement] = STATE(65), [sym_labeled_statement] = STATE(65), [sym_expression_statement] = STATE(65), @@ -26684,43 +27075,205 @@ 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(1227), - [sym__expression_not_binary] = STATE(792), - [sym_comma_expression] = STATE(2090), - [sym_conditional_expression] = STATE(792), - [sym_assignment_expression] = STATE(792), - [sym_pointer_expression] = STATE(901), - [sym_unary_expression] = STATE(792), - [sym_binary_expression] = STATE(792), - [sym_update_expression] = STATE(792), - [sym_cast_expression] = STATE(792), - [sym_sizeof_expression] = STATE(792), - [sym_alignof_expression] = STATE(792), - [sym_offsetof_expression] = STATE(792), - [sym_generic_expression] = STATE(792), - [sym_subscript_expression] = STATE(901), - [sym_call_expression] = STATE(901), - [sym_gnu_asm_expression] = STATE(792), - [sym_field_expression] = STATE(901), - [sym_compound_literal_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(901), - [sym_char_literal] = STATE(792), - [sym_concatenated_string] = STATE(792), - [sym_string_literal] = STATE(675), - [sym_null] = STATE(792), - [sym_macro_type_specifier] = STATE(1106), - [aux_sym__declaration_specifiers_repeat1] = STATE(861), - [aux_sym_attributed_declarator_repeat1] = STATE(449), - [aux_sym_sized_type_specifier_repeat1] = STATE(1113), + [sym__expression] = STATE(1269), + [sym__expression_not_binary] = STATE(809), + [sym_comma_expression] = STATE(2019), + [sym_conditional_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_pointer_expression] = STATE(877), + [sym_unary_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_update_expression] = STATE(809), + [sym_cast_expression] = STATE(809), + [sym_sizeof_expression] = STATE(809), + [sym_alignof_expression] = STATE(809), + [sym_offsetof_expression] = STATE(809), + [sym_generic_expression] = STATE(809), + [sym_subscript_expression] = STATE(877), + [sym_call_expression] = STATE(877), + [sym_gnu_asm_expression] = STATE(809), + [sym_field_expression] = STATE(877), + [sym_compound_literal_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(877), + [sym_char_literal] = STATE(809), + [sym_concatenated_string] = STATE(809), + [sym_string_literal] = STATE(573), + [sym_null] = STATE(809), + [sym_macro_type_specifier] = STATE(1069), + [aux_sym__declaration_specifiers_repeat1] = STATE(855), + [aux_sym_attributed_declarator_repeat1] = STATE(450), + [aux_sym_sized_type_specifier_repeat1] = STATE(1085), [aux_sym_case_statement_repeat1] = STATE(65), - [ts_builtin_sym_end] = ACTIONS(1166), - [sym_identifier] = ACTIONS(1108), - [aux_sym_preproc_include_token1] = ACTIONS(924), - [aux_sym_preproc_def_token1] = ACTIONS(924), - [aux_sym_preproc_if_token1] = ACTIONS(924), - [aux_sym_preproc_ifdef_token1] = ACTIONS(924), - [aux_sym_preproc_ifdef_token2] = ACTIONS(924), - [sym_preproc_directive] = ACTIONS(924), + [sym_identifier] = ACTIONS(1119), + [aux_sym_preproc_include_token1] = ACTIONS(937), + [aux_sym_preproc_def_token1] = ACTIONS(937), + [aux_sym_preproc_if_token1] = ACTIONS(937), + [aux_sym_preproc_if_token2] = ACTIONS(937), + [aux_sym_preproc_ifdef_token1] = ACTIONS(937), + [aux_sym_preproc_ifdef_token2] = ACTIONS(937), + [sym_preproc_directive] = ACTIONS(937), + [anon_sym_LPAREN2] = ACTIONS(939), + [anon_sym_BANG] = ACTIONS(942), + [anon_sym_TILDE] = ACTIONS(942), + [anon_sym_DASH] = ACTIONS(945), + [anon_sym_PLUS] = ACTIONS(945), + [anon_sym_STAR] = ACTIONS(948), + [anon_sym_AMP] = ACTIONS(948), + [anon_sym_SEMI] = ACTIONS(1122), + [anon_sym___extension__] = ACTIONS(1125), + [anon_sym_typedef] = ACTIONS(1128), + [anon_sym_extern] = ACTIONS(960), + [anon_sym___attribute__] = ACTIONS(963), + [anon_sym___scanf] = ACTIONS(966), + [anon_sym___printf] = ACTIONS(966), + [anon_sym___read_mostly] = ACTIONS(969), + [anon_sym___must_hold] = ACTIONS(963), + [anon_sym___ro_after_init] = ACTIONS(969), + [anon_sym___init] = ACTIONS(969), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym___declspec] = ACTIONS(975), + [anon_sym___cdecl] = ACTIONS(937), + [anon_sym___clrcall] = ACTIONS(937), + [anon_sym___stdcall] = ACTIONS(937), + [anon_sym___fastcall] = ACTIONS(937), + [anon_sym___thiscall] = ACTIONS(937), + [anon_sym___vectorcall] = ACTIONS(937), + [anon_sym_LBRACE] = ACTIONS(1131), + [anon_sym_signed] = ACTIONS(981), + [anon_sym_unsigned] = ACTIONS(981), + [anon_sym_long] = ACTIONS(981), + [anon_sym_short] = ACTIONS(981), + [anon_sym_static] = ACTIONS(960), + [anon_sym_auto] = ACTIONS(960), + [anon_sym_register] = ACTIONS(960), + [anon_sym_inline] = ACTIONS(960), + [anon_sym___inline] = ACTIONS(960), + [anon_sym___inline__] = ACTIONS(960), + [anon_sym___forceinline] = ACTIONS(960), + [anon_sym_thread_local] = ACTIONS(960), + [anon_sym___thread] = ACTIONS(960), + [anon_sym_const] = ACTIONS(984), + [anon_sym_constexpr] = ACTIONS(984), + [anon_sym_volatile] = ACTIONS(984), + [anon_sym_restrict] = ACTIONS(984), + [anon_sym___restrict__] = ACTIONS(984), + [anon_sym__Atomic] = ACTIONS(984), + [anon_sym__Noreturn] = ACTIONS(984), + [anon_sym_noreturn] = ACTIONS(984), + [sym_primitive_type] = ACTIONS(987), + [anon_sym_enum] = ACTIONS(990), + [anon_sym_struct] = ACTIONS(993), + [anon_sym_union] = ACTIONS(996), + [anon_sym_if] = ACTIONS(1134), + [anon_sym_else] = ACTIONS(937), + [anon_sym_switch] = ACTIONS(1137), + [anon_sym_case] = ACTIONS(937), + [anon_sym_default] = ACTIONS(937), + [anon_sym_while] = ACTIONS(1140), + [anon_sym_do] = ACTIONS(1143), + [anon_sym_for] = ACTIONS(1146), + [anon_sym_return] = ACTIONS(1149), + [anon_sym_break] = ACTIONS(1152), + [anon_sym_continue] = ACTIONS(1155), + [anon_sym_goto] = ACTIONS(1158), + [anon_sym___try] = ACTIONS(1161), + [anon_sym___leave] = ACTIONS(1164), + [anon_sym_DASH_DASH] = ACTIONS(1032), + [anon_sym_PLUS_PLUS] = ACTIONS(1032), + [anon_sym_sizeof] = ACTIONS(1035), + [anon_sym___alignof__] = ACTIONS(1038), + [anon_sym___alignof] = ACTIONS(1038), + [anon_sym__alignof] = ACTIONS(1038), + [anon_sym_alignof] = ACTIONS(1038), + [anon_sym__Alignof] = ACTIONS(1038), + [anon_sym_offsetof] = ACTIONS(1041), + [anon_sym__Generic] = ACTIONS(1044), + [anon_sym_asm] = ACTIONS(1047), + [anon_sym___asm__] = ACTIONS(1047), + [sym_number_literal] = ACTIONS(1050), + [anon_sym_L_SQUOTE] = ACTIONS(1053), + [anon_sym_u_SQUOTE] = ACTIONS(1053), + [anon_sym_U_SQUOTE] = ACTIONS(1053), + [anon_sym_u8_SQUOTE] = ACTIONS(1053), + [anon_sym_SQUOTE] = ACTIONS(1053), + [anon_sym_L_DQUOTE] = ACTIONS(1056), + [anon_sym_u_DQUOTE] = ACTIONS(1056), + [anon_sym_U_DQUOTE] = ACTIONS(1056), + [anon_sym_u8_DQUOTE] = ACTIONS(1056), + [anon_sym_DQUOTE] = ACTIONS(1056), + [sym_true] = ACTIONS(1059), + [sym_false] = ACTIONS(1059), + [anon_sym_NULL] = ACTIONS(1062), + [anon_sym_nullptr] = ACTIONS(1062), + [sym_comment] = ACTIONS(3), + }, + [66] = { + [sym_declaration] = STATE(67), + [sym_type_definition] = STATE(67), + [sym__declaration_modifiers] = STATE(855), + [sym__declaration_specifiers] = STATE(1540), + [sym_attribute_specifier] = STATE(855), + [sym_attribute_declaration] = STATE(495), + [sym_ms_declspec_modifier] = STATE(855), + [sym_compound_statement] = STATE(67), + [sym_storage_class_specifier] = STATE(855), + [sym_type_qualifier] = STATE(855), + [sym__type_specifier] = STATE(974), + [sym_sized_type_specifier] = STATE(1069), + [sym_enum_specifier] = STATE(1069), + [sym_struct_specifier] = STATE(1069), + [sym_union_specifier] = STATE(1069), + [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(1253), + [sym__expression_not_binary] = STATE(809), + [sym_comma_expression] = STATE(2218), + [sym_conditional_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_pointer_expression] = STATE(877), + [sym_unary_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_update_expression] = STATE(809), + [sym_cast_expression] = STATE(809), + [sym_sizeof_expression] = STATE(809), + [sym_alignof_expression] = STATE(809), + [sym_offsetof_expression] = STATE(809), + [sym_generic_expression] = STATE(809), + [sym_subscript_expression] = STATE(877), + [sym_call_expression] = STATE(877), + [sym_gnu_asm_expression] = STATE(809), + [sym_field_expression] = STATE(877), + [sym_compound_literal_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(877), + [sym_char_literal] = STATE(809), + [sym_concatenated_string] = STATE(809), + [sym_string_literal] = STATE(573), + [sym_null] = STATE(809), + [sym_macro_type_specifier] = STATE(1069), + [aux_sym__declaration_specifiers_repeat1] = STATE(855), + [aux_sym_attributed_declarator_repeat1] = STATE(445), + [aux_sym_sized_type_specifier_repeat1] = STATE(1085), + [aux_sym_case_statement_repeat1] = STATE(67), + [ts_builtin_sym_end] = ACTIONS(1167), + [sym_identifier] = ACTIONS(1169), + [aux_sym_preproc_include_token1] = ACTIONS(1065), + [aux_sym_preproc_def_token1] = ACTIONS(1065), + [aux_sym_preproc_if_token1] = ACTIONS(1065), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1065), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1065), + [sym_preproc_directive] = ACTIONS(1065), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -26728,156 +27281,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(1110), + [anon_sym_SEMI] = ACTIONS(1171), [anon_sym___extension__] = ACTIONS(27), [anon_sym_typedef] = ACTIONS(29), - [anon_sym_extern] = ACTIONS(47), + [anon_sym_extern] = ACTIONS(49), [anon_sym___attribute__] = ACTIONS(33), [anon_sym___scanf] = ACTIONS(35), [anon_sym___printf] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym___cdecl] = ACTIONS(924), - [anon_sym___clrcall] = ACTIONS(924), - [anon_sym___stdcall] = ACTIONS(924), - [anon_sym___fastcall] = ACTIONS(924), - [anon_sym___thiscall] = ACTIONS(924), - [anon_sym___vectorcall] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [sym_primitive_type] = ACTIONS(51), - [anon_sym_enum] = ACTIONS(53), - [anon_sym_struct] = ACTIONS(55), - [anon_sym_union] = ACTIONS(57), - [anon_sym_if] = ACTIONS(59), - [anon_sym_else] = ACTIONS(924), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_case] = ACTIONS(924), - [anon_sym_default] = ACTIONS(924), - [anon_sym_while] = ACTIONS(67), - [anon_sym_do] = ACTIONS(69), - [anon_sym_for] = ACTIONS(71), - [anon_sym_return] = ACTIONS(73), - [anon_sym_break] = ACTIONS(75), - [anon_sym_continue] = ACTIONS(77), - [anon_sym_goto] = ACTIONS(79), - [anon_sym___try] = ACTIONS(1112), - [anon_sym___leave] = ACTIONS(1114), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(83), - [anon_sym___alignof__] = ACTIONS(85), - [anon_sym___alignof] = ACTIONS(85), - [anon_sym__alignof] = ACTIONS(85), - [anon_sym_alignof] = ACTIONS(85), - [anon_sym__Alignof] = ACTIONS(85), - [anon_sym_offsetof] = ACTIONS(87), - [anon_sym__Generic] = ACTIONS(89), - [anon_sym_asm] = ACTIONS(91), - [anon_sym___asm__] = ACTIONS(91), - [sym_number_literal] = ACTIONS(159), - [anon_sym_L_SQUOTE] = ACTIONS(95), - [anon_sym_u_SQUOTE] = ACTIONS(95), - [anon_sym_U_SQUOTE] = ACTIONS(95), - [anon_sym_u8_SQUOTE] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(95), - [anon_sym_L_DQUOTE] = ACTIONS(97), - [anon_sym_u_DQUOTE] = ACTIONS(97), - [anon_sym_U_DQUOTE] = ACTIONS(97), - [anon_sym_u8_DQUOTE] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(97), - [sym_true] = ACTIONS(161), - [sym_false] = ACTIONS(161), - [anon_sym_NULL] = ACTIONS(101), - [anon_sym_nullptr] = ACTIONS(101), + [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(1065), + [anon_sym___clrcall] = ACTIONS(1065), + [anon_sym___stdcall] = ACTIONS(1065), + [anon_sym___fastcall] = ACTIONS(1065), + [anon_sym___thiscall] = ACTIONS(1065), + [anon_sym___vectorcall] = ACTIONS(1065), + [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), + [sym_primitive_type] = ACTIONS(53), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [anon_sym_if] = ACTIONS(61), + [anon_sym_else] = ACTIONS(1065), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_case] = ACTIONS(1065), + [anon_sym_default] = ACTIONS(1065), + [anon_sym_while] = ACTIONS(69), + [anon_sym_do] = ACTIONS(71), + [anon_sym_for] = ACTIONS(73), + [anon_sym_return] = ACTIONS(75), + [anon_sym_break] = ACTIONS(77), + [anon_sym_continue] = ACTIONS(79), + [anon_sym_goto] = ACTIONS(81), + [anon_sym___try] = ACTIONS(1173), + [anon_sym___leave] = ACTIONS(1175), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [sym_number_literal] = ACTIONS(161), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(163), + [sym_false] = ACTIONS(163), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, [67] = { - [sym_declaration] = STATE(69), - [sym_type_definition] = STATE(69), - [sym__declaration_modifiers] = STATE(861), - [sym__declaration_specifiers] = STATE(1506), - [sym_attribute_specifier] = STATE(861), - [sym_attribute_declaration] = STATE(504), - [sym_ms_declspec_modifier] = STATE(861), - [sym_compound_statement] = STATE(69), - [sym_storage_class_specifier] = STATE(861), - [sym_type_qualifier] = STATE(861), - [sym__type_specifier] = STATE(1040), - [sym_sized_type_specifier] = STATE(1106), - [sym_enum_specifier] = STATE(1106), - [sym_struct_specifier] = STATE(1106), - [sym_union_specifier] = STATE(1106), - [sym_attributed_statement] = STATE(69), - [sym_labeled_statement] = STATE(69), - [sym_expression_statement] = STATE(69), - [sym_if_statement] = STATE(69), - [sym_switch_statement] = STATE(69), - [sym_while_statement] = STATE(69), - [sym_do_statement] = STATE(69), - [sym_for_statement] = STATE(69), - [sym_return_statement] = STATE(69), - [sym_break_statement] = STATE(69), - [sym_continue_statement] = STATE(69), - [sym_goto_statement] = STATE(69), - [sym_seh_try_statement] = STATE(69), - [sym_seh_leave_statement] = STATE(69), - [sym__expression] = STATE(1221), - [sym__expression_not_binary] = STATE(792), - [sym_comma_expression] = STATE(2106), - [sym_conditional_expression] = STATE(792), - [sym_assignment_expression] = STATE(792), - [sym_pointer_expression] = STATE(901), - [sym_unary_expression] = STATE(792), - [sym_binary_expression] = STATE(792), - [sym_update_expression] = STATE(792), - [sym_cast_expression] = STATE(792), - [sym_sizeof_expression] = STATE(792), - [sym_alignof_expression] = STATE(792), - [sym_offsetof_expression] = STATE(792), - [sym_generic_expression] = STATE(792), - [sym_subscript_expression] = STATE(901), - [sym_call_expression] = STATE(901), - [sym_gnu_asm_expression] = STATE(792), - [sym_field_expression] = STATE(901), - [sym_compound_literal_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(901), - [sym_char_literal] = STATE(792), - [sym_concatenated_string] = STATE(792), - [sym_string_literal] = STATE(675), - [sym_null] = STATE(792), - [sym_macro_type_specifier] = STATE(1106), - [aux_sym__declaration_specifiers_repeat1] = STATE(861), + [sym_declaration] = STATE(76), + [sym_type_definition] = STATE(76), + [sym__declaration_modifiers] = STATE(855), + [sym__declaration_specifiers] = STATE(1540), + [sym_attribute_specifier] = STATE(855), + [sym_attribute_declaration] = STATE(495), + [sym_ms_declspec_modifier] = STATE(855), + [sym_compound_statement] = STATE(76), + [sym_storage_class_specifier] = STATE(855), + [sym_type_qualifier] = STATE(855), + [sym__type_specifier] = STATE(974), + [sym_sized_type_specifier] = STATE(1069), + [sym_enum_specifier] = STATE(1069), + [sym_struct_specifier] = STATE(1069), + [sym_union_specifier] = STATE(1069), + [sym_attributed_statement] = STATE(76), + [sym_labeled_statement] = STATE(76), + [sym_expression_statement] = STATE(76), + [sym_if_statement] = STATE(76), + [sym_switch_statement] = STATE(76), + [sym_while_statement] = STATE(76), + [sym_do_statement] = STATE(76), + [sym_for_statement] = STATE(76), + [sym_return_statement] = STATE(76), + [sym_break_statement] = STATE(76), + [sym_continue_statement] = STATE(76), + [sym_goto_statement] = STATE(76), + [sym_seh_try_statement] = STATE(76), + [sym_seh_leave_statement] = STATE(76), + [sym__expression] = STATE(1253), + [sym__expression_not_binary] = STATE(809), + [sym_comma_expression] = STATE(2218), + [sym_conditional_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_pointer_expression] = STATE(877), + [sym_unary_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_update_expression] = STATE(809), + [sym_cast_expression] = STATE(809), + [sym_sizeof_expression] = STATE(809), + [sym_alignof_expression] = STATE(809), + [sym_offsetof_expression] = STATE(809), + [sym_generic_expression] = STATE(809), + [sym_subscript_expression] = STATE(877), + [sym_call_expression] = STATE(877), + [sym_gnu_asm_expression] = STATE(809), + [sym_field_expression] = STATE(877), + [sym_compound_literal_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(877), + [sym_char_literal] = STATE(809), + [sym_concatenated_string] = STATE(809), + [sym_string_literal] = STATE(573), + [sym_null] = STATE(809), + [sym_macro_type_specifier] = STATE(1069), + [aux_sym__declaration_specifiers_repeat1] = STATE(855), [aux_sym_attributed_declarator_repeat1] = STATE(445), - [aux_sym_sized_type_specifier_repeat1] = STATE(1113), - [aux_sym_case_statement_repeat1] = STATE(69), - [sym_identifier] = ACTIONS(1168), - [aux_sym_preproc_include_token1] = ACTIONS(922), - [aux_sym_preproc_def_token1] = ACTIONS(922), - [aux_sym_preproc_if_token1] = ACTIONS(922), - [aux_sym_preproc_ifdef_token1] = ACTIONS(922), - [aux_sym_preproc_ifdef_token2] = ACTIONS(922), - [sym_preproc_directive] = ACTIONS(922), + [aux_sym_sized_type_specifier_repeat1] = STATE(1085), + [aux_sym_case_statement_repeat1] = STATE(76), + [ts_builtin_sym_end] = ACTIONS(1177), + [sym_identifier] = ACTIONS(1169), + [aux_sym_preproc_include_token1] = ACTIONS(932), + [aux_sym_preproc_def_token1] = ACTIONS(932), + [aux_sym_preproc_if_token1] = ACTIONS(932), + [aux_sym_preproc_ifdef_token1] = ACTIONS(932), + [aux_sym_preproc_ifdef_token2] = ACTIONS(932), + [sym_preproc_directive] = ACTIONS(932), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -26885,581 +27443,110 @@ 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(496), - [anon_sym___extension__] = ACTIONS(498), - [anon_sym_typedef] = ACTIONS(500), - [anon_sym_extern] = ACTIONS(47), + [anon_sym_SEMI] = ACTIONS(1171), + [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_LBRACK_LBRACK] = ACTIONS(37), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym___cdecl] = ACTIONS(922), - [anon_sym___clrcall] = ACTIONS(922), - [anon_sym___stdcall] = ACTIONS(922), - [anon_sym___fastcall] = ACTIONS(922), - [anon_sym___thiscall] = ACTIONS(922), - [anon_sym___vectorcall] = ACTIONS(922), - [anon_sym_LBRACE] = ACTIONS(504), - [anon_sym_RBRACE] = ACTIONS(1170), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [sym_primitive_type] = ACTIONS(51), - [anon_sym_enum] = ACTIONS(53), - [anon_sym_struct] = ACTIONS(55), - [anon_sym_union] = ACTIONS(57), - [anon_sym_if] = ACTIONS(508), - [anon_sym_else] = ACTIONS(922), - [anon_sym_switch] = ACTIONS(510), - [anon_sym_case] = ACTIONS(922), - [anon_sym_default] = ACTIONS(922), - [anon_sym_while] = ACTIONS(516), - [anon_sym_do] = ACTIONS(518), - [anon_sym_for] = ACTIONS(520), - [anon_sym_return] = ACTIONS(522), - [anon_sym_break] = ACTIONS(524), - [anon_sym_continue] = ACTIONS(526), - [anon_sym_goto] = ACTIONS(528), - [anon_sym___try] = ACTIONS(530), - [anon_sym___leave] = ACTIONS(532), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(83), - [anon_sym___alignof__] = ACTIONS(85), - [anon_sym___alignof] = ACTIONS(85), - [anon_sym__alignof] = ACTIONS(85), - [anon_sym_alignof] = ACTIONS(85), - [anon_sym__Alignof] = ACTIONS(85), - [anon_sym_offsetof] = ACTIONS(87), - [anon_sym__Generic] = ACTIONS(89), - [anon_sym_asm] = ACTIONS(91), - [anon_sym___asm__] = ACTIONS(91), - [sym_number_literal] = ACTIONS(159), - [anon_sym_L_SQUOTE] = ACTIONS(95), - [anon_sym_u_SQUOTE] = ACTIONS(95), - [anon_sym_U_SQUOTE] = ACTIONS(95), - [anon_sym_u8_SQUOTE] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(95), - [anon_sym_L_DQUOTE] = ACTIONS(97), - [anon_sym_u_DQUOTE] = ACTIONS(97), - [anon_sym_U_DQUOTE] = ACTIONS(97), - [anon_sym_u8_DQUOTE] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(97), - [sym_true] = ACTIONS(161), - [sym_false] = ACTIONS(161), - [anon_sym_NULL] = ACTIONS(101), - [anon_sym_nullptr] = ACTIONS(101), + [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(932), + [anon_sym___clrcall] = ACTIONS(932), + [anon_sym___stdcall] = ACTIONS(932), + [anon_sym___fastcall] = ACTIONS(932), + [anon_sym___thiscall] = ACTIONS(932), + [anon_sym___vectorcall] = ACTIONS(932), + [anon_sym_LBRACE] = ACTIONS(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), + [sym_primitive_type] = ACTIONS(53), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [anon_sym_if] = ACTIONS(61), + [anon_sym_else] = ACTIONS(932), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_case] = ACTIONS(932), + [anon_sym_default] = ACTIONS(932), + [anon_sym_while] = ACTIONS(69), + [anon_sym_do] = ACTIONS(71), + [anon_sym_for] = ACTIONS(73), + [anon_sym_return] = ACTIONS(75), + [anon_sym_break] = ACTIONS(77), + [anon_sym_continue] = ACTIONS(79), + [anon_sym_goto] = ACTIONS(81), + [anon_sym___try] = ACTIONS(1173), + [anon_sym___leave] = ACTIONS(1175), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [sym_number_literal] = ACTIONS(161), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(163), + [sym_false] = ACTIONS(163), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, [68] = { - [sym_declaration] = STATE(70), - [sym_type_definition] = STATE(70), - [sym__declaration_modifiers] = STATE(861), - [sym__declaration_specifiers] = STATE(1506), - [sym_attribute_specifier] = STATE(861), - [sym_attribute_declaration] = STATE(504), - [sym_ms_declspec_modifier] = STATE(861), - [sym_compound_statement] = STATE(70), - [sym_storage_class_specifier] = STATE(861), - [sym_type_qualifier] = STATE(861), - [sym__type_specifier] = STATE(1040), - [sym_sized_type_specifier] = STATE(1106), - [sym_enum_specifier] = STATE(1106), - [sym_struct_specifier] = STATE(1106), - [sym_union_specifier] = STATE(1106), - [sym_attributed_statement] = STATE(70), - [sym_labeled_statement] = STATE(70), - [sym_expression_statement] = STATE(70), - [sym_if_statement] = STATE(70), - [sym_switch_statement] = STATE(70), - [sym_while_statement] = STATE(70), - [sym_do_statement] = STATE(70), - [sym_for_statement] = STATE(70), - [sym_return_statement] = STATE(70), - [sym_break_statement] = STATE(70), - [sym_continue_statement] = STATE(70), - [sym_goto_statement] = STATE(70), - [sym_seh_try_statement] = STATE(70), - [sym_seh_leave_statement] = STATE(70), - [sym__expression] = STATE(1221), - [sym__expression_not_binary] = STATE(792), - [sym_comma_expression] = STATE(2106), - [sym_conditional_expression] = STATE(792), - [sym_assignment_expression] = STATE(792), - [sym_pointer_expression] = STATE(901), - [sym_unary_expression] = STATE(792), - [sym_binary_expression] = STATE(792), - [sym_update_expression] = STATE(792), - [sym_cast_expression] = STATE(792), - [sym_sizeof_expression] = STATE(792), - [sym_alignof_expression] = STATE(792), - [sym_offsetof_expression] = STATE(792), - [sym_generic_expression] = STATE(792), - [sym_subscript_expression] = STATE(901), - [sym_call_expression] = STATE(901), - [sym_gnu_asm_expression] = STATE(792), - [sym_field_expression] = STATE(901), - [sym_compound_literal_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(901), - [sym_char_literal] = STATE(792), - [sym_concatenated_string] = STATE(792), - [sym_string_literal] = STATE(675), - [sym_null] = STATE(792), - [sym_macro_type_specifier] = STATE(1106), - [aux_sym__declaration_specifiers_repeat1] = STATE(861), - [aux_sym_attributed_declarator_repeat1] = STATE(445), - [aux_sym_sized_type_specifier_repeat1] = STATE(1113), - [aux_sym_case_statement_repeat1] = STATE(70), - [sym_identifier] = ACTIONS(1168), - [aux_sym_preproc_include_token1] = ACTIONS(926), - [aux_sym_preproc_def_token1] = ACTIONS(926), - [aux_sym_preproc_if_token1] = ACTIONS(926), - [aux_sym_preproc_ifdef_token1] = ACTIONS(926), - [aux_sym_preproc_ifdef_token2] = ACTIONS(926), - [sym_preproc_directive] = ACTIONS(926), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(496), - [anon_sym___extension__] = ACTIONS(498), - [anon_sym_typedef] = ACTIONS(500), - [anon_sym_extern] = ACTIONS(47), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym___scanf] = ACTIONS(35), - [anon_sym___printf] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym___cdecl] = ACTIONS(926), - [anon_sym___clrcall] = ACTIONS(926), - [anon_sym___stdcall] = ACTIONS(926), - [anon_sym___fastcall] = ACTIONS(926), - [anon_sym___thiscall] = ACTIONS(926), - [anon_sym___vectorcall] = ACTIONS(926), - [anon_sym_LBRACE] = ACTIONS(504), - [anon_sym_RBRACE] = ACTIONS(1172), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [sym_primitive_type] = ACTIONS(51), - [anon_sym_enum] = ACTIONS(53), - [anon_sym_struct] = ACTIONS(55), - [anon_sym_union] = ACTIONS(57), - [anon_sym_if] = ACTIONS(508), - [anon_sym_else] = ACTIONS(926), - [anon_sym_switch] = ACTIONS(510), - [anon_sym_case] = ACTIONS(926), - [anon_sym_default] = ACTIONS(926), - [anon_sym_while] = ACTIONS(516), - [anon_sym_do] = ACTIONS(518), - [anon_sym_for] = ACTIONS(520), - [anon_sym_return] = ACTIONS(522), - [anon_sym_break] = ACTIONS(524), - [anon_sym_continue] = ACTIONS(526), - [anon_sym_goto] = ACTIONS(528), - [anon_sym___try] = ACTIONS(530), - [anon_sym___leave] = ACTIONS(532), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(83), - [anon_sym___alignof__] = ACTIONS(85), - [anon_sym___alignof] = ACTIONS(85), - [anon_sym__alignof] = ACTIONS(85), - [anon_sym_alignof] = ACTIONS(85), - [anon_sym__Alignof] = ACTIONS(85), - [anon_sym_offsetof] = ACTIONS(87), - [anon_sym__Generic] = ACTIONS(89), - [anon_sym_asm] = ACTIONS(91), - [anon_sym___asm__] = ACTIONS(91), - [sym_number_literal] = ACTIONS(159), - [anon_sym_L_SQUOTE] = ACTIONS(95), - [anon_sym_u_SQUOTE] = ACTIONS(95), - [anon_sym_U_SQUOTE] = ACTIONS(95), - [anon_sym_u8_SQUOTE] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(95), - [anon_sym_L_DQUOTE] = ACTIONS(97), - [anon_sym_u_DQUOTE] = ACTIONS(97), - [anon_sym_U_DQUOTE] = ACTIONS(97), - [anon_sym_u8_DQUOTE] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(97), - [sym_true] = ACTIONS(161), - [sym_false] = ACTIONS(161), - [anon_sym_NULL] = ACTIONS(101), - [anon_sym_nullptr] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - }, - [69] = { - [sym_declaration] = STATE(70), - [sym_type_definition] = STATE(70), - [sym__declaration_modifiers] = STATE(861), - [sym__declaration_specifiers] = STATE(1506), - [sym_attribute_specifier] = STATE(861), - [sym_attribute_declaration] = STATE(504), - [sym_ms_declspec_modifier] = STATE(861), - [sym_compound_statement] = STATE(70), - [sym_storage_class_specifier] = STATE(861), - [sym_type_qualifier] = STATE(861), - [sym__type_specifier] = STATE(1040), - [sym_sized_type_specifier] = STATE(1106), - [sym_enum_specifier] = STATE(1106), - [sym_struct_specifier] = STATE(1106), - [sym_union_specifier] = STATE(1106), - [sym_attributed_statement] = STATE(70), - [sym_labeled_statement] = STATE(70), - [sym_expression_statement] = STATE(70), - [sym_if_statement] = STATE(70), - [sym_switch_statement] = STATE(70), - [sym_while_statement] = STATE(70), - [sym_do_statement] = STATE(70), - [sym_for_statement] = STATE(70), - [sym_return_statement] = STATE(70), - [sym_break_statement] = STATE(70), - [sym_continue_statement] = STATE(70), - [sym_goto_statement] = STATE(70), - [sym_seh_try_statement] = STATE(70), - [sym_seh_leave_statement] = STATE(70), - [sym__expression] = STATE(1221), - [sym__expression_not_binary] = STATE(792), - [sym_comma_expression] = STATE(2106), - [sym_conditional_expression] = STATE(792), - [sym_assignment_expression] = STATE(792), - [sym_pointer_expression] = STATE(901), - [sym_unary_expression] = STATE(792), - [sym_binary_expression] = STATE(792), - [sym_update_expression] = STATE(792), - [sym_cast_expression] = STATE(792), - [sym_sizeof_expression] = STATE(792), - [sym_alignof_expression] = STATE(792), - [sym_offsetof_expression] = STATE(792), - [sym_generic_expression] = STATE(792), - [sym_subscript_expression] = STATE(901), - [sym_call_expression] = STATE(901), - [sym_gnu_asm_expression] = STATE(792), - [sym_field_expression] = STATE(901), - [sym_compound_literal_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(901), - [sym_char_literal] = STATE(792), - [sym_concatenated_string] = STATE(792), - [sym_string_literal] = STATE(675), - [sym_null] = STATE(792), - [sym_macro_type_specifier] = STATE(1106), - [aux_sym__declaration_specifiers_repeat1] = STATE(861), - [aux_sym_attributed_declarator_repeat1] = STATE(445), - [aux_sym_sized_type_specifier_repeat1] = STATE(1113), - [aux_sym_case_statement_repeat1] = STATE(70), - [sym_identifier] = ACTIONS(1168), - [aux_sym_preproc_include_token1] = ACTIONS(924), - [aux_sym_preproc_def_token1] = ACTIONS(924), - [aux_sym_preproc_if_token1] = ACTIONS(924), - [aux_sym_preproc_ifdef_token1] = ACTIONS(924), - [aux_sym_preproc_ifdef_token2] = ACTIONS(924), - [sym_preproc_directive] = ACTIONS(924), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(496), - [anon_sym___extension__] = ACTIONS(498), - [anon_sym_typedef] = ACTIONS(500), - [anon_sym_extern] = ACTIONS(47), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym___scanf] = ACTIONS(35), - [anon_sym___printf] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym___cdecl] = ACTIONS(924), - [anon_sym___clrcall] = ACTIONS(924), - [anon_sym___stdcall] = ACTIONS(924), - [anon_sym___fastcall] = ACTIONS(924), - [anon_sym___thiscall] = ACTIONS(924), - [anon_sym___vectorcall] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(504), - [anon_sym_RBRACE] = ACTIONS(1166), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [sym_primitive_type] = ACTIONS(51), - [anon_sym_enum] = ACTIONS(53), - [anon_sym_struct] = ACTIONS(55), - [anon_sym_union] = ACTIONS(57), - [anon_sym_if] = ACTIONS(508), - [anon_sym_else] = ACTIONS(924), - [anon_sym_switch] = ACTIONS(510), - [anon_sym_case] = ACTIONS(924), - [anon_sym_default] = ACTIONS(924), - [anon_sym_while] = ACTIONS(516), - [anon_sym_do] = ACTIONS(518), - [anon_sym_for] = ACTIONS(520), - [anon_sym_return] = ACTIONS(522), - [anon_sym_break] = ACTIONS(524), - [anon_sym_continue] = ACTIONS(526), - [anon_sym_goto] = ACTIONS(528), - [anon_sym___try] = ACTIONS(530), - [anon_sym___leave] = ACTIONS(532), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(83), - [anon_sym___alignof__] = ACTIONS(85), - [anon_sym___alignof] = ACTIONS(85), - [anon_sym__alignof] = ACTIONS(85), - [anon_sym_alignof] = ACTIONS(85), - [anon_sym__Alignof] = ACTIONS(85), - [anon_sym_offsetof] = ACTIONS(87), - [anon_sym__Generic] = ACTIONS(89), - [anon_sym_asm] = ACTIONS(91), - [anon_sym___asm__] = ACTIONS(91), - [sym_number_literal] = ACTIONS(159), - [anon_sym_L_SQUOTE] = ACTIONS(95), - [anon_sym_u_SQUOTE] = ACTIONS(95), - [anon_sym_U_SQUOTE] = ACTIONS(95), - [anon_sym_u8_SQUOTE] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(95), - [anon_sym_L_DQUOTE] = ACTIONS(97), - [anon_sym_u_DQUOTE] = ACTIONS(97), - [anon_sym_U_DQUOTE] = ACTIONS(97), - [anon_sym_u8_DQUOTE] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(97), - [sym_true] = ACTIONS(161), - [sym_false] = ACTIONS(161), - [anon_sym_NULL] = ACTIONS(101), - [anon_sym_nullptr] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - }, - [70] = { - [sym_declaration] = STATE(70), - [sym_type_definition] = STATE(70), - [sym__declaration_modifiers] = STATE(861), - [sym__declaration_specifiers] = STATE(1506), - [sym_attribute_specifier] = STATE(861), - [sym_attribute_declaration] = STATE(504), - [sym_ms_declspec_modifier] = STATE(861), - [sym_compound_statement] = STATE(70), - [sym_storage_class_specifier] = STATE(861), - [sym_type_qualifier] = STATE(861), - [sym__type_specifier] = STATE(1040), - [sym_sized_type_specifier] = STATE(1106), - [sym_enum_specifier] = STATE(1106), - [sym_struct_specifier] = STATE(1106), - [sym_union_specifier] = STATE(1106), - [sym_attributed_statement] = STATE(70), - [sym_labeled_statement] = STATE(70), - [sym_expression_statement] = STATE(70), - [sym_if_statement] = STATE(70), - [sym_switch_statement] = STATE(70), - [sym_while_statement] = STATE(70), - [sym_do_statement] = STATE(70), - [sym_for_statement] = STATE(70), - [sym_return_statement] = STATE(70), - [sym_break_statement] = STATE(70), - [sym_continue_statement] = STATE(70), - [sym_goto_statement] = STATE(70), - [sym_seh_try_statement] = STATE(70), - [sym_seh_leave_statement] = STATE(70), - [sym__expression] = STATE(1221), - [sym__expression_not_binary] = STATE(792), - [sym_comma_expression] = STATE(2106), - [sym_conditional_expression] = STATE(792), - [sym_assignment_expression] = STATE(792), - [sym_pointer_expression] = STATE(901), - [sym_unary_expression] = STATE(792), - [sym_binary_expression] = STATE(792), - [sym_update_expression] = STATE(792), - [sym_cast_expression] = STATE(792), - [sym_sizeof_expression] = STATE(792), - [sym_alignof_expression] = STATE(792), - [sym_offsetof_expression] = STATE(792), - [sym_generic_expression] = STATE(792), - [sym_subscript_expression] = STATE(901), - [sym_call_expression] = STATE(901), - [sym_gnu_asm_expression] = STATE(792), - [sym_field_expression] = STATE(901), - [sym_compound_literal_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(901), - [sym_char_literal] = STATE(792), - [sym_concatenated_string] = STATE(792), - [sym_string_literal] = STATE(675), - [sym_null] = STATE(792), - [sym_macro_type_specifier] = STATE(1106), - [aux_sym__declaration_specifiers_repeat1] = STATE(861), - [aux_sym_attributed_declarator_repeat1] = STATE(445), - [aux_sym_sized_type_specifier_repeat1] = STATE(1113), - [aux_sym_case_statement_repeat1] = STATE(70), - [sym_identifier] = ACTIONS(1174), - [aux_sym_preproc_include_token1] = ACTIONS(931), - [aux_sym_preproc_def_token1] = ACTIONS(931), - [aux_sym_preproc_if_token1] = ACTIONS(931), - [aux_sym_preproc_ifdef_token1] = ACTIONS(931), - [aux_sym_preproc_ifdef_token2] = ACTIONS(931), - [sym_preproc_directive] = ACTIONS(931), - [anon_sym_LPAREN2] = ACTIONS(933), - [anon_sym_BANG] = ACTIONS(936), - [anon_sym_TILDE] = ACTIONS(936), - [anon_sym_DASH] = ACTIONS(939), - [anon_sym_PLUS] = ACTIONS(939), - [anon_sym_STAR] = ACTIONS(942), - [anon_sym_AMP] = ACTIONS(942), - [anon_sym_SEMI] = ACTIONS(1177), - [anon_sym___extension__] = ACTIONS(1180), - [anon_sym_typedef] = ACTIONS(1183), - [anon_sym_extern] = ACTIONS(954), - [anon_sym___attribute__] = ACTIONS(957), - [anon_sym___scanf] = ACTIONS(960), - [anon_sym___printf] = ACTIONS(960), - [anon_sym_LBRACK_LBRACK] = ACTIONS(963), - [anon_sym___declspec] = ACTIONS(966), - [anon_sym___cdecl] = ACTIONS(931), - [anon_sym___clrcall] = ACTIONS(931), - [anon_sym___stdcall] = ACTIONS(931), - [anon_sym___fastcall] = ACTIONS(931), - [anon_sym___thiscall] = ACTIONS(931), - [anon_sym___vectorcall] = ACTIONS(931), - [anon_sym_LBRACE] = ACTIONS(1186), - [anon_sym_RBRACE] = ACTIONS(1116), - [anon_sym_signed] = ACTIONS(972), - [anon_sym_unsigned] = ACTIONS(972), - [anon_sym_long] = ACTIONS(972), - [anon_sym_short] = ACTIONS(972), - [anon_sym_static] = ACTIONS(954), - [anon_sym_auto] = ACTIONS(954), - [anon_sym_register] = ACTIONS(954), - [anon_sym_inline] = ACTIONS(954), - [anon_sym___inline] = ACTIONS(954), - [anon_sym___inline__] = ACTIONS(954), - [anon_sym___forceinline] = ACTIONS(954), - [anon_sym_thread_local] = ACTIONS(954), - [anon_sym___thread] = ACTIONS(954), - [anon_sym_const] = ACTIONS(975), - [anon_sym_constexpr] = ACTIONS(975), - [anon_sym_volatile] = ACTIONS(975), - [anon_sym_restrict] = ACTIONS(975), - [anon_sym___restrict__] = ACTIONS(975), - [anon_sym__Atomic] = ACTIONS(975), - [anon_sym__Noreturn] = ACTIONS(975), - [anon_sym_noreturn] = ACTIONS(975), - [sym_primitive_type] = ACTIONS(978), - [anon_sym_enum] = ACTIONS(981), - [anon_sym_struct] = ACTIONS(984), - [anon_sym_union] = ACTIONS(987), - [anon_sym_if] = ACTIONS(1189), - [anon_sym_else] = ACTIONS(931), - [anon_sym_switch] = ACTIONS(1192), - [anon_sym_case] = ACTIONS(931), - [anon_sym_default] = ACTIONS(931), - [anon_sym_while] = ACTIONS(1195), - [anon_sym_do] = ACTIONS(1198), - [anon_sym_for] = ACTIONS(1201), - [anon_sym_return] = ACTIONS(1204), - [anon_sym_break] = ACTIONS(1207), - [anon_sym_continue] = ACTIONS(1210), - [anon_sym_goto] = ACTIONS(1213), - [anon_sym___try] = ACTIONS(1216), - [anon_sym___leave] = ACTIONS(1219), - [anon_sym_DASH_DASH] = ACTIONS(1023), - [anon_sym_PLUS_PLUS] = ACTIONS(1023), - [anon_sym_sizeof] = ACTIONS(1026), - [anon_sym___alignof__] = ACTIONS(1029), - [anon_sym___alignof] = ACTIONS(1029), - [anon_sym__alignof] = ACTIONS(1029), - [anon_sym_alignof] = ACTIONS(1029), - [anon_sym__Alignof] = ACTIONS(1029), - [anon_sym_offsetof] = ACTIONS(1032), - [anon_sym__Generic] = ACTIONS(1035), - [anon_sym_asm] = ACTIONS(1038), - [anon_sym___asm__] = ACTIONS(1038), - [sym_number_literal] = ACTIONS(1041), - [anon_sym_L_SQUOTE] = ACTIONS(1044), - [anon_sym_u_SQUOTE] = ACTIONS(1044), - [anon_sym_U_SQUOTE] = ACTIONS(1044), - [anon_sym_u8_SQUOTE] = ACTIONS(1044), - [anon_sym_SQUOTE] = ACTIONS(1044), - [anon_sym_L_DQUOTE] = ACTIONS(1047), - [anon_sym_u_DQUOTE] = ACTIONS(1047), - [anon_sym_U_DQUOTE] = ACTIONS(1047), - [anon_sym_u8_DQUOTE] = ACTIONS(1047), - [anon_sym_DQUOTE] = ACTIONS(1047), - [sym_true] = ACTIONS(1050), - [sym_false] = ACTIONS(1050), - [anon_sym_NULL] = ACTIONS(1053), - [anon_sym_nullptr] = ACTIONS(1053), - [sym_comment] = ACTIONS(3), - }, - [71] = { [sym_declaration] = STATE(68), [sym_type_definition] = STATE(68), - [sym__declaration_modifiers] = STATE(861), - [sym__declaration_specifiers] = STATE(1506), - [sym_attribute_specifier] = STATE(861), - [sym_attribute_declaration] = STATE(504), - [sym_ms_declspec_modifier] = STATE(861), + [sym__declaration_modifiers] = STATE(855), + [sym__declaration_specifiers] = STATE(1536), + [sym_attribute_specifier] = STATE(855), + [sym_attribute_declaration] = STATE(495), + [sym_ms_declspec_modifier] = STATE(855), [sym_compound_statement] = STATE(68), - [sym_storage_class_specifier] = STATE(861), - [sym_type_qualifier] = STATE(861), - [sym__type_specifier] = STATE(1040), - [sym_sized_type_specifier] = STATE(1106), - [sym_enum_specifier] = STATE(1106), - [sym_struct_specifier] = STATE(1106), - [sym_union_specifier] = STATE(1106), + [sym_storage_class_specifier] = STATE(855), + [sym_type_qualifier] = STATE(855), + [sym__type_specifier] = STATE(974), + [sym_sized_type_specifier] = STATE(1069), + [sym_enum_specifier] = STATE(1069), + [sym_struct_specifier] = STATE(1069), + [sym_union_specifier] = STATE(1069), [sym_attributed_statement] = STATE(68), [sym_labeled_statement] = STATE(68), [sym_expression_statement] = STATE(68), @@ -27474,308 +27561,316 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(68), [sym_seh_try_statement] = STATE(68), [sym_seh_leave_statement] = STATE(68), - [sym__expression] = STATE(1221), - [sym__expression_not_binary] = STATE(792), - [sym_comma_expression] = STATE(2106), - [sym_conditional_expression] = STATE(792), - [sym_assignment_expression] = STATE(792), - [sym_pointer_expression] = STATE(901), - [sym_unary_expression] = STATE(792), - [sym_binary_expression] = STATE(792), - [sym_update_expression] = STATE(792), - [sym_cast_expression] = STATE(792), - [sym_sizeof_expression] = STATE(792), - [sym_alignof_expression] = STATE(792), - [sym_offsetof_expression] = STATE(792), - [sym_generic_expression] = STATE(792), - [sym_subscript_expression] = STATE(901), - [sym_call_expression] = STATE(901), - [sym_gnu_asm_expression] = STATE(792), - [sym_field_expression] = STATE(901), - [sym_compound_literal_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(901), - [sym_char_literal] = STATE(792), - [sym_concatenated_string] = STATE(792), - [sym_string_literal] = STATE(675), - [sym_null] = STATE(792), - [sym_macro_type_specifier] = STATE(1106), - [aux_sym__declaration_specifiers_repeat1] = STATE(861), - [aux_sym_attributed_declarator_repeat1] = STATE(445), - [aux_sym_sized_type_specifier_repeat1] = STATE(1113), + [sym__expression] = STATE(1272), + [sym__expression_not_binary] = STATE(809), + [sym_comma_expression] = STATE(2198), + [sym_conditional_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_pointer_expression] = STATE(877), + [sym_unary_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_update_expression] = STATE(809), + [sym_cast_expression] = STATE(809), + [sym_sizeof_expression] = STATE(809), + [sym_alignof_expression] = STATE(809), + [sym_offsetof_expression] = STATE(809), + [sym_generic_expression] = STATE(809), + [sym_subscript_expression] = STATE(877), + [sym_call_expression] = STATE(877), + [sym_gnu_asm_expression] = STATE(809), + [sym_field_expression] = STATE(877), + [sym_compound_literal_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(877), + [sym_char_literal] = STATE(809), + [sym_concatenated_string] = STATE(809), + [sym_string_literal] = STATE(573), + [sym_null] = STATE(809), + [sym_macro_type_specifier] = STATE(1069), + [aux_sym__declaration_specifiers_repeat1] = STATE(855), + [aux_sym_attributed_declarator_repeat1] = STATE(478), + [aux_sym_sized_type_specifier_repeat1] = STATE(1085), [aux_sym_case_statement_repeat1] = STATE(68), - [sym_identifier] = ACTIONS(1168), - [aux_sym_preproc_include_token1] = ACTIONS(920), - [aux_sym_preproc_def_token1] = ACTIONS(920), - [aux_sym_preproc_if_token1] = ACTIONS(920), - [aux_sym_preproc_ifdef_token1] = ACTIONS(920), - [aux_sym_preproc_ifdef_token2] = ACTIONS(920), - [sym_preproc_directive] = ACTIONS(920), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(496), - [anon_sym___extension__] = ACTIONS(498), - [anon_sym_typedef] = ACTIONS(500), - [anon_sym_extern] = ACTIONS(47), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym___scanf] = ACTIONS(35), - [anon_sym___printf] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym___cdecl] = ACTIONS(920), - [anon_sym___clrcall] = ACTIONS(920), - [anon_sym___stdcall] = ACTIONS(920), - [anon_sym___fastcall] = ACTIONS(920), - [anon_sym___thiscall] = ACTIONS(920), - [anon_sym___vectorcall] = ACTIONS(920), - [anon_sym_LBRACE] = ACTIONS(504), - [anon_sym_RBRACE] = ACTIONS(1106), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [sym_primitive_type] = ACTIONS(51), - [anon_sym_enum] = ACTIONS(53), - [anon_sym_struct] = ACTIONS(55), - [anon_sym_union] = ACTIONS(57), - [anon_sym_if] = ACTIONS(508), - [anon_sym_else] = ACTIONS(920), - [anon_sym_switch] = ACTIONS(510), - [anon_sym_case] = ACTIONS(920), - [anon_sym_default] = ACTIONS(920), - [anon_sym_while] = ACTIONS(516), - [anon_sym_do] = ACTIONS(518), - [anon_sym_for] = ACTIONS(520), - [anon_sym_return] = ACTIONS(522), - [anon_sym_break] = ACTIONS(524), - [anon_sym_continue] = ACTIONS(526), - [anon_sym_goto] = ACTIONS(528), - [anon_sym___try] = ACTIONS(530), - [anon_sym___leave] = ACTIONS(532), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(83), - [anon_sym___alignof__] = ACTIONS(85), - [anon_sym___alignof] = ACTIONS(85), - [anon_sym__alignof] = ACTIONS(85), - [anon_sym_alignof] = ACTIONS(85), - [anon_sym__Alignof] = ACTIONS(85), - [anon_sym_offsetof] = ACTIONS(87), - [anon_sym__Generic] = ACTIONS(89), - [anon_sym_asm] = ACTIONS(91), - [anon_sym___asm__] = ACTIONS(91), - [sym_number_literal] = ACTIONS(159), - [anon_sym_L_SQUOTE] = ACTIONS(95), - [anon_sym_u_SQUOTE] = ACTIONS(95), - [anon_sym_U_SQUOTE] = ACTIONS(95), - [anon_sym_u8_SQUOTE] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(95), - [anon_sym_L_DQUOTE] = ACTIONS(97), - [anon_sym_u_DQUOTE] = ACTIONS(97), - [anon_sym_U_DQUOTE] = ACTIONS(97), - [anon_sym_u8_DQUOTE] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(97), - [sym_true] = ACTIONS(161), - [sym_false] = ACTIONS(161), - [anon_sym_NULL] = ACTIONS(101), - [anon_sym_nullptr] = ACTIONS(101), + [sym_identifier] = ACTIONS(1179), + [aux_sym_preproc_include_token1] = ACTIONS(937), + [aux_sym_preproc_def_token1] = ACTIONS(937), + [aux_sym_preproc_if_token1] = ACTIONS(937), + [aux_sym_preproc_ifdef_token1] = ACTIONS(937), + [aux_sym_preproc_ifdef_token2] = ACTIONS(937), + [sym_preproc_directive] = ACTIONS(937), + [anon_sym_LPAREN2] = ACTIONS(939), + [anon_sym_BANG] = ACTIONS(942), + [anon_sym_TILDE] = ACTIONS(942), + [anon_sym_DASH] = ACTIONS(945), + [anon_sym_PLUS] = ACTIONS(945), + [anon_sym_STAR] = ACTIONS(948), + [anon_sym_AMP] = ACTIONS(948), + [anon_sym_SEMI] = ACTIONS(1182), + [anon_sym___extension__] = ACTIONS(1185), + [anon_sym_typedef] = ACTIONS(1188), + [anon_sym_extern] = ACTIONS(960), + [anon_sym___attribute__] = ACTIONS(963), + [anon_sym___scanf] = ACTIONS(966), + [anon_sym___printf] = ACTIONS(966), + [anon_sym___read_mostly] = ACTIONS(969), + [anon_sym___must_hold] = ACTIONS(963), + [anon_sym___ro_after_init] = ACTIONS(969), + [anon_sym___init] = ACTIONS(969), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym___declspec] = ACTIONS(975), + [anon_sym___cdecl] = ACTIONS(937), + [anon_sym___clrcall] = ACTIONS(937), + [anon_sym___stdcall] = ACTIONS(937), + [anon_sym___fastcall] = ACTIONS(937), + [anon_sym___thiscall] = ACTIONS(937), + [anon_sym___vectorcall] = ACTIONS(937), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_RBRACE] = ACTIONS(1194), + [anon_sym_signed] = ACTIONS(981), + [anon_sym_unsigned] = ACTIONS(981), + [anon_sym_long] = ACTIONS(981), + [anon_sym_short] = ACTIONS(981), + [anon_sym_static] = ACTIONS(960), + [anon_sym_auto] = ACTIONS(960), + [anon_sym_register] = ACTIONS(960), + [anon_sym_inline] = ACTIONS(960), + [anon_sym___inline] = ACTIONS(960), + [anon_sym___inline__] = ACTIONS(960), + [anon_sym___forceinline] = ACTIONS(960), + [anon_sym_thread_local] = ACTIONS(960), + [anon_sym___thread] = ACTIONS(960), + [anon_sym_const] = ACTIONS(984), + [anon_sym_constexpr] = ACTIONS(984), + [anon_sym_volatile] = ACTIONS(984), + [anon_sym_restrict] = ACTIONS(984), + [anon_sym___restrict__] = ACTIONS(984), + [anon_sym__Atomic] = ACTIONS(984), + [anon_sym__Noreturn] = ACTIONS(984), + [anon_sym_noreturn] = ACTIONS(984), + [sym_primitive_type] = ACTIONS(987), + [anon_sym_enum] = ACTIONS(990), + [anon_sym_struct] = ACTIONS(993), + [anon_sym_union] = ACTIONS(996), + [anon_sym_if] = ACTIONS(1196), + [anon_sym_else] = ACTIONS(937), + [anon_sym_switch] = ACTIONS(1199), + [anon_sym_case] = ACTIONS(937), + [anon_sym_default] = ACTIONS(937), + [anon_sym_while] = ACTIONS(1202), + [anon_sym_do] = ACTIONS(1205), + [anon_sym_for] = ACTIONS(1208), + [anon_sym_return] = ACTIONS(1211), + [anon_sym_break] = ACTIONS(1214), + [anon_sym_continue] = ACTIONS(1217), + [anon_sym_goto] = ACTIONS(1220), + [anon_sym___try] = ACTIONS(1223), + [anon_sym___leave] = ACTIONS(1226), + [anon_sym_DASH_DASH] = ACTIONS(1032), + [anon_sym_PLUS_PLUS] = ACTIONS(1032), + [anon_sym_sizeof] = ACTIONS(1035), + [anon_sym___alignof__] = ACTIONS(1038), + [anon_sym___alignof] = ACTIONS(1038), + [anon_sym__alignof] = ACTIONS(1038), + [anon_sym_alignof] = ACTIONS(1038), + [anon_sym__Alignof] = ACTIONS(1038), + [anon_sym_offsetof] = ACTIONS(1041), + [anon_sym__Generic] = ACTIONS(1044), + [anon_sym_asm] = ACTIONS(1047), + [anon_sym___asm__] = ACTIONS(1047), + [sym_number_literal] = ACTIONS(1050), + [anon_sym_L_SQUOTE] = ACTIONS(1053), + [anon_sym_u_SQUOTE] = ACTIONS(1053), + [anon_sym_U_SQUOTE] = ACTIONS(1053), + [anon_sym_u8_SQUOTE] = ACTIONS(1053), + [anon_sym_SQUOTE] = ACTIONS(1053), + [anon_sym_L_DQUOTE] = ACTIONS(1056), + [anon_sym_u_DQUOTE] = ACTIONS(1056), + [anon_sym_U_DQUOTE] = ACTIONS(1056), + [anon_sym_u8_DQUOTE] = ACTIONS(1056), + [anon_sym_DQUOTE] = ACTIONS(1056), + [sym_true] = ACTIONS(1059), + [sym_false] = ACTIONS(1059), + [anon_sym_NULL] = ACTIONS(1062), + [anon_sym_nullptr] = ACTIONS(1062), [sym_comment] = ACTIONS(3), }, - [72] = { - [sym_declaration] = STATE(72), - [sym_type_definition] = STATE(72), - [sym__declaration_modifiers] = STATE(861), - [sym__declaration_specifiers] = STATE(1511), - [sym_attribute_specifier] = STATE(861), - [sym_attribute_declaration] = STATE(504), - [sym_ms_declspec_modifier] = STATE(861), - [sym_compound_statement] = STATE(72), - [sym_storage_class_specifier] = STATE(861), - [sym_type_qualifier] = STATE(861), - [sym__type_specifier] = STATE(1040), - [sym_sized_type_specifier] = STATE(1106), - [sym_enum_specifier] = STATE(1106), - [sym_struct_specifier] = STATE(1106), - [sym_union_specifier] = STATE(1106), - [sym_attributed_statement] = STATE(72), - [sym_labeled_statement] = STATE(72), - [sym_expression_statement] = STATE(72), - [sym_if_statement] = STATE(72), - [sym_switch_statement] = STATE(72), - [sym_while_statement] = STATE(72), - [sym_do_statement] = STATE(72), - [sym_for_statement] = STATE(72), - [sym_return_statement] = STATE(72), - [sym_break_statement] = STATE(72), - [sym_continue_statement] = STATE(72), - [sym_goto_statement] = STATE(72), - [sym_seh_try_statement] = STATE(72), - [sym_seh_leave_statement] = STATE(72), - [sym__expression] = STATE(1229), - [sym__expression_not_binary] = STATE(792), - [sym_comma_expression] = STATE(1976), - [sym_conditional_expression] = STATE(792), - [sym_assignment_expression] = STATE(792), - [sym_pointer_expression] = STATE(901), - [sym_unary_expression] = STATE(792), - [sym_binary_expression] = STATE(792), - [sym_update_expression] = STATE(792), - [sym_cast_expression] = STATE(792), - [sym_sizeof_expression] = STATE(792), - [sym_alignof_expression] = STATE(792), - [sym_offsetof_expression] = STATE(792), - [sym_generic_expression] = STATE(792), - [sym_subscript_expression] = STATE(901), - [sym_call_expression] = STATE(901), - [sym_gnu_asm_expression] = STATE(792), - [sym_field_expression] = STATE(901), - [sym_compound_literal_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(901), - [sym_char_literal] = STATE(792), - [sym_concatenated_string] = STATE(792), - [sym_string_literal] = STATE(675), - [sym_null] = STATE(792), - [sym_macro_type_specifier] = STATE(1106), - [aux_sym__declaration_specifiers_repeat1] = STATE(861), - [aux_sym_attributed_declarator_repeat1] = STATE(416), - [aux_sym_sized_type_specifier_repeat1] = STATE(1113), - [aux_sym_case_statement_repeat1] = STATE(72), - [sym_identifier] = ACTIONS(1222), - [aux_sym_preproc_include_token1] = ACTIONS(931), - [aux_sym_preproc_def_token1] = ACTIONS(931), - [aux_sym_preproc_if_token1] = ACTIONS(931), - [aux_sym_preproc_if_token2] = ACTIONS(931), - [aux_sym_preproc_ifdef_token1] = ACTIONS(931), - [aux_sym_preproc_ifdef_token2] = ACTIONS(931), - [sym_preproc_directive] = ACTIONS(931), - [anon_sym_LPAREN2] = ACTIONS(933), - [anon_sym_BANG] = ACTIONS(936), - [anon_sym_TILDE] = ACTIONS(936), - [anon_sym_DASH] = ACTIONS(939), - [anon_sym_PLUS] = ACTIONS(939), - [anon_sym_STAR] = ACTIONS(942), - [anon_sym_AMP] = ACTIONS(942), - [anon_sym_SEMI] = ACTIONS(1225), - [anon_sym___extension__] = ACTIONS(1228), - [anon_sym_typedef] = ACTIONS(1231), - [anon_sym_extern] = ACTIONS(954), - [anon_sym___attribute__] = ACTIONS(957), - [anon_sym___scanf] = ACTIONS(960), - [anon_sym___printf] = ACTIONS(960), - [anon_sym_LBRACK_LBRACK] = ACTIONS(963), - [anon_sym___declspec] = ACTIONS(966), - [anon_sym___cdecl] = ACTIONS(931), - [anon_sym___clrcall] = ACTIONS(931), - [anon_sym___stdcall] = ACTIONS(931), - [anon_sym___fastcall] = ACTIONS(931), - [anon_sym___thiscall] = ACTIONS(931), - [anon_sym___vectorcall] = ACTIONS(931), - [anon_sym_LBRACE] = ACTIONS(1234), - [anon_sym_signed] = ACTIONS(972), - [anon_sym_unsigned] = ACTIONS(972), - [anon_sym_long] = ACTIONS(972), - [anon_sym_short] = ACTIONS(972), - [anon_sym_static] = ACTIONS(954), - [anon_sym_auto] = ACTIONS(954), - [anon_sym_register] = ACTIONS(954), - [anon_sym_inline] = ACTIONS(954), - [anon_sym___inline] = ACTIONS(954), - [anon_sym___inline__] = ACTIONS(954), - [anon_sym___forceinline] = ACTIONS(954), - [anon_sym_thread_local] = ACTIONS(954), - [anon_sym___thread] = ACTIONS(954), - [anon_sym_const] = ACTIONS(975), - [anon_sym_constexpr] = ACTIONS(975), - [anon_sym_volatile] = ACTIONS(975), - [anon_sym_restrict] = ACTIONS(975), - [anon_sym___restrict__] = ACTIONS(975), - [anon_sym__Atomic] = ACTIONS(975), - [anon_sym__Noreturn] = ACTIONS(975), - [anon_sym_noreturn] = ACTIONS(975), - [sym_primitive_type] = ACTIONS(978), - [anon_sym_enum] = ACTIONS(981), - [anon_sym_struct] = ACTIONS(984), - [anon_sym_union] = ACTIONS(987), - [anon_sym_if] = ACTIONS(1237), - [anon_sym_else] = ACTIONS(931), - [anon_sym_switch] = ACTIONS(1240), - [anon_sym_case] = ACTIONS(931), - [anon_sym_default] = ACTIONS(931), - [anon_sym_while] = ACTIONS(1243), - [anon_sym_do] = ACTIONS(1246), - [anon_sym_for] = ACTIONS(1249), - [anon_sym_return] = ACTIONS(1252), - [anon_sym_break] = ACTIONS(1255), - [anon_sym_continue] = ACTIONS(1258), - [anon_sym_goto] = ACTIONS(1261), - [anon_sym___try] = ACTIONS(1264), - [anon_sym___leave] = ACTIONS(1267), - [anon_sym_DASH_DASH] = ACTIONS(1023), - [anon_sym_PLUS_PLUS] = ACTIONS(1023), - [anon_sym_sizeof] = ACTIONS(1026), - [anon_sym___alignof__] = ACTIONS(1029), - [anon_sym___alignof] = ACTIONS(1029), - [anon_sym__alignof] = ACTIONS(1029), - [anon_sym_alignof] = ACTIONS(1029), - [anon_sym__Alignof] = ACTIONS(1029), - [anon_sym_offsetof] = ACTIONS(1032), - [anon_sym__Generic] = ACTIONS(1035), - [anon_sym_asm] = ACTIONS(1038), - [anon_sym___asm__] = ACTIONS(1038), - [sym_number_literal] = ACTIONS(1041), - [anon_sym_L_SQUOTE] = ACTIONS(1044), - [anon_sym_u_SQUOTE] = ACTIONS(1044), - [anon_sym_U_SQUOTE] = ACTIONS(1044), - [anon_sym_u8_SQUOTE] = ACTIONS(1044), - [anon_sym_SQUOTE] = ACTIONS(1044), - [anon_sym_L_DQUOTE] = ACTIONS(1047), - [anon_sym_u_DQUOTE] = ACTIONS(1047), - [anon_sym_U_DQUOTE] = ACTIONS(1047), - [anon_sym_u8_DQUOTE] = ACTIONS(1047), - [anon_sym_DQUOTE] = ACTIONS(1047), - [sym_true] = ACTIONS(1050), - [sym_false] = ACTIONS(1050), - [anon_sym_NULL] = ACTIONS(1053), - [anon_sym_nullptr] = ACTIONS(1053), + [69] = { + [sym_declaration] = STATE(77), + [sym_type_definition] = STATE(77), + [sym__declaration_modifiers] = STATE(855), + [sym__declaration_specifiers] = STATE(1540), + [sym_attribute_specifier] = STATE(855), + [sym_attribute_declaration] = STATE(495), + [sym_ms_declspec_modifier] = STATE(855), + [sym_compound_statement] = STATE(77), + [sym_storage_class_specifier] = STATE(855), + [sym_type_qualifier] = STATE(855), + [sym__type_specifier] = STATE(974), + [sym_sized_type_specifier] = STATE(1069), + [sym_enum_specifier] = STATE(1069), + [sym_struct_specifier] = STATE(1069), + [sym_union_specifier] = STATE(1069), + [sym_attributed_statement] = STATE(77), + [sym_labeled_statement] = STATE(77), + [sym_expression_statement] = STATE(77), + [sym_if_statement] = STATE(77), + [sym_switch_statement] = STATE(77), + [sym_while_statement] = STATE(77), + [sym_do_statement] = STATE(77), + [sym_for_statement] = STATE(77), + [sym_return_statement] = STATE(77), + [sym_break_statement] = STATE(77), + [sym_continue_statement] = STATE(77), + [sym_goto_statement] = STATE(77), + [sym_seh_try_statement] = STATE(77), + [sym_seh_leave_statement] = STATE(77), + [sym__expression] = STATE(1253), + [sym__expression_not_binary] = STATE(809), + [sym_comma_expression] = STATE(2218), + [sym_conditional_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_pointer_expression] = STATE(877), + [sym_unary_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_update_expression] = STATE(809), + [sym_cast_expression] = STATE(809), + [sym_sizeof_expression] = STATE(809), + [sym_alignof_expression] = STATE(809), + [sym_offsetof_expression] = STATE(809), + [sym_generic_expression] = STATE(809), + [sym_subscript_expression] = STATE(877), + [sym_call_expression] = STATE(877), + [sym_gnu_asm_expression] = STATE(809), + [sym_field_expression] = STATE(877), + [sym_compound_literal_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(877), + [sym_char_literal] = STATE(809), + [sym_concatenated_string] = STATE(809), + [sym_string_literal] = STATE(573), + [sym_null] = STATE(809), + [sym_macro_type_specifier] = STATE(1069), + [aux_sym__declaration_specifiers_repeat1] = STATE(855), + [aux_sym_attributed_declarator_repeat1] = STATE(445), + [aux_sym_sized_type_specifier_repeat1] = STATE(1085), + [aux_sym_case_statement_repeat1] = STATE(77), + [ts_builtin_sym_end] = ACTIONS(1229), + [sym_identifier] = ACTIONS(1169), + [aux_sym_preproc_include_token1] = ACTIONS(928), + [aux_sym_preproc_def_token1] = ACTIONS(928), + [aux_sym_preproc_if_token1] = ACTIONS(928), + [aux_sym_preproc_ifdef_token1] = ACTIONS(928), + [aux_sym_preproc_ifdef_token2] = ACTIONS(928), + [sym_preproc_directive] = ACTIONS(928), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(1171), + [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(928), + [anon_sym___clrcall] = ACTIONS(928), + [anon_sym___stdcall] = ACTIONS(928), + [anon_sym___fastcall] = ACTIONS(928), + [anon_sym___thiscall] = ACTIONS(928), + [anon_sym___vectorcall] = ACTIONS(928), + [anon_sym_LBRACE] = ACTIONS(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), + [sym_primitive_type] = ACTIONS(53), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [anon_sym_if] = ACTIONS(61), + [anon_sym_else] = ACTIONS(928), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_case] = ACTIONS(928), + [anon_sym_default] = ACTIONS(928), + [anon_sym_while] = ACTIONS(69), + [anon_sym_do] = ACTIONS(71), + [anon_sym_for] = ACTIONS(73), + [anon_sym_return] = ACTIONS(75), + [anon_sym_break] = ACTIONS(77), + [anon_sym_continue] = ACTIONS(79), + [anon_sym_goto] = ACTIONS(81), + [anon_sym___try] = ACTIONS(1173), + [anon_sym___leave] = ACTIONS(1175), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [sym_number_literal] = ACTIONS(161), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(163), + [sym_false] = ACTIONS(163), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [73] = { + [70] = { [sym_declaration] = STATE(74), [sym_type_definition] = STATE(74), - [sym__declaration_modifiers] = STATE(861), - [sym__declaration_specifiers] = STATE(1511), - [sym_attribute_specifier] = STATE(861), - [sym_attribute_declaration] = STATE(504), - [sym_ms_declspec_modifier] = STATE(861), + [sym__declaration_modifiers] = STATE(855), + [sym__declaration_specifiers] = STATE(1557), + [sym_attribute_specifier] = STATE(855), + [sym_attribute_declaration] = STATE(495), + [sym_ms_declspec_modifier] = STATE(855), [sym_compound_statement] = STATE(74), - [sym_storage_class_specifier] = STATE(861), - [sym_type_qualifier] = STATE(861), - [sym__type_specifier] = STATE(1040), - [sym_sized_type_specifier] = STATE(1106), - [sym_enum_specifier] = STATE(1106), - [sym_struct_specifier] = STATE(1106), - [sym_union_specifier] = STATE(1106), + [sym_storage_class_specifier] = STATE(855), + [sym_type_qualifier] = STATE(855), + [sym__type_specifier] = STATE(974), + [sym_sized_type_specifier] = STATE(1069), + [sym_enum_specifier] = STATE(1069), + [sym_struct_specifier] = STATE(1069), + [sym_union_specifier] = STATE(1069), [sym_attributed_statement] = STATE(74), [sym_labeled_statement] = STATE(74), [sym_expression_statement] = STATE(74), @@ -27790,43 +27885,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(74), [sym_seh_try_statement] = STATE(74), [sym_seh_leave_statement] = STATE(74), - [sym__expression] = STATE(1229), - [sym__expression_not_binary] = STATE(792), - [sym_comma_expression] = STATE(1976), - [sym_conditional_expression] = STATE(792), - [sym_assignment_expression] = STATE(792), - [sym_pointer_expression] = STATE(901), - [sym_unary_expression] = STATE(792), - [sym_binary_expression] = STATE(792), - [sym_update_expression] = STATE(792), - [sym_cast_expression] = STATE(792), - [sym_sizeof_expression] = STATE(792), - [sym_alignof_expression] = STATE(792), - [sym_offsetof_expression] = STATE(792), - [sym_generic_expression] = STATE(792), - [sym_subscript_expression] = STATE(901), - [sym_call_expression] = STATE(901), - [sym_gnu_asm_expression] = STATE(792), - [sym_field_expression] = STATE(901), - [sym_compound_literal_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(901), - [sym_char_literal] = STATE(792), - [sym_concatenated_string] = STATE(792), - [sym_string_literal] = STATE(675), - [sym_null] = STATE(792), - [sym_macro_type_specifier] = STATE(1106), - [aux_sym__declaration_specifiers_repeat1] = STATE(861), - [aux_sym_attributed_declarator_repeat1] = STATE(416), - [aux_sym_sized_type_specifier_repeat1] = STATE(1113), + [sym__expression] = STATE(1269), + [sym__expression_not_binary] = STATE(809), + [sym_comma_expression] = STATE(2019), + [sym_conditional_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_pointer_expression] = STATE(877), + [sym_unary_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_update_expression] = STATE(809), + [sym_cast_expression] = STATE(809), + [sym_sizeof_expression] = STATE(809), + [sym_alignof_expression] = STATE(809), + [sym_offsetof_expression] = STATE(809), + [sym_generic_expression] = STATE(809), + [sym_subscript_expression] = STATE(877), + [sym_call_expression] = STATE(877), + [sym_gnu_asm_expression] = STATE(809), + [sym_field_expression] = STATE(877), + [sym_compound_literal_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(877), + [sym_char_literal] = STATE(809), + [sym_concatenated_string] = STATE(809), + [sym_string_literal] = STATE(573), + [sym_null] = STATE(809), + [sym_macro_type_specifier] = STATE(1069), + [aux_sym__declaration_specifiers_repeat1] = STATE(855), + [aux_sym_attributed_declarator_repeat1] = STATE(450), + [aux_sym_sized_type_specifier_repeat1] = STATE(1085), [aux_sym_case_statement_repeat1] = STATE(74), - [sym_identifier] = ACTIONS(1270), - [aux_sym_preproc_include_token1] = ACTIONS(920), - [aux_sym_preproc_def_token1] = ACTIONS(920), - [aux_sym_preproc_if_token1] = ACTIONS(920), - [aux_sym_preproc_if_token2] = ACTIONS(920), - [aux_sym_preproc_ifdef_token1] = ACTIONS(920), - [aux_sym_preproc_ifdef_token2] = ACTIONS(920), - [sym_preproc_directive] = ACTIONS(920), + [sym_identifier] = ACTIONS(1117), + [aux_sym_preproc_include_token1] = ACTIONS(1065), + [aux_sym_preproc_def_token1] = ACTIONS(1065), + [aux_sym_preproc_if_token1] = ACTIONS(1065), + [aux_sym_preproc_if_token2] = ACTIONS(1065), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1065), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1065), + [sym_preproc_directive] = ACTIONS(1065), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -27834,157 +27929,160 @@ 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(648), - [anon_sym___extension__] = ACTIONS(650), - [anon_sym_typedef] = ACTIONS(652), - [anon_sym_extern] = ACTIONS(47), + [anon_sym_SEMI] = ACTIONS(503), + [anon_sym___extension__] = ACTIONS(505), + [anon_sym_typedef] = ACTIONS(507), + [anon_sym_extern] = ACTIONS(49), [anon_sym___attribute__] = ACTIONS(33), [anon_sym___scanf] = ACTIONS(35), [anon_sym___printf] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym___cdecl] = ACTIONS(920), - [anon_sym___clrcall] = ACTIONS(920), - [anon_sym___stdcall] = ACTIONS(920), - [anon_sym___fastcall] = ACTIONS(920), - [anon_sym___thiscall] = ACTIONS(920), - [anon_sym___vectorcall] = ACTIONS(920), - [anon_sym_LBRACE] = ACTIONS(656), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [sym_primitive_type] = ACTIONS(51), - [anon_sym_enum] = ACTIONS(53), - [anon_sym_struct] = ACTIONS(55), - [anon_sym_union] = ACTIONS(57), - [anon_sym_if] = ACTIONS(658), - [anon_sym_else] = ACTIONS(920), - [anon_sym_switch] = ACTIONS(660), - [anon_sym_case] = ACTIONS(920), - [anon_sym_default] = ACTIONS(920), - [anon_sym_while] = ACTIONS(666), - [anon_sym_do] = ACTIONS(668), - [anon_sym_for] = ACTIONS(670), - [anon_sym_return] = ACTIONS(672), - [anon_sym_break] = ACTIONS(674), - [anon_sym_continue] = ACTIONS(676), - [anon_sym_goto] = ACTIONS(678), - [anon_sym___try] = ACTIONS(680), - [anon_sym___leave] = ACTIONS(682), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(83), - [anon_sym___alignof__] = ACTIONS(85), - [anon_sym___alignof] = ACTIONS(85), - [anon_sym__alignof] = ACTIONS(85), - [anon_sym_alignof] = ACTIONS(85), - [anon_sym__Alignof] = ACTIONS(85), - [anon_sym_offsetof] = ACTIONS(87), - [anon_sym__Generic] = ACTIONS(89), - [anon_sym_asm] = ACTIONS(91), - [anon_sym___asm__] = ACTIONS(91), - [sym_number_literal] = ACTIONS(159), - [anon_sym_L_SQUOTE] = ACTIONS(95), - [anon_sym_u_SQUOTE] = ACTIONS(95), - [anon_sym_U_SQUOTE] = ACTIONS(95), - [anon_sym_u8_SQUOTE] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(95), - [anon_sym_L_DQUOTE] = ACTIONS(97), - [anon_sym_u_DQUOTE] = ACTIONS(97), - [anon_sym_U_DQUOTE] = ACTIONS(97), - [anon_sym_u8_DQUOTE] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(97), - [sym_true] = ACTIONS(161), - [sym_false] = ACTIONS(161), - [anon_sym_NULL] = ACTIONS(101), - [anon_sym_nullptr] = ACTIONS(101), + [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(1065), + [anon_sym___clrcall] = ACTIONS(1065), + [anon_sym___stdcall] = ACTIONS(1065), + [anon_sym___fastcall] = ACTIONS(1065), + [anon_sym___thiscall] = ACTIONS(1065), + [anon_sym___vectorcall] = ACTIONS(1065), + [anon_sym_LBRACE] = ACTIONS(511), + [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), + [sym_primitive_type] = ACTIONS(53), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [anon_sym_if] = ACTIONS(513), + [anon_sym_else] = ACTIONS(1065), + [anon_sym_switch] = ACTIONS(515), + [anon_sym_case] = ACTIONS(1065), + [anon_sym_default] = ACTIONS(1065), + [anon_sym_while] = ACTIONS(521), + [anon_sym_do] = ACTIONS(523), + [anon_sym_for] = ACTIONS(525), + [anon_sym_return] = ACTIONS(527), + [anon_sym_break] = ACTIONS(529), + [anon_sym_continue] = ACTIONS(531), + [anon_sym_goto] = ACTIONS(533), + [anon_sym___try] = ACTIONS(535), + [anon_sym___leave] = ACTIONS(537), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [sym_number_literal] = ACTIONS(161), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(163), + [sym_false] = ACTIONS(163), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [74] = { - [sym_declaration] = STATE(72), - [sym_type_definition] = STATE(72), - [sym__declaration_modifiers] = STATE(861), - [sym__declaration_specifiers] = STATE(1511), - [sym_attribute_specifier] = STATE(861), - [sym_attribute_declaration] = STATE(504), - [sym_ms_declspec_modifier] = STATE(861), - [sym_compound_statement] = STATE(72), - [sym_storage_class_specifier] = STATE(861), - [sym_type_qualifier] = STATE(861), - [sym__type_specifier] = STATE(1040), - [sym_sized_type_specifier] = STATE(1106), - [sym_enum_specifier] = STATE(1106), - [sym_struct_specifier] = STATE(1106), - [sym_union_specifier] = STATE(1106), - [sym_attributed_statement] = STATE(72), - [sym_labeled_statement] = STATE(72), - [sym_expression_statement] = STATE(72), - [sym_if_statement] = STATE(72), - [sym_switch_statement] = STATE(72), - [sym_while_statement] = STATE(72), - [sym_do_statement] = STATE(72), - [sym_for_statement] = STATE(72), - [sym_return_statement] = STATE(72), - [sym_break_statement] = STATE(72), - [sym_continue_statement] = STATE(72), - [sym_goto_statement] = STATE(72), - [sym_seh_try_statement] = STATE(72), - [sym_seh_leave_statement] = STATE(72), - [sym__expression] = STATE(1229), - [sym__expression_not_binary] = STATE(792), - [sym_comma_expression] = STATE(1976), - [sym_conditional_expression] = STATE(792), - [sym_assignment_expression] = STATE(792), - [sym_pointer_expression] = STATE(901), - [sym_unary_expression] = STATE(792), - [sym_binary_expression] = STATE(792), - [sym_update_expression] = STATE(792), - [sym_cast_expression] = STATE(792), - [sym_sizeof_expression] = STATE(792), - [sym_alignof_expression] = STATE(792), - [sym_offsetof_expression] = STATE(792), - [sym_generic_expression] = STATE(792), - [sym_subscript_expression] = STATE(901), - [sym_call_expression] = STATE(901), - [sym_gnu_asm_expression] = STATE(792), - [sym_field_expression] = STATE(901), - [sym_compound_literal_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(901), - [sym_char_literal] = STATE(792), - [sym_concatenated_string] = STATE(792), - [sym_string_literal] = STATE(675), - [sym_null] = STATE(792), - [sym_macro_type_specifier] = STATE(1106), - [aux_sym__declaration_specifiers_repeat1] = STATE(861), - [aux_sym_attributed_declarator_repeat1] = STATE(416), - [aux_sym_sized_type_specifier_repeat1] = STATE(1113), - [aux_sym_case_statement_repeat1] = STATE(72), - [sym_identifier] = ACTIONS(1270), - [aux_sym_preproc_include_token1] = ACTIONS(926), - [aux_sym_preproc_def_token1] = ACTIONS(926), - [aux_sym_preproc_if_token1] = ACTIONS(926), - [aux_sym_preproc_if_token2] = ACTIONS(926), - [aux_sym_preproc_ifdef_token1] = ACTIONS(926), - [aux_sym_preproc_ifdef_token2] = ACTIONS(926), - [sym_preproc_directive] = ACTIONS(926), + [71] = { + [sym_declaration] = STATE(68), + [sym_type_definition] = STATE(68), + [sym__declaration_modifiers] = STATE(855), + [sym__declaration_specifiers] = STATE(1536), + [sym_attribute_specifier] = STATE(855), + [sym_attribute_declaration] = STATE(495), + [sym_ms_declspec_modifier] = STATE(855), + [sym_compound_statement] = STATE(68), + [sym_storage_class_specifier] = STATE(855), + [sym_type_qualifier] = STATE(855), + [sym__type_specifier] = STATE(974), + [sym_sized_type_specifier] = STATE(1069), + [sym_enum_specifier] = STATE(1069), + [sym_struct_specifier] = STATE(1069), + [sym_union_specifier] = STATE(1069), + [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(1272), + [sym__expression_not_binary] = STATE(809), + [sym_comma_expression] = STATE(2198), + [sym_conditional_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_pointer_expression] = STATE(877), + [sym_unary_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_update_expression] = STATE(809), + [sym_cast_expression] = STATE(809), + [sym_sizeof_expression] = STATE(809), + [sym_alignof_expression] = STATE(809), + [sym_offsetof_expression] = STATE(809), + [sym_generic_expression] = STATE(809), + [sym_subscript_expression] = STATE(877), + [sym_call_expression] = STATE(877), + [sym_gnu_asm_expression] = STATE(809), + [sym_field_expression] = STATE(877), + [sym_compound_literal_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(877), + [sym_char_literal] = STATE(809), + [sym_concatenated_string] = STATE(809), + [sym_string_literal] = STATE(573), + [sym_null] = STATE(809), + [sym_macro_type_specifier] = STATE(1069), + [aux_sym__declaration_specifiers_repeat1] = STATE(855), + [aux_sym_attributed_declarator_repeat1] = STATE(478), + [aux_sym_sized_type_specifier_repeat1] = STATE(1085), + [aux_sym_case_statement_repeat1] = STATE(68), + [sym_identifier] = ACTIONS(1231), + [aux_sym_preproc_include_token1] = ACTIONS(930), + [aux_sym_preproc_def_token1] = ACTIONS(930), + [aux_sym_preproc_if_token1] = ACTIONS(930), + [aux_sym_preproc_ifdef_token1] = ACTIONS(930), + [aux_sym_preproc_ifdef_token2] = ACTIONS(930), + [sym_preproc_directive] = ACTIONS(930), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -27992,157 +28090,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(648), - [anon_sym___extension__] = ACTIONS(650), - [anon_sym_typedef] = ACTIONS(652), - [anon_sym_extern] = ACTIONS(47), + [anon_sym_SEMI] = ACTIONS(623), + [anon_sym___extension__] = ACTIONS(625), + [anon_sym_typedef] = ACTIONS(627), + [anon_sym_extern] = ACTIONS(49), [anon_sym___attribute__] = ACTIONS(33), [anon_sym___scanf] = ACTIONS(35), [anon_sym___printf] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym___cdecl] = ACTIONS(926), - [anon_sym___clrcall] = ACTIONS(926), - [anon_sym___stdcall] = ACTIONS(926), - [anon_sym___fastcall] = ACTIONS(926), - [anon_sym___thiscall] = ACTIONS(926), - [anon_sym___vectorcall] = ACTIONS(926), - [anon_sym_LBRACE] = ACTIONS(656), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [sym_primitive_type] = ACTIONS(51), - [anon_sym_enum] = ACTIONS(53), - [anon_sym_struct] = ACTIONS(55), - [anon_sym_union] = ACTIONS(57), - [anon_sym_if] = ACTIONS(658), - [anon_sym_else] = ACTIONS(926), - [anon_sym_switch] = ACTIONS(660), - [anon_sym_case] = ACTIONS(926), - [anon_sym_default] = ACTIONS(926), - [anon_sym_while] = ACTIONS(666), - [anon_sym_do] = ACTIONS(668), - [anon_sym_for] = ACTIONS(670), - [anon_sym_return] = ACTIONS(672), - [anon_sym_break] = ACTIONS(674), - [anon_sym_continue] = ACTIONS(676), - [anon_sym_goto] = ACTIONS(678), - [anon_sym___try] = ACTIONS(680), - [anon_sym___leave] = ACTIONS(682), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(83), - [anon_sym___alignof__] = ACTIONS(85), - [anon_sym___alignof] = ACTIONS(85), - [anon_sym__alignof] = ACTIONS(85), - [anon_sym_alignof] = ACTIONS(85), - [anon_sym__Alignof] = ACTIONS(85), - [anon_sym_offsetof] = ACTIONS(87), - [anon_sym__Generic] = ACTIONS(89), - [anon_sym_asm] = ACTIONS(91), - [anon_sym___asm__] = ACTIONS(91), - [sym_number_literal] = ACTIONS(159), - [anon_sym_L_SQUOTE] = ACTIONS(95), - [anon_sym_u_SQUOTE] = ACTIONS(95), - [anon_sym_U_SQUOTE] = ACTIONS(95), - [anon_sym_u8_SQUOTE] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(95), - [anon_sym_L_DQUOTE] = ACTIONS(97), - [anon_sym_u_DQUOTE] = ACTIONS(97), - [anon_sym_U_DQUOTE] = ACTIONS(97), - [anon_sym_u8_DQUOTE] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(97), - [sym_true] = ACTIONS(161), - [sym_false] = ACTIONS(161), - [anon_sym_NULL] = ACTIONS(101), - [anon_sym_nullptr] = ACTIONS(101), + [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(930), + [anon_sym___clrcall] = ACTIONS(930), + [anon_sym___stdcall] = ACTIONS(930), + [anon_sym___fastcall] = ACTIONS(930), + [anon_sym___thiscall] = ACTIONS(930), + [anon_sym___vectorcall] = ACTIONS(930), + [anon_sym_LBRACE] = ACTIONS(631), + [anon_sym_RBRACE] = ACTIONS(1233), + [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), + [sym_primitive_type] = ACTIONS(53), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [anon_sym_if] = ACTIONS(635), + [anon_sym_else] = ACTIONS(930), + [anon_sym_switch] = ACTIONS(637), + [anon_sym_case] = ACTIONS(930), + [anon_sym_default] = ACTIONS(930), + [anon_sym_while] = ACTIONS(643), + [anon_sym_do] = ACTIONS(645), + [anon_sym_for] = ACTIONS(647), + [anon_sym_return] = ACTIONS(649), + [anon_sym_break] = ACTIONS(651), + [anon_sym_continue] = ACTIONS(653), + [anon_sym_goto] = ACTIONS(655), + [anon_sym___try] = ACTIONS(657), + [anon_sym___leave] = ACTIONS(659), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [sym_number_literal] = ACTIONS(161), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(163), + [sym_false] = ACTIONS(163), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [75] = { - [sym_declaration] = STATE(77), - [sym_type_definition] = STATE(77), - [sym__declaration_modifiers] = STATE(861), - [sym__declaration_specifiers] = STATE(1511), - [sym_attribute_specifier] = STATE(861), - [sym_attribute_declaration] = STATE(504), - [sym_ms_declspec_modifier] = STATE(861), - [sym_compound_statement] = STATE(77), - [sym_storage_class_specifier] = STATE(861), - [sym_type_qualifier] = STATE(861), - [sym__type_specifier] = STATE(1040), - [sym_sized_type_specifier] = STATE(1106), - [sym_enum_specifier] = STATE(1106), - [sym_struct_specifier] = STATE(1106), - [sym_union_specifier] = STATE(1106), - [sym_attributed_statement] = STATE(77), - [sym_labeled_statement] = STATE(77), - [sym_expression_statement] = STATE(77), - [sym_if_statement] = STATE(77), - [sym_switch_statement] = STATE(77), - [sym_while_statement] = STATE(77), - [sym_do_statement] = STATE(77), - [sym_for_statement] = STATE(77), - [sym_return_statement] = STATE(77), - [sym_break_statement] = STATE(77), - [sym_continue_statement] = STATE(77), - [sym_goto_statement] = STATE(77), - [sym_seh_try_statement] = STATE(77), - [sym_seh_leave_statement] = STATE(77), - [sym__expression] = STATE(1229), - [sym__expression_not_binary] = STATE(792), - [sym_comma_expression] = STATE(1976), - [sym_conditional_expression] = STATE(792), - [sym_assignment_expression] = STATE(792), - [sym_pointer_expression] = STATE(901), - [sym_unary_expression] = STATE(792), - [sym_binary_expression] = STATE(792), - [sym_update_expression] = STATE(792), - [sym_cast_expression] = STATE(792), - [sym_sizeof_expression] = STATE(792), - [sym_alignof_expression] = STATE(792), - [sym_offsetof_expression] = STATE(792), - [sym_generic_expression] = STATE(792), - [sym_subscript_expression] = STATE(901), - [sym_call_expression] = STATE(901), - [sym_gnu_asm_expression] = STATE(792), - [sym_field_expression] = STATE(901), - [sym_compound_literal_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(901), - [sym_char_literal] = STATE(792), - [sym_concatenated_string] = STATE(792), - [sym_string_literal] = STATE(675), - [sym_null] = STATE(792), - [sym_macro_type_specifier] = STATE(1106), - [aux_sym__declaration_specifiers_repeat1] = STATE(861), - [aux_sym_attributed_declarator_repeat1] = STATE(416), - [aux_sym_sized_type_specifier_repeat1] = STATE(1113), - [aux_sym_case_statement_repeat1] = STATE(77), - [sym_identifier] = ACTIONS(1270), - [aux_sym_preproc_include_token1] = ACTIONS(922), - [aux_sym_preproc_def_token1] = ACTIONS(922), - [aux_sym_preproc_if_token1] = ACTIONS(922), - [aux_sym_preproc_if_token2] = ACTIONS(922), - [aux_sym_preproc_ifdef_token1] = ACTIONS(922), - [aux_sym_preproc_ifdef_token2] = ACTIONS(922), - [sym_preproc_directive] = ACTIONS(922), + [72] = { + [sym_declaration] = STATE(68), + [sym_type_definition] = STATE(68), + [sym__declaration_modifiers] = STATE(855), + [sym__declaration_specifiers] = STATE(1536), + [sym_attribute_specifier] = STATE(855), + [sym_attribute_declaration] = STATE(495), + [sym_ms_declspec_modifier] = STATE(855), + [sym_compound_statement] = STATE(68), + [sym_storage_class_specifier] = STATE(855), + [sym_type_qualifier] = STATE(855), + [sym__type_specifier] = STATE(974), + [sym_sized_type_specifier] = STATE(1069), + [sym_enum_specifier] = STATE(1069), + [sym_struct_specifier] = STATE(1069), + [sym_union_specifier] = STATE(1069), + [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(1272), + [sym__expression_not_binary] = STATE(809), + [sym_comma_expression] = STATE(2198), + [sym_conditional_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_pointer_expression] = STATE(877), + [sym_unary_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_update_expression] = STATE(809), + [sym_cast_expression] = STATE(809), + [sym_sizeof_expression] = STATE(809), + [sym_alignof_expression] = STATE(809), + [sym_offsetof_expression] = STATE(809), + [sym_generic_expression] = STATE(809), + [sym_subscript_expression] = STATE(877), + [sym_call_expression] = STATE(877), + [sym_gnu_asm_expression] = STATE(809), + [sym_field_expression] = STATE(877), + [sym_compound_literal_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(877), + [sym_char_literal] = STATE(809), + [sym_concatenated_string] = STATE(809), + [sym_string_literal] = STATE(573), + [sym_null] = STATE(809), + [sym_macro_type_specifier] = STATE(1069), + [aux_sym__declaration_specifiers_repeat1] = STATE(855), + [aux_sym_attributed_declarator_repeat1] = STATE(478), + [aux_sym_sized_type_specifier_repeat1] = STATE(1085), + [aux_sym_case_statement_repeat1] = STATE(68), + [sym_identifier] = ACTIONS(1231), + [aux_sym_preproc_include_token1] = ACTIONS(932), + [aux_sym_preproc_def_token1] = ACTIONS(932), + [aux_sym_preproc_if_token1] = ACTIONS(932), + [aux_sym_preproc_ifdef_token1] = ACTIONS(932), + [aux_sym_preproc_ifdef_token2] = ACTIONS(932), + [sym_preproc_directive] = ACTIONS(932), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -28150,106 +28252,273 @@ 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(648), - [anon_sym___extension__] = ACTIONS(650), - [anon_sym_typedef] = ACTIONS(652), - [anon_sym_extern] = ACTIONS(47), + [anon_sym_SEMI] = ACTIONS(623), + [anon_sym___extension__] = ACTIONS(625), + [anon_sym_typedef] = ACTIONS(627), + [anon_sym_extern] = ACTIONS(49), [anon_sym___attribute__] = ACTIONS(33), [anon_sym___scanf] = ACTIONS(35), [anon_sym___printf] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym___cdecl] = ACTIONS(922), - [anon_sym___clrcall] = ACTIONS(922), - [anon_sym___stdcall] = ACTIONS(922), - [anon_sym___fastcall] = ACTIONS(922), - [anon_sym___thiscall] = ACTIONS(922), - [anon_sym___vectorcall] = ACTIONS(922), - [anon_sym_LBRACE] = ACTIONS(656), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [sym_primitive_type] = ACTIONS(51), - [anon_sym_enum] = ACTIONS(53), - [anon_sym_struct] = ACTIONS(55), - [anon_sym_union] = ACTIONS(57), - [anon_sym_if] = ACTIONS(658), - [anon_sym_else] = ACTIONS(922), - [anon_sym_switch] = ACTIONS(660), - [anon_sym_case] = ACTIONS(922), - [anon_sym_default] = ACTIONS(922), - [anon_sym_while] = ACTIONS(666), - [anon_sym_do] = ACTIONS(668), - [anon_sym_for] = ACTIONS(670), - [anon_sym_return] = ACTIONS(672), - [anon_sym_break] = ACTIONS(674), - [anon_sym_continue] = ACTIONS(676), - [anon_sym_goto] = ACTIONS(678), - [anon_sym___try] = ACTIONS(680), - [anon_sym___leave] = ACTIONS(682), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(83), - [anon_sym___alignof__] = ACTIONS(85), - [anon_sym___alignof] = ACTIONS(85), - [anon_sym__alignof] = ACTIONS(85), - [anon_sym_alignof] = ACTIONS(85), - [anon_sym__Alignof] = ACTIONS(85), - [anon_sym_offsetof] = ACTIONS(87), - [anon_sym__Generic] = ACTIONS(89), - [anon_sym_asm] = ACTIONS(91), - [anon_sym___asm__] = ACTIONS(91), - [sym_number_literal] = ACTIONS(159), - [anon_sym_L_SQUOTE] = ACTIONS(95), - [anon_sym_u_SQUOTE] = ACTIONS(95), - [anon_sym_U_SQUOTE] = ACTIONS(95), - [anon_sym_u8_SQUOTE] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(95), - [anon_sym_L_DQUOTE] = ACTIONS(97), - [anon_sym_u_DQUOTE] = ACTIONS(97), - [anon_sym_U_DQUOTE] = ACTIONS(97), - [anon_sym_u8_DQUOTE] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(97), - [sym_true] = ACTIONS(161), - [sym_false] = ACTIONS(161), - [anon_sym_NULL] = ACTIONS(101), - [anon_sym_nullptr] = ACTIONS(101), + [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(932), + [anon_sym___clrcall] = ACTIONS(932), + [anon_sym___stdcall] = ACTIONS(932), + [anon_sym___fastcall] = ACTIONS(932), + [anon_sym___thiscall] = ACTIONS(932), + [anon_sym___vectorcall] = ACTIONS(932), + [anon_sym_LBRACE] = ACTIONS(631), + [anon_sym_RBRACE] = ACTIONS(1177), + [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), + [sym_primitive_type] = ACTIONS(53), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [anon_sym_if] = ACTIONS(635), + [anon_sym_else] = ACTIONS(932), + [anon_sym_switch] = ACTIONS(637), + [anon_sym_case] = ACTIONS(932), + [anon_sym_default] = ACTIONS(932), + [anon_sym_while] = ACTIONS(643), + [anon_sym_do] = ACTIONS(645), + [anon_sym_for] = ACTIONS(647), + [anon_sym_return] = ACTIONS(649), + [anon_sym_break] = ACTIONS(651), + [anon_sym_continue] = ACTIONS(653), + [anon_sym_goto] = ACTIONS(655), + [anon_sym___try] = ACTIONS(657), + [anon_sym___leave] = ACTIONS(659), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [sym_number_literal] = ACTIONS(161), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(163), + [sym_false] = ACTIONS(163), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [76] = { + [73] = { + [sym_declaration] = STATE(64), + [sym_type_definition] = STATE(64), + [sym__declaration_modifiers] = STATE(855), + [sym__declaration_specifiers] = STATE(1557), + [sym_attribute_specifier] = STATE(855), + [sym_attribute_declaration] = STATE(495), + [sym_ms_declspec_modifier] = STATE(855), + [sym_compound_statement] = STATE(64), + [sym_storage_class_specifier] = STATE(855), + [sym_type_qualifier] = STATE(855), + [sym__type_specifier] = STATE(974), + [sym_sized_type_specifier] = STATE(1069), + [sym_enum_specifier] = STATE(1069), + [sym_struct_specifier] = STATE(1069), + [sym_union_specifier] = STATE(1069), + [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(1269), + [sym__expression_not_binary] = STATE(809), + [sym_comma_expression] = STATE(2019), + [sym_conditional_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_pointer_expression] = STATE(877), + [sym_unary_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_update_expression] = STATE(809), + [sym_cast_expression] = STATE(809), + [sym_sizeof_expression] = STATE(809), + [sym_alignof_expression] = STATE(809), + [sym_offsetof_expression] = STATE(809), + [sym_generic_expression] = STATE(809), + [sym_subscript_expression] = STATE(877), + [sym_call_expression] = STATE(877), + [sym_gnu_asm_expression] = STATE(809), + [sym_field_expression] = STATE(877), + [sym_compound_literal_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(877), + [sym_char_literal] = STATE(809), + [sym_concatenated_string] = STATE(809), + [sym_string_literal] = STATE(573), + [sym_null] = STATE(809), + [sym_macro_type_specifier] = STATE(1069), + [aux_sym__declaration_specifiers_repeat1] = STATE(855), + [aux_sym_attributed_declarator_repeat1] = STATE(450), + [aux_sym_sized_type_specifier_repeat1] = STATE(1085), + [aux_sym_case_statement_repeat1] = STATE(64), + [sym_identifier] = ACTIONS(1117), + [aux_sym_preproc_include_token1] = ACTIONS(928), + [aux_sym_preproc_def_token1] = ACTIONS(928), + [aux_sym_preproc_if_token1] = ACTIONS(928), + [aux_sym_preproc_if_token2] = ACTIONS(928), + [aux_sym_preproc_ifdef_token1] = ACTIONS(928), + [aux_sym_preproc_ifdef_token2] = ACTIONS(928), + [sym_preproc_directive] = ACTIONS(928), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(503), + [anon_sym___extension__] = ACTIONS(505), + [anon_sym_typedef] = ACTIONS(507), + [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(928), + [anon_sym___clrcall] = ACTIONS(928), + [anon_sym___stdcall] = ACTIONS(928), + [anon_sym___fastcall] = ACTIONS(928), + [anon_sym___thiscall] = ACTIONS(928), + [anon_sym___vectorcall] = ACTIONS(928), + [anon_sym_LBRACE] = ACTIONS(511), + [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), + [sym_primitive_type] = ACTIONS(53), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [anon_sym_if] = ACTIONS(513), + [anon_sym_else] = ACTIONS(928), + [anon_sym_switch] = ACTIONS(515), + [anon_sym_case] = ACTIONS(928), + [anon_sym_default] = ACTIONS(928), + [anon_sym_while] = ACTIONS(521), + [anon_sym_do] = ACTIONS(523), + [anon_sym_for] = ACTIONS(525), + [anon_sym_return] = ACTIONS(527), + [anon_sym_break] = ACTIONS(529), + [anon_sym_continue] = ACTIONS(531), + [anon_sym_goto] = ACTIONS(533), + [anon_sym___try] = ACTIONS(535), + [anon_sym___leave] = ACTIONS(537), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [sym_number_literal] = ACTIONS(161), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(163), + [sym_false] = ACTIONS(163), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + }, + [74] = { [sym_declaration] = STATE(65), [sym_type_definition] = STATE(65), - [sym__declaration_modifiers] = STATE(861), - [sym__declaration_specifiers] = STATE(1502), - [sym_attribute_specifier] = STATE(861), - [sym_attribute_declaration] = STATE(504), - [sym_ms_declspec_modifier] = STATE(861), + [sym__declaration_modifiers] = STATE(855), + [sym__declaration_specifiers] = STATE(1557), + [sym_attribute_specifier] = STATE(855), + [sym_attribute_declaration] = STATE(495), + [sym_ms_declspec_modifier] = STATE(855), [sym_compound_statement] = STATE(65), - [sym_storage_class_specifier] = STATE(861), - [sym_type_qualifier] = STATE(861), - [sym__type_specifier] = STATE(1040), - [sym_sized_type_specifier] = STATE(1106), - [sym_enum_specifier] = STATE(1106), - [sym_struct_specifier] = STATE(1106), - [sym_union_specifier] = STATE(1106), + [sym_storage_class_specifier] = STATE(855), + [sym_type_qualifier] = STATE(855), + [sym__type_specifier] = STATE(974), + [sym_sized_type_specifier] = STATE(1069), + [sym_enum_specifier] = STATE(1069), + [sym_struct_specifier] = STATE(1069), + [sym_union_specifier] = STATE(1069), [sym_attributed_statement] = STATE(65), [sym_labeled_statement] = STATE(65), [sym_expression_statement] = STATE(65), @@ -28264,43 +28533,43 @@ 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(1227), - [sym__expression_not_binary] = STATE(792), - [sym_comma_expression] = STATE(2090), - [sym_conditional_expression] = STATE(792), - [sym_assignment_expression] = STATE(792), - [sym_pointer_expression] = STATE(901), - [sym_unary_expression] = STATE(792), - [sym_binary_expression] = STATE(792), - [sym_update_expression] = STATE(792), - [sym_cast_expression] = STATE(792), - [sym_sizeof_expression] = STATE(792), - [sym_alignof_expression] = STATE(792), - [sym_offsetof_expression] = STATE(792), - [sym_generic_expression] = STATE(792), - [sym_subscript_expression] = STATE(901), - [sym_call_expression] = STATE(901), - [sym_gnu_asm_expression] = STATE(792), - [sym_field_expression] = STATE(901), - [sym_compound_literal_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(901), - [sym_char_literal] = STATE(792), - [sym_concatenated_string] = STATE(792), - [sym_string_literal] = STATE(675), - [sym_null] = STATE(792), - [sym_macro_type_specifier] = STATE(1106), - [aux_sym__declaration_specifiers_repeat1] = STATE(861), - [aux_sym_attributed_declarator_repeat1] = STATE(449), - [aux_sym_sized_type_specifier_repeat1] = STATE(1113), + [sym__expression] = STATE(1269), + [sym__expression_not_binary] = STATE(809), + [sym_comma_expression] = STATE(2019), + [sym_conditional_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_pointer_expression] = STATE(877), + [sym_unary_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_update_expression] = STATE(809), + [sym_cast_expression] = STATE(809), + [sym_sizeof_expression] = STATE(809), + [sym_alignof_expression] = STATE(809), + [sym_offsetof_expression] = STATE(809), + [sym_generic_expression] = STATE(809), + [sym_subscript_expression] = STATE(877), + [sym_call_expression] = STATE(877), + [sym_gnu_asm_expression] = STATE(809), + [sym_field_expression] = STATE(877), + [sym_compound_literal_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(877), + [sym_char_literal] = STATE(809), + [sym_concatenated_string] = STATE(809), + [sym_string_literal] = STATE(573), + [sym_null] = STATE(809), + [sym_macro_type_specifier] = STATE(1069), + [aux_sym__declaration_specifiers_repeat1] = STATE(855), + [aux_sym_attributed_declarator_repeat1] = STATE(450), + [aux_sym_sized_type_specifier_repeat1] = STATE(1085), [aux_sym_case_statement_repeat1] = STATE(65), - [ts_builtin_sym_end] = ACTIONS(1172), - [sym_identifier] = ACTIONS(1108), - [aux_sym_preproc_include_token1] = ACTIONS(926), - [aux_sym_preproc_def_token1] = ACTIONS(926), - [aux_sym_preproc_if_token1] = ACTIONS(926), - [aux_sym_preproc_ifdef_token1] = ACTIONS(926), - [aux_sym_preproc_ifdef_token2] = ACTIONS(926), - [sym_preproc_directive] = ACTIONS(926), + [sym_identifier] = ACTIONS(1117), + [aux_sym_preproc_include_token1] = ACTIONS(932), + [aux_sym_preproc_def_token1] = ACTIONS(932), + [aux_sym_preproc_if_token1] = ACTIONS(932), + [aux_sym_preproc_if_token2] = ACTIONS(932), + [aux_sym_preproc_ifdef_token1] = ACTIONS(932), + [aux_sym_preproc_ifdef_token2] = ACTIONS(932), + [sym_preproc_directive] = ACTIONS(932), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -28308,157 +28577,160 @@ 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(1110), - [anon_sym___extension__] = ACTIONS(27), - [anon_sym_typedef] = ACTIONS(29), - [anon_sym_extern] = ACTIONS(47), + [anon_sym_SEMI] = ACTIONS(503), + [anon_sym___extension__] = ACTIONS(505), + [anon_sym_typedef] = ACTIONS(507), + [anon_sym_extern] = ACTIONS(49), [anon_sym___attribute__] = ACTIONS(33), [anon_sym___scanf] = ACTIONS(35), [anon_sym___printf] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym___cdecl] = ACTIONS(926), - [anon_sym___clrcall] = ACTIONS(926), - [anon_sym___stdcall] = ACTIONS(926), - [anon_sym___fastcall] = ACTIONS(926), - [anon_sym___thiscall] = ACTIONS(926), - [anon_sym___vectorcall] = ACTIONS(926), - [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [sym_primitive_type] = ACTIONS(51), - [anon_sym_enum] = ACTIONS(53), - [anon_sym_struct] = ACTIONS(55), - [anon_sym_union] = ACTIONS(57), - [anon_sym_if] = ACTIONS(59), - [anon_sym_else] = ACTIONS(926), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_case] = ACTIONS(926), - [anon_sym_default] = ACTIONS(926), - [anon_sym_while] = ACTIONS(67), - [anon_sym_do] = ACTIONS(69), - [anon_sym_for] = ACTIONS(71), - [anon_sym_return] = ACTIONS(73), - [anon_sym_break] = ACTIONS(75), - [anon_sym_continue] = ACTIONS(77), - [anon_sym_goto] = ACTIONS(79), - [anon_sym___try] = ACTIONS(1112), - [anon_sym___leave] = ACTIONS(1114), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(83), - [anon_sym___alignof__] = ACTIONS(85), - [anon_sym___alignof] = ACTIONS(85), - [anon_sym__alignof] = ACTIONS(85), - [anon_sym_alignof] = ACTIONS(85), - [anon_sym__Alignof] = ACTIONS(85), - [anon_sym_offsetof] = ACTIONS(87), - [anon_sym__Generic] = ACTIONS(89), - [anon_sym_asm] = ACTIONS(91), - [anon_sym___asm__] = ACTIONS(91), - [sym_number_literal] = ACTIONS(159), - [anon_sym_L_SQUOTE] = ACTIONS(95), - [anon_sym_u_SQUOTE] = ACTIONS(95), - [anon_sym_U_SQUOTE] = ACTIONS(95), - [anon_sym_u8_SQUOTE] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(95), - [anon_sym_L_DQUOTE] = ACTIONS(97), - [anon_sym_u_DQUOTE] = ACTIONS(97), - [anon_sym_U_DQUOTE] = ACTIONS(97), - [anon_sym_u8_DQUOTE] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(97), - [sym_true] = ACTIONS(161), - [sym_false] = ACTIONS(161), - [anon_sym_NULL] = ACTIONS(101), - [anon_sym_nullptr] = ACTIONS(101), + [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(932), + [anon_sym___clrcall] = ACTIONS(932), + [anon_sym___stdcall] = ACTIONS(932), + [anon_sym___fastcall] = ACTIONS(932), + [anon_sym___thiscall] = ACTIONS(932), + [anon_sym___vectorcall] = ACTIONS(932), + [anon_sym_LBRACE] = ACTIONS(511), + [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), + [sym_primitive_type] = ACTIONS(53), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [anon_sym_if] = ACTIONS(513), + [anon_sym_else] = ACTIONS(932), + [anon_sym_switch] = ACTIONS(515), + [anon_sym_case] = ACTIONS(932), + [anon_sym_default] = ACTIONS(932), + [anon_sym_while] = ACTIONS(521), + [anon_sym_do] = ACTIONS(523), + [anon_sym_for] = ACTIONS(525), + [anon_sym_return] = ACTIONS(527), + [anon_sym_break] = ACTIONS(529), + [anon_sym_continue] = ACTIONS(531), + [anon_sym_goto] = ACTIONS(533), + [anon_sym___try] = ACTIONS(535), + [anon_sym___leave] = ACTIONS(537), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [sym_number_literal] = ACTIONS(161), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(163), + [sym_false] = ACTIONS(163), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [77] = { - [sym_declaration] = STATE(72), - [sym_type_definition] = STATE(72), - [sym__declaration_modifiers] = STATE(861), - [sym__declaration_specifiers] = STATE(1511), - [sym_attribute_specifier] = STATE(861), - [sym_attribute_declaration] = STATE(504), - [sym_ms_declspec_modifier] = STATE(861), - [sym_compound_statement] = STATE(72), - [sym_storage_class_specifier] = STATE(861), - [sym_type_qualifier] = STATE(861), - [sym__type_specifier] = STATE(1040), - [sym_sized_type_specifier] = STATE(1106), - [sym_enum_specifier] = STATE(1106), - [sym_struct_specifier] = STATE(1106), - [sym_union_specifier] = STATE(1106), - [sym_attributed_statement] = STATE(72), - [sym_labeled_statement] = STATE(72), - [sym_expression_statement] = STATE(72), - [sym_if_statement] = STATE(72), - [sym_switch_statement] = STATE(72), - [sym_while_statement] = STATE(72), - [sym_do_statement] = STATE(72), - [sym_for_statement] = STATE(72), - [sym_return_statement] = STATE(72), - [sym_break_statement] = STATE(72), - [sym_continue_statement] = STATE(72), - [sym_goto_statement] = STATE(72), - [sym_seh_try_statement] = STATE(72), - [sym_seh_leave_statement] = STATE(72), - [sym__expression] = STATE(1229), - [sym__expression_not_binary] = STATE(792), - [sym_comma_expression] = STATE(1976), - [sym_conditional_expression] = STATE(792), - [sym_assignment_expression] = STATE(792), - [sym_pointer_expression] = STATE(901), - [sym_unary_expression] = STATE(792), - [sym_binary_expression] = STATE(792), - [sym_update_expression] = STATE(792), - [sym_cast_expression] = STATE(792), - [sym_sizeof_expression] = STATE(792), - [sym_alignof_expression] = STATE(792), - [sym_offsetof_expression] = STATE(792), - [sym_generic_expression] = STATE(792), - [sym_subscript_expression] = STATE(901), - [sym_call_expression] = STATE(901), - [sym_gnu_asm_expression] = STATE(792), - [sym_field_expression] = STATE(901), - [sym_compound_literal_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(901), - [sym_char_literal] = STATE(792), - [sym_concatenated_string] = STATE(792), - [sym_string_literal] = STATE(675), - [sym_null] = STATE(792), - [sym_macro_type_specifier] = STATE(1106), - [aux_sym__declaration_specifiers_repeat1] = STATE(861), - [aux_sym_attributed_declarator_repeat1] = STATE(416), - [aux_sym_sized_type_specifier_repeat1] = STATE(1113), - [aux_sym_case_statement_repeat1] = STATE(72), - [sym_identifier] = ACTIONS(1270), - [aux_sym_preproc_include_token1] = ACTIONS(924), - [aux_sym_preproc_def_token1] = ACTIONS(924), - [aux_sym_preproc_if_token1] = ACTIONS(924), - [aux_sym_preproc_if_token2] = ACTIONS(924), - [aux_sym_preproc_ifdef_token1] = ACTIONS(924), - [aux_sym_preproc_ifdef_token2] = ACTIONS(924), - [sym_preproc_directive] = ACTIONS(924), + [75] = { + [sym_declaration] = STATE(71), + [sym_type_definition] = STATE(71), + [sym__declaration_modifiers] = STATE(855), + [sym__declaration_specifiers] = STATE(1536), + [sym_attribute_specifier] = STATE(855), + [sym_attribute_declaration] = STATE(495), + [sym_ms_declspec_modifier] = STATE(855), + [sym_compound_statement] = STATE(71), + [sym_storage_class_specifier] = STATE(855), + [sym_type_qualifier] = STATE(855), + [sym__type_specifier] = STATE(974), + [sym_sized_type_specifier] = STATE(1069), + [sym_enum_specifier] = STATE(1069), + [sym_struct_specifier] = STATE(1069), + [sym_union_specifier] = STATE(1069), + [sym_attributed_statement] = STATE(71), + [sym_labeled_statement] = STATE(71), + [sym_expression_statement] = STATE(71), + [sym_if_statement] = STATE(71), + [sym_switch_statement] = STATE(71), + [sym_while_statement] = STATE(71), + [sym_do_statement] = STATE(71), + [sym_for_statement] = STATE(71), + [sym_return_statement] = STATE(71), + [sym_break_statement] = STATE(71), + [sym_continue_statement] = STATE(71), + [sym_goto_statement] = STATE(71), + [sym_seh_try_statement] = STATE(71), + [sym_seh_leave_statement] = STATE(71), + [sym__expression] = STATE(1272), + [sym__expression_not_binary] = STATE(809), + [sym_comma_expression] = STATE(2198), + [sym_conditional_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_pointer_expression] = STATE(877), + [sym_unary_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_update_expression] = STATE(809), + [sym_cast_expression] = STATE(809), + [sym_sizeof_expression] = STATE(809), + [sym_alignof_expression] = STATE(809), + [sym_offsetof_expression] = STATE(809), + [sym_generic_expression] = STATE(809), + [sym_subscript_expression] = STATE(877), + [sym_call_expression] = STATE(877), + [sym_gnu_asm_expression] = STATE(809), + [sym_field_expression] = STATE(877), + [sym_compound_literal_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(877), + [sym_char_literal] = STATE(809), + [sym_concatenated_string] = STATE(809), + [sym_string_literal] = STATE(573), + [sym_null] = STATE(809), + [sym_macro_type_specifier] = STATE(1069), + [aux_sym__declaration_specifiers_repeat1] = STATE(855), + [aux_sym_attributed_declarator_repeat1] = STATE(478), + [aux_sym_sized_type_specifier_repeat1] = STATE(1085), + [aux_sym_case_statement_repeat1] = STATE(71), + [sym_identifier] = ACTIONS(1231), + [aux_sym_preproc_include_token1] = ACTIONS(928), + [aux_sym_preproc_def_token1] = ACTIONS(928), + [aux_sym_preproc_if_token1] = ACTIONS(928), + [aux_sym_preproc_ifdef_token1] = ACTIONS(928), + [aux_sym_preproc_ifdef_token2] = ACTIONS(928), + [sym_preproc_directive] = ACTIONS(928), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -28466,157 +28738,324 @@ 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(648), - [anon_sym___extension__] = ACTIONS(650), - [anon_sym_typedef] = ACTIONS(652), - [anon_sym_extern] = ACTIONS(47), + [anon_sym_SEMI] = ACTIONS(623), + [anon_sym___extension__] = ACTIONS(625), + [anon_sym_typedef] = ACTIONS(627), + [anon_sym_extern] = ACTIONS(49), [anon_sym___attribute__] = ACTIONS(33), [anon_sym___scanf] = ACTIONS(35), [anon_sym___printf] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym___cdecl] = ACTIONS(924), - [anon_sym___clrcall] = ACTIONS(924), - [anon_sym___stdcall] = ACTIONS(924), - [anon_sym___fastcall] = ACTIONS(924), - [anon_sym___thiscall] = ACTIONS(924), - [anon_sym___vectorcall] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(656), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [sym_primitive_type] = ACTIONS(51), - [anon_sym_enum] = ACTIONS(53), - [anon_sym_struct] = ACTIONS(55), - [anon_sym_union] = ACTIONS(57), - [anon_sym_if] = ACTIONS(658), - [anon_sym_else] = ACTIONS(924), - [anon_sym_switch] = ACTIONS(660), - [anon_sym_case] = ACTIONS(924), - [anon_sym_default] = ACTIONS(924), - [anon_sym_while] = ACTIONS(666), - [anon_sym_do] = ACTIONS(668), - [anon_sym_for] = ACTIONS(670), - [anon_sym_return] = ACTIONS(672), - [anon_sym_break] = ACTIONS(674), - [anon_sym_continue] = ACTIONS(676), - [anon_sym_goto] = ACTIONS(678), - [anon_sym___try] = ACTIONS(680), - [anon_sym___leave] = ACTIONS(682), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(83), - [anon_sym___alignof__] = ACTIONS(85), - [anon_sym___alignof] = ACTIONS(85), - [anon_sym__alignof] = ACTIONS(85), - [anon_sym_alignof] = ACTIONS(85), - [anon_sym__Alignof] = ACTIONS(85), - [anon_sym_offsetof] = ACTIONS(87), - [anon_sym__Generic] = ACTIONS(89), - [anon_sym_asm] = ACTIONS(91), - [anon_sym___asm__] = ACTIONS(91), - [sym_number_literal] = ACTIONS(159), - [anon_sym_L_SQUOTE] = ACTIONS(95), - [anon_sym_u_SQUOTE] = ACTIONS(95), - [anon_sym_U_SQUOTE] = ACTIONS(95), - [anon_sym_u8_SQUOTE] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(95), - [anon_sym_L_DQUOTE] = ACTIONS(97), - [anon_sym_u_DQUOTE] = ACTIONS(97), - [anon_sym_U_DQUOTE] = ACTIONS(97), - [anon_sym_u8_DQUOTE] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(97), - [sym_true] = ACTIONS(161), - [sym_false] = ACTIONS(161), - [anon_sym_NULL] = ACTIONS(101), - [anon_sym_nullptr] = ACTIONS(101), + [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(928), + [anon_sym___clrcall] = ACTIONS(928), + [anon_sym___stdcall] = ACTIONS(928), + [anon_sym___fastcall] = ACTIONS(928), + [anon_sym___thiscall] = ACTIONS(928), + [anon_sym___vectorcall] = ACTIONS(928), + [anon_sym_LBRACE] = ACTIONS(631), + [anon_sym_RBRACE] = ACTIONS(1229), + [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), + [sym_primitive_type] = ACTIONS(53), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [anon_sym_if] = ACTIONS(635), + [anon_sym_else] = ACTIONS(928), + [anon_sym_switch] = ACTIONS(637), + [anon_sym_case] = ACTIONS(928), + [anon_sym_default] = ACTIONS(928), + [anon_sym_while] = ACTIONS(643), + [anon_sym_do] = ACTIONS(645), + [anon_sym_for] = ACTIONS(647), + [anon_sym_return] = ACTIONS(649), + [anon_sym_break] = ACTIONS(651), + [anon_sym_continue] = ACTIONS(653), + [anon_sym_goto] = ACTIONS(655), + [anon_sym___try] = ACTIONS(657), + [anon_sym___leave] = ACTIONS(659), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [sym_number_literal] = ACTIONS(161), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(163), + [sym_false] = ACTIONS(163), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [78] = { - [sym_declaration] = STATE(66), - [sym_type_definition] = STATE(66), - [sym__declaration_modifiers] = STATE(861), - [sym__declaration_specifiers] = STATE(1502), - [sym_attribute_specifier] = STATE(861), - [sym_attribute_declaration] = STATE(504), - [sym_ms_declspec_modifier] = STATE(861), - [sym_compound_statement] = STATE(66), - [sym_storage_class_specifier] = STATE(861), - [sym_type_qualifier] = STATE(861), - [sym__type_specifier] = STATE(1040), - [sym_sized_type_specifier] = STATE(1106), - [sym_enum_specifier] = STATE(1106), - [sym_struct_specifier] = STATE(1106), - [sym_union_specifier] = STATE(1106), - [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(1227), - [sym__expression_not_binary] = STATE(792), - [sym_comma_expression] = STATE(2090), - [sym_conditional_expression] = STATE(792), - [sym_assignment_expression] = STATE(792), - [sym_pointer_expression] = STATE(901), - [sym_unary_expression] = STATE(792), - [sym_binary_expression] = STATE(792), - [sym_update_expression] = STATE(792), - [sym_cast_expression] = STATE(792), - [sym_sizeof_expression] = STATE(792), - [sym_alignof_expression] = STATE(792), - [sym_offsetof_expression] = STATE(792), - [sym_generic_expression] = STATE(792), - [sym_subscript_expression] = STATE(901), - [sym_call_expression] = STATE(901), - [sym_gnu_asm_expression] = STATE(792), - [sym_field_expression] = STATE(901), - [sym_compound_literal_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(901), - [sym_char_literal] = STATE(792), - [sym_concatenated_string] = STATE(792), - [sym_string_literal] = STATE(675), - [sym_null] = STATE(792), - [sym_macro_type_specifier] = STATE(1106), - [aux_sym__declaration_specifiers_repeat1] = STATE(861), - [aux_sym_attributed_declarator_repeat1] = STATE(449), - [aux_sym_sized_type_specifier_repeat1] = STATE(1113), - [aux_sym_case_statement_repeat1] = STATE(66), - [ts_builtin_sym_end] = ACTIONS(1170), - [sym_identifier] = ACTIONS(1108), - [aux_sym_preproc_include_token1] = ACTIONS(922), - [aux_sym_preproc_def_token1] = ACTIONS(922), - [aux_sym_preproc_if_token1] = ACTIONS(922), - [aux_sym_preproc_ifdef_token1] = ACTIONS(922), - [aux_sym_preproc_ifdef_token2] = ACTIONS(922), - [sym_preproc_directive] = ACTIONS(922), + [76] = { + [sym_declaration] = STATE(76), + [sym_type_definition] = STATE(76), + [sym__declaration_modifiers] = STATE(855), + [sym__declaration_specifiers] = STATE(1540), + [sym_attribute_specifier] = STATE(855), + [sym_attribute_declaration] = STATE(495), + [sym_ms_declspec_modifier] = STATE(855), + [sym_compound_statement] = STATE(76), + [sym_storage_class_specifier] = STATE(855), + [sym_type_qualifier] = STATE(855), + [sym__type_specifier] = STATE(974), + [sym_sized_type_specifier] = STATE(1069), + [sym_enum_specifier] = STATE(1069), + [sym_struct_specifier] = STATE(1069), + [sym_union_specifier] = STATE(1069), + [sym_attributed_statement] = STATE(76), + [sym_labeled_statement] = STATE(76), + [sym_expression_statement] = STATE(76), + [sym_if_statement] = STATE(76), + [sym_switch_statement] = STATE(76), + [sym_while_statement] = STATE(76), + [sym_do_statement] = STATE(76), + [sym_for_statement] = STATE(76), + [sym_return_statement] = STATE(76), + [sym_break_statement] = STATE(76), + [sym_continue_statement] = STATE(76), + [sym_goto_statement] = STATE(76), + [sym_seh_try_statement] = STATE(76), + [sym_seh_leave_statement] = STATE(76), + [sym__expression] = STATE(1253), + [sym__expression_not_binary] = STATE(809), + [sym_comma_expression] = STATE(2218), + [sym_conditional_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_pointer_expression] = STATE(877), + [sym_unary_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_update_expression] = STATE(809), + [sym_cast_expression] = STATE(809), + [sym_sizeof_expression] = STATE(809), + [sym_alignof_expression] = STATE(809), + [sym_offsetof_expression] = STATE(809), + [sym_generic_expression] = STATE(809), + [sym_subscript_expression] = STATE(877), + [sym_call_expression] = STATE(877), + [sym_gnu_asm_expression] = STATE(809), + [sym_field_expression] = STATE(877), + [sym_compound_literal_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(877), + [sym_char_literal] = STATE(809), + [sym_concatenated_string] = STATE(809), + [sym_string_literal] = STATE(573), + [sym_null] = STATE(809), + [sym_macro_type_specifier] = STATE(1069), + [aux_sym__declaration_specifiers_repeat1] = STATE(855), + [aux_sym_attributed_declarator_repeat1] = STATE(445), + [aux_sym_sized_type_specifier_repeat1] = STATE(1085), + [aux_sym_case_statement_repeat1] = STATE(76), + [ts_builtin_sym_end] = ACTIONS(1194), + [sym_identifier] = ACTIONS(1235), + [aux_sym_preproc_include_token1] = ACTIONS(937), + [aux_sym_preproc_def_token1] = ACTIONS(937), + [aux_sym_preproc_if_token1] = ACTIONS(937), + [aux_sym_preproc_ifdef_token1] = ACTIONS(937), + [aux_sym_preproc_ifdef_token2] = ACTIONS(937), + [sym_preproc_directive] = ACTIONS(937), + [anon_sym_LPAREN2] = ACTIONS(939), + [anon_sym_BANG] = ACTIONS(942), + [anon_sym_TILDE] = ACTIONS(942), + [anon_sym_DASH] = ACTIONS(945), + [anon_sym_PLUS] = ACTIONS(945), + [anon_sym_STAR] = ACTIONS(948), + [anon_sym_AMP] = ACTIONS(948), + [anon_sym_SEMI] = ACTIONS(1238), + [anon_sym___extension__] = ACTIONS(1241), + [anon_sym_typedef] = ACTIONS(1244), + [anon_sym_extern] = ACTIONS(960), + [anon_sym___attribute__] = ACTIONS(963), + [anon_sym___scanf] = ACTIONS(966), + [anon_sym___printf] = ACTIONS(966), + [anon_sym___read_mostly] = ACTIONS(969), + [anon_sym___must_hold] = ACTIONS(963), + [anon_sym___ro_after_init] = ACTIONS(969), + [anon_sym___init] = ACTIONS(969), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym___declspec] = ACTIONS(975), + [anon_sym___cdecl] = ACTIONS(937), + [anon_sym___clrcall] = ACTIONS(937), + [anon_sym___stdcall] = ACTIONS(937), + [anon_sym___fastcall] = ACTIONS(937), + [anon_sym___thiscall] = ACTIONS(937), + [anon_sym___vectorcall] = ACTIONS(937), + [anon_sym_LBRACE] = ACTIONS(1247), + [anon_sym_signed] = ACTIONS(981), + [anon_sym_unsigned] = ACTIONS(981), + [anon_sym_long] = ACTIONS(981), + [anon_sym_short] = ACTIONS(981), + [anon_sym_static] = ACTIONS(960), + [anon_sym_auto] = ACTIONS(960), + [anon_sym_register] = ACTIONS(960), + [anon_sym_inline] = ACTIONS(960), + [anon_sym___inline] = ACTIONS(960), + [anon_sym___inline__] = ACTIONS(960), + [anon_sym___forceinline] = ACTIONS(960), + [anon_sym_thread_local] = ACTIONS(960), + [anon_sym___thread] = ACTIONS(960), + [anon_sym_const] = ACTIONS(984), + [anon_sym_constexpr] = ACTIONS(984), + [anon_sym_volatile] = ACTIONS(984), + [anon_sym_restrict] = ACTIONS(984), + [anon_sym___restrict__] = ACTIONS(984), + [anon_sym__Atomic] = ACTIONS(984), + [anon_sym__Noreturn] = ACTIONS(984), + [anon_sym_noreturn] = ACTIONS(984), + [sym_primitive_type] = ACTIONS(987), + [anon_sym_enum] = ACTIONS(990), + [anon_sym_struct] = ACTIONS(993), + [anon_sym_union] = ACTIONS(996), + [anon_sym_if] = ACTIONS(1250), + [anon_sym_else] = ACTIONS(937), + [anon_sym_switch] = ACTIONS(1253), + [anon_sym_case] = ACTIONS(937), + [anon_sym_default] = ACTIONS(937), + [anon_sym_while] = ACTIONS(1256), + [anon_sym_do] = ACTIONS(1259), + [anon_sym_for] = ACTIONS(1262), + [anon_sym_return] = ACTIONS(1265), + [anon_sym_break] = ACTIONS(1268), + [anon_sym_continue] = ACTIONS(1271), + [anon_sym_goto] = ACTIONS(1274), + [anon_sym___try] = ACTIONS(1277), + [anon_sym___leave] = ACTIONS(1280), + [anon_sym_DASH_DASH] = ACTIONS(1032), + [anon_sym_PLUS_PLUS] = ACTIONS(1032), + [anon_sym_sizeof] = ACTIONS(1035), + [anon_sym___alignof__] = ACTIONS(1038), + [anon_sym___alignof] = ACTIONS(1038), + [anon_sym__alignof] = ACTIONS(1038), + [anon_sym_alignof] = ACTIONS(1038), + [anon_sym__Alignof] = ACTIONS(1038), + [anon_sym_offsetof] = ACTIONS(1041), + [anon_sym__Generic] = ACTIONS(1044), + [anon_sym_asm] = ACTIONS(1047), + [anon_sym___asm__] = ACTIONS(1047), + [sym_number_literal] = ACTIONS(1050), + [anon_sym_L_SQUOTE] = ACTIONS(1053), + [anon_sym_u_SQUOTE] = ACTIONS(1053), + [anon_sym_U_SQUOTE] = ACTIONS(1053), + [anon_sym_u8_SQUOTE] = ACTIONS(1053), + [anon_sym_SQUOTE] = ACTIONS(1053), + [anon_sym_L_DQUOTE] = ACTIONS(1056), + [anon_sym_u_DQUOTE] = ACTIONS(1056), + [anon_sym_U_DQUOTE] = ACTIONS(1056), + [anon_sym_u8_DQUOTE] = ACTIONS(1056), + [anon_sym_DQUOTE] = ACTIONS(1056), + [sym_true] = ACTIONS(1059), + [sym_false] = ACTIONS(1059), + [anon_sym_NULL] = ACTIONS(1062), + [anon_sym_nullptr] = ACTIONS(1062), + [sym_comment] = ACTIONS(3), + }, + [77] = { + [sym_declaration] = STATE(76), + [sym_type_definition] = STATE(76), + [sym__declaration_modifiers] = STATE(855), + [sym__declaration_specifiers] = STATE(1540), + [sym_attribute_specifier] = STATE(855), + [sym_attribute_declaration] = STATE(495), + [sym_ms_declspec_modifier] = STATE(855), + [sym_compound_statement] = STATE(76), + [sym_storage_class_specifier] = STATE(855), + [sym_type_qualifier] = STATE(855), + [sym__type_specifier] = STATE(974), + [sym_sized_type_specifier] = STATE(1069), + [sym_enum_specifier] = STATE(1069), + [sym_struct_specifier] = STATE(1069), + [sym_union_specifier] = STATE(1069), + [sym_attributed_statement] = STATE(76), + [sym_labeled_statement] = STATE(76), + [sym_expression_statement] = STATE(76), + [sym_if_statement] = STATE(76), + [sym_switch_statement] = STATE(76), + [sym_while_statement] = STATE(76), + [sym_do_statement] = STATE(76), + [sym_for_statement] = STATE(76), + [sym_return_statement] = STATE(76), + [sym_break_statement] = STATE(76), + [sym_continue_statement] = STATE(76), + [sym_goto_statement] = STATE(76), + [sym_seh_try_statement] = STATE(76), + [sym_seh_leave_statement] = STATE(76), + [sym__expression] = STATE(1253), + [sym__expression_not_binary] = STATE(809), + [sym_comma_expression] = STATE(2218), + [sym_conditional_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_pointer_expression] = STATE(877), + [sym_unary_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_update_expression] = STATE(809), + [sym_cast_expression] = STATE(809), + [sym_sizeof_expression] = STATE(809), + [sym_alignof_expression] = STATE(809), + [sym_offsetof_expression] = STATE(809), + [sym_generic_expression] = STATE(809), + [sym_subscript_expression] = STATE(877), + [sym_call_expression] = STATE(877), + [sym_gnu_asm_expression] = STATE(809), + [sym_field_expression] = STATE(877), + [sym_compound_literal_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(877), + [sym_char_literal] = STATE(809), + [sym_concatenated_string] = STATE(809), + [sym_string_literal] = STATE(573), + [sym_null] = STATE(809), + [sym_macro_type_specifier] = STATE(1069), + [aux_sym__declaration_specifiers_repeat1] = STATE(855), + [aux_sym_attributed_declarator_repeat1] = STATE(445), + [aux_sym_sized_type_specifier_repeat1] = STATE(1085), + [aux_sym_case_statement_repeat1] = STATE(76), + [ts_builtin_sym_end] = ACTIONS(1233), + [sym_identifier] = ACTIONS(1169), + [aux_sym_preproc_include_token1] = ACTIONS(930), + [aux_sym_preproc_def_token1] = ACTIONS(930), + [aux_sym_preproc_if_token1] = ACTIONS(930), + [aux_sym_preproc_ifdef_token1] = ACTIONS(930), + [aux_sym_preproc_ifdef_token2] = ACTIONS(930), + [sym_preproc_directive] = ACTIONS(930), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -28624,150 +29063,160 @@ 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(1110), + [anon_sym_SEMI] = ACTIONS(1171), [anon_sym___extension__] = ACTIONS(27), [anon_sym_typedef] = ACTIONS(29), - [anon_sym_extern] = ACTIONS(47), + [anon_sym_extern] = ACTIONS(49), [anon_sym___attribute__] = ACTIONS(33), [anon_sym___scanf] = ACTIONS(35), [anon_sym___printf] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym___cdecl] = ACTIONS(922), - [anon_sym___clrcall] = ACTIONS(922), - [anon_sym___stdcall] = ACTIONS(922), - [anon_sym___fastcall] = ACTIONS(922), - [anon_sym___thiscall] = ACTIONS(922), - [anon_sym___vectorcall] = ACTIONS(922), - [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [sym_primitive_type] = ACTIONS(51), - [anon_sym_enum] = ACTIONS(53), - [anon_sym_struct] = ACTIONS(55), - [anon_sym_union] = ACTIONS(57), - [anon_sym_if] = ACTIONS(59), - [anon_sym_else] = ACTIONS(922), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_case] = ACTIONS(922), - [anon_sym_default] = ACTIONS(922), - [anon_sym_while] = ACTIONS(67), - [anon_sym_do] = ACTIONS(69), - [anon_sym_for] = ACTIONS(71), - [anon_sym_return] = ACTIONS(73), - [anon_sym_break] = ACTIONS(75), - [anon_sym_continue] = ACTIONS(77), - [anon_sym_goto] = ACTIONS(79), - [anon_sym___try] = ACTIONS(1112), - [anon_sym___leave] = ACTIONS(1114), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(83), - [anon_sym___alignof__] = ACTIONS(85), - [anon_sym___alignof] = ACTIONS(85), - [anon_sym__alignof] = ACTIONS(85), - [anon_sym_alignof] = ACTIONS(85), - [anon_sym__Alignof] = ACTIONS(85), - [anon_sym_offsetof] = ACTIONS(87), - [anon_sym__Generic] = ACTIONS(89), - [anon_sym_asm] = ACTIONS(91), - [anon_sym___asm__] = ACTIONS(91), - [sym_number_literal] = ACTIONS(159), - [anon_sym_L_SQUOTE] = ACTIONS(95), - [anon_sym_u_SQUOTE] = ACTIONS(95), - [anon_sym_U_SQUOTE] = ACTIONS(95), - [anon_sym_u8_SQUOTE] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(95), - [anon_sym_L_DQUOTE] = ACTIONS(97), - [anon_sym_u_DQUOTE] = ACTIONS(97), - [anon_sym_U_DQUOTE] = ACTIONS(97), - [anon_sym_u8_DQUOTE] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(97), - [sym_true] = ACTIONS(161), - [sym_false] = ACTIONS(161), - [anon_sym_NULL] = ACTIONS(101), - [anon_sym_nullptr] = ACTIONS(101), + [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(930), + [anon_sym___clrcall] = ACTIONS(930), + [anon_sym___stdcall] = ACTIONS(930), + [anon_sym___fastcall] = ACTIONS(930), + [anon_sym___thiscall] = ACTIONS(930), + [anon_sym___vectorcall] = ACTIONS(930), + [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), + [sym_primitive_type] = ACTIONS(53), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [anon_sym_if] = ACTIONS(61), + [anon_sym_else] = ACTIONS(930), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_case] = ACTIONS(930), + [anon_sym_default] = ACTIONS(930), + [anon_sym_while] = ACTIONS(69), + [anon_sym_do] = ACTIONS(71), + [anon_sym_for] = ACTIONS(73), + [anon_sym_return] = ACTIONS(75), + [anon_sym_break] = ACTIONS(77), + [anon_sym_continue] = ACTIONS(79), + [anon_sym_goto] = ACTIONS(81), + [anon_sym___try] = ACTIONS(1173), + [anon_sym___leave] = ACTIONS(1175), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [sym_number_literal] = ACTIONS(161), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(163), + [sym_false] = ACTIONS(163), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [79] = { - [sym_declaration] = STATE(81), - [sym_type_definition] = STATE(81), - [sym__declaration_modifiers] = STATE(861), - [sym__declaration_specifiers] = STATE(1502), - [sym_attribute_specifier] = STATE(861), - [sym_attribute_declaration] = STATE(504), - [sym_ms_declspec_modifier] = STATE(861), - [sym_compound_statement] = STATE(81), - [sym_storage_class_specifier] = STATE(861), - [sym_type_qualifier] = STATE(861), - [sym__type_specifier] = STATE(1040), - [sym_sized_type_specifier] = STATE(1106), - [sym_enum_specifier] = STATE(1106), - [sym_struct_specifier] = STATE(1106), - [sym_union_specifier] = STATE(1106), - [sym_attributed_statement] = STATE(81), - [sym_labeled_statement] = STATE(81), - [sym_expression_statement] = STATE(81), - [sym_if_statement] = STATE(81), - [sym_switch_statement] = STATE(81), - [sym_while_statement] = STATE(81), - [sym_do_statement] = STATE(81), - [sym_for_statement] = STATE(81), - [sym_return_statement] = STATE(81), - [sym_break_statement] = STATE(81), - [sym_continue_statement] = STATE(81), - [sym_goto_statement] = STATE(81), - [sym_seh_try_statement] = STATE(81), - [sym_seh_leave_statement] = STATE(81), - [sym__expression] = STATE(1221), - [sym__expression_not_binary] = STATE(792), - [sym_comma_expression] = STATE(2106), - [sym_conditional_expression] = STATE(792), - [sym_assignment_expression] = STATE(792), - [sym_pointer_expression] = STATE(901), - [sym_unary_expression] = STATE(792), - [sym_binary_expression] = STATE(792), - [sym_update_expression] = STATE(792), - [sym_cast_expression] = STATE(792), - [sym_sizeof_expression] = STATE(792), - [sym_alignof_expression] = STATE(792), - [sym_offsetof_expression] = STATE(792), - [sym_generic_expression] = STATE(792), - [sym_subscript_expression] = STATE(901), - [sym_call_expression] = STATE(901), - [sym_gnu_asm_expression] = STATE(792), - [sym_field_expression] = STATE(901), - [sym_compound_literal_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(901), - [sym_char_literal] = STATE(792), - [sym_concatenated_string] = STATE(792), - [sym_string_literal] = STATE(675), - [sym_null] = STATE(792), - [sym_macro_type_specifier] = STATE(1106), - [aux_sym__declaration_specifiers_repeat1] = STATE(861), - [aux_sym_attributed_declarator_repeat1] = STATE(448), - [aux_sym_sized_type_specifier_repeat1] = STATE(1113), - [aux_sym_case_statement_repeat1] = STATE(81), - [sym_identifier] = ACTIONS(1272), + [78] = { + [sym_declaration] = STATE(72), + [sym_type_definition] = STATE(72), + [sym__declaration_modifiers] = STATE(855), + [sym__declaration_specifiers] = STATE(1536), + [sym_attribute_specifier] = STATE(855), + [sym_attribute_declaration] = STATE(495), + [sym_ms_declspec_modifier] = STATE(855), + [sym_compound_statement] = STATE(72), + [sym_storage_class_specifier] = STATE(855), + [sym_type_qualifier] = STATE(855), + [sym__type_specifier] = STATE(974), + [sym_sized_type_specifier] = STATE(1069), + [sym_enum_specifier] = STATE(1069), + [sym_struct_specifier] = STATE(1069), + [sym_union_specifier] = STATE(1069), + [sym_attributed_statement] = STATE(72), + [sym_labeled_statement] = STATE(72), + [sym_expression_statement] = STATE(72), + [sym_if_statement] = STATE(72), + [sym_switch_statement] = STATE(72), + [sym_while_statement] = STATE(72), + [sym_do_statement] = STATE(72), + [sym_for_statement] = STATE(72), + [sym_return_statement] = STATE(72), + [sym_break_statement] = STATE(72), + [sym_continue_statement] = STATE(72), + [sym_goto_statement] = STATE(72), + [sym_seh_try_statement] = STATE(72), + [sym_seh_leave_statement] = STATE(72), + [sym__expression] = STATE(1272), + [sym__expression_not_binary] = STATE(809), + [sym_comma_expression] = STATE(2198), + [sym_conditional_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_pointer_expression] = STATE(877), + [sym_unary_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_update_expression] = STATE(809), + [sym_cast_expression] = STATE(809), + [sym_sizeof_expression] = STATE(809), + [sym_alignof_expression] = STATE(809), + [sym_offsetof_expression] = STATE(809), + [sym_generic_expression] = STATE(809), + [sym_subscript_expression] = STATE(877), + [sym_call_expression] = STATE(877), + [sym_gnu_asm_expression] = STATE(809), + [sym_field_expression] = STATE(877), + [sym_compound_literal_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(877), + [sym_char_literal] = STATE(809), + [sym_concatenated_string] = STATE(809), + [sym_string_literal] = STATE(573), + [sym_null] = STATE(809), + [sym_macro_type_specifier] = STATE(1069), + [aux_sym__declaration_specifiers_repeat1] = STATE(855), + [aux_sym_attributed_declarator_repeat1] = STATE(478), + [aux_sym_sized_type_specifier_repeat1] = STATE(1085), + [aux_sym_case_statement_repeat1] = STATE(72), + [sym_identifier] = ACTIONS(1231), + [aux_sym_preproc_include_token1] = ACTIONS(1065), + [aux_sym_preproc_def_token1] = ACTIONS(1065), + [aux_sym_preproc_if_token1] = ACTIONS(1065), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1065), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1065), + [sym_preproc_directive] = ACTIONS(1065), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -28775,98 +29224,111 @@ 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(496), - [anon_sym___extension__] = ACTIONS(27), - [anon_sym_typedef] = ACTIONS(29), - [anon_sym_extern] = ACTIONS(47), + [anon_sym_SEMI] = ACTIONS(623), + [anon_sym___extension__] = ACTIONS(625), + [anon_sym_typedef] = ACTIONS(627), + [anon_sym_extern] = ACTIONS(49), [anon_sym___attribute__] = ACTIONS(33), [anon_sym___scanf] = ACTIONS(35), [anon_sym___printf] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [sym_primitive_type] = ACTIONS(51), - [anon_sym_enum] = ACTIONS(53), - [anon_sym_struct] = ACTIONS(55), - [anon_sym_union] = ACTIONS(57), - [anon_sym_if] = ACTIONS(1274), - [anon_sym_else] = ACTIONS(920), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_while] = ACTIONS(1276), - [anon_sym_do] = ACTIONS(69), - [anon_sym_for] = ACTIONS(1278), - [anon_sym_return] = ACTIONS(73), - [anon_sym_break] = ACTIONS(75), - [anon_sym_continue] = ACTIONS(77), - [anon_sym_goto] = ACTIONS(79), - [anon_sym___try] = ACTIONS(1280), - [anon_sym___leave] = ACTIONS(532), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(83), - [anon_sym___alignof__] = ACTIONS(85), - [anon_sym___alignof] = ACTIONS(85), - [anon_sym__alignof] = ACTIONS(85), - [anon_sym_alignof] = ACTIONS(85), - [anon_sym__Alignof] = ACTIONS(85), - [anon_sym_offsetof] = ACTIONS(87), - [anon_sym__Generic] = ACTIONS(89), - [anon_sym_asm] = ACTIONS(91), - [anon_sym___asm__] = ACTIONS(91), - [sym_number_literal] = ACTIONS(159), - [anon_sym_L_SQUOTE] = ACTIONS(95), - [anon_sym_u_SQUOTE] = ACTIONS(95), - [anon_sym_U_SQUOTE] = ACTIONS(95), - [anon_sym_u8_SQUOTE] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(95), - [anon_sym_L_DQUOTE] = ACTIONS(97), - [anon_sym_u_DQUOTE] = ACTIONS(97), - [anon_sym_U_DQUOTE] = ACTIONS(97), - [anon_sym_u8_DQUOTE] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(97), - [sym_true] = ACTIONS(161), - [sym_false] = ACTIONS(161), - [anon_sym_NULL] = ACTIONS(101), - [anon_sym_nullptr] = ACTIONS(101), + [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(1065), + [anon_sym___clrcall] = ACTIONS(1065), + [anon_sym___stdcall] = ACTIONS(1065), + [anon_sym___fastcall] = ACTIONS(1065), + [anon_sym___thiscall] = ACTIONS(1065), + [anon_sym___vectorcall] = ACTIONS(1065), + [anon_sym_LBRACE] = ACTIONS(631), + [anon_sym_RBRACE] = ACTIONS(1167), + [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), + [sym_primitive_type] = ACTIONS(53), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [anon_sym_if] = ACTIONS(635), + [anon_sym_else] = ACTIONS(1065), + [anon_sym_switch] = ACTIONS(637), + [anon_sym_case] = ACTIONS(1065), + [anon_sym_default] = ACTIONS(1065), + [anon_sym_while] = ACTIONS(643), + [anon_sym_do] = ACTIONS(645), + [anon_sym_for] = ACTIONS(647), + [anon_sym_return] = ACTIONS(649), + [anon_sym_break] = ACTIONS(651), + [anon_sym_continue] = ACTIONS(653), + [anon_sym_goto] = ACTIONS(655), + [anon_sym___try] = ACTIONS(657), + [anon_sym___leave] = ACTIONS(659), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [sym_number_literal] = ACTIONS(161), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(163), + [sym_false] = ACTIONS(163), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [80] = { + [79] = { [sym_declaration] = STATE(80), [sym_type_definition] = STATE(80), - [sym__declaration_modifiers] = STATE(861), - [sym__declaration_specifiers] = STATE(1502), - [sym_attribute_specifier] = STATE(861), - [sym_attribute_declaration] = STATE(504), - [sym_ms_declspec_modifier] = STATE(861), + [sym__declaration_modifiers] = STATE(855), + [sym__declaration_specifiers] = STATE(1540), + [sym_attribute_specifier] = STATE(855), + [sym_attribute_declaration] = STATE(495), + [sym_ms_declspec_modifier] = STATE(855), [sym_compound_statement] = STATE(80), - [sym_storage_class_specifier] = STATE(861), - [sym_type_qualifier] = STATE(861), - [sym__type_specifier] = STATE(1040), - [sym_sized_type_specifier] = STATE(1106), - [sym_enum_specifier] = STATE(1106), - [sym_struct_specifier] = STATE(1106), - [sym_union_specifier] = STATE(1106), + [sym_storage_class_specifier] = STATE(855), + [sym_type_qualifier] = STATE(855), + [sym__type_specifier] = STATE(974), + [sym_sized_type_specifier] = STATE(1069), + [sym_enum_specifier] = STATE(1069), + [sym_struct_specifier] = STATE(1069), + [sym_union_specifier] = STATE(1069), [sym_attributed_statement] = STATE(80), [sym_labeled_statement] = STATE(80), [sym_expression_statement] = STATE(80), @@ -28881,135 +29343,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(80), [sym_seh_try_statement] = STATE(80), [sym_seh_leave_statement] = STATE(80), - [sym__expression] = STATE(1221), - [sym__expression_not_binary] = STATE(792), - [sym_comma_expression] = STATE(2106), - [sym_conditional_expression] = STATE(792), - [sym_assignment_expression] = STATE(792), - [sym_pointer_expression] = STATE(901), - [sym_unary_expression] = STATE(792), - [sym_binary_expression] = STATE(792), - [sym_update_expression] = STATE(792), - [sym_cast_expression] = STATE(792), - [sym_sizeof_expression] = STATE(792), - [sym_alignof_expression] = STATE(792), - [sym_offsetof_expression] = STATE(792), - [sym_generic_expression] = STATE(792), - [sym_subscript_expression] = STATE(901), - [sym_call_expression] = STATE(901), - [sym_gnu_asm_expression] = STATE(792), - [sym_field_expression] = STATE(901), - [sym_compound_literal_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(901), - [sym_char_literal] = STATE(792), - [sym_concatenated_string] = STATE(792), - [sym_string_literal] = STATE(675), - [sym_null] = STATE(792), - [sym_macro_type_specifier] = STATE(1106), - [aux_sym__declaration_specifiers_repeat1] = STATE(861), - [aux_sym_attributed_declarator_repeat1] = STATE(448), - [aux_sym_sized_type_specifier_repeat1] = STATE(1113), + [sym__expression] = STATE(1272), + [sym__expression_not_binary] = STATE(809), + [sym_comma_expression] = STATE(2198), + [sym_conditional_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_pointer_expression] = STATE(877), + [sym_unary_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_update_expression] = STATE(809), + [sym_cast_expression] = STATE(809), + [sym_sizeof_expression] = STATE(809), + [sym_alignof_expression] = STATE(809), + [sym_offsetof_expression] = STATE(809), + [sym_generic_expression] = STATE(809), + [sym_subscript_expression] = STATE(877), + [sym_call_expression] = STATE(877), + [sym_gnu_asm_expression] = STATE(809), + [sym_field_expression] = STATE(877), + [sym_compound_literal_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(877), + [sym_char_literal] = STATE(809), + [sym_concatenated_string] = STATE(809), + [sym_string_literal] = STATE(573), + [sym_null] = STATE(809), + [sym_macro_type_specifier] = STATE(1069), + [aux_sym__declaration_specifiers_repeat1] = STATE(855), + [aux_sym_attributed_declarator_repeat1] = STATE(465), + [aux_sym_sized_type_specifier_repeat1] = STATE(1085), [aux_sym_case_statement_repeat1] = STATE(80), - [sym_identifier] = ACTIONS(1282), - [anon_sym_LPAREN2] = ACTIONS(933), - [anon_sym_BANG] = ACTIONS(936), - [anon_sym_TILDE] = ACTIONS(936), - [anon_sym_DASH] = ACTIONS(939), - [anon_sym_PLUS] = ACTIONS(939), - [anon_sym_STAR] = ACTIONS(942), - [anon_sym_AMP] = ACTIONS(942), - [anon_sym_SEMI] = ACTIONS(1177), - [anon_sym___extension__] = ACTIONS(1124), - [anon_sym_typedef] = ACTIONS(1127), - [anon_sym_extern] = ACTIONS(954), - [anon_sym___attribute__] = ACTIONS(957), - [anon_sym___scanf] = ACTIONS(960), - [anon_sym___printf] = ACTIONS(960), - [anon_sym_LBRACK_LBRACK] = ACTIONS(963), - [anon_sym___declspec] = ACTIONS(966), - [anon_sym_LBRACE] = ACTIONS(1130), - [anon_sym_signed] = ACTIONS(972), - [anon_sym_unsigned] = ACTIONS(972), - [anon_sym_long] = ACTIONS(972), - [anon_sym_short] = ACTIONS(972), - [anon_sym_static] = ACTIONS(954), - [anon_sym_auto] = ACTIONS(954), - [anon_sym_register] = ACTIONS(954), - [anon_sym_inline] = ACTIONS(954), - [anon_sym___inline] = ACTIONS(954), - [anon_sym___inline__] = ACTIONS(954), - [anon_sym___forceinline] = ACTIONS(954), - [anon_sym_thread_local] = ACTIONS(954), - [anon_sym___thread] = ACTIONS(954), - [anon_sym_const] = ACTIONS(975), - [anon_sym_constexpr] = ACTIONS(975), - [anon_sym_volatile] = ACTIONS(975), - [anon_sym_restrict] = ACTIONS(975), - [anon_sym___restrict__] = ACTIONS(975), - [anon_sym__Atomic] = ACTIONS(975), - [anon_sym__Noreturn] = ACTIONS(975), - [anon_sym_noreturn] = ACTIONS(975), - [sym_primitive_type] = ACTIONS(978), - [anon_sym_enum] = ACTIONS(981), - [anon_sym_struct] = ACTIONS(984), - [anon_sym_union] = ACTIONS(987), + [sym_identifier] = ACTIONS(1283), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(623), + [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_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), + [sym_primitive_type] = ACTIONS(53), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), [anon_sym_if] = ACTIONS(1285), - [anon_sym_else] = ACTIONS(931), - [anon_sym_switch] = ACTIONS(1136), - [anon_sym_while] = ACTIONS(1288), - [anon_sym_do] = ACTIONS(1142), - [anon_sym_for] = ACTIONS(1291), - [anon_sym_return] = ACTIONS(1148), - [anon_sym_break] = ACTIONS(1151), - [anon_sym_continue] = ACTIONS(1154), - [anon_sym_goto] = ACTIONS(1157), - [anon_sym___try] = ACTIONS(1294), - [anon_sym___leave] = ACTIONS(1219), - [anon_sym_DASH_DASH] = ACTIONS(1023), - [anon_sym_PLUS_PLUS] = ACTIONS(1023), - [anon_sym_sizeof] = ACTIONS(1026), - [anon_sym___alignof__] = ACTIONS(1029), - [anon_sym___alignof] = ACTIONS(1029), - [anon_sym__alignof] = ACTIONS(1029), - [anon_sym_alignof] = ACTIONS(1029), - [anon_sym__Alignof] = ACTIONS(1029), - [anon_sym_offsetof] = ACTIONS(1032), - [anon_sym__Generic] = ACTIONS(1035), - [anon_sym_asm] = ACTIONS(1038), - [anon_sym___asm__] = ACTIONS(1038), - [sym_number_literal] = ACTIONS(1041), - [anon_sym_L_SQUOTE] = ACTIONS(1044), - [anon_sym_u_SQUOTE] = ACTIONS(1044), - [anon_sym_U_SQUOTE] = ACTIONS(1044), - [anon_sym_u8_SQUOTE] = ACTIONS(1044), - [anon_sym_SQUOTE] = ACTIONS(1044), - [anon_sym_L_DQUOTE] = ACTIONS(1047), - [anon_sym_u_DQUOTE] = ACTIONS(1047), - [anon_sym_U_DQUOTE] = ACTIONS(1047), - [anon_sym_u8_DQUOTE] = ACTIONS(1047), - [anon_sym_DQUOTE] = ACTIONS(1047), - [sym_true] = ACTIONS(1050), - [sym_false] = ACTIONS(1050), - [anon_sym_NULL] = ACTIONS(1053), - [anon_sym_nullptr] = ACTIONS(1053), + [anon_sym_else] = ACTIONS(930), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_while] = ACTIONS(1287), + [anon_sym_do] = ACTIONS(71), + [anon_sym_for] = ACTIONS(1289), + [anon_sym_return] = ACTIONS(75), + [anon_sym_break] = ACTIONS(77), + [anon_sym_continue] = ACTIONS(79), + [anon_sym_goto] = ACTIONS(81), + [anon_sym___try] = ACTIONS(1291), + [anon_sym___leave] = ACTIONS(659), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [sym_number_literal] = ACTIONS(161), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(163), + [sym_false] = ACTIONS(163), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [81] = { + [80] = { [sym_declaration] = STATE(80), [sym_type_definition] = STATE(80), - [sym__declaration_modifiers] = STATE(861), - [sym__declaration_specifiers] = STATE(1502), - [sym_attribute_specifier] = STATE(861), - [sym_attribute_declaration] = STATE(504), - [sym_ms_declspec_modifier] = STATE(861), + [sym__declaration_modifiers] = STATE(855), + [sym__declaration_specifiers] = STATE(1540), + [sym_attribute_specifier] = STATE(855), + [sym_attribute_declaration] = STATE(495), + [sym_ms_declspec_modifier] = STATE(855), [sym_compound_statement] = STATE(80), - [sym_storage_class_specifier] = STATE(861), - [sym_type_qualifier] = STATE(861), - [sym__type_specifier] = STATE(1040), - [sym_sized_type_specifier] = STATE(1106), - [sym_enum_specifier] = STATE(1106), - [sym_struct_specifier] = STATE(1106), - [sym_union_specifier] = STATE(1106), + [sym_storage_class_specifier] = STATE(855), + [sym_type_qualifier] = STATE(855), + [sym__type_specifier] = STATE(974), + [sym_sized_type_specifier] = STATE(1069), + [sym_enum_specifier] = STATE(1069), + [sym_struct_specifier] = STATE(1069), + [sym_union_specifier] = STATE(1069), [sym_attributed_statement] = STATE(80), [sym_labeled_statement] = STATE(80), [sym_expression_statement] = STATE(80), @@ -29024,36 +29490,183 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(80), [sym_seh_try_statement] = STATE(80), [sym_seh_leave_statement] = STATE(80), - [sym__expression] = STATE(1221), - [sym__expression_not_binary] = STATE(792), - [sym_comma_expression] = STATE(2106), - [sym_conditional_expression] = STATE(792), - [sym_assignment_expression] = STATE(792), - [sym_pointer_expression] = STATE(901), - [sym_unary_expression] = STATE(792), - [sym_binary_expression] = STATE(792), - [sym_update_expression] = STATE(792), - [sym_cast_expression] = STATE(792), - [sym_sizeof_expression] = STATE(792), - [sym_alignof_expression] = STATE(792), - [sym_offsetof_expression] = STATE(792), - [sym_generic_expression] = STATE(792), - [sym_subscript_expression] = STATE(901), - [sym_call_expression] = STATE(901), - [sym_gnu_asm_expression] = STATE(792), - [sym_field_expression] = STATE(901), - [sym_compound_literal_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(901), - [sym_char_literal] = STATE(792), - [sym_concatenated_string] = STATE(792), - [sym_string_literal] = STATE(675), - [sym_null] = STATE(792), - [sym_macro_type_specifier] = STATE(1106), - [aux_sym__declaration_specifiers_repeat1] = STATE(861), - [aux_sym_attributed_declarator_repeat1] = STATE(448), - [aux_sym_sized_type_specifier_repeat1] = STATE(1113), + [sym__expression] = STATE(1272), + [sym__expression_not_binary] = STATE(809), + [sym_comma_expression] = STATE(2198), + [sym_conditional_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_pointer_expression] = STATE(877), + [sym_unary_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_update_expression] = STATE(809), + [sym_cast_expression] = STATE(809), + [sym_sizeof_expression] = STATE(809), + [sym_alignof_expression] = STATE(809), + [sym_offsetof_expression] = STATE(809), + [sym_generic_expression] = STATE(809), + [sym_subscript_expression] = STATE(877), + [sym_call_expression] = STATE(877), + [sym_gnu_asm_expression] = STATE(809), + [sym_field_expression] = STATE(877), + [sym_compound_literal_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(877), + [sym_char_literal] = STATE(809), + [sym_concatenated_string] = STATE(809), + [sym_string_literal] = STATE(573), + [sym_null] = STATE(809), + [sym_macro_type_specifier] = STATE(1069), + [aux_sym__declaration_specifiers_repeat1] = STATE(855), + [aux_sym_attributed_declarator_repeat1] = STATE(465), + [aux_sym_sized_type_specifier_repeat1] = STATE(1085), [aux_sym_case_statement_repeat1] = STATE(80), - [sym_identifier] = ACTIONS(1272), + [sym_identifier] = ACTIONS(1293), + [anon_sym_LPAREN2] = ACTIONS(939), + [anon_sym_BANG] = ACTIONS(942), + [anon_sym_TILDE] = ACTIONS(942), + [anon_sym_DASH] = ACTIONS(945), + [anon_sym_PLUS] = ACTIONS(945), + [anon_sym_STAR] = ACTIONS(948), + [anon_sym_AMP] = ACTIONS(948), + [anon_sym_SEMI] = ACTIONS(1182), + [anon_sym___extension__] = ACTIONS(1241), + [anon_sym_typedef] = ACTIONS(1244), + [anon_sym_extern] = ACTIONS(960), + [anon_sym___attribute__] = ACTIONS(963), + [anon_sym___scanf] = ACTIONS(966), + [anon_sym___printf] = ACTIONS(966), + [anon_sym___read_mostly] = ACTIONS(969), + [anon_sym___must_hold] = ACTIONS(963), + [anon_sym___ro_after_init] = ACTIONS(969), + [anon_sym___init] = ACTIONS(969), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym___declspec] = ACTIONS(975), + [anon_sym_LBRACE] = ACTIONS(1247), + [anon_sym_signed] = ACTIONS(981), + [anon_sym_unsigned] = ACTIONS(981), + [anon_sym_long] = ACTIONS(981), + [anon_sym_short] = ACTIONS(981), + [anon_sym_static] = ACTIONS(960), + [anon_sym_auto] = ACTIONS(960), + [anon_sym_register] = ACTIONS(960), + [anon_sym_inline] = ACTIONS(960), + [anon_sym___inline] = ACTIONS(960), + [anon_sym___inline__] = ACTIONS(960), + [anon_sym___forceinline] = ACTIONS(960), + [anon_sym_thread_local] = ACTIONS(960), + [anon_sym___thread] = ACTIONS(960), + [anon_sym_const] = ACTIONS(984), + [anon_sym_constexpr] = ACTIONS(984), + [anon_sym_volatile] = ACTIONS(984), + [anon_sym_restrict] = ACTIONS(984), + [anon_sym___restrict__] = ACTIONS(984), + [anon_sym__Atomic] = ACTIONS(984), + [anon_sym__Noreturn] = ACTIONS(984), + [anon_sym_noreturn] = ACTIONS(984), + [sym_primitive_type] = ACTIONS(987), + [anon_sym_enum] = ACTIONS(990), + [anon_sym_struct] = ACTIONS(993), + [anon_sym_union] = ACTIONS(996), + [anon_sym_if] = ACTIONS(1296), + [anon_sym_else] = ACTIONS(937), + [anon_sym_switch] = ACTIONS(1253), + [anon_sym_while] = ACTIONS(1299), + [anon_sym_do] = ACTIONS(1259), + [anon_sym_for] = ACTIONS(1302), + [anon_sym_return] = ACTIONS(1265), + [anon_sym_break] = ACTIONS(1268), + [anon_sym_continue] = ACTIONS(1271), + [anon_sym_goto] = ACTIONS(1274), + [anon_sym___try] = ACTIONS(1305), + [anon_sym___leave] = ACTIONS(1226), + [anon_sym_DASH_DASH] = ACTIONS(1032), + [anon_sym_PLUS_PLUS] = ACTIONS(1032), + [anon_sym_sizeof] = ACTIONS(1035), + [anon_sym___alignof__] = ACTIONS(1038), + [anon_sym___alignof] = ACTIONS(1038), + [anon_sym__alignof] = ACTIONS(1038), + [anon_sym_alignof] = ACTIONS(1038), + [anon_sym__Alignof] = ACTIONS(1038), + [anon_sym_offsetof] = ACTIONS(1041), + [anon_sym__Generic] = ACTIONS(1044), + [anon_sym_asm] = ACTIONS(1047), + [anon_sym___asm__] = ACTIONS(1047), + [sym_number_literal] = ACTIONS(1050), + [anon_sym_L_SQUOTE] = ACTIONS(1053), + [anon_sym_u_SQUOTE] = ACTIONS(1053), + [anon_sym_U_SQUOTE] = ACTIONS(1053), + [anon_sym_u8_SQUOTE] = ACTIONS(1053), + [anon_sym_SQUOTE] = ACTIONS(1053), + [anon_sym_L_DQUOTE] = ACTIONS(1056), + [anon_sym_u_DQUOTE] = ACTIONS(1056), + [anon_sym_U_DQUOTE] = ACTIONS(1056), + [anon_sym_u8_DQUOTE] = ACTIONS(1056), + [anon_sym_DQUOTE] = ACTIONS(1056), + [sym_true] = ACTIONS(1059), + [sym_false] = ACTIONS(1059), + [anon_sym_NULL] = ACTIONS(1062), + [anon_sym_nullptr] = ACTIONS(1062), + [sym_comment] = ACTIONS(3), + }, + [81] = { + [sym_declaration] = STATE(82), + [sym_type_definition] = STATE(82), + [sym__declaration_modifiers] = STATE(855), + [sym__declaration_specifiers] = STATE(1540), + [sym_attribute_specifier] = STATE(855), + [sym_attribute_declaration] = STATE(495), + [sym_ms_declspec_modifier] = STATE(855), + [sym_compound_statement] = STATE(82), + [sym_storage_class_specifier] = STATE(855), + [sym_type_qualifier] = STATE(855), + [sym__type_specifier] = STATE(974), + [sym_sized_type_specifier] = STATE(1069), + [sym_enum_specifier] = STATE(1069), + [sym_struct_specifier] = STATE(1069), + [sym_union_specifier] = STATE(1069), + [sym_attributed_statement] = STATE(82), + [sym_labeled_statement] = STATE(82), + [sym_expression_statement] = STATE(82), + [sym_if_statement] = STATE(82), + [sym_switch_statement] = STATE(82), + [sym_while_statement] = STATE(82), + [sym_do_statement] = STATE(82), + [sym_for_statement] = STATE(82), + [sym_return_statement] = STATE(82), + [sym_break_statement] = STATE(82), + [sym_continue_statement] = STATE(82), + [sym_goto_statement] = STATE(82), + [sym_seh_try_statement] = STATE(82), + [sym_seh_leave_statement] = STATE(82), + [sym__expression] = STATE(1272), + [sym__expression_not_binary] = STATE(809), + [sym_comma_expression] = STATE(2198), + [sym_conditional_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_pointer_expression] = STATE(877), + [sym_unary_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_update_expression] = STATE(809), + [sym_cast_expression] = STATE(809), + [sym_sizeof_expression] = STATE(809), + [sym_alignof_expression] = STATE(809), + [sym_offsetof_expression] = STATE(809), + [sym_generic_expression] = STATE(809), + [sym_subscript_expression] = STATE(877), + [sym_call_expression] = STATE(877), + [sym_gnu_asm_expression] = STATE(809), + [sym_field_expression] = STATE(877), + [sym_compound_literal_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(877), + [sym_char_literal] = STATE(809), + [sym_concatenated_string] = STATE(809), + [sym_string_literal] = STATE(573), + [sym_null] = STATE(809), + [sym_macro_type_specifier] = STATE(1069), + [aux_sym__declaration_specifiers_repeat1] = STATE(855), + [aux_sym_attributed_declarator_repeat1] = STATE(465), + [aux_sym_sized_type_specifier_repeat1] = STATE(1085), + [aux_sym_case_statement_repeat1] = STATE(82), + [sym_identifier] = ACTIONS(1283), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -29061,98 +29674,102 @@ 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(496), + [anon_sym_SEMI] = ACTIONS(623), [anon_sym___extension__] = ACTIONS(27), [anon_sym_typedef] = ACTIONS(29), - [anon_sym_extern] = ACTIONS(47), + [anon_sym_extern] = ACTIONS(49), [anon_sym___attribute__] = ACTIONS(33), [anon_sym___scanf] = ACTIONS(35), [anon_sym___printf] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [sym_primitive_type] = ACTIONS(51), - [anon_sym_enum] = ACTIONS(53), - [anon_sym_struct] = ACTIONS(55), - [anon_sym_union] = ACTIONS(57), - [anon_sym_if] = ACTIONS(1274), - [anon_sym_else] = ACTIONS(926), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_while] = ACTIONS(1276), - [anon_sym_do] = ACTIONS(69), - [anon_sym_for] = ACTIONS(1278), - [anon_sym_return] = ACTIONS(73), - [anon_sym_break] = ACTIONS(75), - [anon_sym_continue] = ACTIONS(77), - [anon_sym_goto] = ACTIONS(79), - [anon_sym___try] = ACTIONS(1280), - [anon_sym___leave] = ACTIONS(532), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(83), - [anon_sym___alignof__] = ACTIONS(85), - [anon_sym___alignof] = ACTIONS(85), - [anon_sym__alignof] = ACTIONS(85), - [anon_sym_alignof] = ACTIONS(85), - [anon_sym__Alignof] = ACTIONS(85), - [anon_sym_offsetof] = ACTIONS(87), - [anon_sym__Generic] = ACTIONS(89), - [anon_sym_asm] = ACTIONS(91), - [anon_sym___asm__] = ACTIONS(91), - [sym_number_literal] = ACTIONS(159), - [anon_sym_L_SQUOTE] = ACTIONS(95), - [anon_sym_u_SQUOTE] = ACTIONS(95), - [anon_sym_U_SQUOTE] = ACTIONS(95), - [anon_sym_u8_SQUOTE] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(95), - [anon_sym_L_DQUOTE] = ACTIONS(97), - [anon_sym_u_DQUOTE] = ACTIONS(97), - [anon_sym_U_DQUOTE] = ACTIONS(97), - [anon_sym_u8_DQUOTE] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(97), - [sym_true] = ACTIONS(161), - [sym_false] = ACTIONS(161), - [anon_sym_NULL] = ACTIONS(101), - [anon_sym_nullptr] = ACTIONS(101), + [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_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), + [sym_primitive_type] = ACTIONS(53), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [anon_sym_if] = ACTIONS(1285), + [anon_sym_else] = ACTIONS(1065), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_while] = ACTIONS(1287), + [anon_sym_do] = ACTIONS(71), + [anon_sym_for] = ACTIONS(1289), + [anon_sym_return] = ACTIONS(75), + [anon_sym_break] = ACTIONS(77), + [anon_sym_continue] = ACTIONS(79), + [anon_sym_goto] = ACTIONS(81), + [anon_sym___try] = ACTIONS(1291), + [anon_sym___leave] = ACTIONS(659), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [sym_number_literal] = ACTIONS(161), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(163), + [sym_false] = ACTIONS(163), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, [82] = { [sym_declaration] = STATE(80), [sym_type_definition] = STATE(80), - [sym__declaration_modifiers] = STATE(861), - [sym__declaration_specifiers] = STATE(1502), - [sym_attribute_specifier] = STATE(861), - [sym_attribute_declaration] = STATE(504), - [sym_ms_declspec_modifier] = STATE(861), + [sym__declaration_modifiers] = STATE(855), + [sym__declaration_specifiers] = STATE(1540), + [sym_attribute_specifier] = STATE(855), + [sym_attribute_declaration] = STATE(495), + [sym_ms_declspec_modifier] = STATE(855), [sym_compound_statement] = STATE(80), - [sym_storage_class_specifier] = STATE(861), - [sym_type_qualifier] = STATE(861), - [sym__type_specifier] = STATE(1040), - [sym_sized_type_specifier] = STATE(1106), - [sym_enum_specifier] = STATE(1106), - [sym_struct_specifier] = STATE(1106), - [sym_union_specifier] = STATE(1106), + [sym_storage_class_specifier] = STATE(855), + [sym_type_qualifier] = STATE(855), + [sym__type_specifier] = STATE(974), + [sym_sized_type_specifier] = STATE(1069), + [sym_enum_specifier] = STATE(1069), + [sym_struct_specifier] = STATE(1069), + [sym_union_specifier] = STATE(1069), [sym_attributed_statement] = STATE(80), [sym_labeled_statement] = STATE(80), [sym_expression_statement] = STATE(80), @@ -29167,36 +29784,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(80), [sym_seh_try_statement] = STATE(80), [sym_seh_leave_statement] = STATE(80), - [sym__expression] = STATE(1221), - [sym__expression_not_binary] = STATE(792), - [sym_comma_expression] = STATE(2106), - [sym_conditional_expression] = STATE(792), - [sym_assignment_expression] = STATE(792), - [sym_pointer_expression] = STATE(901), - [sym_unary_expression] = STATE(792), - [sym_binary_expression] = STATE(792), - [sym_update_expression] = STATE(792), - [sym_cast_expression] = STATE(792), - [sym_sizeof_expression] = STATE(792), - [sym_alignof_expression] = STATE(792), - [sym_offsetof_expression] = STATE(792), - [sym_generic_expression] = STATE(792), - [sym_subscript_expression] = STATE(901), - [sym_call_expression] = STATE(901), - [sym_gnu_asm_expression] = STATE(792), - [sym_field_expression] = STATE(901), - [sym_compound_literal_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(901), - [sym_char_literal] = STATE(792), - [sym_concatenated_string] = STATE(792), - [sym_string_literal] = STATE(675), - [sym_null] = STATE(792), - [sym_macro_type_specifier] = STATE(1106), - [aux_sym__declaration_specifiers_repeat1] = STATE(861), - [aux_sym_attributed_declarator_repeat1] = STATE(448), - [aux_sym_sized_type_specifier_repeat1] = STATE(1113), + [sym__expression] = STATE(1272), + [sym__expression_not_binary] = STATE(809), + [sym_comma_expression] = STATE(2198), + [sym_conditional_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_pointer_expression] = STATE(877), + [sym_unary_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_update_expression] = STATE(809), + [sym_cast_expression] = STATE(809), + [sym_sizeof_expression] = STATE(809), + [sym_alignof_expression] = STATE(809), + [sym_offsetof_expression] = STATE(809), + [sym_generic_expression] = STATE(809), + [sym_subscript_expression] = STATE(877), + [sym_call_expression] = STATE(877), + [sym_gnu_asm_expression] = STATE(809), + [sym_field_expression] = STATE(877), + [sym_compound_literal_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(877), + [sym_char_literal] = STATE(809), + [sym_concatenated_string] = STATE(809), + [sym_string_literal] = STATE(573), + [sym_null] = STATE(809), + [sym_macro_type_specifier] = STATE(1069), + [aux_sym__declaration_specifiers_repeat1] = STATE(855), + [aux_sym_attributed_declarator_repeat1] = STATE(465), + [aux_sym_sized_type_specifier_repeat1] = STATE(1085), [aux_sym_case_statement_repeat1] = STATE(80), - [sym_identifier] = ACTIONS(1272), + [sym_identifier] = ACTIONS(1283), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -29204,142 +29821,146 @@ 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(496), + [anon_sym_SEMI] = ACTIONS(623), [anon_sym___extension__] = ACTIONS(27), [anon_sym_typedef] = ACTIONS(29), - [anon_sym_extern] = ACTIONS(47), + [anon_sym_extern] = ACTIONS(49), [anon_sym___attribute__] = ACTIONS(33), [anon_sym___scanf] = ACTIONS(35), [anon_sym___printf] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [sym_primitive_type] = ACTIONS(51), - [anon_sym_enum] = ACTIONS(53), - [anon_sym_struct] = ACTIONS(55), - [anon_sym_union] = ACTIONS(57), - [anon_sym_if] = ACTIONS(1274), - [anon_sym_else] = ACTIONS(924), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_while] = ACTIONS(1276), - [anon_sym_do] = ACTIONS(69), - [anon_sym_for] = ACTIONS(1278), - [anon_sym_return] = ACTIONS(73), - [anon_sym_break] = ACTIONS(75), - [anon_sym_continue] = ACTIONS(77), - [anon_sym_goto] = ACTIONS(79), - [anon_sym___try] = ACTIONS(1280), - [anon_sym___leave] = ACTIONS(532), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(83), - [anon_sym___alignof__] = ACTIONS(85), - [anon_sym___alignof] = ACTIONS(85), - [anon_sym__alignof] = ACTIONS(85), - [anon_sym_alignof] = ACTIONS(85), - [anon_sym__Alignof] = ACTIONS(85), - [anon_sym_offsetof] = ACTIONS(87), - [anon_sym__Generic] = ACTIONS(89), - [anon_sym_asm] = ACTIONS(91), - [anon_sym___asm__] = ACTIONS(91), - [sym_number_literal] = ACTIONS(159), - [anon_sym_L_SQUOTE] = ACTIONS(95), - [anon_sym_u_SQUOTE] = ACTIONS(95), - [anon_sym_U_SQUOTE] = ACTIONS(95), - [anon_sym_u8_SQUOTE] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(95), - [anon_sym_L_DQUOTE] = ACTIONS(97), - [anon_sym_u_DQUOTE] = ACTIONS(97), - [anon_sym_U_DQUOTE] = ACTIONS(97), - [anon_sym_u8_DQUOTE] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(97), - [sym_true] = ACTIONS(161), - [sym_false] = ACTIONS(161), - [anon_sym_NULL] = ACTIONS(101), - [anon_sym_nullptr] = ACTIONS(101), + [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_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), + [sym_primitive_type] = ACTIONS(53), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [anon_sym_if] = ACTIONS(1285), + [anon_sym_else] = ACTIONS(932), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_while] = ACTIONS(1287), + [anon_sym_do] = ACTIONS(71), + [anon_sym_for] = ACTIONS(1289), + [anon_sym_return] = ACTIONS(75), + [anon_sym_break] = ACTIONS(77), + [anon_sym_continue] = ACTIONS(79), + [anon_sym_goto] = ACTIONS(81), + [anon_sym___try] = ACTIONS(1291), + [anon_sym___leave] = ACTIONS(659), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [sym_number_literal] = ACTIONS(161), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(163), + [sym_false] = ACTIONS(163), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, [83] = { - [sym_declaration] = STATE(82), - [sym_type_definition] = STATE(82), - [sym__declaration_modifiers] = STATE(861), - [sym__declaration_specifiers] = STATE(1502), - [sym_attribute_specifier] = STATE(861), - [sym_attribute_declaration] = STATE(504), - [sym_ms_declspec_modifier] = STATE(861), - [sym_compound_statement] = STATE(82), - [sym_storage_class_specifier] = STATE(861), - [sym_type_qualifier] = STATE(861), - [sym__type_specifier] = STATE(1040), - [sym_sized_type_specifier] = STATE(1106), - [sym_enum_specifier] = STATE(1106), - [sym_struct_specifier] = STATE(1106), - [sym_union_specifier] = STATE(1106), - [sym_attributed_statement] = STATE(82), - [sym_labeled_statement] = STATE(82), - [sym_expression_statement] = STATE(82), - [sym_if_statement] = STATE(82), - [sym_switch_statement] = STATE(82), - [sym_while_statement] = STATE(82), - [sym_do_statement] = STATE(82), - [sym_for_statement] = STATE(82), - [sym_return_statement] = STATE(82), - [sym_break_statement] = STATE(82), - [sym_continue_statement] = STATE(82), - [sym_goto_statement] = STATE(82), - [sym_seh_try_statement] = STATE(82), - [sym_seh_leave_statement] = STATE(82), - [sym__expression] = STATE(1221), - [sym__expression_not_binary] = STATE(792), - [sym_comma_expression] = STATE(2106), - [sym_conditional_expression] = STATE(792), - [sym_assignment_expression] = STATE(792), - [sym_pointer_expression] = STATE(901), - [sym_unary_expression] = STATE(792), - [sym_binary_expression] = STATE(792), - [sym_update_expression] = STATE(792), - [sym_cast_expression] = STATE(792), - [sym_sizeof_expression] = STATE(792), - [sym_alignof_expression] = STATE(792), - [sym_offsetof_expression] = STATE(792), - [sym_generic_expression] = STATE(792), - [sym_subscript_expression] = STATE(901), - [sym_call_expression] = STATE(901), - [sym_gnu_asm_expression] = STATE(792), - [sym_field_expression] = STATE(901), - [sym_compound_literal_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(901), - [sym_char_literal] = STATE(792), - [sym_concatenated_string] = STATE(792), - [sym_string_literal] = STATE(675), - [sym_null] = STATE(792), - [sym_macro_type_specifier] = STATE(1106), - [aux_sym__declaration_specifiers_repeat1] = STATE(861), - [aux_sym_attributed_declarator_repeat1] = STATE(448), - [aux_sym_sized_type_specifier_repeat1] = STATE(1113), - [aux_sym_case_statement_repeat1] = STATE(82), - [sym_identifier] = ACTIONS(1272), + [sym_declaration] = STATE(79), + [sym_type_definition] = STATE(79), + [sym__declaration_modifiers] = STATE(855), + [sym__declaration_specifiers] = STATE(1540), + [sym_attribute_specifier] = STATE(855), + [sym_attribute_declaration] = STATE(495), + [sym_ms_declspec_modifier] = STATE(855), + [sym_compound_statement] = STATE(79), + [sym_storage_class_specifier] = STATE(855), + [sym_type_qualifier] = STATE(855), + [sym__type_specifier] = STATE(974), + [sym_sized_type_specifier] = STATE(1069), + [sym_enum_specifier] = STATE(1069), + [sym_struct_specifier] = STATE(1069), + [sym_union_specifier] = STATE(1069), + [sym_attributed_statement] = STATE(79), + [sym_labeled_statement] = STATE(79), + [sym_expression_statement] = STATE(79), + [sym_if_statement] = STATE(79), + [sym_switch_statement] = STATE(79), + [sym_while_statement] = STATE(79), + [sym_do_statement] = STATE(79), + [sym_for_statement] = STATE(79), + [sym_return_statement] = STATE(79), + [sym_break_statement] = STATE(79), + [sym_continue_statement] = STATE(79), + [sym_goto_statement] = STATE(79), + [sym_seh_try_statement] = STATE(79), + [sym_seh_leave_statement] = STATE(79), + [sym__expression] = STATE(1272), + [sym__expression_not_binary] = STATE(809), + [sym_comma_expression] = STATE(2198), + [sym_conditional_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_pointer_expression] = STATE(877), + [sym_unary_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_update_expression] = STATE(809), + [sym_cast_expression] = STATE(809), + [sym_sizeof_expression] = STATE(809), + [sym_alignof_expression] = STATE(809), + [sym_offsetof_expression] = STATE(809), + [sym_generic_expression] = STATE(809), + [sym_subscript_expression] = STATE(877), + [sym_call_expression] = STATE(877), + [sym_gnu_asm_expression] = STATE(809), + [sym_field_expression] = STATE(877), + [sym_compound_literal_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(877), + [sym_char_literal] = STATE(809), + [sym_concatenated_string] = STATE(809), + [sym_string_literal] = STATE(573), + [sym_null] = STATE(809), + [sym_macro_type_specifier] = STATE(1069), + [aux_sym__declaration_specifiers_repeat1] = STATE(855), + [aux_sym_attributed_declarator_repeat1] = STATE(465), + [aux_sym_sized_type_specifier_repeat1] = STATE(1085), + [aux_sym_case_statement_repeat1] = STATE(79), + [sym_identifier] = ACTIONS(1283), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -29347,125 +29968,129 @@ 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(496), + [anon_sym_SEMI] = ACTIONS(623), [anon_sym___extension__] = ACTIONS(27), [anon_sym_typedef] = ACTIONS(29), - [anon_sym_extern] = ACTIONS(47), + [anon_sym_extern] = ACTIONS(49), [anon_sym___attribute__] = ACTIONS(33), [anon_sym___scanf] = ACTIONS(35), [anon_sym___printf] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(37), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [sym_primitive_type] = ACTIONS(51), - [anon_sym_enum] = ACTIONS(53), - [anon_sym_struct] = ACTIONS(55), - [anon_sym_union] = ACTIONS(57), - [anon_sym_if] = ACTIONS(1274), - [anon_sym_else] = ACTIONS(922), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_while] = ACTIONS(1276), - [anon_sym_do] = ACTIONS(69), - [anon_sym_for] = ACTIONS(1278), - [anon_sym_return] = ACTIONS(73), - [anon_sym_break] = ACTIONS(75), - [anon_sym_continue] = ACTIONS(77), - [anon_sym_goto] = ACTIONS(79), - [anon_sym___try] = ACTIONS(1280), - [anon_sym___leave] = ACTIONS(532), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(83), - [anon_sym___alignof__] = ACTIONS(85), - [anon_sym___alignof] = ACTIONS(85), - [anon_sym__alignof] = ACTIONS(85), - [anon_sym_alignof] = ACTIONS(85), - [anon_sym__Alignof] = ACTIONS(85), - [anon_sym_offsetof] = ACTIONS(87), - [anon_sym__Generic] = ACTIONS(89), - [anon_sym_asm] = ACTIONS(91), - [anon_sym___asm__] = ACTIONS(91), - [sym_number_literal] = ACTIONS(159), - [anon_sym_L_SQUOTE] = ACTIONS(95), - [anon_sym_u_SQUOTE] = ACTIONS(95), - [anon_sym_U_SQUOTE] = ACTIONS(95), - [anon_sym_u8_SQUOTE] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(95), - [anon_sym_L_DQUOTE] = ACTIONS(97), - [anon_sym_u_DQUOTE] = ACTIONS(97), - [anon_sym_U_DQUOTE] = ACTIONS(97), - [anon_sym_u8_DQUOTE] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(97), - [sym_true] = ACTIONS(161), - [sym_false] = ACTIONS(161), - [anon_sym_NULL] = ACTIONS(101), - [anon_sym_nullptr] = ACTIONS(101), + [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_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), + [sym_primitive_type] = ACTIONS(53), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [anon_sym_if] = ACTIONS(1285), + [anon_sym_else] = ACTIONS(928), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_while] = ACTIONS(1287), + [anon_sym_do] = ACTIONS(71), + [anon_sym_for] = ACTIONS(1289), + [anon_sym_return] = ACTIONS(75), + [anon_sym_break] = ACTIONS(77), + [anon_sym_continue] = ACTIONS(79), + [anon_sym_goto] = ACTIONS(81), + [anon_sym___try] = ACTIONS(1291), + [anon_sym___leave] = ACTIONS(659), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [sym_number_literal] = ACTIONS(161), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(163), + [sym_false] = ACTIONS(163), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, [84] = { - [sym_declaration] = STATE(577), - [sym__declaration_modifiers] = STATE(861), - [sym__declaration_specifiers] = STATE(1509), - [sym_attribute_specifier] = STATE(861), - [sym_attribute_declaration] = STATE(861), - [sym_ms_declspec_modifier] = STATE(861), - [sym_storage_class_specifier] = STATE(861), - [sym_type_qualifier] = STATE(861), - [sym__type_specifier] = STATE(1040), - [sym_sized_type_specifier] = STATE(1106), - [sym_enum_specifier] = STATE(1106), - [sym_struct_specifier] = STATE(1106), - [sym_union_specifier] = STATE(1106), - [sym__for_statement_body] = STATE(2134), - [sym__expression] = STATE(1251), - [sym__expression_not_binary] = STATE(792), - [sym_comma_expression] = STATE(2135), - [sym_conditional_expression] = STATE(792), - [sym_assignment_expression] = STATE(792), - [sym_pointer_expression] = STATE(901), - [sym_unary_expression] = STATE(792), - [sym_binary_expression] = STATE(792), - [sym_update_expression] = STATE(792), - [sym_cast_expression] = STATE(792), - [sym_sizeof_expression] = STATE(792), - [sym_alignof_expression] = STATE(792), - [sym_offsetof_expression] = STATE(792), - [sym_generic_expression] = STATE(792), - [sym_subscript_expression] = STATE(901), - [sym_call_expression] = STATE(901), - [sym_gnu_asm_expression] = STATE(792), - [sym_field_expression] = STATE(901), - [sym_compound_literal_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(901), - [sym_char_literal] = STATE(792), - [sym_concatenated_string] = STATE(792), - [sym_string_literal] = STATE(675), - [sym_null] = STATE(792), - [sym_macro_type_specifier] = STATE(1106), - [aux_sym__declaration_specifiers_repeat1] = STATE(861), - [aux_sym_sized_type_specifier_repeat1] = STATE(1113), - [sym_identifier] = ACTIONS(1297), + [sym_declaration] = STATE(599), + [sym__declaration_modifiers] = STATE(855), + [sym__declaration_specifiers] = STATE(1544), + [sym_attribute_specifier] = STATE(855), + [sym_attribute_declaration] = STATE(855), + [sym_ms_declspec_modifier] = STATE(855), + [sym_storage_class_specifier] = STATE(855), + [sym_type_qualifier] = STATE(855), + [sym__type_specifier] = STATE(974), + [sym_sized_type_specifier] = STATE(1069), + [sym_enum_specifier] = STATE(1069), + [sym_struct_specifier] = STATE(1069), + [sym_union_specifier] = STATE(1069), + [sym__for_statement_body] = STATE(2190), + [sym__expression] = STATE(1252), + [sym__expression_not_binary] = STATE(809), + [sym_comma_expression] = STATE(2170), + [sym_conditional_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_pointer_expression] = STATE(877), + [sym_unary_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_update_expression] = STATE(809), + [sym_cast_expression] = STATE(809), + [sym_sizeof_expression] = STATE(809), + [sym_alignof_expression] = STATE(809), + [sym_offsetof_expression] = STATE(809), + [sym_generic_expression] = STATE(809), + [sym_subscript_expression] = STATE(877), + [sym_call_expression] = STATE(877), + [sym_gnu_asm_expression] = STATE(809), + [sym_field_expression] = STATE(877), + [sym_compound_literal_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(877), + [sym_char_literal] = STATE(809), + [sym_concatenated_string] = STATE(809), + [sym_string_literal] = STATE(573), + [sym_null] = STATE(809), + [sym_macro_type_specifier] = STATE(1069), + [aux_sym__declaration_specifiers_repeat1] = STATE(855), + [aux_sym_sized_type_specifier_repeat1] = STATE(1085), + [sym_identifier] = ACTIONS(1308), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -29473,111 +30098,115 @@ 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(1299), - [anon_sym___extension__] = ACTIONS(49), - [anon_sym_extern] = ACTIONS(47), + [anon_sym_SEMI] = ACTIONS(1310), + [anon_sym___extension__] = ACTIONS(51), + [anon_sym_extern] = ACTIONS(49), [anon_sym___attribute__] = ACTIONS(33), [anon_sym___scanf] = ACTIONS(35), [anon_sym___printf] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1301), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [sym_primitive_type] = ACTIONS(51), - [anon_sym_enum] = ACTIONS(53), - [anon_sym_struct] = ACTIONS(55), - [anon_sym_union] = ACTIONS(57), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(83), - [anon_sym___alignof__] = ACTIONS(85), - [anon_sym___alignof] = ACTIONS(85), - [anon_sym__alignof] = ACTIONS(85), - [anon_sym_alignof] = ACTIONS(85), - [anon_sym__Alignof] = ACTIONS(85), - [anon_sym_offsetof] = ACTIONS(87), - [anon_sym__Generic] = ACTIONS(89), - [anon_sym_asm] = ACTIONS(91), - [anon_sym___asm__] = ACTIONS(91), - [sym_number_literal] = ACTIONS(159), - [anon_sym_L_SQUOTE] = ACTIONS(95), - [anon_sym_u_SQUOTE] = ACTIONS(95), - [anon_sym_U_SQUOTE] = ACTIONS(95), - [anon_sym_u8_SQUOTE] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(95), - [anon_sym_L_DQUOTE] = ACTIONS(97), - [anon_sym_u_DQUOTE] = ACTIONS(97), - [anon_sym_U_DQUOTE] = ACTIONS(97), - [anon_sym_u8_DQUOTE] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(97), - [sym_true] = ACTIONS(161), - [sym_false] = ACTIONS(161), - [anon_sym_NULL] = ACTIONS(101), - [anon_sym_nullptr] = ACTIONS(101), + [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(1312), + [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), + [sym_primitive_type] = ACTIONS(53), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [sym_number_literal] = ACTIONS(161), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(163), + [sym_false] = ACTIONS(163), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, [85] = { - [sym_declaration] = STATE(577), - [sym__declaration_modifiers] = STATE(861), - [sym__declaration_specifiers] = STATE(1509), - [sym_attribute_specifier] = STATE(861), - [sym_attribute_declaration] = STATE(861), - [sym_ms_declspec_modifier] = STATE(861), - [sym_storage_class_specifier] = STATE(861), - [sym_type_qualifier] = STATE(861), - [sym__type_specifier] = STATE(1040), - [sym_sized_type_specifier] = STATE(1106), - [sym_enum_specifier] = STATE(1106), - [sym_struct_specifier] = STATE(1106), - [sym_union_specifier] = STATE(1106), - [sym__for_statement_body] = STATE(1995), - [sym__expression] = STATE(1251), - [sym__expression_not_binary] = STATE(792), - [sym_comma_expression] = STATE(2135), - [sym_conditional_expression] = STATE(792), - [sym_assignment_expression] = STATE(792), - [sym_pointer_expression] = STATE(901), - [sym_unary_expression] = STATE(792), - [sym_binary_expression] = STATE(792), - [sym_update_expression] = STATE(792), - [sym_cast_expression] = STATE(792), - [sym_sizeof_expression] = STATE(792), - [sym_alignof_expression] = STATE(792), - [sym_offsetof_expression] = STATE(792), - [sym_generic_expression] = STATE(792), - [sym_subscript_expression] = STATE(901), - [sym_call_expression] = STATE(901), - [sym_gnu_asm_expression] = STATE(792), - [sym_field_expression] = STATE(901), - [sym_compound_literal_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(901), - [sym_char_literal] = STATE(792), - [sym_concatenated_string] = STATE(792), - [sym_string_literal] = STATE(675), - [sym_null] = STATE(792), - [sym_macro_type_specifier] = STATE(1106), - [aux_sym__declaration_specifiers_repeat1] = STATE(861), - [aux_sym_sized_type_specifier_repeat1] = STATE(1113), - [sym_identifier] = ACTIONS(1297), + [sym_declaration] = STATE(599), + [sym__declaration_modifiers] = STATE(855), + [sym__declaration_specifiers] = STATE(1544), + [sym_attribute_specifier] = STATE(855), + [sym_attribute_declaration] = STATE(855), + [sym_ms_declspec_modifier] = STATE(855), + [sym_storage_class_specifier] = STATE(855), + [sym_type_qualifier] = STATE(855), + [sym__type_specifier] = STATE(974), + [sym_sized_type_specifier] = STATE(1069), + [sym_enum_specifier] = STATE(1069), + [sym_struct_specifier] = STATE(1069), + [sym_union_specifier] = STATE(1069), + [sym__for_statement_body] = STATE(2167), + [sym__expression] = STATE(1252), + [sym__expression_not_binary] = STATE(809), + [sym_comma_expression] = STATE(2170), + [sym_conditional_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_pointer_expression] = STATE(877), + [sym_unary_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_update_expression] = STATE(809), + [sym_cast_expression] = STATE(809), + [sym_sizeof_expression] = STATE(809), + [sym_alignof_expression] = STATE(809), + [sym_offsetof_expression] = STATE(809), + [sym_generic_expression] = STATE(809), + [sym_subscript_expression] = STATE(877), + [sym_call_expression] = STATE(877), + [sym_gnu_asm_expression] = STATE(809), + [sym_field_expression] = STATE(877), + [sym_compound_literal_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(877), + [sym_char_literal] = STATE(809), + [sym_concatenated_string] = STATE(809), + [sym_string_literal] = STATE(573), + [sym_null] = STATE(809), + [sym_macro_type_specifier] = STATE(1069), + [aux_sym__declaration_specifiers_repeat1] = STATE(855), + [aux_sym_sized_type_specifier_repeat1] = STATE(1085), + [sym_identifier] = ACTIONS(1308), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -29585,111 +30214,115 @@ 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(1299), - [anon_sym___extension__] = ACTIONS(49), - [anon_sym_extern] = ACTIONS(47), + [anon_sym_SEMI] = ACTIONS(1310), + [anon_sym___extension__] = ACTIONS(51), + [anon_sym_extern] = ACTIONS(49), [anon_sym___attribute__] = ACTIONS(33), [anon_sym___scanf] = ACTIONS(35), [anon_sym___printf] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1301), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [sym_primitive_type] = ACTIONS(51), - [anon_sym_enum] = ACTIONS(53), - [anon_sym_struct] = ACTIONS(55), - [anon_sym_union] = ACTIONS(57), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(83), - [anon_sym___alignof__] = ACTIONS(85), - [anon_sym___alignof] = ACTIONS(85), - [anon_sym__alignof] = ACTIONS(85), - [anon_sym_alignof] = ACTIONS(85), - [anon_sym__Alignof] = ACTIONS(85), - [anon_sym_offsetof] = ACTIONS(87), - [anon_sym__Generic] = ACTIONS(89), - [anon_sym_asm] = ACTIONS(91), - [anon_sym___asm__] = ACTIONS(91), - [sym_number_literal] = ACTIONS(159), - [anon_sym_L_SQUOTE] = ACTIONS(95), - [anon_sym_u_SQUOTE] = ACTIONS(95), - [anon_sym_U_SQUOTE] = ACTIONS(95), - [anon_sym_u8_SQUOTE] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(95), - [anon_sym_L_DQUOTE] = ACTIONS(97), - [anon_sym_u_DQUOTE] = ACTIONS(97), - [anon_sym_U_DQUOTE] = ACTIONS(97), - [anon_sym_u8_DQUOTE] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(97), - [sym_true] = ACTIONS(161), - [sym_false] = ACTIONS(161), - [anon_sym_NULL] = ACTIONS(101), - [anon_sym_nullptr] = ACTIONS(101), + [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(1312), + [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), + [sym_primitive_type] = ACTIONS(53), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [sym_number_literal] = ACTIONS(161), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(163), + [sym_false] = ACTIONS(163), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, [86] = { - [sym_declaration] = STATE(577), - [sym__declaration_modifiers] = STATE(861), - [sym__declaration_specifiers] = STATE(1509), - [sym_attribute_specifier] = STATE(861), - [sym_attribute_declaration] = STATE(861), - [sym_ms_declspec_modifier] = STATE(861), - [sym_storage_class_specifier] = STATE(861), - [sym_type_qualifier] = STATE(861), - [sym__type_specifier] = STATE(1040), - [sym_sized_type_specifier] = STATE(1106), - [sym_enum_specifier] = STATE(1106), - [sym_struct_specifier] = STATE(1106), - [sym_union_specifier] = STATE(1106), - [sym__for_statement_body] = STATE(2074), - [sym__expression] = STATE(1251), - [sym__expression_not_binary] = STATE(792), - [sym_comma_expression] = STATE(2135), - [sym_conditional_expression] = STATE(792), - [sym_assignment_expression] = STATE(792), - [sym_pointer_expression] = STATE(901), - [sym_unary_expression] = STATE(792), - [sym_binary_expression] = STATE(792), - [sym_update_expression] = STATE(792), - [sym_cast_expression] = STATE(792), - [sym_sizeof_expression] = STATE(792), - [sym_alignof_expression] = STATE(792), - [sym_offsetof_expression] = STATE(792), - [sym_generic_expression] = STATE(792), - [sym_subscript_expression] = STATE(901), - [sym_call_expression] = STATE(901), - [sym_gnu_asm_expression] = STATE(792), - [sym_field_expression] = STATE(901), - [sym_compound_literal_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(901), - [sym_char_literal] = STATE(792), - [sym_concatenated_string] = STATE(792), - [sym_string_literal] = STATE(675), - [sym_null] = STATE(792), - [sym_macro_type_specifier] = STATE(1106), - [aux_sym__declaration_specifiers_repeat1] = STATE(861), - [aux_sym_sized_type_specifier_repeat1] = STATE(1113), - [sym_identifier] = ACTIONS(1297), + [sym_declaration] = STATE(599), + [sym__declaration_modifiers] = STATE(855), + [sym__declaration_specifiers] = STATE(1544), + [sym_attribute_specifier] = STATE(855), + [sym_attribute_declaration] = STATE(855), + [sym_ms_declspec_modifier] = STATE(855), + [sym_storage_class_specifier] = STATE(855), + [sym_type_qualifier] = STATE(855), + [sym__type_specifier] = STATE(974), + [sym_sized_type_specifier] = STATE(1069), + [sym_enum_specifier] = STATE(1069), + [sym_struct_specifier] = STATE(1069), + [sym_union_specifier] = STATE(1069), + [sym__for_statement_body] = STATE(2219), + [sym__expression] = STATE(1252), + [sym__expression_not_binary] = STATE(809), + [sym_comma_expression] = STATE(2170), + [sym_conditional_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_pointer_expression] = STATE(877), + [sym_unary_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_update_expression] = STATE(809), + [sym_cast_expression] = STATE(809), + [sym_sizeof_expression] = STATE(809), + [sym_alignof_expression] = STATE(809), + [sym_offsetof_expression] = STATE(809), + [sym_generic_expression] = STATE(809), + [sym_subscript_expression] = STATE(877), + [sym_call_expression] = STATE(877), + [sym_gnu_asm_expression] = STATE(809), + [sym_field_expression] = STATE(877), + [sym_compound_literal_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(877), + [sym_char_literal] = STATE(809), + [sym_concatenated_string] = STATE(809), + [sym_string_literal] = STATE(573), + [sym_null] = STATE(809), + [sym_macro_type_specifier] = STATE(1069), + [aux_sym__declaration_specifiers_repeat1] = STATE(855), + [aux_sym_sized_type_specifier_repeat1] = STATE(1085), + [sym_identifier] = ACTIONS(1308), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -29697,111 +30330,115 @@ 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(1299), - [anon_sym___extension__] = ACTIONS(49), - [anon_sym_extern] = ACTIONS(47), + [anon_sym_SEMI] = ACTIONS(1310), + [anon_sym___extension__] = ACTIONS(51), + [anon_sym_extern] = ACTIONS(49), [anon_sym___attribute__] = ACTIONS(33), [anon_sym___scanf] = ACTIONS(35), [anon_sym___printf] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1301), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [sym_primitive_type] = ACTIONS(51), - [anon_sym_enum] = ACTIONS(53), - [anon_sym_struct] = ACTIONS(55), - [anon_sym_union] = ACTIONS(57), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(83), - [anon_sym___alignof__] = ACTIONS(85), - [anon_sym___alignof] = ACTIONS(85), - [anon_sym__alignof] = ACTIONS(85), - [anon_sym_alignof] = ACTIONS(85), - [anon_sym__Alignof] = ACTIONS(85), - [anon_sym_offsetof] = ACTIONS(87), - [anon_sym__Generic] = ACTIONS(89), - [anon_sym_asm] = ACTIONS(91), - [anon_sym___asm__] = ACTIONS(91), - [sym_number_literal] = ACTIONS(159), - [anon_sym_L_SQUOTE] = ACTIONS(95), - [anon_sym_u_SQUOTE] = ACTIONS(95), - [anon_sym_U_SQUOTE] = ACTIONS(95), - [anon_sym_u8_SQUOTE] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(95), - [anon_sym_L_DQUOTE] = ACTIONS(97), - [anon_sym_u_DQUOTE] = ACTIONS(97), - [anon_sym_U_DQUOTE] = ACTIONS(97), - [anon_sym_u8_DQUOTE] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(97), - [sym_true] = ACTIONS(161), - [sym_false] = ACTIONS(161), - [anon_sym_NULL] = ACTIONS(101), - [anon_sym_nullptr] = ACTIONS(101), + [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(1312), + [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), + [sym_primitive_type] = ACTIONS(53), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [sym_number_literal] = ACTIONS(161), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(163), + [sym_false] = ACTIONS(163), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, [87] = { - [sym_declaration] = STATE(577), - [sym__declaration_modifiers] = STATE(861), - [sym__declaration_specifiers] = STATE(1509), - [sym_attribute_specifier] = STATE(861), - [sym_attribute_declaration] = STATE(861), - [sym_ms_declspec_modifier] = STATE(861), - [sym_storage_class_specifier] = STATE(861), - [sym_type_qualifier] = STATE(861), - [sym__type_specifier] = STATE(1040), - [sym_sized_type_specifier] = STATE(1106), - [sym_enum_specifier] = STATE(1106), - [sym_struct_specifier] = STATE(1106), - [sym_union_specifier] = STATE(1106), - [sym__for_statement_body] = STATE(2048), - [sym__expression] = STATE(1251), - [sym__expression_not_binary] = STATE(792), - [sym_comma_expression] = STATE(2135), - [sym_conditional_expression] = STATE(792), - [sym_assignment_expression] = STATE(792), - [sym_pointer_expression] = STATE(901), - [sym_unary_expression] = STATE(792), - [sym_binary_expression] = STATE(792), - [sym_update_expression] = STATE(792), - [sym_cast_expression] = STATE(792), - [sym_sizeof_expression] = STATE(792), - [sym_alignof_expression] = STATE(792), - [sym_offsetof_expression] = STATE(792), - [sym_generic_expression] = STATE(792), - [sym_subscript_expression] = STATE(901), - [sym_call_expression] = STATE(901), - [sym_gnu_asm_expression] = STATE(792), - [sym_field_expression] = STATE(901), - [sym_compound_literal_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(901), - [sym_char_literal] = STATE(792), - [sym_concatenated_string] = STATE(792), - [sym_string_literal] = STATE(675), - [sym_null] = STATE(792), - [sym_macro_type_specifier] = STATE(1106), - [aux_sym__declaration_specifiers_repeat1] = STATE(861), - [aux_sym_sized_type_specifier_repeat1] = STATE(1113), - [sym_identifier] = ACTIONS(1297), + [sym_declaration] = STATE(599), + [sym__declaration_modifiers] = STATE(855), + [sym__declaration_specifiers] = STATE(1544), + [sym_attribute_specifier] = STATE(855), + [sym_attribute_declaration] = STATE(855), + [sym_ms_declspec_modifier] = STATE(855), + [sym_storage_class_specifier] = STATE(855), + [sym_type_qualifier] = STATE(855), + [sym__type_specifier] = STATE(974), + [sym_sized_type_specifier] = STATE(1069), + [sym_enum_specifier] = STATE(1069), + [sym_struct_specifier] = STATE(1069), + [sym_union_specifier] = STATE(1069), + [sym__for_statement_body] = STATE(2068), + [sym__expression] = STATE(1252), + [sym__expression_not_binary] = STATE(809), + [sym_comma_expression] = STATE(2170), + [sym_conditional_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_pointer_expression] = STATE(877), + [sym_unary_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_update_expression] = STATE(809), + [sym_cast_expression] = STATE(809), + [sym_sizeof_expression] = STATE(809), + [sym_alignof_expression] = STATE(809), + [sym_offsetof_expression] = STATE(809), + [sym_generic_expression] = STATE(809), + [sym_subscript_expression] = STATE(877), + [sym_call_expression] = STATE(877), + [sym_gnu_asm_expression] = STATE(809), + [sym_field_expression] = STATE(877), + [sym_compound_literal_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(877), + [sym_char_literal] = STATE(809), + [sym_concatenated_string] = STATE(809), + [sym_string_literal] = STATE(573), + [sym_null] = STATE(809), + [sym_macro_type_specifier] = STATE(1069), + [aux_sym__declaration_specifiers_repeat1] = STATE(855), + [aux_sym_sized_type_specifier_repeat1] = STATE(1085), + [sym_identifier] = ACTIONS(1308), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -29809,111 +30446,115 @@ 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(1299), - [anon_sym___extension__] = ACTIONS(49), - [anon_sym_extern] = ACTIONS(47), + [anon_sym_SEMI] = ACTIONS(1310), + [anon_sym___extension__] = ACTIONS(51), + [anon_sym_extern] = ACTIONS(49), [anon_sym___attribute__] = ACTIONS(33), [anon_sym___scanf] = ACTIONS(35), [anon_sym___printf] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1301), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [sym_primitive_type] = ACTIONS(51), - [anon_sym_enum] = ACTIONS(53), - [anon_sym_struct] = ACTIONS(55), - [anon_sym_union] = ACTIONS(57), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(83), - [anon_sym___alignof__] = ACTIONS(85), - [anon_sym___alignof] = ACTIONS(85), - [anon_sym__alignof] = ACTIONS(85), - [anon_sym_alignof] = ACTIONS(85), - [anon_sym__Alignof] = ACTIONS(85), - [anon_sym_offsetof] = ACTIONS(87), - [anon_sym__Generic] = ACTIONS(89), - [anon_sym_asm] = ACTIONS(91), - [anon_sym___asm__] = ACTIONS(91), - [sym_number_literal] = ACTIONS(159), - [anon_sym_L_SQUOTE] = ACTIONS(95), - [anon_sym_u_SQUOTE] = ACTIONS(95), - [anon_sym_U_SQUOTE] = ACTIONS(95), - [anon_sym_u8_SQUOTE] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(95), - [anon_sym_L_DQUOTE] = ACTIONS(97), - [anon_sym_u_DQUOTE] = ACTIONS(97), - [anon_sym_U_DQUOTE] = ACTIONS(97), - [anon_sym_u8_DQUOTE] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(97), - [sym_true] = ACTIONS(161), - [sym_false] = ACTIONS(161), - [anon_sym_NULL] = ACTIONS(101), - [anon_sym_nullptr] = ACTIONS(101), + [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(1312), + [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), + [sym_primitive_type] = ACTIONS(53), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [sym_number_literal] = ACTIONS(161), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(163), + [sym_false] = ACTIONS(163), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, [88] = { - [sym_declaration] = STATE(577), - [sym__declaration_modifiers] = STATE(861), - [sym__declaration_specifiers] = STATE(1509), - [sym_attribute_specifier] = STATE(861), - [sym_attribute_declaration] = STATE(861), - [sym_ms_declspec_modifier] = STATE(861), - [sym_storage_class_specifier] = STATE(861), - [sym_type_qualifier] = STATE(861), - [sym__type_specifier] = STATE(1040), - [sym_sized_type_specifier] = STATE(1106), - [sym_enum_specifier] = STATE(1106), - [sym_struct_specifier] = STATE(1106), - [sym_union_specifier] = STATE(1106), - [sym__for_statement_body] = STATE(2030), - [sym__expression] = STATE(1251), - [sym__expression_not_binary] = STATE(792), - [sym_comma_expression] = STATE(2135), - [sym_conditional_expression] = STATE(792), - [sym_assignment_expression] = STATE(792), - [sym_pointer_expression] = STATE(901), - [sym_unary_expression] = STATE(792), - [sym_binary_expression] = STATE(792), - [sym_update_expression] = STATE(792), - [sym_cast_expression] = STATE(792), - [sym_sizeof_expression] = STATE(792), - [sym_alignof_expression] = STATE(792), - [sym_offsetof_expression] = STATE(792), - [sym_generic_expression] = STATE(792), - [sym_subscript_expression] = STATE(901), - [sym_call_expression] = STATE(901), - [sym_gnu_asm_expression] = STATE(792), - [sym_field_expression] = STATE(901), - [sym_compound_literal_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(901), - [sym_char_literal] = STATE(792), - [sym_concatenated_string] = STATE(792), - [sym_string_literal] = STATE(675), - [sym_null] = STATE(792), - [sym_macro_type_specifier] = STATE(1106), - [aux_sym__declaration_specifiers_repeat1] = STATE(861), - [aux_sym_sized_type_specifier_repeat1] = STATE(1113), - [sym_identifier] = ACTIONS(1297), + [sym_declaration] = STATE(599), + [sym__declaration_modifiers] = STATE(855), + [sym__declaration_specifiers] = STATE(1544), + [sym_attribute_specifier] = STATE(855), + [sym_attribute_declaration] = STATE(855), + [sym_ms_declspec_modifier] = STATE(855), + [sym_storage_class_specifier] = STATE(855), + [sym_type_qualifier] = STATE(855), + [sym__type_specifier] = STATE(974), + [sym_sized_type_specifier] = STATE(1069), + [sym_enum_specifier] = STATE(1069), + [sym_struct_specifier] = STATE(1069), + [sym_union_specifier] = STATE(1069), + [sym__for_statement_body] = STATE(2147), + [sym__expression] = STATE(1252), + [sym__expression_not_binary] = STATE(809), + [sym_comma_expression] = STATE(2170), + [sym_conditional_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_pointer_expression] = STATE(877), + [sym_unary_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_update_expression] = STATE(809), + [sym_cast_expression] = STATE(809), + [sym_sizeof_expression] = STATE(809), + [sym_alignof_expression] = STATE(809), + [sym_offsetof_expression] = STATE(809), + [sym_generic_expression] = STATE(809), + [sym_subscript_expression] = STATE(877), + [sym_call_expression] = STATE(877), + [sym_gnu_asm_expression] = STATE(809), + [sym_field_expression] = STATE(877), + [sym_compound_literal_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(877), + [sym_char_literal] = STATE(809), + [sym_concatenated_string] = STATE(809), + [sym_string_literal] = STATE(573), + [sym_null] = STATE(809), + [sym_macro_type_specifier] = STATE(1069), + [aux_sym__declaration_specifiers_repeat1] = STATE(855), + [aux_sym_sized_type_specifier_repeat1] = STATE(1085), + [sym_identifier] = ACTIONS(1308), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -29921,111 +30562,115 @@ 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(1299), - [anon_sym___extension__] = ACTIONS(49), - [anon_sym_extern] = ACTIONS(47), + [anon_sym_SEMI] = ACTIONS(1310), + [anon_sym___extension__] = ACTIONS(51), + [anon_sym_extern] = ACTIONS(49), [anon_sym___attribute__] = ACTIONS(33), [anon_sym___scanf] = ACTIONS(35), [anon_sym___printf] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1301), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [sym_primitive_type] = ACTIONS(51), - [anon_sym_enum] = ACTIONS(53), - [anon_sym_struct] = ACTIONS(55), - [anon_sym_union] = ACTIONS(57), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(83), - [anon_sym___alignof__] = ACTIONS(85), - [anon_sym___alignof] = ACTIONS(85), - [anon_sym__alignof] = ACTIONS(85), - [anon_sym_alignof] = ACTIONS(85), - [anon_sym__Alignof] = ACTIONS(85), - [anon_sym_offsetof] = ACTIONS(87), - [anon_sym__Generic] = ACTIONS(89), - [anon_sym_asm] = ACTIONS(91), - [anon_sym___asm__] = ACTIONS(91), - [sym_number_literal] = ACTIONS(159), - [anon_sym_L_SQUOTE] = ACTIONS(95), - [anon_sym_u_SQUOTE] = ACTIONS(95), - [anon_sym_U_SQUOTE] = ACTIONS(95), - [anon_sym_u8_SQUOTE] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(95), - [anon_sym_L_DQUOTE] = ACTIONS(97), - [anon_sym_u_DQUOTE] = ACTIONS(97), - [anon_sym_U_DQUOTE] = ACTIONS(97), - [anon_sym_u8_DQUOTE] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(97), - [sym_true] = ACTIONS(161), - [sym_false] = ACTIONS(161), - [anon_sym_NULL] = ACTIONS(101), - [anon_sym_nullptr] = ACTIONS(101), + [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(1312), + [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), + [sym_primitive_type] = ACTIONS(53), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [sym_number_literal] = ACTIONS(161), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(163), + [sym_false] = ACTIONS(163), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, [89] = { - [sym_declaration] = STATE(577), - [sym__declaration_modifiers] = STATE(861), - [sym__declaration_specifiers] = STATE(1509), - [sym_attribute_specifier] = STATE(861), - [sym_attribute_declaration] = STATE(861), - [sym_ms_declspec_modifier] = STATE(861), - [sym_storage_class_specifier] = STATE(861), - [sym_type_qualifier] = STATE(861), - [sym__type_specifier] = STATE(1040), - [sym_sized_type_specifier] = STATE(1106), - [sym_enum_specifier] = STATE(1106), - [sym_struct_specifier] = STATE(1106), - [sym_union_specifier] = STATE(1106), - [sym__for_statement_body] = STATE(2079), - [sym__expression] = STATE(1251), - [sym__expression_not_binary] = STATE(792), - [sym_comma_expression] = STATE(2135), - [sym_conditional_expression] = STATE(792), - [sym_assignment_expression] = STATE(792), - [sym_pointer_expression] = STATE(901), - [sym_unary_expression] = STATE(792), - [sym_binary_expression] = STATE(792), - [sym_update_expression] = STATE(792), - [sym_cast_expression] = STATE(792), - [sym_sizeof_expression] = STATE(792), - [sym_alignof_expression] = STATE(792), - [sym_offsetof_expression] = STATE(792), - [sym_generic_expression] = STATE(792), - [sym_subscript_expression] = STATE(901), - [sym_call_expression] = STATE(901), - [sym_gnu_asm_expression] = STATE(792), - [sym_field_expression] = STATE(901), - [sym_compound_literal_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(901), - [sym_char_literal] = STATE(792), - [sym_concatenated_string] = STATE(792), - [sym_string_literal] = STATE(675), - [sym_null] = STATE(792), - [sym_macro_type_specifier] = STATE(1106), - [aux_sym__declaration_specifiers_repeat1] = STATE(861), - [aux_sym_sized_type_specifier_repeat1] = STATE(1113), - [sym_identifier] = ACTIONS(1297), + [sym_declaration] = STATE(599), + [sym__declaration_modifiers] = STATE(855), + [sym__declaration_specifiers] = STATE(1544), + [sym_attribute_specifier] = STATE(855), + [sym_attribute_declaration] = STATE(855), + [sym_ms_declspec_modifier] = STATE(855), + [sym_storage_class_specifier] = STATE(855), + [sym_type_qualifier] = STATE(855), + [sym__type_specifier] = STATE(974), + [sym_sized_type_specifier] = STATE(1069), + [sym_enum_specifier] = STATE(1069), + [sym_struct_specifier] = STATE(1069), + [sym_union_specifier] = STATE(1069), + [sym__for_statement_body] = STATE(2121), + [sym__expression] = STATE(1252), + [sym__expression_not_binary] = STATE(809), + [sym_comma_expression] = STATE(2170), + [sym_conditional_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_pointer_expression] = STATE(877), + [sym_unary_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_update_expression] = STATE(809), + [sym_cast_expression] = STATE(809), + [sym_sizeof_expression] = STATE(809), + [sym_alignof_expression] = STATE(809), + [sym_offsetof_expression] = STATE(809), + [sym_generic_expression] = STATE(809), + [sym_subscript_expression] = STATE(877), + [sym_call_expression] = STATE(877), + [sym_gnu_asm_expression] = STATE(809), + [sym_field_expression] = STATE(877), + [sym_compound_literal_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(877), + [sym_char_literal] = STATE(809), + [sym_concatenated_string] = STATE(809), + [sym_string_literal] = STATE(573), + [sym_null] = STATE(809), + [sym_macro_type_specifier] = STATE(1069), + [aux_sym__declaration_specifiers_repeat1] = STATE(855), + [aux_sym_sized_type_specifier_repeat1] = STATE(1085), + [sym_identifier] = ACTIONS(1308), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -30033,33663 +30678,35995 @@ 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(1299), - [anon_sym___extension__] = ACTIONS(49), - [anon_sym_extern] = ACTIONS(47), + [anon_sym_SEMI] = ACTIONS(1310), + [anon_sym___extension__] = ACTIONS(51), + [anon_sym_extern] = ACTIONS(49), [anon_sym___attribute__] = ACTIONS(33), [anon_sym___scanf] = ACTIONS(35), [anon_sym___printf] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1301), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [sym_primitive_type] = ACTIONS(51), - [anon_sym_enum] = ACTIONS(53), - [anon_sym_struct] = ACTIONS(55), - [anon_sym_union] = ACTIONS(57), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(83), - [anon_sym___alignof__] = ACTIONS(85), - [anon_sym___alignof] = ACTIONS(85), - [anon_sym__alignof] = ACTIONS(85), - [anon_sym_alignof] = ACTIONS(85), - [anon_sym__Alignof] = ACTIONS(85), - [anon_sym_offsetof] = ACTIONS(87), - [anon_sym__Generic] = ACTIONS(89), - [anon_sym_asm] = ACTIONS(91), - [anon_sym___asm__] = ACTIONS(91), - [sym_number_literal] = ACTIONS(159), - [anon_sym_L_SQUOTE] = ACTIONS(95), - [anon_sym_u_SQUOTE] = ACTIONS(95), - [anon_sym_U_SQUOTE] = ACTIONS(95), - [anon_sym_u8_SQUOTE] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(95), - [anon_sym_L_DQUOTE] = ACTIONS(97), - [anon_sym_u_DQUOTE] = ACTIONS(97), - [anon_sym_U_DQUOTE] = ACTIONS(97), - [anon_sym_u8_DQUOTE] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(97), - [sym_true] = ACTIONS(161), - [sym_false] = ACTIONS(161), - [anon_sym_NULL] = ACTIONS(101), - [anon_sym_nullptr] = ACTIONS(101), + [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(1312), + [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), + [sym_primitive_type] = ACTIONS(53), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [sym_number_literal] = ACTIONS(161), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(163), + [sym_false] = ACTIONS(163), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, [90] = { - [sym_else_clause] = STATE(120), - [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_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), - [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_else] = ACTIONS(1307), - [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_else_clause] = STATE(113), + [sym_identifier] = ACTIONS(1314), + [aux_sym_preproc_include_token1] = ACTIONS(1314), + [aux_sym_preproc_def_token1] = ACTIONS(1314), + [aux_sym_preproc_if_token1] = ACTIONS(1314), + [aux_sym_preproc_if_token2] = ACTIONS(1314), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1314), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1314), + [aux_sym_preproc_else_token1] = ACTIONS(1314), + [aux_sym_preproc_elif_token1] = ACTIONS(1314), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1314), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1314), + [sym_preproc_directive] = ACTIONS(1314), + [anon_sym_LPAREN2] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(1316), + [anon_sym_TILDE] = ACTIONS(1316), + [anon_sym_DASH] = ACTIONS(1314), + [anon_sym_PLUS] = ACTIONS(1314), + [anon_sym_STAR] = ACTIONS(1316), + [anon_sym_AMP] = ACTIONS(1316), + [anon_sym_SEMI] = ACTIONS(1316), + [anon_sym___extension__] = ACTIONS(1314), + [anon_sym_typedef] = ACTIONS(1314), + [anon_sym_extern] = ACTIONS(1314), + [anon_sym___attribute__] = ACTIONS(1314), + [anon_sym___scanf] = ACTIONS(1314), + [anon_sym___printf] = ACTIONS(1314), + [anon_sym___read_mostly] = ACTIONS(1314), + [anon_sym___must_hold] = ACTIONS(1314), + [anon_sym___ro_after_init] = ACTIONS(1314), + [anon_sym___init] = ACTIONS(1314), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1316), + [anon_sym___declspec] = ACTIONS(1314), + [anon_sym___cdecl] = ACTIONS(1314), + [anon_sym___clrcall] = ACTIONS(1314), + [anon_sym___stdcall] = ACTIONS(1314), + [anon_sym___fastcall] = ACTIONS(1314), + [anon_sym___thiscall] = ACTIONS(1314), + [anon_sym___vectorcall] = ACTIONS(1314), + [anon_sym_LBRACE] = ACTIONS(1316), + [anon_sym_signed] = ACTIONS(1314), + [anon_sym_unsigned] = ACTIONS(1314), + [anon_sym_long] = ACTIONS(1314), + [anon_sym_short] = ACTIONS(1314), + [anon_sym_static] = ACTIONS(1314), + [anon_sym_auto] = ACTIONS(1314), + [anon_sym_register] = ACTIONS(1314), + [anon_sym_inline] = ACTIONS(1314), + [anon_sym___inline] = ACTIONS(1314), + [anon_sym___inline__] = ACTIONS(1314), + [anon_sym___forceinline] = ACTIONS(1314), + [anon_sym_thread_local] = ACTIONS(1314), + [anon_sym___thread] = ACTIONS(1314), + [anon_sym_const] = ACTIONS(1314), + [anon_sym_constexpr] = ACTIONS(1314), + [anon_sym_volatile] = ACTIONS(1314), + [anon_sym_restrict] = ACTIONS(1314), + [anon_sym___restrict__] = ACTIONS(1314), + [anon_sym__Atomic] = ACTIONS(1314), + [anon_sym__Noreturn] = ACTIONS(1314), + [anon_sym_noreturn] = ACTIONS(1314), + [sym_primitive_type] = ACTIONS(1314), + [anon_sym_enum] = ACTIONS(1314), + [anon_sym_struct] = ACTIONS(1314), + [anon_sym_union] = ACTIONS(1314), + [anon_sym_if] = ACTIONS(1314), + [anon_sym_else] = ACTIONS(1318), + [anon_sym_switch] = ACTIONS(1314), + [anon_sym_case] = ACTIONS(1314), + [anon_sym_default] = ACTIONS(1314), + [anon_sym_while] = ACTIONS(1314), + [anon_sym_do] = ACTIONS(1314), + [anon_sym_for] = ACTIONS(1314), + [anon_sym_return] = ACTIONS(1314), + [anon_sym_break] = ACTIONS(1314), + [anon_sym_continue] = ACTIONS(1314), + [anon_sym_goto] = ACTIONS(1314), + [anon_sym___try] = ACTIONS(1314), + [anon_sym___leave] = ACTIONS(1314), + [anon_sym_DASH_DASH] = ACTIONS(1316), + [anon_sym_PLUS_PLUS] = ACTIONS(1316), + [anon_sym_sizeof] = ACTIONS(1314), + [anon_sym___alignof__] = ACTIONS(1314), + [anon_sym___alignof] = ACTIONS(1314), + [anon_sym__alignof] = ACTIONS(1314), + [anon_sym_alignof] = ACTIONS(1314), + [anon_sym__Alignof] = ACTIONS(1314), + [anon_sym_offsetof] = ACTIONS(1314), + [anon_sym__Generic] = ACTIONS(1314), + [anon_sym_asm] = ACTIONS(1314), + [anon_sym___asm__] = ACTIONS(1314), + [sym_number_literal] = ACTIONS(1316), + [anon_sym_L_SQUOTE] = ACTIONS(1316), + [anon_sym_u_SQUOTE] = ACTIONS(1316), + [anon_sym_U_SQUOTE] = ACTIONS(1316), + [anon_sym_u8_SQUOTE] = ACTIONS(1316), + [anon_sym_SQUOTE] = ACTIONS(1316), + [anon_sym_L_DQUOTE] = ACTIONS(1316), + [anon_sym_u_DQUOTE] = ACTIONS(1316), + [anon_sym_U_DQUOTE] = ACTIONS(1316), + [anon_sym_u8_DQUOTE] = ACTIONS(1316), + [anon_sym_DQUOTE] = ACTIONS(1316), + [sym_true] = ACTIONS(1314), + [sym_false] = ACTIONS(1314), + [anon_sym_NULL] = ACTIONS(1314), + [anon_sym_nullptr] = ACTIONS(1314), [sym_comment] = ACTIONS(3), }, [91] = { - [ts_builtin_sym_end] = ACTIONS(1309), - [sym_identifier] = ACTIONS(1311), - [aux_sym_preproc_include_token1] = ACTIONS(1311), - [aux_sym_preproc_def_token1] = ACTIONS(1311), - [anon_sym_COMMA] = ACTIONS(1309), - [anon_sym_RPAREN] = ACTIONS(1309), - [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(1309), - [anon_sym_BANG] = ACTIONS(1309), - [anon_sym_TILDE] = ACTIONS(1309), - [anon_sym_DASH] = ACTIONS(1311), - [anon_sym_PLUS] = ACTIONS(1311), - [anon_sym_STAR] = ACTIONS(1309), - [anon_sym_AMP] = ACTIONS(1309), - [anon_sym_SEMI] = ACTIONS(1309), - [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_LBRACK_LBRACK] = ACTIONS(1309), - [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(1309), - [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), - [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_else] = 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___except] = ACTIONS(1311), - [anon_sym___finally] = ACTIONS(1311), - [anon_sym___leave] = ACTIONS(1311), - [anon_sym_DASH_DASH] = ACTIONS(1309), - [anon_sym_PLUS_PLUS] = ACTIONS(1309), - [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(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(1311), - [sym_false] = ACTIONS(1311), - [anon_sym_NULL] = ACTIONS(1311), - [anon_sym_nullptr] = ACTIONS(1311), + [sym_identifier] = ACTIONS(1320), + [aux_sym_preproc_include_token1] = ACTIONS(1320), + [aux_sym_preproc_def_token1] = ACTIONS(1320), + [aux_sym_preproc_if_token1] = ACTIONS(1320), + [aux_sym_preproc_if_token2] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1320), + [aux_sym_preproc_else_token1] = ACTIONS(1320), + [aux_sym_preproc_elif_token1] = ACTIONS(1320), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1320), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1320), + [sym_preproc_directive] = ACTIONS(1320), + [anon_sym_LPAREN2] = ACTIONS(1322), + [anon_sym_BANG] = ACTIONS(1322), + [anon_sym_TILDE] = ACTIONS(1322), + [anon_sym_DASH] = ACTIONS(1320), + [anon_sym_PLUS] = ACTIONS(1320), + [anon_sym_STAR] = ACTIONS(1322), + [anon_sym_AMP] = ACTIONS(1322), + [anon_sym_SEMI] = ACTIONS(1322), + [anon_sym___extension__] = ACTIONS(1320), + [anon_sym_typedef] = ACTIONS(1320), + [anon_sym_extern] = ACTIONS(1320), + [anon_sym___attribute__] = ACTIONS(1320), + [anon_sym___scanf] = ACTIONS(1320), + [anon_sym___printf] = ACTIONS(1320), + [anon_sym___read_mostly] = ACTIONS(1320), + [anon_sym___must_hold] = ACTIONS(1320), + [anon_sym___ro_after_init] = ACTIONS(1320), + [anon_sym___init] = ACTIONS(1320), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1322), + [anon_sym___declspec] = ACTIONS(1320), + [anon_sym___cdecl] = ACTIONS(1320), + [anon_sym___clrcall] = ACTIONS(1320), + [anon_sym___stdcall] = ACTIONS(1320), + [anon_sym___fastcall] = ACTIONS(1320), + [anon_sym___thiscall] = ACTIONS(1320), + [anon_sym___vectorcall] = ACTIONS(1320), + [anon_sym_LBRACE] = ACTIONS(1322), + [anon_sym_signed] = ACTIONS(1320), + [anon_sym_unsigned] = ACTIONS(1320), + [anon_sym_long] = ACTIONS(1320), + [anon_sym_short] = ACTIONS(1320), + [anon_sym_static] = ACTIONS(1320), + [anon_sym_auto] = ACTIONS(1320), + [anon_sym_register] = ACTIONS(1320), + [anon_sym_inline] = ACTIONS(1320), + [anon_sym___inline] = ACTIONS(1320), + [anon_sym___inline__] = ACTIONS(1320), + [anon_sym___forceinline] = ACTIONS(1320), + [anon_sym_thread_local] = ACTIONS(1320), + [anon_sym___thread] = ACTIONS(1320), + [anon_sym_const] = ACTIONS(1320), + [anon_sym_constexpr] = ACTIONS(1320), + [anon_sym_volatile] = ACTIONS(1320), + [anon_sym_restrict] = ACTIONS(1320), + [anon_sym___restrict__] = ACTIONS(1320), + [anon_sym__Atomic] = ACTIONS(1320), + [anon_sym__Noreturn] = ACTIONS(1320), + [anon_sym_noreturn] = ACTIONS(1320), + [sym_primitive_type] = ACTIONS(1320), + [anon_sym_enum] = ACTIONS(1320), + [anon_sym_struct] = ACTIONS(1320), + [anon_sym_union] = ACTIONS(1320), + [anon_sym_if] = ACTIONS(1320), + [anon_sym_else] = ACTIONS(1320), + [anon_sym_switch] = ACTIONS(1320), + [anon_sym_case] = ACTIONS(1320), + [anon_sym_default] = ACTIONS(1320), + [anon_sym_while] = ACTIONS(1320), + [anon_sym_do] = ACTIONS(1320), + [anon_sym_for] = ACTIONS(1320), + [anon_sym_return] = ACTIONS(1320), + [anon_sym_break] = ACTIONS(1320), + [anon_sym_continue] = ACTIONS(1320), + [anon_sym_goto] = ACTIONS(1320), + [anon_sym___try] = ACTIONS(1320), + [anon_sym___leave] = ACTIONS(1320), + [anon_sym_DASH_DASH] = ACTIONS(1322), + [anon_sym_PLUS_PLUS] = ACTIONS(1322), + [anon_sym_sizeof] = ACTIONS(1320), + [anon_sym___alignof__] = ACTIONS(1320), + [anon_sym___alignof] = ACTIONS(1320), + [anon_sym__alignof] = ACTIONS(1320), + [anon_sym_alignof] = ACTIONS(1320), + [anon_sym__Alignof] = ACTIONS(1320), + [anon_sym_offsetof] = ACTIONS(1320), + [anon_sym__Generic] = ACTIONS(1320), + [anon_sym_asm] = ACTIONS(1320), + [anon_sym___asm__] = ACTIONS(1320), + [sym_number_literal] = ACTIONS(1322), + [anon_sym_L_SQUOTE] = ACTIONS(1322), + [anon_sym_u_SQUOTE] = ACTIONS(1322), + [anon_sym_U_SQUOTE] = ACTIONS(1322), + [anon_sym_u8_SQUOTE] = ACTIONS(1322), + [anon_sym_SQUOTE] = ACTIONS(1322), + [anon_sym_L_DQUOTE] = ACTIONS(1322), + [anon_sym_u_DQUOTE] = ACTIONS(1322), + [anon_sym_U_DQUOTE] = ACTIONS(1322), + [anon_sym_u8_DQUOTE] = ACTIONS(1322), + [anon_sym_DQUOTE] = ACTIONS(1322), + [sym_true] = ACTIONS(1320), + [sym_false] = ACTIONS(1320), + [anon_sym_NULL] = ACTIONS(1320), + [anon_sym_nullptr] = ACTIONS(1320), [sym_comment] = ACTIONS(3), }, [92] = { - [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_LBRACK_LBRACK] = ACTIONS(1315), - [anon_sym___declspec] = 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), - [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_else] = 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_identifier] = ACTIONS(1324), + [aux_sym_preproc_include_token1] = ACTIONS(1324), + [aux_sym_preproc_def_token1] = ACTIONS(1324), + [aux_sym_preproc_if_token1] = ACTIONS(1324), + [aux_sym_preproc_if_token2] = ACTIONS(1324), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1324), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1324), + [aux_sym_preproc_else_token1] = ACTIONS(1324), + [aux_sym_preproc_elif_token1] = ACTIONS(1324), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1324), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1324), + [sym_preproc_directive] = ACTIONS(1324), + [anon_sym_LPAREN2] = ACTIONS(1326), + [anon_sym_BANG] = ACTIONS(1326), + [anon_sym_TILDE] = ACTIONS(1326), + [anon_sym_DASH] = ACTIONS(1324), + [anon_sym_PLUS] = ACTIONS(1324), + [anon_sym_STAR] = ACTIONS(1326), + [anon_sym_AMP] = ACTIONS(1326), + [anon_sym_SEMI] = ACTIONS(1326), + [anon_sym___extension__] = ACTIONS(1324), + [anon_sym_typedef] = ACTIONS(1324), + [anon_sym_extern] = ACTIONS(1324), + [anon_sym___attribute__] = ACTIONS(1324), + [anon_sym___scanf] = ACTIONS(1324), + [anon_sym___printf] = ACTIONS(1324), + [anon_sym___read_mostly] = ACTIONS(1324), + [anon_sym___must_hold] = ACTIONS(1324), + [anon_sym___ro_after_init] = ACTIONS(1324), + [anon_sym___init] = ACTIONS(1324), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1326), + [anon_sym___declspec] = ACTIONS(1324), + [anon_sym___cdecl] = ACTIONS(1324), + [anon_sym___clrcall] = ACTIONS(1324), + [anon_sym___stdcall] = ACTIONS(1324), + [anon_sym___fastcall] = ACTIONS(1324), + [anon_sym___thiscall] = ACTIONS(1324), + [anon_sym___vectorcall] = ACTIONS(1324), + [anon_sym_LBRACE] = ACTIONS(1326), + [anon_sym_signed] = ACTIONS(1324), + [anon_sym_unsigned] = ACTIONS(1324), + [anon_sym_long] = ACTIONS(1324), + [anon_sym_short] = ACTIONS(1324), + [anon_sym_static] = ACTIONS(1324), + [anon_sym_auto] = ACTIONS(1324), + [anon_sym_register] = ACTIONS(1324), + [anon_sym_inline] = ACTIONS(1324), + [anon_sym___inline] = ACTIONS(1324), + [anon_sym___inline__] = ACTIONS(1324), + [anon_sym___forceinline] = ACTIONS(1324), + [anon_sym_thread_local] = ACTIONS(1324), + [anon_sym___thread] = ACTIONS(1324), + [anon_sym_const] = ACTIONS(1324), + [anon_sym_constexpr] = ACTIONS(1324), + [anon_sym_volatile] = ACTIONS(1324), + [anon_sym_restrict] = ACTIONS(1324), + [anon_sym___restrict__] = ACTIONS(1324), + [anon_sym__Atomic] = ACTIONS(1324), + [anon_sym__Noreturn] = ACTIONS(1324), + [anon_sym_noreturn] = ACTIONS(1324), + [sym_primitive_type] = ACTIONS(1324), + [anon_sym_enum] = ACTIONS(1324), + [anon_sym_struct] = ACTIONS(1324), + [anon_sym_union] = ACTIONS(1324), + [anon_sym_if] = ACTIONS(1324), + [anon_sym_else] = ACTIONS(1324), + [anon_sym_switch] = ACTIONS(1324), + [anon_sym_case] = ACTIONS(1324), + [anon_sym_default] = ACTIONS(1324), + [anon_sym_while] = ACTIONS(1324), + [anon_sym_do] = ACTIONS(1324), + [anon_sym_for] = ACTIONS(1324), + [anon_sym_return] = ACTIONS(1324), + [anon_sym_break] = ACTIONS(1324), + [anon_sym_continue] = ACTIONS(1324), + [anon_sym_goto] = ACTIONS(1324), + [anon_sym___try] = ACTIONS(1324), + [anon_sym___leave] = ACTIONS(1324), + [anon_sym_DASH_DASH] = ACTIONS(1326), + [anon_sym_PLUS_PLUS] = ACTIONS(1326), + [anon_sym_sizeof] = ACTIONS(1324), + [anon_sym___alignof__] = ACTIONS(1324), + [anon_sym___alignof] = ACTIONS(1324), + [anon_sym__alignof] = ACTIONS(1324), + [anon_sym_alignof] = ACTIONS(1324), + [anon_sym__Alignof] = ACTIONS(1324), + [anon_sym_offsetof] = ACTIONS(1324), + [anon_sym__Generic] = ACTIONS(1324), + [anon_sym_asm] = ACTIONS(1324), + [anon_sym___asm__] = ACTIONS(1324), + [sym_number_literal] = ACTIONS(1326), + [anon_sym_L_SQUOTE] = ACTIONS(1326), + [anon_sym_u_SQUOTE] = ACTIONS(1326), + [anon_sym_U_SQUOTE] = ACTIONS(1326), + [anon_sym_u8_SQUOTE] = ACTIONS(1326), + [anon_sym_SQUOTE] = ACTIONS(1326), + [anon_sym_L_DQUOTE] = ACTIONS(1326), + [anon_sym_u_DQUOTE] = ACTIONS(1326), + [anon_sym_U_DQUOTE] = ACTIONS(1326), + [anon_sym_u8_DQUOTE] = ACTIONS(1326), + [anon_sym_DQUOTE] = ACTIONS(1326), + [sym_true] = ACTIONS(1324), + [sym_false] = ACTIONS(1324), + [anon_sym_NULL] = ACTIONS(1324), + [anon_sym_nullptr] = ACTIONS(1324), [sym_comment] = ACTIONS(3), }, [93] = { - [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_LBRACK_LBRACK] = ACTIONS(1319), - [anon_sym___declspec] = 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), - [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_else] = 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_identifier] = ACTIONS(1328), + [aux_sym_preproc_include_token1] = ACTIONS(1328), + [aux_sym_preproc_def_token1] = ACTIONS(1328), + [aux_sym_preproc_if_token1] = ACTIONS(1328), + [aux_sym_preproc_if_token2] = ACTIONS(1328), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1328), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1328), + [aux_sym_preproc_else_token1] = ACTIONS(1328), + [aux_sym_preproc_elif_token1] = ACTIONS(1328), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1328), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1328), + [sym_preproc_directive] = ACTIONS(1328), + [anon_sym_LPAREN2] = ACTIONS(1330), + [anon_sym_BANG] = ACTIONS(1330), + [anon_sym_TILDE] = ACTIONS(1330), + [anon_sym_DASH] = ACTIONS(1328), + [anon_sym_PLUS] = ACTIONS(1328), + [anon_sym_STAR] = ACTIONS(1330), + [anon_sym_AMP] = ACTIONS(1330), + [anon_sym_SEMI] = ACTIONS(1330), + [anon_sym___extension__] = ACTIONS(1328), + [anon_sym_typedef] = ACTIONS(1328), + [anon_sym_extern] = ACTIONS(1328), + [anon_sym___attribute__] = ACTIONS(1328), + [anon_sym___scanf] = ACTIONS(1328), + [anon_sym___printf] = ACTIONS(1328), + [anon_sym___read_mostly] = ACTIONS(1328), + [anon_sym___must_hold] = ACTIONS(1328), + [anon_sym___ro_after_init] = ACTIONS(1328), + [anon_sym___init] = ACTIONS(1328), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1330), + [anon_sym___declspec] = ACTIONS(1328), + [anon_sym___cdecl] = ACTIONS(1328), + [anon_sym___clrcall] = ACTIONS(1328), + [anon_sym___stdcall] = ACTIONS(1328), + [anon_sym___fastcall] = ACTIONS(1328), + [anon_sym___thiscall] = ACTIONS(1328), + [anon_sym___vectorcall] = ACTIONS(1328), + [anon_sym_LBRACE] = ACTIONS(1330), + [anon_sym_signed] = ACTIONS(1328), + [anon_sym_unsigned] = ACTIONS(1328), + [anon_sym_long] = ACTIONS(1328), + [anon_sym_short] = ACTIONS(1328), + [anon_sym_static] = ACTIONS(1328), + [anon_sym_auto] = ACTIONS(1328), + [anon_sym_register] = ACTIONS(1328), + [anon_sym_inline] = ACTIONS(1328), + [anon_sym___inline] = ACTIONS(1328), + [anon_sym___inline__] = ACTIONS(1328), + [anon_sym___forceinline] = ACTIONS(1328), + [anon_sym_thread_local] = ACTIONS(1328), + [anon_sym___thread] = ACTIONS(1328), + [anon_sym_const] = ACTIONS(1328), + [anon_sym_constexpr] = ACTIONS(1328), + [anon_sym_volatile] = ACTIONS(1328), + [anon_sym_restrict] = ACTIONS(1328), + [anon_sym___restrict__] = ACTIONS(1328), + [anon_sym__Atomic] = ACTIONS(1328), + [anon_sym__Noreturn] = ACTIONS(1328), + [anon_sym_noreturn] = ACTIONS(1328), + [sym_primitive_type] = ACTIONS(1328), + [anon_sym_enum] = ACTIONS(1328), + [anon_sym_struct] = ACTIONS(1328), + [anon_sym_union] = ACTIONS(1328), + [anon_sym_if] = ACTIONS(1328), + [anon_sym_else] = ACTIONS(1328), + [anon_sym_switch] = ACTIONS(1328), + [anon_sym_case] = ACTIONS(1328), + [anon_sym_default] = ACTIONS(1328), + [anon_sym_while] = ACTIONS(1328), + [anon_sym_do] = ACTIONS(1328), + [anon_sym_for] = ACTIONS(1328), + [anon_sym_return] = ACTIONS(1328), + [anon_sym_break] = ACTIONS(1328), + [anon_sym_continue] = ACTIONS(1328), + [anon_sym_goto] = ACTIONS(1328), + [anon_sym___try] = ACTIONS(1328), + [anon_sym___leave] = ACTIONS(1328), + [anon_sym_DASH_DASH] = ACTIONS(1330), + [anon_sym_PLUS_PLUS] = ACTIONS(1330), + [anon_sym_sizeof] = ACTIONS(1328), + [anon_sym___alignof__] = ACTIONS(1328), + [anon_sym___alignof] = ACTIONS(1328), + [anon_sym__alignof] = ACTIONS(1328), + [anon_sym_alignof] = ACTIONS(1328), + [anon_sym__Alignof] = ACTIONS(1328), + [anon_sym_offsetof] = ACTIONS(1328), + [anon_sym__Generic] = ACTIONS(1328), + [anon_sym_asm] = ACTIONS(1328), + [anon_sym___asm__] = ACTIONS(1328), + [sym_number_literal] = ACTIONS(1330), + [anon_sym_L_SQUOTE] = ACTIONS(1330), + [anon_sym_u_SQUOTE] = ACTIONS(1330), + [anon_sym_U_SQUOTE] = ACTIONS(1330), + [anon_sym_u8_SQUOTE] = ACTIONS(1330), + [anon_sym_SQUOTE] = ACTIONS(1330), + [anon_sym_L_DQUOTE] = ACTIONS(1330), + [anon_sym_u_DQUOTE] = ACTIONS(1330), + [anon_sym_U_DQUOTE] = ACTIONS(1330), + [anon_sym_u8_DQUOTE] = ACTIONS(1330), + [anon_sym_DQUOTE] = ACTIONS(1330), + [sym_true] = ACTIONS(1328), + [sym_false] = ACTIONS(1328), + [anon_sym_NULL] = ACTIONS(1328), + [anon_sym_nullptr] = ACTIONS(1328), [sym_comment] = ACTIONS(3), }, [94] = { - [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_LBRACK_LBRACK] = ACTIONS(1323), - [anon_sym___declspec] = 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), - [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_else] = 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_identifier] = ACTIONS(1320), + [aux_sym_preproc_include_token1] = ACTIONS(1320), + [aux_sym_preproc_def_token1] = ACTIONS(1320), + [aux_sym_preproc_if_token1] = ACTIONS(1320), + [aux_sym_preproc_if_token2] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1320), + [aux_sym_preproc_else_token1] = ACTIONS(1320), + [aux_sym_preproc_elif_token1] = ACTIONS(1320), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1320), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1320), + [sym_preproc_directive] = ACTIONS(1320), + [anon_sym_LPAREN2] = ACTIONS(1322), + [anon_sym_BANG] = ACTIONS(1322), + [anon_sym_TILDE] = ACTIONS(1322), + [anon_sym_DASH] = ACTIONS(1320), + [anon_sym_PLUS] = ACTIONS(1320), + [anon_sym_STAR] = ACTIONS(1322), + [anon_sym_AMP] = ACTIONS(1322), + [anon_sym_SEMI] = ACTIONS(1322), + [anon_sym___extension__] = ACTIONS(1320), + [anon_sym_typedef] = ACTIONS(1320), + [anon_sym_extern] = ACTIONS(1320), + [anon_sym___attribute__] = ACTIONS(1320), + [anon_sym___scanf] = ACTIONS(1320), + [anon_sym___printf] = ACTIONS(1320), + [anon_sym___read_mostly] = ACTIONS(1320), + [anon_sym___must_hold] = ACTIONS(1320), + [anon_sym___ro_after_init] = ACTIONS(1320), + [anon_sym___init] = ACTIONS(1320), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1322), + [anon_sym___declspec] = ACTIONS(1320), + [anon_sym___cdecl] = ACTIONS(1320), + [anon_sym___clrcall] = ACTIONS(1320), + [anon_sym___stdcall] = ACTIONS(1320), + [anon_sym___fastcall] = ACTIONS(1320), + [anon_sym___thiscall] = ACTIONS(1320), + [anon_sym___vectorcall] = ACTIONS(1320), + [anon_sym_LBRACE] = ACTIONS(1322), + [anon_sym_signed] = ACTIONS(1320), + [anon_sym_unsigned] = ACTIONS(1320), + [anon_sym_long] = ACTIONS(1320), + [anon_sym_short] = ACTIONS(1320), + [anon_sym_static] = ACTIONS(1320), + [anon_sym_auto] = ACTIONS(1320), + [anon_sym_register] = ACTIONS(1320), + [anon_sym_inline] = ACTIONS(1320), + [anon_sym___inline] = ACTIONS(1320), + [anon_sym___inline__] = ACTIONS(1320), + [anon_sym___forceinline] = ACTIONS(1320), + [anon_sym_thread_local] = ACTIONS(1320), + [anon_sym___thread] = ACTIONS(1320), + [anon_sym_const] = ACTIONS(1320), + [anon_sym_constexpr] = ACTIONS(1320), + [anon_sym_volatile] = ACTIONS(1320), + [anon_sym_restrict] = ACTIONS(1320), + [anon_sym___restrict__] = ACTIONS(1320), + [anon_sym__Atomic] = ACTIONS(1320), + [anon_sym__Noreturn] = ACTIONS(1320), + [anon_sym_noreturn] = ACTIONS(1320), + [sym_primitive_type] = ACTIONS(1320), + [anon_sym_enum] = ACTIONS(1320), + [anon_sym_struct] = ACTIONS(1320), + [anon_sym_union] = ACTIONS(1320), + [anon_sym_if] = ACTIONS(1320), + [anon_sym_else] = ACTIONS(1320), + [anon_sym_switch] = ACTIONS(1320), + [anon_sym_case] = ACTIONS(1320), + [anon_sym_default] = ACTIONS(1320), + [anon_sym_while] = ACTIONS(1320), + [anon_sym_do] = ACTIONS(1320), + [anon_sym_for] = ACTIONS(1320), + [anon_sym_return] = ACTIONS(1320), + [anon_sym_break] = ACTIONS(1320), + [anon_sym_continue] = ACTIONS(1320), + [anon_sym_goto] = ACTIONS(1320), + [anon_sym___try] = ACTIONS(1320), + [anon_sym___leave] = ACTIONS(1320), + [anon_sym_DASH_DASH] = ACTIONS(1322), + [anon_sym_PLUS_PLUS] = ACTIONS(1322), + [anon_sym_sizeof] = ACTIONS(1320), + [anon_sym___alignof__] = ACTIONS(1320), + [anon_sym___alignof] = ACTIONS(1320), + [anon_sym__alignof] = ACTIONS(1320), + [anon_sym_alignof] = ACTIONS(1320), + [anon_sym__Alignof] = ACTIONS(1320), + [anon_sym_offsetof] = ACTIONS(1320), + [anon_sym__Generic] = ACTIONS(1320), + [anon_sym_asm] = ACTIONS(1320), + [anon_sym___asm__] = ACTIONS(1320), + [sym_number_literal] = ACTIONS(1322), + [anon_sym_L_SQUOTE] = ACTIONS(1322), + [anon_sym_u_SQUOTE] = ACTIONS(1322), + [anon_sym_U_SQUOTE] = ACTIONS(1322), + [anon_sym_u8_SQUOTE] = ACTIONS(1322), + [anon_sym_SQUOTE] = ACTIONS(1322), + [anon_sym_L_DQUOTE] = ACTIONS(1322), + [anon_sym_u_DQUOTE] = ACTIONS(1322), + [anon_sym_U_DQUOTE] = ACTIONS(1322), + [anon_sym_u8_DQUOTE] = ACTIONS(1322), + [anon_sym_DQUOTE] = ACTIONS(1322), + [sym_true] = ACTIONS(1320), + [sym_false] = ACTIONS(1320), + [anon_sym_NULL] = ACTIONS(1320), + [anon_sym_nullptr] = ACTIONS(1320), [sym_comment] = ACTIONS(3), }, [95] = { - [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_LBRACK_LBRACK] = ACTIONS(1315), - [anon_sym___declspec] = 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), - [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_else] = 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_identifier] = ACTIONS(1320), + [aux_sym_preproc_include_token1] = ACTIONS(1320), + [aux_sym_preproc_def_token1] = ACTIONS(1320), + [aux_sym_preproc_if_token1] = ACTIONS(1320), + [aux_sym_preproc_if_token2] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1320), + [aux_sym_preproc_else_token1] = ACTIONS(1320), + [aux_sym_preproc_elif_token1] = ACTIONS(1320), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1320), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1320), + [sym_preproc_directive] = ACTIONS(1320), + [anon_sym_LPAREN2] = ACTIONS(1322), + [anon_sym_BANG] = ACTIONS(1322), + [anon_sym_TILDE] = ACTIONS(1322), + [anon_sym_DASH] = ACTIONS(1320), + [anon_sym_PLUS] = ACTIONS(1320), + [anon_sym_STAR] = ACTIONS(1322), + [anon_sym_AMP] = ACTIONS(1322), + [anon_sym_SEMI] = ACTIONS(1322), + [anon_sym___extension__] = ACTIONS(1320), + [anon_sym_typedef] = ACTIONS(1320), + [anon_sym_extern] = ACTIONS(1320), + [anon_sym___attribute__] = ACTIONS(1320), + [anon_sym___scanf] = ACTIONS(1320), + [anon_sym___printf] = ACTIONS(1320), + [anon_sym___read_mostly] = ACTIONS(1320), + [anon_sym___must_hold] = ACTIONS(1320), + [anon_sym___ro_after_init] = ACTIONS(1320), + [anon_sym___init] = ACTIONS(1320), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1322), + [anon_sym___declspec] = ACTIONS(1320), + [anon_sym___cdecl] = ACTIONS(1320), + [anon_sym___clrcall] = ACTIONS(1320), + [anon_sym___stdcall] = ACTIONS(1320), + [anon_sym___fastcall] = ACTIONS(1320), + [anon_sym___thiscall] = ACTIONS(1320), + [anon_sym___vectorcall] = ACTIONS(1320), + [anon_sym_LBRACE] = ACTIONS(1322), + [anon_sym_signed] = ACTIONS(1320), + [anon_sym_unsigned] = ACTIONS(1320), + [anon_sym_long] = ACTIONS(1320), + [anon_sym_short] = ACTIONS(1320), + [anon_sym_static] = ACTIONS(1320), + [anon_sym_auto] = ACTIONS(1320), + [anon_sym_register] = ACTIONS(1320), + [anon_sym_inline] = ACTIONS(1320), + [anon_sym___inline] = ACTIONS(1320), + [anon_sym___inline__] = ACTIONS(1320), + [anon_sym___forceinline] = ACTIONS(1320), + [anon_sym_thread_local] = ACTIONS(1320), + [anon_sym___thread] = ACTIONS(1320), + [anon_sym_const] = ACTIONS(1320), + [anon_sym_constexpr] = ACTIONS(1320), + [anon_sym_volatile] = ACTIONS(1320), + [anon_sym_restrict] = ACTIONS(1320), + [anon_sym___restrict__] = ACTIONS(1320), + [anon_sym__Atomic] = ACTIONS(1320), + [anon_sym__Noreturn] = ACTIONS(1320), + [anon_sym_noreturn] = ACTIONS(1320), + [sym_primitive_type] = ACTIONS(1320), + [anon_sym_enum] = ACTIONS(1320), + [anon_sym_struct] = ACTIONS(1320), + [anon_sym_union] = ACTIONS(1320), + [anon_sym_if] = ACTIONS(1320), + [anon_sym_else] = ACTIONS(1320), + [anon_sym_switch] = ACTIONS(1320), + [anon_sym_case] = ACTIONS(1320), + [anon_sym_default] = ACTIONS(1320), + [anon_sym_while] = ACTIONS(1320), + [anon_sym_do] = ACTIONS(1320), + [anon_sym_for] = ACTIONS(1320), + [anon_sym_return] = ACTIONS(1320), + [anon_sym_break] = ACTIONS(1320), + [anon_sym_continue] = ACTIONS(1320), + [anon_sym_goto] = ACTIONS(1320), + [anon_sym___try] = ACTIONS(1320), + [anon_sym___leave] = ACTIONS(1320), + [anon_sym_DASH_DASH] = ACTIONS(1322), + [anon_sym_PLUS_PLUS] = ACTIONS(1322), + [anon_sym_sizeof] = ACTIONS(1320), + [anon_sym___alignof__] = ACTIONS(1320), + [anon_sym___alignof] = ACTIONS(1320), + [anon_sym__alignof] = ACTIONS(1320), + [anon_sym_alignof] = ACTIONS(1320), + [anon_sym__Alignof] = ACTIONS(1320), + [anon_sym_offsetof] = ACTIONS(1320), + [anon_sym__Generic] = ACTIONS(1320), + [anon_sym_asm] = ACTIONS(1320), + [anon_sym___asm__] = ACTIONS(1320), + [sym_number_literal] = ACTIONS(1322), + [anon_sym_L_SQUOTE] = ACTIONS(1322), + [anon_sym_u_SQUOTE] = ACTIONS(1322), + [anon_sym_U_SQUOTE] = ACTIONS(1322), + [anon_sym_u8_SQUOTE] = ACTIONS(1322), + [anon_sym_SQUOTE] = ACTIONS(1322), + [anon_sym_L_DQUOTE] = ACTIONS(1322), + [anon_sym_u_DQUOTE] = ACTIONS(1322), + [anon_sym_U_DQUOTE] = ACTIONS(1322), + [anon_sym_u8_DQUOTE] = ACTIONS(1322), + [anon_sym_DQUOTE] = ACTIONS(1322), + [sym_true] = ACTIONS(1320), + [sym_false] = ACTIONS(1320), + [anon_sym_NULL] = ACTIONS(1320), + [anon_sym_nullptr] = ACTIONS(1320), [sym_comment] = ACTIONS(3), }, [96] = { - [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_LBRACK_LBRACK] = ACTIONS(1327), - [anon_sym___declspec] = 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), - [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_else] = 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_identifier] = ACTIONS(1320), + [aux_sym_preproc_include_token1] = ACTIONS(1320), + [aux_sym_preproc_def_token1] = ACTIONS(1320), + [aux_sym_preproc_if_token1] = ACTIONS(1320), + [aux_sym_preproc_if_token2] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1320), + [aux_sym_preproc_else_token1] = ACTIONS(1320), + [aux_sym_preproc_elif_token1] = ACTIONS(1320), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1320), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1320), + [sym_preproc_directive] = ACTIONS(1320), + [anon_sym_LPAREN2] = ACTIONS(1322), + [anon_sym_BANG] = ACTIONS(1322), + [anon_sym_TILDE] = ACTIONS(1322), + [anon_sym_DASH] = ACTIONS(1320), + [anon_sym_PLUS] = ACTIONS(1320), + [anon_sym_STAR] = ACTIONS(1322), + [anon_sym_AMP] = ACTIONS(1322), + [anon_sym_SEMI] = ACTIONS(1322), + [anon_sym___extension__] = ACTIONS(1320), + [anon_sym_typedef] = ACTIONS(1320), + [anon_sym_extern] = ACTIONS(1320), + [anon_sym___attribute__] = ACTIONS(1320), + [anon_sym___scanf] = ACTIONS(1320), + [anon_sym___printf] = ACTIONS(1320), + [anon_sym___read_mostly] = ACTIONS(1320), + [anon_sym___must_hold] = ACTIONS(1320), + [anon_sym___ro_after_init] = ACTIONS(1320), + [anon_sym___init] = ACTIONS(1320), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1322), + [anon_sym___declspec] = ACTIONS(1320), + [anon_sym___cdecl] = ACTIONS(1320), + [anon_sym___clrcall] = ACTIONS(1320), + [anon_sym___stdcall] = ACTIONS(1320), + [anon_sym___fastcall] = ACTIONS(1320), + [anon_sym___thiscall] = ACTIONS(1320), + [anon_sym___vectorcall] = ACTIONS(1320), + [anon_sym_LBRACE] = ACTIONS(1322), + [anon_sym_signed] = ACTIONS(1320), + [anon_sym_unsigned] = ACTIONS(1320), + [anon_sym_long] = ACTIONS(1320), + [anon_sym_short] = ACTIONS(1320), + [anon_sym_static] = ACTIONS(1320), + [anon_sym_auto] = ACTIONS(1320), + [anon_sym_register] = ACTIONS(1320), + [anon_sym_inline] = ACTIONS(1320), + [anon_sym___inline] = ACTIONS(1320), + [anon_sym___inline__] = ACTIONS(1320), + [anon_sym___forceinline] = ACTIONS(1320), + [anon_sym_thread_local] = ACTIONS(1320), + [anon_sym___thread] = ACTIONS(1320), + [anon_sym_const] = ACTIONS(1320), + [anon_sym_constexpr] = ACTIONS(1320), + [anon_sym_volatile] = ACTIONS(1320), + [anon_sym_restrict] = ACTIONS(1320), + [anon_sym___restrict__] = ACTIONS(1320), + [anon_sym__Atomic] = ACTIONS(1320), + [anon_sym__Noreturn] = ACTIONS(1320), + [anon_sym_noreturn] = ACTIONS(1320), + [sym_primitive_type] = ACTIONS(1320), + [anon_sym_enum] = ACTIONS(1320), + [anon_sym_struct] = ACTIONS(1320), + [anon_sym_union] = ACTIONS(1320), + [anon_sym_if] = ACTIONS(1320), + [anon_sym_else] = ACTIONS(1320), + [anon_sym_switch] = ACTIONS(1320), + [anon_sym_case] = ACTIONS(1320), + [anon_sym_default] = ACTIONS(1320), + [anon_sym_while] = ACTIONS(1320), + [anon_sym_do] = ACTIONS(1320), + [anon_sym_for] = ACTIONS(1320), + [anon_sym_return] = ACTIONS(1320), + [anon_sym_break] = ACTIONS(1320), + [anon_sym_continue] = ACTIONS(1320), + [anon_sym_goto] = ACTIONS(1320), + [anon_sym___try] = ACTIONS(1320), + [anon_sym___leave] = ACTIONS(1320), + [anon_sym_DASH_DASH] = ACTIONS(1322), + [anon_sym_PLUS_PLUS] = ACTIONS(1322), + [anon_sym_sizeof] = ACTIONS(1320), + [anon_sym___alignof__] = ACTIONS(1320), + [anon_sym___alignof] = ACTIONS(1320), + [anon_sym__alignof] = ACTIONS(1320), + [anon_sym_alignof] = ACTIONS(1320), + [anon_sym__Alignof] = ACTIONS(1320), + [anon_sym_offsetof] = ACTIONS(1320), + [anon_sym__Generic] = ACTIONS(1320), + [anon_sym_asm] = ACTIONS(1320), + [anon_sym___asm__] = ACTIONS(1320), + [sym_number_literal] = ACTIONS(1322), + [anon_sym_L_SQUOTE] = ACTIONS(1322), + [anon_sym_u_SQUOTE] = ACTIONS(1322), + [anon_sym_U_SQUOTE] = ACTIONS(1322), + [anon_sym_u8_SQUOTE] = ACTIONS(1322), + [anon_sym_SQUOTE] = ACTIONS(1322), + [anon_sym_L_DQUOTE] = ACTIONS(1322), + [anon_sym_u_DQUOTE] = ACTIONS(1322), + [anon_sym_U_DQUOTE] = ACTIONS(1322), + [anon_sym_u8_DQUOTE] = ACTIONS(1322), + [anon_sym_DQUOTE] = ACTIONS(1322), + [sym_true] = ACTIONS(1320), + [sym_false] = ACTIONS(1320), + [anon_sym_NULL] = ACTIONS(1320), + [anon_sym_nullptr] = ACTIONS(1320), [sym_comment] = ACTIONS(3), }, [97] = { - [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_LBRACK_LBRACK] = ACTIONS(1331), - [anon_sym___declspec] = 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), - [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_else] = 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_identifier] = ACTIONS(1320), + [aux_sym_preproc_include_token1] = ACTIONS(1320), + [aux_sym_preproc_def_token1] = ACTIONS(1320), + [aux_sym_preproc_if_token1] = ACTIONS(1320), + [aux_sym_preproc_if_token2] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1320), + [aux_sym_preproc_else_token1] = ACTIONS(1320), + [aux_sym_preproc_elif_token1] = ACTIONS(1320), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1320), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1320), + [sym_preproc_directive] = ACTIONS(1320), + [anon_sym_LPAREN2] = ACTIONS(1322), + [anon_sym_BANG] = ACTIONS(1322), + [anon_sym_TILDE] = ACTIONS(1322), + [anon_sym_DASH] = ACTIONS(1320), + [anon_sym_PLUS] = ACTIONS(1320), + [anon_sym_STAR] = ACTIONS(1322), + [anon_sym_AMP] = ACTIONS(1322), + [anon_sym_SEMI] = ACTIONS(1322), + [anon_sym___extension__] = ACTIONS(1320), + [anon_sym_typedef] = ACTIONS(1320), + [anon_sym_extern] = ACTIONS(1320), + [anon_sym___attribute__] = ACTIONS(1320), + [anon_sym___scanf] = ACTIONS(1320), + [anon_sym___printf] = ACTIONS(1320), + [anon_sym___read_mostly] = ACTIONS(1320), + [anon_sym___must_hold] = ACTIONS(1320), + [anon_sym___ro_after_init] = ACTIONS(1320), + [anon_sym___init] = ACTIONS(1320), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1322), + [anon_sym___declspec] = ACTIONS(1320), + [anon_sym___cdecl] = ACTIONS(1320), + [anon_sym___clrcall] = ACTIONS(1320), + [anon_sym___stdcall] = ACTIONS(1320), + [anon_sym___fastcall] = ACTIONS(1320), + [anon_sym___thiscall] = ACTIONS(1320), + [anon_sym___vectorcall] = ACTIONS(1320), + [anon_sym_LBRACE] = ACTIONS(1322), + [anon_sym_signed] = ACTIONS(1320), + [anon_sym_unsigned] = ACTIONS(1320), + [anon_sym_long] = ACTIONS(1320), + [anon_sym_short] = ACTIONS(1320), + [anon_sym_static] = ACTIONS(1320), + [anon_sym_auto] = ACTIONS(1320), + [anon_sym_register] = ACTIONS(1320), + [anon_sym_inline] = ACTIONS(1320), + [anon_sym___inline] = ACTIONS(1320), + [anon_sym___inline__] = ACTIONS(1320), + [anon_sym___forceinline] = ACTIONS(1320), + [anon_sym_thread_local] = ACTIONS(1320), + [anon_sym___thread] = ACTIONS(1320), + [anon_sym_const] = ACTIONS(1320), + [anon_sym_constexpr] = ACTIONS(1320), + [anon_sym_volatile] = ACTIONS(1320), + [anon_sym_restrict] = ACTIONS(1320), + [anon_sym___restrict__] = ACTIONS(1320), + [anon_sym__Atomic] = ACTIONS(1320), + [anon_sym__Noreturn] = ACTIONS(1320), + [anon_sym_noreturn] = ACTIONS(1320), + [sym_primitive_type] = ACTIONS(1320), + [anon_sym_enum] = ACTIONS(1320), + [anon_sym_struct] = ACTIONS(1320), + [anon_sym_union] = ACTIONS(1320), + [anon_sym_if] = ACTIONS(1320), + [anon_sym_else] = ACTIONS(1320), + [anon_sym_switch] = ACTIONS(1320), + [anon_sym_case] = ACTIONS(1320), + [anon_sym_default] = ACTIONS(1320), + [anon_sym_while] = ACTIONS(1320), + [anon_sym_do] = ACTIONS(1320), + [anon_sym_for] = ACTIONS(1320), + [anon_sym_return] = ACTIONS(1320), + [anon_sym_break] = ACTIONS(1320), + [anon_sym_continue] = ACTIONS(1320), + [anon_sym_goto] = ACTIONS(1320), + [anon_sym___try] = ACTIONS(1320), + [anon_sym___leave] = ACTIONS(1320), + [anon_sym_DASH_DASH] = ACTIONS(1322), + [anon_sym_PLUS_PLUS] = ACTIONS(1322), + [anon_sym_sizeof] = ACTIONS(1320), + [anon_sym___alignof__] = ACTIONS(1320), + [anon_sym___alignof] = ACTIONS(1320), + [anon_sym__alignof] = ACTIONS(1320), + [anon_sym_alignof] = ACTIONS(1320), + [anon_sym__Alignof] = ACTIONS(1320), + [anon_sym_offsetof] = ACTIONS(1320), + [anon_sym__Generic] = ACTIONS(1320), + [anon_sym_asm] = ACTIONS(1320), + [anon_sym___asm__] = ACTIONS(1320), + [sym_number_literal] = ACTIONS(1322), + [anon_sym_L_SQUOTE] = ACTIONS(1322), + [anon_sym_u_SQUOTE] = ACTIONS(1322), + [anon_sym_U_SQUOTE] = ACTIONS(1322), + [anon_sym_u8_SQUOTE] = ACTIONS(1322), + [anon_sym_SQUOTE] = ACTIONS(1322), + [anon_sym_L_DQUOTE] = ACTIONS(1322), + [anon_sym_u_DQUOTE] = ACTIONS(1322), + [anon_sym_U_DQUOTE] = ACTIONS(1322), + [anon_sym_u8_DQUOTE] = ACTIONS(1322), + [anon_sym_DQUOTE] = ACTIONS(1322), + [sym_true] = ACTIONS(1320), + [sym_false] = ACTIONS(1320), + [anon_sym_NULL] = ACTIONS(1320), + [anon_sym_nullptr] = ACTIONS(1320), [sym_comment] = ACTIONS(3), }, [98] = { - [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_LBRACK_LBRACK] = ACTIONS(1335), - [anon_sym___declspec] = 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), - [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_else] = 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_identifier] = ACTIONS(1320), + [aux_sym_preproc_include_token1] = ACTIONS(1320), + [aux_sym_preproc_def_token1] = ACTIONS(1320), + [aux_sym_preproc_if_token1] = ACTIONS(1320), + [aux_sym_preproc_if_token2] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1320), + [aux_sym_preproc_else_token1] = ACTIONS(1320), + [aux_sym_preproc_elif_token1] = ACTIONS(1320), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1320), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1320), + [sym_preproc_directive] = ACTIONS(1320), + [anon_sym_LPAREN2] = ACTIONS(1322), + [anon_sym_BANG] = ACTIONS(1322), + [anon_sym_TILDE] = ACTIONS(1322), + [anon_sym_DASH] = ACTIONS(1320), + [anon_sym_PLUS] = ACTIONS(1320), + [anon_sym_STAR] = ACTIONS(1322), + [anon_sym_AMP] = ACTIONS(1322), + [anon_sym_SEMI] = ACTIONS(1322), + [anon_sym___extension__] = ACTIONS(1320), + [anon_sym_typedef] = ACTIONS(1320), + [anon_sym_extern] = ACTIONS(1320), + [anon_sym___attribute__] = ACTIONS(1320), + [anon_sym___scanf] = ACTIONS(1320), + [anon_sym___printf] = ACTIONS(1320), + [anon_sym___read_mostly] = ACTIONS(1320), + [anon_sym___must_hold] = ACTIONS(1320), + [anon_sym___ro_after_init] = ACTIONS(1320), + [anon_sym___init] = ACTIONS(1320), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1322), + [anon_sym___declspec] = ACTIONS(1320), + [anon_sym___cdecl] = ACTIONS(1320), + [anon_sym___clrcall] = ACTIONS(1320), + [anon_sym___stdcall] = ACTIONS(1320), + [anon_sym___fastcall] = ACTIONS(1320), + [anon_sym___thiscall] = ACTIONS(1320), + [anon_sym___vectorcall] = ACTIONS(1320), + [anon_sym_LBRACE] = ACTIONS(1322), + [anon_sym_signed] = ACTIONS(1320), + [anon_sym_unsigned] = ACTIONS(1320), + [anon_sym_long] = ACTIONS(1320), + [anon_sym_short] = ACTIONS(1320), + [anon_sym_static] = ACTIONS(1320), + [anon_sym_auto] = ACTIONS(1320), + [anon_sym_register] = ACTIONS(1320), + [anon_sym_inline] = ACTIONS(1320), + [anon_sym___inline] = ACTIONS(1320), + [anon_sym___inline__] = ACTIONS(1320), + [anon_sym___forceinline] = ACTIONS(1320), + [anon_sym_thread_local] = ACTIONS(1320), + [anon_sym___thread] = ACTIONS(1320), + [anon_sym_const] = ACTIONS(1320), + [anon_sym_constexpr] = ACTIONS(1320), + [anon_sym_volatile] = ACTIONS(1320), + [anon_sym_restrict] = ACTIONS(1320), + [anon_sym___restrict__] = ACTIONS(1320), + [anon_sym__Atomic] = ACTIONS(1320), + [anon_sym__Noreturn] = ACTIONS(1320), + [anon_sym_noreturn] = ACTIONS(1320), + [sym_primitive_type] = ACTIONS(1320), + [anon_sym_enum] = ACTIONS(1320), + [anon_sym_struct] = ACTIONS(1320), + [anon_sym_union] = ACTIONS(1320), + [anon_sym_if] = ACTIONS(1320), + [anon_sym_else] = ACTIONS(1320), + [anon_sym_switch] = ACTIONS(1320), + [anon_sym_case] = ACTIONS(1320), + [anon_sym_default] = ACTIONS(1320), + [anon_sym_while] = ACTIONS(1320), + [anon_sym_do] = ACTIONS(1320), + [anon_sym_for] = ACTIONS(1320), + [anon_sym_return] = ACTIONS(1320), + [anon_sym_break] = ACTIONS(1320), + [anon_sym_continue] = ACTIONS(1320), + [anon_sym_goto] = ACTIONS(1320), + [anon_sym___try] = ACTIONS(1320), + [anon_sym___leave] = ACTIONS(1320), + [anon_sym_DASH_DASH] = ACTIONS(1322), + [anon_sym_PLUS_PLUS] = ACTIONS(1322), + [anon_sym_sizeof] = ACTIONS(1320), + [anon_sym___alignof__] = ACTIONS(1320), + [anon_sym___alignof] = ACTIONS(1320), + [anon_sym__alignof] = ACTIONS(1320), + [anon_sym_alignof] = ACTIONS(1320), + [anon_sym__Alignof] = ACTIONS(1320), + [anon_sym_offsetof] = ACTIONS(1320), + [anon_sym__Generic] = ACTIONS(1320), + [anon_sym_asm] = ACTIONS(1320), + [anon_sym___asm__] = ACTIONS(1320), + [sym_number_literal] = ACTIONS(1322), + [anon_sym_L_SQUOTE] = ACTIONS(1322), + [anon_sym_u_SQUOTE] = ACTIONS(1322), + [anon_sym_U_SQUOTE] = ACTIONS(1322), + [anon_sym_u8_SQUOTE] = ACTIONS(1322), + [anon_sym_SQUOTE] = ACTIONS(1322), + [anon_sym_L_DQUOTE] = ACTIONS(1322), + [anon_sym_u_DQUOTE] = ACTIONS(1322), + [anon_sym_U_DQUOTE] = ACTIONS(1322), + [anon_sym_u8_DQUOTE] = ACTIONS(1322), + [anon_sym_DQUOTE] = ACTIONS(1322), + [sym_true] = ACTIONS(1320), + [sym_false] = ACTIONS(1320), + [anon_sym_NULL] = ACTIONS(1320), + [anon_sym_nullptr] = ACTIONS(1320), [sym_comment] = ACTIONS(3), }, [99] = { - [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_LBRACK_LBRACK] = ACTIONS(1339), - [anon_sym___declspec] = 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), - [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_else] = 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), + [ts_builtin_sym_end] = ACTIONS(1332), + [sym_identifier] = ACTIONS(1334), + [aux_sym_preproc_include_token1] = ACTIONS(1334), + [aux_sym_preproc_def_token1] = ACTIONS(1334), + [anon_sym_COMMA] = ACTIONS(1332), + [anon_sym_RPAREN] = ACTIONS(1332), + [aux_sym_preproc_if_token1] = ACTIONS(1334), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1334), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1334), + [sym_preproc_directive] = ACTIONS(1334), + [anon_sym_LPAREN2] = ACTIONS(1332), + [anon_sym_BANG] = ACTIONS(1332), + [anon_sym_TILDE] = ACTIONS(1332), + [anon_sym_DASH] = ACTIONS(1334), + [anon_sym_PLUS] = ACTIONS(1334), + [anon_sym_STAR] = ACTIONS(1332), + [anon_sym_AMP] = ACTIONS(1332), + [anon_sym_SEMI] = ACTIONS(1332), + [anon_sym___extension__] = ACTIONS(1334), + [anon_sym_typedef] = ACTIONS(1334), + [anon_sym_extern] = ACTIONS(1334), + [anon_sym___attribute__] = ACTIONS(1334), + [anon_sym___scanf] = ACTIONS(1334), + [anon_sym___printf] = ACTIONS(1334), + [anon_sym___read_mostly] = ACTIONS(1334), + [anon_sym___must_hold] = ACTIONS(1334), + [anon_sym___ro_after_init] = ACTIONS(1334), + [anon_sym___init] = ACTIONS(1334), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1332), + [anon_sym___declspec] = ACTIONS(1334), + [anon_sym___cdecl] = ACTIONS(1334), + [anon_sym___clrcall] = ACTIONS(1334), + [anon_sym___stdcall] = ACTIONS(1334), + [anon_sym___fastcall] = ACTIONS(1334), + [anon_sym___thiscall] = ACTIONS(1334), + [anon_sym___vectorcall] = ACTIONS(1334), + [anon_sym_LBRACE] = ACTIONS(1332), + [anon_sym_signed] = ACTIONS(1334), + [anon_sym_unsigned] = ACTIONS(1334), + [anon_sym_long] = ACTIONS(1334), + [anon_sym_short] = ACTIONS(1334), + [anon_sym_static] = ACTIONS(1334), + [anon_sym_auto] = ACTIONS(1334), + [anon_sym_register] = ACTIONS(1334), + [anon_sym_inline] = ACTIONS(1334), + [anon_sym___inline] = ACTIONS(1334), + [anon_sym___inline__] = ACTIONS(1334), + [anon_sym___forceinline] = ACTIONS(1334), + [anon_sym_thread_local] = ACTIONS(1334), + [anon_sym___thread] = ACTIONS(1334), + [anon_sym_const] = ACTIONS(1334), + [anon_sym_constexpr] = ACTIONS(1334), + [anon_sym_volatile] = ACTIONS(1334), + [anon_sym_restrict] = ACTIONS(1334), + [anon_sym___restrict__] = ACTIONS(1334), + [anon_sym__Atomic] = ACTIONS(1334), + [anon_sym__Noreturn] = ACTIONS(1334), + [anon_sym_noreturn] = ACTIONS(1334), + [sym_primitive_type] = ACTIONS(1334), + [anon_sym_enum] = ACTIONS(1334), + [anon_sym_struct] = ACTIONS(1334), + [anon_sym_union] = ACTIONS(1334), + [anon_sym_if] = ACTIONS(1334), + [anon_sym_else] = ACTIONS(1334), + [anon_sym_switch] = ACTIONS(1334), + [anon_sym_case] = ACTIONS(1334), + [anon_sym_default] = ACTIONS(1334), + [anon_sym_while] = ACTIONS(1334), + [anon_sym_do] = ACTIONS(1334), + [anon_sym_for] = ACTIONS(1334), + [anon_sym_return] = ACTIONS(1334), + [anon_sym_break] = ACTIONS(1334), + [anon_sym_continue] = ACTIONS(1334), + [anon_sym_goto] = ACTIONS(1334), + [anon_sym___try] = ACTIONS(1334), + [anon_sym___except] = ACTIONS(1334), + [anon_sym___finally] = ACTIONS(1334), + [anon_sym___leave] = ACTIONS(1334), + [anon_sym_DASH_DASH] = ACTIONS(1332), + [anon_sym_PLUS_PLUS] = ACTIONS(1332), + [anon_sym_sizeof] = ACTIONS(1334), + [anon_sym___alignof__] = ACTIONS(1334), + [anon_sym___alignof] = ACTIONS(1334), + [anon_sym__alignof] = ACTIONS(1334), + [anon_sym_alignof] = ACTIONS(1334), + [anon_sym__Alignof] = ACTIONS(1334), + [anon_sym_offsetof] = ACTIONS(1334), + [anon_sym__Generic] = ACTIONS(1334), + [anon_sym_asm] = ACTIONS(1334), + [anon_sym___asm__] = ACTIONS(1334), + [sym_number_literal] = ACTIONS(1332), + [anon_sym_L_SQUOTE] = ACTIONS(1332), + [anon_sym_u_SQUOTE] = ACTIONS(1332), + [anon_sym_U_SQUOTE] = ACTIONS(1332), + [anon_sym_u8_SQUOTE] = ACTIONS(1332), + [anon_sym_SQUOTE] = ACTIONS(1332), + [anon_sym_L_DQUOTE] = ACTIONS(1332), + [anon_sym_u_DQUOTE] = ACTIONS(1332), + [anon_sym_U_DQUOTE] = ACTIONS(1332), + [anon_sym_u8_DQUOTE] = ACTIONS(1332), + [anon_sym_DQUOTE] = ACTIONS(1332), + [sym_true] = ACTIONS(1334), + [sym_false] = ACTIONS(1334), + [anon_sym_NULL] = ACTIONS(1334), + [anon_sym_nullptr] = ACTIONS(1334), [sym_comment] = ACTIONS(3), }, [100] = { - [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_LBRACK_LBRACK] = ACTIONS(1343), - [anon_sym___declspec] = 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), - [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_else] = 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_identifier] = ACTIONS(1336), + [aux_sym_preproc_include_token1] = ACTIONS(1336), + [aux_sym_preproc_def_token1] = ACTIONS(1336), + [aux_sym_preproc_if_token1] = ACTIONS(1336), + [aux_sym_preproc_if_token2] = ACTIONS(1336), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1336), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1336), + [aux_sym_preproc_else_token1] = ACTIONS(1336), + [aux_sym_preproc_elif_token1] = ACTIONS(1336), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1336), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1336), + [sym_preproc_directive] = ACTIONS(1336), + [anon_sym_LPAREN2] = ACTIONS(1338), + [anon_sym_BANG] = ACTIONS(1338), + [anon_sym_TILDE] = ACTIONS(1338), + [anon_sym_DASH] = ACTIONS(1336), + [anon_sym_PLUS] = ACTIONS(1336), + [anon_sym_STAR] = ACTIONS(1338), + [anon_sym_AMP] = ACTIONS(1338), + [anon_sym_SEMI] = ACTIONS(1338), + [anon_sym___extension__] = ACTIONS(1336), + [anon_sym_typedef] = ACTIONS(1336), + [anon_sym_extern] = ACTIONS(1336), + [anon_sym___attribute__] = ACTIONS(1336), + [anon_sym___scanf] = ACTIONS(1336), + [anon_sym___printf] = ACTIONS(1336), + [anon_sym___read_mostly] = ACTIONS(1336), + [anon_sym___must_hold] = ACTIONS(1336), + [anon_sym___ro_after_init] = ACTIONS(1336), + [anon_sym___init] = ACTIONS(1336), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1338), + [anon_sym___declspec] = ACTIONS(1336), + [anon_sym___cdecl] = ACTIONS(1336), + [anon_sym___clrcall] = ACTIONS(1336), + [anon_sym___stdcall] = ACTIONS(1336), + [anon_sym___fastcall] = ACTIONS(1336), + [anon_sym___thiscall] = ACTIONS(1336), + [anon_sym___vectorcall] = ACTIONS(1336), + [anon_sym_LBRACE] = ACTIONS(1338), + [anon_sym_signed] = ACTIONS(1336), + [anon_sym_unsigned] = ACTIONS(1336), + [anon_sym_long] = ACTIONS(1336), + [anon_sym_short] = ACTIONS(1336), + [anon_sym_static] = ACTIONS(1336), + [anon_sym_auto] = ACTIONS(1336), + [anon_sym_register] = ACTIONS(1336), + [anon_sym_inline] = ACTIONS(1336), + [anon_sym___inline] = ACTIONS(1336), + [anon_sym___inline__] = ACTIONS(1336), + [anon_sym___forceinline] = ACTIONS(1336), + [anon_sym_thread_local] = ACTIONS(1336), + [anon_sym___thread] = ACTIONS(1336), + [anon_sym_const] = ACTIONS(1336), + [anon_sym_constexpr] = ACTIONS(1336), + [anon_sym_volatile] = ACTIONS(1336), + [anon_sym_restrict] = ACTIONS(1336), + [anon_sym___restrict__] = ACTIONS(1336), + [anon_sym__Atomic] = ACTIONS(1336), + [anon_sym__Noreturn] = ACTIONS(1336), + [anon_sym_noreturn] = ACTIONS(1336), + [sym_primitive_type] = ACTIONS(1336), + [anon_sym_enum] = ACTIONS(1336), + [anon_sym_struct] = ACTIONS(1336), + [anon_sym_union] = ACTIONS(1336), + [anon_sym_if] = ACTIONS(1336), + [anon_sym_else] = ACTIONS(1336), + [anon_sym_switch] = ACTIONS(1336), + [anon_sym_case] = ACTIONS(1336), + [anon_sym_default] = ACTIONS(1336), + [anon_sym_while] = ACTIONS(1336), + [anon_sym_do] = ACTIONS(1336), + [anon_sym_for] = ACTIONS(1336), + [anon_sym_return] = ACTIONS(1336), + [anon_sym_break] = ACTIONS(1336), + [anon_sym_continue] = ACTIONS(1336), + [anon_sym_goto] = ACTIONS(1336), + [anon_sym___try] = ACTIONS(1336), + [anon_sym___leave] = ACTIONS(1336), + [anon_sym_DASH_DASH] = ACTIONS(1338), + [anon_sym_PLUS_PLUS] = ACTIONS(1338), + [anon_sym_sizeof] = ACTIONS(1336), + [anon_sym___alignof__] = ACTIONS(1336), + [anon_sym___alignof] = ACTIONS(1336), + [anon_sym__alignof] = ACTIONS(1336), + [anon_sym_alignof] = ACTIONS(1336), + [anon_sym__Alignof] = ACTIONS(1336), + [anon_sym_offsetof] = ACTIONS(1336), + [anon_sym__Generic] = ACTIONS(1336), + [anon_sym_asm] = ACTIONS(1336), + [anon_sym___asm__] = ACTIONS(1336), + [sym_number_literal] = ACTIONS(1338), + [anon_sym_L_SQUOTE] = ACTIONS(1338), + [anon_sym_u_SQUOTE] = ACTIONS(1338), + [anon_sym_U_SQUOTE] = ACTIONS(1338), + [anon_sym_u8_SQUOTE] = ACTIONS(1338), + [anon_sym_SQUOTE] = ACTIONS(1338), + [anon_sym_L_DQUOTE] = ACTIONS(1338), + [anon_sym_u_DQUOTE] = ACTIONS(1338), + [anon_sym_U_DQUOTE] = ACTIONS(1338), + [anon_sym_u8_DQUOTE] = ACTIONS(1338), + [anon_sym_DQUOTE] = ACTIONS(1338), + [sym_true] = ACTIONS(1336), + [sym_false] = ACTIONS(1336), + [anon_sym_NULL] = ACTIONS(1336), + [anon_sym_nullptr] = ACTIONS(1336), [sym_comment] = ACTIONS(3), }, [101] = { - [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_LBRACK_LBRACK] = ACTIONS(1347), - [anon_sym___declspec] = 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), - [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_else] = 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_identifier] = ACTIONS(1320), + [aux_sym_preproc_include_token1] = ACTIONS(1320), + [aux_sym_preproc_def_token1] = ACTIONS(1320), + [aux_sym_preproc_if_token1] = ACTIONS(1320), + [aux_sym_preproc_if_token2] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1320), + [aux_sym_preproc_else_token1] = ACTIONS(1320), + [aux_sym_preproc_elif_token1] = ACTIONS(1320), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1320), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1320), + [sym_preproc_directive] = ACTIONS(1320), + [anon_sym_LPAREN2] = ACTIONS(1322), + [anon_sym_BANG] = ACTIONS(1322), + [anon_sym_TILDE] = ACTIONS(1322), + [anon_sym_DASH] = ACTIONS(1320), + [anon_sym_PLUS] = ACTIONS(1320), + [anon_sym_STAR] = ACTIONS(1322), + [anon_sym_AMP] = ACTIONS(1322), + [anon_sym_SEMI] = ACTIONS(1322), + [anon_sym___extension__] = ACTIONS(1320), + [anon_sym_typedef] = ACTIONS(1320), + [anon_sym_extern] = ACTIONS(1320), + [anon_sym___attribute__] = ACTIONS(1320), + [anon_sym___scanf] = ACTIONS(1320), + [anon_sym___printf] = ACTIONS(1320), + [anon_sym___read_mostly] = ACTIONS(1320), + [anon_sym___must_hold] = ACTIONS(1320), + [anon_sym___ro_after_init] = ACTIONS(1320), + [anon_sym___init] = ACTIONS(1320), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1322), + [anon_sym___declspec] = ACTIONS(1320), + [anon_sym___cdecl] = ACTIONS(1320), + [anon_sym___clrcall] = ACTIONS(1320), + [anon_sym___stdcall] = ACTIONS(1320), + [anon_sym___fastcall] = ACTIONS(1320), + [anon_sym___thiscall] = ACTIONS(1320), + [anon_sym___vectorcall] = ACTIONS(1320), + [anon_sym_LBRACE] = ACTIONS(1322), + [anon_sym_signed] = ACTIONS(1320), + [anon_sym_unsigned] = ACTIONS(1320), + [anon_sym_long] = ACTIONS(1320), + [anon_sym_short] = ACTIONS(1320), + [anon_sym_static] = ACTIONS(1320), + [anon_sym_auto] = ACTIONS(1320), + [anon_sym_register] = ACTIONS(1320), + [anon_sym_inline] = ACTIONS(1320), + [anon_sym___inline] = ACTIONS(1320), + [anon_sym___inline__] = ACTIONS(1320), + [anon_sym___forceinline] = ACTIONS(1320), + [anon_sym_thread_local] = ACTIONS(1320), + [anon_sym___thread] = ACTIONS(1320), + [anon_sym_const] = ACTIONS(1320), + [anon_sym_constexpr] = ACTIONS(1320), + [anon_sym_volatile] = ACTIONS(1320), + [anon_sym_restrict] = ACTIONS(1320), + [anon_sym___restrict__] = ACTIONS(1320), + [anon_sym__Atomic] = ACTIONS(1320), + [anon_sym__Noreturn] = ACTIONS(1320), + [anon_sym_noreturn] = ACTIONS(1320), + [sym_primitive_type] = ACTIONS(1320), + [anon_sym_enum] = ACTIONS(1320), + [anon_sym_struct] = ACTIONS(1320), + [anon_sym_union] = ACTIONS(1320), + [anon_sym_if] = ACTIONS(1320), + [anon_sym_else] = ACTIONS(1320), + [anon_sym_switch] = ACTIONS(1320), + [anon_sym_case] = ACTIONS(1320), + [anon_sym_default] = ACTIONS(1320), + [anon_sym_while] = ACTIONS(1320), + [anon_sym_do] = ACTIONS(1320), + [anon_sym_for] = ACTIONS(1320), + [anon_sym_return] = ACTIONS(1320), + [anon_sym_break] = ACTIONS(1320), + [anon_sym_continue] = ACTIONS(1320), + [anon_sym_goto] = ACTIONS(1320), + [anon_sym___try] = ACTIONS(1320), + [anon_sym___leave] = ACTIONS(1320), + [anon_sym_DASH_DASH] = ACTIONS(1322), + [anon_sym_PLUS_PLUS] = ACTIONS(1322), + [anon_sym_sizeof] = ACTIONS(1320), + [anon_sym___alignof__] = ACTIONS(1320), + [anon_sym___alignof] = ACTIONS(1320), + [anon_sym__alignof] = ACTIONS(1320), + [anon_sym_alignof] = ACTIONS(1320), + [anon_sym__Alignof] = ACTIONS(1320), + [anon_sym_offsetof] = ACTIONS(1320), + [anon_sym__Generic] = ACTIONS(1320), + [anon_sym_asm] = ACTIONS(1320), + [anon_sym___asm__] = ACTIONS(1320), + [sym_number_literal] = ACTIONS(1322), + [anon_sym_L_SQUOTE] = ACTIONS(1322), + [anon_sym_u_SQUOTE] = ACTIONS(1322), + [anon_sym_U_SQUOTE] = ACTIONS(1322), + [anon_sym_u8_SQUOTE] = ACTIONS(1322), + [anon_sym_SQUOTE] = ACTIONS(1322), + [anon_sym_L_DQUOTE] = ACTIONS(1322), + [anon_sym_u_DQUOTE] = ACTIONS(1322), + [anon_sym_U_DQUOTE] = ACTIONS(1322), + [anon_sym_u8_DQUOTE] = ACTIONS(1322), + [anon_sym_DQUOTE] = ACTIONS(1322), + [sym_true] = ACTIONS(1320), + [sym_false] = ACTIONS(1320), + [anon_sym_NULL] = ACTIONS(1320), + [anon_sym_nullptr] = ACTIONS(1320), [sym_comment] = ACTIONS(3), }, [102] = { - [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_LBRACK_LBRACK] = ACTIONS(1351), - [anon_sym___declspec] = 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), - [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_else] = 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_identifier] = ACTIONS(1320), + [aux_sym_preproc_include_token1] = ACTIONS(1320), + [aux_sym_preproc_def_token1] = ACTIONS(1320), + [aux_sym_preproc_if_token1] = ACTIONS(1320), + [aux_sym_preproc_if_token2] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1320), + [aux_sym_preproc_else_token1] = ACTIONS(1320), + [aux_sym_preproc_elif_token1] = ACTIONS(1320), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1320), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1320), + [sym_preproc_directive] = ACTIONS(1320), + [anon_sym_LPAREN2] = ACTIONS(1322), + [anon_sym_BANG] = ACTIONS(1322), + [anon_sym_TILDE] = ACTIONS(1322), + [anon_sym_DASH] = ACTIONS(1320), + [anon_sym_PLUS] = ACTIONS(1320), + [anon_sym_STAR] = ACTIONS(1322), + [anon_sym_AMP] = ACTIONS(1322), + [anon_sym_SEMI] = ACTIONS(1322), + [anon_sym___extension__] = ACTIONS(1320), + [anon_sym_typedef] = ACTIONS(1320), + [anon_sym_extern] = ACTIONS(1320), + [anon_sym___attribute__] = ACTIONS(1320), + [anon_sym___scanf] = ACTIONS(1320), + [anon_sym___printf] = ACTIONS(1320), + [anon_sym___read_mostly] = ACTIONS(1320), + [anon_sym___must_hold] = ACTIONS(1320), + [anon_sym___ro_after_init] = ACTIONS(1320), + [anon_sym___init] = ACTIONS(1320), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1322), + [anon_sym___declspec] = ACTIONS(1320), + [anon_sym___cdecl] = ACTIONS(1320), + [anon_sym___clrcall] = ACTIONS(1320), + [anon_sym___stdcall] = ACTIONS(1320), + [anon_sym___fastcall] = ACTIONS(1320), + [anon_sym___thiscall] = ACTIONS(1320), + [anon_sym___vectorcall] = ACTIONS(1320), + [anon_sym_LBRACE] = ACTIONS(1322), + [anon_sym_signed] = ACTIONS(1320), + [anon_sym_unsigned] = ACTIONS(1320), + [anon_sym_long] = ACTIONS(1320), + [anon_sym_short] = ACTIONS(1320), + [anon_sym_static] = ACTIONS(1320), + [anon_sym_auto] = ACTIONS(1320), + [anon_sym_register] = ACTIONS(1320), + [anon_sym_inline] = ACTIONS(1320), + [anon_sym___inline] = ACTIONS(1320), + [anon_sym___inline__] = ACTIONS(1320), + [anon_sym___forceinline] = ACTIONS(1320), + [anon_sym_thread_local] = ACTIONS(1320), + [anon_sym___thread] = ACTIONS(1320), + [anon_sym_const] = ACTIONS(1320), + [anon_sym_constexpr] = ACTIONS(1320), + [anon_sym_volatile] = ACTIONS(1320), + [anon_sym_restrict] = ACTIONS(1320), + [anon_sym___restrict__] = ACTIONS(1320), + [anon_sym__Atomic] = ACTIONS(1320), + [anon_sym__Noreturn] = ACTIONS(1320), + [anon_sym_noreturn] = ACTIONS(1320), + [sym_primitive_type] = ACTIONS(1320), + [anon_sym_enum] = ACTIONS(1320), + [anon_sym_struct] = ACTIONS(1320), + [anon_sym_union] = ACTIONS(1320), + [anon_sym_if] = ACTIONS(1320), + [anon_sym_else] = ACTIONS(1320), + [anon_sym_switch] = ACTIONS(1320), + [anon_sym_case] = ACTIONS(1320), + [anon_sym_default] = ACTIONS(1320), + [anon_sym_while] = ACTIONS(1320), + [anon_sym_do] = ACTIONS(1320), + [anon_sym_for] = ACTIONS(1320), + [anon_sym_return] = ACTIONS(1320), + [anon_sym_break] = ACTIONS(1320), + [anon_sym_continue] = ACTIONS(1320), + [anon_sym_goto] = ACTIONS(1320), + [anon_sym___try] = ACTIONS(1320), + [anon_sym___leave] = ACTIONS(1320), + [anon_sym_DASH_DASH] = ACTIONS(1322), + [anon_sym_PLUS_PLUS] = ACTIONS(1322), + [anon_sym_sizeof] = ACTIONS(1320), + [anon_sym___alignof__] = ACTIONS(1320), + [anon_sym___alignof] = ACTIONS(1320), + [anon_sym__alignof] = ACTIONS(1320), + [anon_sym_alignof] = ACTIONS(1320), + [anon_sym__Alignof] = ACTIONS(1320), + [anon_sym_offsetof] = ACTIONS(1320), + [anon_sym__Generic] = ACTIONS(1320), + [anon_sym_asm] = ACTIONS(1320), + [anon_sym___asm__] = ACTIONS(1320), + [sym_number_literal] = ACTIONS(1322), + [anon_sym_L_SQUOTE] = ACTIONS(1322), + [anon_sym_u_SQUOTE] = ACTIONS(1322), + [anon_sym_U_SQUOTE] = ACTIONS(1322), + [anon_sym_u8_SQUOTE] = ACTIONS(1322), + [anon_sym_SQUOTE] = ACTIONS(1322), + [anon_sym_L_DQUOTE] = ACTIONS(1322), + [anon_sym_u_DQUOTE] = ACTIONS(1322), + [anon_sym_U_DQUOTE] = ACTIONS(1322), + [anon_sym_u8_DQUOTE] = ACTIONS(1322), + [anon_sym_DQUOTE] = ACTIONS(1322), + [sym_true] = ACTIONS(1320), + [sym_false] = ACTIONS(1320), + [anon_sym_NULL] = ACTIONS(1320), + [anon_sym_nullptr] = ACTIONS(1320), [sym_comment] = ACTIONS(3), }, [103] = { - [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_LBRACK_LBRACK] = ACTIONS(1315), - [anon_sym___declspec] = 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), - [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_else] = 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_identifier] = ACTIONS(1320), + [aux_sym_preproc_include_token1] = ACTIONS(1320), + [aux_sym_preproc_def_token1] = ACTIONS(1320), + [aux_sym_preproc_if_token1] = ACTIONS(1320), + [aux_sym_preproc_if_token2] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1320), + [aux_sym_preproc_else_token1] = ACTIONS(1320), + [aux_sym_preproc_elif_token1] = ACTIONS(1320), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1320), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1320), + [sym_preproc_directive] = ACTIONS(1320), + [anon_sym_LPAREN2] = ACTIONS(1322), + [anon_sym_BANG] = ACTIONS(1322), + [anon_sym_TILDE] = ACTIONS(1322), + [anon_sym_DASH] = ACTIONS(1320), + [anon_sym_PLUS] = ACTIONS(1320), + [anon_sym_STAR] = ACTIONS(1322), + [anon_sym_AMP] = ACTIONS(1322), + [anon_sym_SEMI] = ACTIONS(1322), + [anon_sym___extension__] = ACTIONS(1320), + [anon_sym_typedef] = ACTIONS(1320), + [anon_sym_extern] = ACTIONS(1320), + [anon_sym___attribute__] = ACTIONS(1320), + [anon_sym___scanf] = ACTIONS(1320), + [anon_sym___printf] = ACTIONS(1320), + [anon_sym___read_mostly] = ACTIONS(1320), + [anon_sym___must_hold] = ACTIONS(1320), + [anon_sym___ro_after_init] = ACTIONS(1320), + [anon_sym___init] = ACTIONS(1320), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1322), + [anon_sym___declspec] = ACTIONS(1320), + [anon_sym___cdecl] = ACTIONS(1320), + [anon_sym___clrcall] = ACTIONS(1320), + [anon_sym___stdcall] = ACTIONS(1320), + [anon_sym___fastcall] = ACTIONS(1320), + [anon_sym___thiscall] = ACTIONS(1320), + [anon_sym___vectorcall] = ACTIONS(1320), + [anon_sym_LBRACE] = ACTIONS(1322), + [anon_sym_signed] = ACTIONS(1320), + [anon_sym_unsigned] = ACTIONS(1320), + [anon_sym_long] = ACTIONS(1320), + [anon_sym_short] = ACTIONS(1320), + [anon_sym_static] = ACTIONS(1320), + [anon_sym_auto] = ACTIONS(1320), + [anon_sym_register] = ACTIONS(1320), + [anon_sym_inline] = ACTIONS(1320), + [anon_sym___inline] = ACTIONS(1320), + [anon_sym___inline__] = ACTIONS(1320), + [anon_sym___forceinline] = ACTIONS(1320), + [anon_sym_thread_local] = ACTIONS(1320), + [anon_sym___thread] = ACTIONS(1320), + [anon_sym_const] = ACTIONS(1320), + [anon_sym_constexpr] = ACTIONS(1320), + [anon_sym_volatile] = ACTIONS(1320), + [anon_sym_restrict] = ACTIONS(1320), + [anon_sym___restrict__] = ACTIONS(1320), + [anon_sym__Atomic] = ACTIONS(1320), + [anon_sym__Noreturn] = ACTIONS(1320), + [anon_sym_noreturn] = ACTIONS(1320), + [sym_primitive_type] = ACTIONS(1320), + [anon_sym_enum] = ACTIONS(1320), + [anon_sym_struct] = ACTIONS(1320), + [anon_sym_union] = ACTIONS(1320), + [anon_sym_if] = ACTIONS(1320), + [anon_sym_else] = ACTIONS(1320), + [anon_sym_switch] = ACTIONS(1320), + [anon_sym_case] = ACTIONS(1320), + [anon_sym_default] = ACTIONS(1320), + [anon_sym_while] = ACTIONS(1320), + [anon_sym_do] = ACTIONS(1320), + [anon_sym_for] = ACTIONS(1320), + [anon_sym_return] = ACTIONS(1320), + [anon_sym_break] = ACTIONS(1320), + [anon_sym_continue] = ACTIONS(1320), + [anon_sym_goto] = ACTIONS(1320), + [anon_sym___try] = ACTIONS(1320), + [anon_sym___leave] = ACTIONS(1320), + [anon_sym_DASH_DASH] = ACTIONS(1322), + [anon_sym_PLUS_PLUS] = ACTIONS(1322), + [anon_sym_sizeof] = ACTIONS(1320), + [anon_sym___alignof__] = ACTIONS(1320), + [anon_sym___alignof] = ACTIONS(1320), + [anon_sym__alignof] = ACTIONS(1320), + [anon_sym_alignof] = ACTIONS(1320), + [anon_sym__Alignof] = ACTIONS(1320), + [anon_sym_offsetof] = ACTIONS(1320), + [anon_sym__Generic] = ACTIONS(1320), + [anon_sym_asm] = ACTIONS(1320), + [anon_sym___asm__] = ACTIONS(1320), + [sym_number_literal] = ACTIONS(1322), + [anon_sym_L_SQUOTE] = ACTIONS(1322), + [anon_sym_u_SQUOTE] = ACTIONS(1322), + [anon_sym_U_SQUOTE] = ACTIONS(1322), + [anon_sym_u8_SQUOTE] = ACTIONS(1322), + [anon_sym_SQUOTE] = ACTIONS(1322), + [anon_sym_L_DQUOTE] = ACTIONS(1322), + [anon_sym_u_DQUOTE] = ACTIONS(1322), + [anon_sym_U_DQUOTE] = ACTIONS(1322), + [anon_sym_u8_DQUOTE] = ACTIONS(1322), + [anon_sym_DQUOTE] = ACTIONS(1322), + [sym_true] = ACTIONS(1320), + [sym_false] = ACTIONS(1320), + [anon_sym_NULL] = ACTIONS(1320), + [anon_sym_nullptr] = ACTIONS(1320), [sym_comment] = ACTIONS(3), }, [104] = { - [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_LBRACK_LBRACK] = ACTIONS(1315), - [anon_sym___declspec] = 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), - [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_else] = 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_identifier] = ACTIONS(1320), + [aux_sym_preproc_include_token1] = ACTIONS(1320), + [aux_sym_preproc_def_token1] = ACTIONS(1320), + [aux_sym_preproc_if_token1] = ACTIONS(1320), + [aux_sym_preproc_if_token2] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1320), + [aux_sym_preproc_else_token1] = ACTIONS(1320), + [aux_sym_preproc_elif_token1] = ACTIONS(1320), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1320), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1320), + [sym_preproc_directive] = ACTIONS(1320), + [anon_sym_LPAREN2] = ACTIONS(1322), + [anon_sym_BANG] = ACTIONS(1322), + [anon_sym_TILDE] = ACTIONS(1322), + [anon_sym_DASH] = ACTIONS(1320), + [anon_sym_PLUS] = ACTIONS(1320), + [anon_sym_STAR] = ACTIONS(1322), + [anon_sym_AMP] = ACTIONS(1322), + [anon_sym_SEMI] = ACTIONS(1322), + [anon_sym___extension__] = ACTIONS(1320), + [anon_sym_typedef] = ACTIONS(1320), + [anon_sym_extern] = ACTIONS(1320), + [anon_sym___attribute__] = ACTIONS(1320), + [anon_sym___scanf] = ACTIONS(1320), + [anon_sym___printf] = ACTIONS(1320), + [anon_sym___read_mostly] = ACTIONS(1320), + [anon_sym___must_hold] = ACTIONS(1320), + [anon_sym___ro_after_init] = ACTIONS(1320), + [anon_sym___init] = ACTIONS(1320), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1322), + [anon_sym___declspec] = ACTIONS(1320), + [anon_sym___cdecl] = ACTIONS(1320), + [anon_sym___clrcall] = ACTIONS(1320), + [anon_sym___stdcall] = ACTIONS(1320), + [anon_sym___fastcall] = ACTIONS(1320), + [anon_sym___thiscall] = ACTIONS(1320), + [anon_sym___vectorcall] = ACTIONS(1320), + [anon_sym_LBRACE] = ACTIONS(1322), + [anon_sym_signed] = ACTIONS(1320), + [anon_sym_unsigned] = ACTIONS(1320), + [anon_sym_long] = ACTIONS(1320), + [anon_sym_short] = ACTIONS(1320), + [anon_sym_static] = ACTIONS(1320), + [anon_sym_auto] = ACTIONS(1320), + [anon_sym_register] = ACTIONS(1320), + [anon_sym_inline] = ACTIONS(1320), + [anon_sym___inline] = ACTIONS(1320), + [anon_sym___inline__] = ACTIONS(1320), + [anon_sym___forceinline] = ACTIONS(1320), + [anon_sym_thread_local] = ACTIONS(1320), + [anon_sym___thread] = ACTIONS(1320), + [anon_sym_const] = ACTIONS(1320), + [anon_sym_constexpr] = ACTIONS(1320), + [anon_sym_volatile] = ACTIONS(1320), + [anon_sym_restrict] = ACTIONS(1320), + [anon_sym___restrict__] = ACTIONS(1320), + [anon_sym__Atomic] = ACTIONS(1320), + [anon_sym__Noreturn] = ACTIONS(1320), + [anon_sym_noreturn] = ACTIONS(1320), + [sym_primitive_type] = ACTIONS(1320), + [anon_sym_enum] = ACTIONS(1320), + [anon_sym_struct] = ACTIONS(1320), + [anon_sym_union] = ACTIONS(1320), + [anon_sym_if] = ACTIONS(1320), + [anon_sym_else] = ACTIONS(1320), + [anon_sym_switch] = ACTIONS(1320), + [anon_sym_case] = ACTIONS(1320), + [anon_sym_default] = ACTIONS(1320), + [anon_sym_while] = ACTIONS(1320), + [anon_sym_do] = ACTIONS(1320), + [anon_sym_for] = ACTIONS(1320), + [anon_sym_return] = ACTIONS(1320), + [anon_sym_break] = ACTIONS(1320), + [anon_sym_continue] = ACTIONS(1320), + [anon_sym_goto] = ACTIONS(1320), + [anon_sym___try] = ACTIONS(1320), + [anon_sym___leave] = ACTIONS(1320), + [anon_sym_DASH_DASH] = ACTIONS(1322), + [anon_sym_PLUS_PLUS] = ACTIONS(1322), + [anon_sym_sizeof] = ACTIONS(1320), + [anon_sym___alignof__] = ACTIONS(1320), + [anon_sym___alignof] = ACTIONS(1320), + [anon_sym__alignof] = ACTIONS(1320), + [anon_sym_alignof] = ACTIONS(1320), + [anon_sym__Alignof] = ACTIONS(1320), + [anon_sym_offsetof] = ACTIONS(1320), + [anon_sym__Generic] = ACTIONS(1320), + [anon_sym_asm] = ACTIONS(1320), + [anon_sym___asm__] = ACTIONS(1320), + [sym_number_literal] = ACTIONS(1322), + [anon_sym_L_SQUOTE] = ACTIONS(1322), + [anon_sym_u_SQUOTE] = ACTIONS(1322), + [anon_sym_U_SQUOTE] = ACTIONS(1322), + [anon_sym_u8_SQUOTE] = ACTIONS(1322), + [anon_sym_SQUOTE] = ACTIONS(1322), + [anon_sym_L_DQUOTE] = ACTIONS(1322), + [anon_sym_u_DQUOTE] = ACTIONS(1322), + [anon_sym_U_DQUOTE] = ACTIONS(1322), + [anon_sym_u8_DQUOTE] = ACTIONS(1322), + [anon_sym_DQUOTE] = ACTIONS(1322), + [sym_true] = ACTIONS(1320), + [sym_false] = ACTIONS(1320), + [anon_sym_NULL] = ACTIONS(1320), + [anon_sym_nullptr] = ACTIONS(1320), [sym_comment] = ACTIONS(3), }, [105] = { - [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_LBRACK_LBRACK] = ACTIONS(1315), - [anon_sym___declspec] = 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), - [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_else] = 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_identifier] = ACTIONS(1320), + [aux_sym_preproc_include_token1] = ACTIONS(1320), + [aux_sym_preproc_def_token1] = ACTIONS(1320), + [aux_sym_preproc_if_token1] = ACTIONS(1320), + [aux_sym_preproc_if_token2] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1320), + [aux_sym_preproc_else_token1] = ACTIONS(1320), + [aux_sym_preproc_elif_token1] = ACTIONS(1320), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1320), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1320), + [sym_preproc_directive] = ACTIONS(1320), + [anon_sym_LPAREN2] = ACTIONS(1322), + [anon_sym_BANG] = ACTIONS(1322), + [anon_sym_TILDE] = ACTIONS(1322), + [anon_sym_DASH] = ACTIONS(1320), + [anon_sym_PLUS] = ACTIONS(1320), + [anon_sym_STAR] = ACTIONS(1322), + [anon_sym_AMP] = ACTIONS(1322), + [anon_sym_SEMI] = ACTIONS(1322), + [anon_sym___extension__] = ACTIONS(1320), + [anon_sym_typedef] = ACTIONS(1320), + [anon_sym_extern] = ACTIONS(1320), + [anon_sym___attribute__] = ACTIONS(1320), + [anon_sym___scanf] = ACTIONS(1320), + [anon_sym___printf] = ACTIONS(1320), + [anon_sym___read_mostly] = ACTIONS(1320), + [anon_sym___must_hold] = ACTIONS(1320), + [anon_sym___ro_after_init] = ACTIONS(1320), + [anon_sym___init] = ACTIONS(1320), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1322), + [anon_sym___declspec] = ACTIONS(1320), + [anon_sym___cdecl] = ACTIONS(1320), + [anon_sym___clrcall] = ACTIONS(1320), + [anon_sym___stdcall] = ACTIONS(1320), + [anon_sym___fastcall] = ACTIONS(1320), + [anon_sym___thiscall] = ACTIONS(1320), + [anon_sym___vectorcall] = ACTIONS(1320), + [anon_sym_LBRACE] = ACTIONS(1322), + [anon_sym_signed] = ACTIONS(1320), + [anon_sym_unsigned] = ACTIONS(1320), + [anon_sym_long] = ACTIONS(1320), + [anon_sym_short] = ACTIONS(1320), + [anon_sym_static] = ACTIONS(1320), + [anon_sym_auto] = ACTIONS(1320), + [anon_sym_register] = ACTIONS(1320), + [anon_sym_inline] = ACTIONS(1320), + [anon_sym___inline] = ACTIONS(1320), + [anon_sym___inline__] = ACTIONS(1320), + [anon_sym___forceinline] = ACTIONS(1320), + [anon_sym_thread_local] = ACTIONS(1320), + [anon_sym___thread] = ACTIONS(1320), + [anon_sym_const] = ACTIONS(1320), + [anon_sym_constexpr] = ACTIONS(1320), + [anon_sym_volatile] = ACTIONS(1320), + [anon_sym_restrict] = ACTIONS(1320), + [anon_sym___restrict__] = ACTIONS(1320), + [anon_sym__Atomic] = ACTIONS(1320), + [anon_sym__Noreturn] = ACTIONS(1320), + [anon_sym_noreturn] = ACTIONS(1320), + [sym_primitive_type] = ACTIONS(1320), + [anon_sym_enum] = ACTIONS(1320), + [anon_sym_struct] = ACTIONS(1320), + [anon_sym_union] = ACTIONS(1320), + [anon_sym_if] = ACTIONS(1320), + [anon_sym_else] = ACTIONS(1320), + [anon_sym_switch] = ACTIONS(1320), + [anon_sym_case] = ACTIONS(1320), + [anon_sym_default] = ACTIONS(1320), + [anon_sym_while] = ACTIONS(1320), + [anon_sym_do] = ACTIONS(1320), + [anon_sym_for] = ACTIONS(1320), + [anon_sym_return] = ACTIONS(1320), + [anon_sym_break] = ACTIONS(1320), + [anon_sym_continue] = ACTIONS(1320), + [anon_sym_goto] = ACTIONS(1320), + [anon_sym___try] = ACTIONS(1320), + [anon_sym___leave] = ACTIONS(1320), + [anon_sym_DASH_DASH] = ACTIONS(1322), + [anon_sym_PLUS_PLUS] = ACTIONS(1322), + [anon_sym_sizeof] = ACTIONS(1320), + [anon_sym___alignof__] = ACTIONS(1320), + [anon_sym___alignof] = ACTIONS(1320), + [anon_sym__alignof] = ACTIONS(1320), + [anon_sym_alignof] = ACTIONS(1320), + [anon_sym__Alignof] = ACTIONS(1320), + [anon_sym_offsetof] = ACTIONS(1320), + [anon_sym__Generic] = ACTIONS(1320), + [anon_sym_asm] = ACTIONS(1320), + [anon_sym___asm__] = ACTIONS(1320), + [sym_number_literal] = ACTIONS(1322), + [anon_sym_L_SQUOTE] = ACTIONS(1322), + [anon_sym_u_SQUOTE] = ACTIONS(1322), + [anon_sym_U_SQUOTE] = ACTIONS(1322), + [anon_sym_u8_SQUOTE] = ACTIONS(1322), + [anon_sym_SQUOTE] = ACTIONS(1322), + [anon_sym_L_DQUOTE] = ACTIONS(1322), + [anon_sym_u_DQUOTE] = ACTIONS(1322), + [anon_sym_U_DQUOTE] = ACTIONS(1322), + [anon_sym_u8_DQUOTE] = ACTIONS(1322), + [anon_sym_DQUOTE] = ACTIONS(1322), + [sym_true] = ACTIONS(1320), + [sym_false] = ACTIONS(1320), + [anon_sym_NULL] = ACTIONS(1320), + [anon_sym_nullptr] = ACTIONS(1320), [sym_comment] = ACTIONS(3), }, [106] = { - [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_LBRACK_LBRACK] = ACTIONS(1315), - [anon_sym___declspec] = 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), - [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_else] = 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_identifier] = ACTIONS(1320), + [aux_sym_preproc_include_token1] = ACTIONS(1320), + [aux_sym_preproc_def_token1] = ACTIONS(1320), + [aux_sym_preproc_if_token1] = ACTIONS(1320), + [aux_sym_preproc_if_token2] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1320), + [aux_sym_preproc_else_token1] = ACTIONS(1320), + [aux_sym_preproc_elif_token1] = ACTIONS(1320), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1320), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1320), + [sym_preproc_directive] = ACTIONS(1320), + [anon_sym_LPAREN2] = ACTIONS(1322), + [anon_sym_BANG] = ACTIONS(1322), + [anon_sym_TILDE] = ACTIONS(1322), + [anon_sym_DASH] = ACTIONS(1320), + [anon_sym_PLUS] = ACTIONS(1320), + [anon_sym_STAR] = ACTIONS(1322), + [anon_sym_AMP] = ACTIONS(1322), + [anon_sym_SEMI] = ACTIONS(1322), + [anon_sym___extension__] = ACTIONS(1320), + [anon_sym_typedef] = ACTIONS(1320), + [anon_sym_extern] = ACTIONS(1320), + [anon_sym___attribute__] = ACTIONS(1320), + [anon_sym___scanf] = ACTIONS(1320), + [anon_sym___printf] = ACTIONS(1320), + [anon_sym___read_mostly] = ACTIONS(1320), + [anon_sym___must_hold] = ACTIONS(1320), + [anon_sym___ro_after_init] = ACTIONS(1320), + [anon_sym___init] = ACTIONS(1320), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1322), + [anon_sym___declspec] = ACTIONS(1320), + [anon_sym___cdecl] = ACTIONS(1320), + [anon_sym___clrcall] = ACTIONS(1320), + [anon_sym___stdcall] = ACTIONS(1320), + [anon_sym___fastcall] = ACTIONS(1320), + [anon_sym___thiscall] = ACTIONS(1320), + [anon_sym___vectorcall] = ACTIONS(1320), + [anon_sym_LBRACE] = ACTIONS(1322), + [anon_sym_signed] = ACTIONS(1320), + [anon_sym_unsigned] = ACTIONS(1320), + [anon_sym_long] = ACTIONS(1320), + [anon_sym_short] = ACTIONS(1320), + [anon_sym_static] = ACTIONS(1320), + [anon_sym_auto] = ACTIONS(1320), + [anon_sym_register] = ACTIONS(1320), + [anon_sym_inline] = ACTIONS(1320), + [anon_sym___inline] = ACTIONS(1320), + [anon_sym___inline__] = ACTIONS(1320), + [anon_sym___forceinline] = ACTIONS(1320), + [anon_sym_thread_local] = ACTIONS(1320), + [anon_sym___thread] = ACTIONS(1320), + [anon_sym_const] = ACTIONS(1320), + [anon_sym_constexpr] = ACTIONS(1320), + [anon_sym_volatile] = ACTIONS(1320), + [anon_sym_restrict] = ACTIONS(1320), + [anon_sym___restrict__] = ACTIONS(1320), + [anon_sym__Atomic] = ACTIONS(1320), + [anon_sym__Noreturn] = ACTIONS(1320), + [anon_sym_noreturn] = ACTIONS(1320), + [sym_primitive_type] = ACTIONS(1320), + [anon_sym_enum] = ACTIONS(1320), + [anon_sym_struct] = ACTIONS(1320), + [anon_sym_union] = ACTIONS(1320), + [anon_sym_if] = ACTIONS(1320), + [anon_sym_else] = ACTIONS(1320), + [anon_sym_switch] = ACTIONS(1320), + [anon_sym_case] = ACTIONS(1320), + [anon_sym_default] = ACTIONS(1320), + [anon_sym_while] = ACTIONS(1320), + [anon_sym_do] = ACTIONS(1320), + [anon_sym_for] = ACTIONS(1320), + [anon_sym_return] = ACTIONS(1320), + [anon_sym_break] = ACTIONS(1320), + [anon_sym_continue] = ACTIONS(1320), + [anon_sym_goto] = ACTIONS(1320), + [anon_sym___try] = ACTIONS(1320), + [anon_sym___leave] = ACTIONS(1320), + [anon_sym_DASH_DASH] = ACTIONS(1322), + [anon_sym_PLUS_PLUS] = ACTIONS(1322), + [anon_sym_sizeof] = ACTIONS(1320), + [anon_sym___alignof__] = ACTIONS(1320), + [anon_sym___alignof] = ACTIONS(1320), + [anon_sym__alignof] = ACTIONS(1320), + [anon_sym_alignof] = ACTIONS(1320), + [anon_sym__Alignof] = ACTIONS(1320), + [anon_sym_offsetof] = ACTIONS(1320), + [anon_sym__Generic] = ACTIONS(1320), + [anon_sym_asm] = ACTIONS(1320), + [anon_sym___asm__] = ACTIONS(1320), + [sym_number_literal] = ACTIONS(1322), + [anon_sym_L_SQUOTE] = ACTIONS(1322), + [anon_sym_u_SQUOTE] = ACTIONS(1322), + [anon_sym_U_SQUOTE] = ACTIONS(1322), + [anon_sym_u8_SQUOTE] = ACTIONS(1322), + [anon_sym_SQUOTE] = ACTIONS(1322), + [anon_sym_L_DQUOTE] = ACTIONS(1322), + [anon_sym_u_DQUOTE] = ACTIONS(1322), + [anon_sym_U_DQUOTE] = ACTIONS(1322), + [anon_sym_u8_DQUOTE] = ACTIONS(1322), + [anon_sym_DQUOTE] = ACTIONS(1322), + [sym_true] = ACTIONS(1320), + [sym_false] = ACTIONS(1320), + [anon_sym_NULL] = ACTIONS(1320), + [anon_sym_nullptr] = ACTIONS(1320), [sym_comment] = ACTIONS(3), }, [107] = { - [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_LBRACK_LBRACK] = ACTIONS(1315), - [anon_sym___declspec] = 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), - [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_else] = 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_identifier] = ACTIONS(1340), + [aux_sym_preproc_include_token1] = ACTIONS(1340), + [aux_sym_preproc_def_token1] = ACTIONS(1340), + [aux_sym_preproc_if_token1] = ACTIONS(1340), + [aux_sym_preproc_if_token2] = ACTIONS(1340), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1340), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1340), + [aux_sym_preproc_else_token1] = ACTIONS(1340), + [aux_sym_preproc_elif_token1] = ACTIONS(1340), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1340), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1340), + [sym_preproc_directive] = ACTIONS(1340), + [anon_sym_LPAREN2] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1342), + [anon_sym_TILDE] = ACTIONS(1342), + [anon_sym_DASH] = ACTIONS(1340), + [anon_sym_PLUS] = ACTIONS(1340), + [anon_sym_STAR] = ACTIONS(1342), + [anon_sym_AMP] = ACTIONS(1342), + [anon_sym_SEMI] = ACTIONS(1342), + [anon_sym___extension__] = ACTIONS(1340), + [anon_sym_typedef] = ACTIONS(1340), + [anon_sym_extern] = ACTIONS(1340), + [anon_sym___attribute__] = ACTIONS(1340), + [anon_sym___scanf] = ACTIONS(1340), + [anon_sym___printf] = ACTIONS(1340), + [anon_sym___read_mostly] = ACTIONS(1340), + [anon_sym___must_hold] = ACTIONS(1340), + [anon_sym___ro_after_init] = ACTIONS(1340), + [anon_sym___init] = ACTIONS(1340), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1342), + [anon_sym___declspec] = ACTIONS(1340), + [anon_sym___cdecl] = ACTIONS(1340), + [anon_sym___clrcall] = ACTIONS(1340), + [anon_sym___stdcall] = ACTIONS(1340), + [anon_sym___fastcall] = ACTIONS(1340), + [anon_sym___thiscall] = ACTIONS(1340), + [anon_sym___vectorcall] = ACTIONS(1340), + [anon_sym_LBRACE] = ACTIONS(1342), + [anon_sym_signed] = ACTIONS(1340), + [anon_sym_unsigned] = ACTIONS(1340), + [anon_sym_long] = ACTIONS(1340), + [anon_sym_short] = ACTIONS(1340), + [anon_sym_static] = ACTIONS(1340), + [anon_sym_auto] = ACTIONS(1340), + [anon_sym_register] = ACTIONS(1340), + [anon_sym_inline] = ACTIONS(1340), + [anon_sym___inline] = ACTIONS(1340), + [anon_sym___inline__] = ACTIONS(1340), + [anon_sym___forceinline] = ACTIONS(1340), + [anon_sym_thread_local] = ACTIONS(1340), + [anon_sym___thread] = ACTIONS(1340), + [anon_sym_const] = ACTIONS(1340), + [anon_sym_constexpr] = ACTIONS(1340), + [anon_sym_volatile] = ACTIONS(1340), + [anon_sym_restrict] = ACTIONS(1340), + [anon_sym___restrict__] = ACTIONS(1340), + [anon_sym__Atomic] = ACTIONS(1340), + [anon_sym__Noreturn] = ACTIONS(1340), + [anon_sym_noreturn] = ACTIONS(1340), + [sym_primitive_type] = ACTIONS(1340), + [anon_sym_enum] = ACTIONS(1340), + [anon_sym_struct] = ACTIONS(1340), + [anon_sym_union] = ACTIONS(1340), + [anon_sym_if] = ACTIONS(1340), + [anon_sym_else] = ACTIONS(1340), + [anon_sym_switch] = ACTIONS(1340), + [anon_sym_case] = ACTIONS(1340), + [anon_sym_default] = ACTIONS(1340), + [anon_sym_while] = ACTIONS(1340), + [anon_sym_do] = ACTIONS(1340), + [anon_sym_for] = ACTIONS(1340), + [anon_sym_return] = ACTIONS(1340), + [anon_sym_break] = ACTIONS(1340), + [anon_sym_continue] = ACTIONS(1340), + [anon_sym_goto] = ACTIONS(1340), + [anon_sym___try] = ACTIONS(1340), + [anon_sym___leave] = ACTIONS(1340), + [anon_sym_DASH_DASH] = ACTIONS(1342), + [anon_sym_PLUS_PLUS] = ACTIONS(1342), + [anon_sym_sizeof] = ACTIONS(1340), + [anon_sym___alignof__] = ACTIONS(1340), + [anon_sym___alignof] = ACTIONS(1340), + [anon_sym__alignof] = ACTIONS(1340), + [anon_sym_alignof] = ACTIONS(1340), + [anon_sym__Alignof] = ACTIONS(1340), + [anon_sym_offsetof] = ACTIONS(1340), + [anon_sym__Generic] = ACTIONS(1340), + [anon_sym_asm] = ACTIONS(1340), + [anon_sym___asm__] = ACTIONS(1340), + [sym_number_literal] = ACTIONS(1342), + [anon_sym_L_SQUOTE] = ACTIONS(1342), + [anon_sym_u_SQUOTE] = ACTIONS(1342), + [anon_sym_U_SQUOTE] = ACTIONS(1342), + [anon_sym_u8_SQUOTE] = ACTIONS(1342), + [anon_sym_SQUOTE] = ACTIONS(1342), + [anon_sym_L_DQUOTE] = ACTIONS(1342), + [anon_sym_u_DQUOTE] = ACTIONS(1342), + [anon_sym_U_DQUOTE] = ACTIONS(1342), + [anon_sym_u8_DQUOTE] = ACTIONS(1342), + [anon_sym_DQUOTE] = ACTIONS(1342), + [sym_true] = ACTIONS(1340), + [sym_false] = ACTIONS(1340), + [anon_sym_NULL] = ACTIONS(1340), + [anon_sym_nullptr] = ACTIONS(1340), [sym_comment] = ACTIONS(3), }, [108] = { - [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_LBRACK_LBRACK] = ACTIONS(1315), - [anon_sym___declspec] = 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), - [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_else] = 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_identifier] = ACTIONS(1344), + [aux_sym_preproc_include_token1] = ACTIONS(1344), + [aux_sym_preproc_def_token1] = ACTIONS(1344), + [aux_sym_preproc_if_token1] = ACTIONS(1344), + [aux_sym_preproc_if_token2] = ACTIONS(1344), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1344), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1344), + [aux_sym_preproc_else_token1] = ACTIONS(1344), + [aux_sym_preproc_elif_token1] = ACTIONS(1344), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1344), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1344), + [sym_preproc_directive] = ACTIONS(1344), + [anon_sym_LPAREN2] = ACTIONS(1346), + [anon_sym_BANG] = ACTIONS(1346), + [anon_sym_TILDE] = ACTIONS(1346), + [anon_sym_DASH] = ACTIONS(1344), + [anon_sym_PLUS] = ACTIONS(1344), + [anon_sym_STAR] = ACTIONS(1346), + [anon_sym_AMP] = ACTIONS(1346), + [anon_sym_SEMI] = ACTIONS(1346), + [anon_sym___extension__] = ACTIONS(1344), + [anon_sym_typedef] = ACTIONS(1344), + [anon_sym_extern] = ACTIONS(1344), + [anon_sym___attribute__] = ACTIONS(1344), + [anon_sym___scanf] = ACTIONS(1344), + [anon_sym___printf] = ACTIONS(1344), + [anon_sym___read_mostly] = ACTIONS(1344), + [anon_sym___must_hold] = ACTIONS(1344), + [anon_sym___ro_after_init] = ACTIONS(1344), + [anon_sym___init] = ACTIONS(1344), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1346), + [anon_sym___declspec] = ACTIONS(1344), + [anon_sym___cdecl] = ACTIONS(1344), + [anon_sym___clrcall] = ACTIONS(1344), + [anon_sym___stdcall] = ACTIONS(1344), + [anon_sym___fastcall] = ACTIONS(1344), + [anon_sym___thiscall] = ACTIONS(1344), + [anon_sym___vectorcall] = ACTIONS(1344), + [anon_sym_LBRACE] = ACTIONS(1346), + [anon_sym_signed] = ACTIONS(1344), + [anon_sym_unsigned] = ACTIONS(1344), + [anon_sym_long] = ACTIONS(1344), + [anon_sym_short] = ACTIONS(1344), + [anon_sym_static] = ACTIONS(1344), + [anon_sym_auto] = ACTIONS(1344), + [anon_sym_register] = ACTIONS(1344), + [anon_sym_inline] = ACTIONS(1344), + [anon_sym___inline] = ACTIONS(1344), + [anon_sym___inline__] = ACTIONS(1344), + [anon_sym___forceinline] = ACTIONS(1344), + [anon_sym_thread_local] = ACTIONS(1344), + [anon_sym___thread] = ACTIONS(1344), + [anon_sym_const] = ACTIONS(1344), + [anon_sym_constexpr] = ACTIONS(1344), + [anon_sym_volatile] = ACTIONS(1344), + [anon_sym_restrict] = ACTIONS(1344), + [anon_sym___restrict__] = ACTIONS(1344), + [anon_sym__Atomic] = ACTIONS(1344), + [anon_sym__Noreturn] = ACTIONS(1344), + [anon_sym_noreturn] = ACTIONS(1344), + [sym_primitive_type] = ACTIONS(1344), + [anon_sym_enum] = ACTIONS(1344), + [anon_sym_struct] = ACTIONS(1344), + [anon_sym_union] = ACTIONS(1344), + [anon_sym_if] = ACTIONS(1344), + [anon_sym_else] = ACTIONS(1344), + [anon_sym_switch] = ACTIONS(1344), + [anon_sym_case] = ACTIONS(1344), + [anon_sym_default] = ACTIONS(1344), + [anon_sym_while] = ACTIONS(1344), + [anon_sym_do] = ACTIONS(1344), + [anon_sym_for] = ACTIONS(1344), + [anon_sym_return] = ACTIONS(1344), + [anon_sym_break] = ACTIONS(1344), + [anon_sym_continue] = ACTIONS(1344), + [anon_sym_goto] = ACTIONS(1344), + [anon_sym___try] = ACTIONS(1344), + [anon_sym___leave] = ACTIONS(1344), + [anon_sym_DASH_DASH] = ACTIONS(1346), + [anon_sym_PLUS_PLUS] = ACTIONS(1346), + [anon_sym_sizeof] = ACTIONS(1344), + [anon_sym___alignof__] = ACTIONS(1344), + [anon_sym___alignof] = ACTIONS(1344), + [anon_sym__alignof] = ACTIONS(1344), + [anon_sym_alignof] = ACTIONS(1344), + [anon_sym__Alignof] = ACTIONS(1344), + [anon_sym_offsetof] = ACTIONS(1344), + [anon_sym__Generic] = ACTIONS(1344), + [anon_sym_asm] = ACTIONS(1344), + [anon_sym___asm__] = ACTIONS(1344), + [sym_number_literal] = ACTIONS(1346), + [anon_sym_L_SQUOTE] = ACTIONS(1346), + [anon_sym_u_SQUOTE] = ACTIONS(1346), + [anon_sym_U_SQUOTE] = ACTIONS(1346), + [anon_sym_u8_SQUOTE] = ACTIONS(1346), + [anon_sym_SQUOTE] = ACTIONS(1346), + [anon_sym_L_DQUOTE] = ACTIONS(1346), + [anon_sym_u_DQUOTE] = ACTIONS(1346), + [anon_sym_U_DQUOTE] = ACTIONS(1346), + [anon_sym_u8_DQUOTE] = ACTIONS(1346), + [anon_sym_DQUOTE] = ACTIONS(1346), + [sym_true] = ACTIONS(1344), + [sym_false] = ACTIONS(1344), + [anon_sym_NULL] = ACTIONS(1344), + [anon_sym_nullptr] = ACTIONS(1344), [sym_comment] = ACTIONS(3), }, [109] = { - [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_LBRACK_LBRACK] = ACTIONS(1315), - [anon_sym___declspec] = 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), - [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_else] = 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_identifier] = ACTIONS(1348), + [aux_sym_preproc_include_token1] = ACTIONS(1348), + [aux_sym_preproc_def_token1] = ACTIONS(1348), + [aux_sym_preproc_if_token1] = ACTIONS(1348), + [aux_sym_preproc_if_token2] = ACTIONS(1348), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1348), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1348), + [aux_sym_preproc_else_token1] = ACTIONS(1348), + [aux_sym_preproc_elif_token1] = ACTIONS(1348), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1348), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1348), + [sym_preproc_directive] = ACTIONS(1348), + [anon_sym_LPAREN2] = ACTIONS(1350), + [anon_sym_BANG] = ACTIONS(1350), + [anon_sym_TILDE] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(1348), + [anon_sym_PLUS] = ACTIONS(1348), + [anon_sym_STAR] = ACTIONS(1350), + [anon_sym_AMP] = ACTIONS(1350), + [anon_sym_SEMI] = ACTIONS(1350), + [anon_sym___extension__] = ACTIONS(1348), + [anon_sym_typedef] = ACTIONS(1348), + [anon_sym_extern] = ACTIONS(1348), + [anon_sym___attribute__] = ACTIONS(1348), + [anon_sym___scanf] = ACTIONS(1348), + [anon_sym___printf] = ACTIONS(1348), + [anon_sym___read_mostly] = ACTIONS(1348), + [anon_sym___must_hold] = ACTIONS(1348), + [anon_sym___ro_after_init] = ACTIONS(1348), + [anon_sym___init] = ACTIONS(1348), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1350), + [anon_sym___declspec] = ACTIONS(1348), + [anon_sym___cdecl] = ACTIONS(1348), + [anon_sym___clrcall] = ACTIONS(1348), + [anon_sym___stdcall] = ACTIONS(1348), + [anon_sym___fastcall] = ACTIONS(1348), + [anon_sym___thiscall] = ACTIONS(1348), + [anon_sym___vectorcall] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_signed] = ACTIONS(1348), + [anon_sym_unsigned] = ACTIONS(1348), + [anon_sym_long] = ACTIONS(1348), + [anon_sym_short] = ACTIONS(1348), + [anon_sym_static] = ACTIONS(1348), + [anon_sym_auto] = ACTIONS(1348), + [anon_sym_register] = ACTIONS(1348), + [anon_sym_inline] = ACTIONS(1348), + [anon_sym___inline] = ACTIONS(1348), + [anon_sym___inline__] = ACTIONS(1348), + [anon_sym___forceinline] = ACTIONS(1348), + [anon_sym_thread_local] = ACTIONS(1348), + [anon_sym___thread] = ACTIONS(1348), + [anon_sym_const] = ACTIONS(1348), + [anon_sym_constexpr] = ACTIONS(1348), + [anon_sym_volatile] = ACTIONS(1348), + [anon_sym_restrict] = ACTIONS(1348), + [anon_sym___restrict__] = ACTIONS(1348), + [anon_sym__Atomic] = ACTIONS(1348), + [anon_sym__Noreturn] = ACTIONS(1348), + [anon_sym_noreturn] = ACTIONS(1348), + [sym_primitive_type] = ACTIONS(1348), + [anon_sym_enum] = ACTIONS(1348), + [anon_sym_struct] = ACTIONS(1348), + [anon_sym_union] = ACTIONS(1348), + [anon_sym_if] = ACTIONS(1348), + [anon_sym_else] = ACTIONS(1348), + [anon_sym_switch] = ACTIONS(1348), + [anon_sym_case] = ACTIONS(1348), + [anon_sym_default] = ACTIONS(1348), + [anon_sym_while] = ACTIONS(1348), + [anon_sym_do] = ACTIONS(1348), + [anon_sym_for] = ACTIONS(1348), + [anon_sym_return] = ACTIONS(1348), + [anon_sym_break] = ACTIONS(1348), + [anon_sym_continue] = ACTIONS(1348), + [anon_sym_goto] = ACTIONS(1348), + [anon_sym___try] = ACTIONS(1348), + [anon_sym___leave] = ACTIONS(1348), + [anon_sym_DASH_DASH] = ACTIONS(1350), + [anon_sym_PLUS_PLUS] = ACTIONS(1350), + [anon_sym_sizeof] = ACTIONS(1348), + [anon_sym___alignof__] = ACTIONS(1348), + [anon_sym___alignof] = ACTIONS(1348), + [anon_sym__alignof] = ACTIONS(1348), + [anon_sym_alignof] = ACTIONS(1348), + [anon_sym__Alignof] = ACTIONS(1348), + [anon_sym_offsetof] = ACTIONS(1348), + [anon_sym__Generic] = ACTIONS(1348), + [anon_sym_asm] = ACTIONS(1348), + [anon_sym___asm__] = ACTIONS(1348), + [sym_number_literal] = ACTIONS(1350), + [anon_sym_L_SQUOTE] = ACTIONS(1350), + [anon_sym_u_SQUOTE] = ACTIONS(1350), + [anon_sym_U_SQUOTE] = ACTIONS(1350), + [anon_sym_u8_SQUOTE] = ACTIONS(1350), + [anon_sym_SQUOTE] = ACTIONS(1350), + [anon_sym_L_DQUOTE] = ACTIONS(1350), + [anon_sym_u_DQUOTE] = ACTIONS(1350), + [anon_sym_U_DQUOTE] = ACTIONS(1350), + [anon_sym_u8_DQUOTE] = ACTIONS(1350), + [anon_sym_DQUOTE] = ACTIONS(1350), + [sym_true] = ACTIONS(1348), + [sym_false] = ACTIONS(1348), + [anon_sym_NULL] = ACTIONS(1348), + [anon_sym_nullptr] = ACTIONS(1348), [sym_comment] = ACTIONS(3), }, [110] = { - [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_LBRACK_LBRACK] = ACTIONS(1355), - [anon_sym___declspec] = 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), - [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_else] = 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_identifier] = ACTIONS(1320), + [aux_sym_preproc_include_token1] = ACTIONS(1320), + [aux_sym_preproc_def_token1] = ACTIONS(1320), + [aux_sym_preproc_if_token1] = ACTIONS(1320), + [aux_sym_preproc_if_token2] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1320), + [aux_sym_preproc_else_token1] = ACTIONS(1320), + [aux_sym_preproc_elif_token1] = ACTIONS(1320), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1320), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1320), + [sym_preproc_directive] = ACTIONS(1320), + [anon_sym_LPAREN2] = ACTIONS(1322), + [anon_sym_BANG] = ACTIONS(1322), + [anon_sym_TILDE] = ACTIONS(1322), + [anon_sym_DASH] = ACTIONS(1320), + [anon_sym_PLUS] = ACTIONS(1320), + [anon_sym_STAR] = ACTIONS(1322), + [anon_sym_AMP] = ACTIONS(1322), + [anon_sym_SEMI] = ACTIONS(1322), + [anon_sym___extension__] = ACTIONS(1320), + [anon_sym_typedef] = ACTIONS(1320), + [anon_sym_extern] = ACTIONS(1320), + [anon_sym___attribute__] = ACTIONS(1320), + [anon_sym___scanf] = ACTIONS(1320), + [anon_sym___printf] = ACTIONS(1320), + [anon_sym___read_mostly] = ACTIONS(1320), + [anon_sym___must_hold] = ACTIONS(1320), + [anon_sym___ro_after_init] = ACTIONS(1320), + [anon_sym___init] = ACTIONS(1320), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1322), + [anon_sym___declspec] = ACTIONS(1320), + [anon_sym___cdecl] = ACTIONS(1320), + [anon_sym___clrcall] = ACTIONS(1320), + [anon_sym___stdcall] = ACTIONS(1320), + [anon_sym___fastcall] = ACTIONS(1320), + [anon_sym___thiscall] = ACTIONS(1320), + [anon_sym___vectorcall] = ACTIONS(1320), + [anon_sym_LBRACE] = ACTIONS(1322), + [anon_sym_signed] = ACTIONS(1320), + [anon_sym_unsigned] = ACTIONS(1320), + [anon_sym_long] = ACTIONS(1320), + [anon_sym_short] = ACTIONS(1320), + [anon_sym_static] = ACTIONS(1320), + [anon_sym_auto] = ACTIONS(1320), + [anon_sym_register] = ACTIONS(1320), + [anon_sym_inline] = ACTIONS(1320), + [anon_sym___inline] = ACTIONS(1320), + [anon_sym___inline__] = ACTIONS(1320), + [anon_sym___forceinline] = ACTIONS(1320), + [anon_sym_thread_local] = ACTIONS(1320), + [anon_sym___thread] = ACTIONS(1320), + [anon_sym_const] = ACTIONS(1320), + [anon_sym_constexpr] = ACTIONS(1320), + [anon_sym_volatile] = ACTIONS(1320), + [anon_sym_restrict] = ACTIONS(1320), + [anon_sym___restrict__] = ACTIONS(1320), + [anon_sym__Atomic] = ACTIONS(1320), + [anon_sym__Noreturn] = ACTIONS(1320), + [anon_sym_noreturn] = ACTIONS(1320), + [sym_primitive_type] = ACTIONS(1320), + [anon_sym_enum] = ACTIONS(1320), + [anon_sym_struct] = ACTIONS(1320), + [anon_sym_union] = ACTIONS(1320), + [anon_sym_if] = ACTIONS(1320), + [anon_sym_else] = ACTIONS(1320), + [anon_sym_switch] = ACTIONS(1320), + [anon_sym_case] = ACTIONS(1320), + [anon_sym_default] = ACTIONS(1320), + [anon_sym_while] = ACTIONS(1320), + [anon_sym_do] = ACTIONS(1320), + [anon_sym_for] = ACTIONS(1320), + [anon_sym_return] = ACTIONS(1320), + [anon_sym_break] = ACTIONS(1320), + [anon_sym_continue] = ACTIONS(1320), + [anon_sym_goto] = ACTIONS(1320), + [anon_sym___try] = ACTIONS(1320), + [anon_sym___leave] = ACTIONS(1320), + [anon_sym_DASH_DASH] = ACTIONS(1322), + [anon_sym_PLUS_PLUS] = ACTIONS(1322), + [anon_sym_sizeof] = ACTIONS(1320), + [anon_sym___alignof__] = ACTIONS(1320), + [anon_sym___alignof] = ACTIONS(1320), + [anon_sym__alignof] = ACTIONS(1320), + [anon_sym_alignof] = ACTIONS(1320), + [anon_sym__Alignof] = ACTIONS(1320), + [anon_sym_offsetof] = ACTIONS(1320), + [anon_sym__Generic] = ACTIONS(1320), + [anon_sym_asm] = ACTIONS(1320), + [anon_sym___asm__] = ACTIONS(1320), + [sym_number_literal] = ACTIONS(1322), + [anon_sym_L_SQUOTE] = ACTIONS(1322), + [anon_sym_u_SQUOTE] = ACTIONS(1322), + [anon_sym_U_SQUOTE] = ACTIONS(1322), + [anon_sym_u8_SQUOTE] = ACTIONS(1322), + [anon_sym_SQUOTE] = ACTIONS(1322), + [anon_sym_L_DQUOTE] = ACTIONS(1322), + [anon_sym_u_DQUOTE] = ACTIONS(1322), + [anon_sym_U_DQUOTE] = ACTIONS(1322), + [anon_sym_u8_DQUOTE] = ACTIONS(1322), + [anon_sym_DQUOTE] = ACTIONS(1322), + [sym_true] = ACTIONS(1320), + [sym_false] = ACTIONS(1320), + [anon_sym_NULL] = ACTIONS(1320), + [anon_sym_nullptr] = ACTIONS(1320), [sym_comment] = ACTIONS(3), }, [111] = { - [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_LBRACK_LBRACK] = ACTIONS(1315), - [anon_sym___declspec] = 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), - [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_else] = 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_identifier] = ACTIONS(1352), + [aux_sym_preproc_include_token1] = ACTIONS(1352), + [aux_sym_preproc_def_token1] = ACTIONS(1352), + [aux_sym_preproc_if_token1] = ACTIONS(1352), + [aux_sym_preproc_if_token2] = ACTIONS(1352), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1352), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1352), + [aux_sym_preproc_else_token1] = ACTIONS(1352), + [aux_sym_preproc_elif_token1] = ACTIONS(1352), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1352), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1352), + [sym_preproc_directive] = ACTIONS(1352), + [anon_sym_LPAREN2] = ACTIONS(1354), + [anon_sym_BANG] = ACTIONS(1354), + [anon_sym_TILDE] = ACTIONS(1354), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_PLUS] = ACTIONS(1352), + [anon_sym_STAR] = ACTIONS(1354), + [anon_sym_AMP] = ACTIONS(1354), + [anon_sym_SEMI] = ACTIONS(1354), + [anon_sym___extension__] = ACTIONS(1352), + [anon_sym_typedef] = ACTIONS(1352), + [anon_sym_extern] = ACTIONS(1352), + [anon_sym___attribute__] = ACTIONS(1352), + [anon_sym___scanf] = ACTIONS(1352), + [anon_sym___printf] = ACTIONS(1352), + [anon_sym___read_mostly] = ACTIONS(1352), + [anon_sym___must_hold] = ACTIONS(1352), + [anon_sym___ro_after_init] = ACTIONS(1352), + [anon_sym___init] = ACTIONS(1352), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1354), + [anon_sym___declspec] = ACTIONS(1352), + [anon_sym___cdecl] = ACTIONS(1352), + [anon_sym___clrcall] = ACTIONS(1352), + [anon_sym___stdcall] = ACTIONS(1352), + [anon_sym___fastcall] = ACTIONS(1352), + [anon_sym___thiscall] = ACTIONS(1352), + [anon_sym___vectorcall] = ACTIONS(1352), + [anon_sym_LBRACE] = ACTIONS(1354), + [anon_sym_signed] = ACTIONS(1352), + [anon_sym_unsigned] = ACTIONS(1352), + [anon_sym_long] = ACTIONS(1352), + [anon_sym_short] = ACTIONS(1352), + [anon_sym_static] = ACTIONS(1352), + [anon_sym_auto] = ACTIONS(1352), + [anon_sym_register] = ACTIONS(1352), + [anon_sym_inline] = ACTIONS(1352), + [anon_sym___inline] = ACTIONS(1352), + [anon_sym___inline__] = ACTIONS(1352), + [anon_sym___forceinline] = ACTIONS(1352), + [anon_sym_thread_local] = ACTIONS(1352), + [anon_sym___thread] = ACTIONS(1352), + [anon_sym_const] = ACTIONS(1352), + [anon_sym_constexpr] = ACTIONS(1352), + [anon_sym_volatile] = ACTIONS(1352), + [anon_sym_restrict] = ACTIONS(1352), + [anon_sym___restrict__] = ACTIONS(1352), + [anon_sym__Atomic] = ACTIONS(1352), + [anon_sym__Noreturn] = ACTIONS(1352), + [anon_sym_noreturn] = ACTIONS(1352), + [sym_primitive_type] = ACTIONS(1352), + [anon_sym_enum] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1352), + [anon_sym_union] = ACTIONS(1352), + [anon_sym_if] = ACTIONS(1352), + [anon_sym_else] = ACTIONS(1352), + [anon_sym_switch] = ACTIONS(1352), + [anon_sym_case] = ACTIONS(1352), + [anon_sym_default] = ACTIONS(1352), + [anon_sym_while] = ACTIONS(1352), + [anon_sym_do] = ACTIONS(1352), + [anon_sym_for] = ACTIONS(1352), + [anon_sym_return] = ACTIONS(1352), + [anon_sym_break] = ACTIONS(1352), + [anon_sym_continue] = ACTIONS(1352), + [anon_sym_goto] = ACTIONS(1352), + [anon_sym___try] = ACTIONS(1352), + [anon_sym___leave] = ACTIONS(1352), + [anon_sym_DASH_DASH] = ACTIONS(1354), + [anon_sym_PLUS_PLUS] = ACTIONS(1354), + [anon_sym_sizeof] = ACTIONS(1352), + [anon_sym___alignof__] = ACTIONS(1352), + [anon_sym___alignof] = ACTIONS(1352), + [anon_sym__alignof] = ACTIONS(1352), + [anon_sym_alignof] = ACTIONS(1352), + [anon_sym__Alignof] = ACTIONS(1352), + [anon_sym_offsetof] = ACTIONS(1352), + [anon_sym__Generic] = ACTIONS(1352), + [anon_sym_asm] = ACTIONS(1352), + [anon_sym___asm__] = ACTIONS(1352), + [sym_number_literal] = ACTIONS(1354), + [anon_sym_L_SQUOTE] = ACTIONS(1354), + [anon_sym_u_SQUOTE] = ACTIONS(1354), + [anon_sym_U_SQUOTE] = ACTIONS(1354), + [anon_sym_u8_SQUOTE] = ACTIONS(1354), + [anon_sym_SQUOTE] = ACTIONS(1354), + [anon_sym_L_DQUOTE] = ACTIONS(1354), + [anon_sym_u_DQUOTE] = ACTIONS(1354), + [anon_sym_U_DQUOTE] = ACTIONS(1354), + [anon_sym_u8_DQUOTE] = ACTIONS(1354), + [anon_sym_DQUOTE] = ACTIONS(1354), + [sym_true] = ACTIONS(1352), + [sym_false] = ACTIONS(1352), + [anon_sym_NULL] = ACTIONS(1352), + [anon_sym_nullptr] = ACTIONS(1352), [sym_comment] = ACTIONS(3), }, [112] = { - [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_LBRACK_LBRACK] = ACTIONS(1359), - [anon_sym___declspec] = 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), - [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_else] = 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_identifier] = ACTIONS(1356), + [aux_sym_preproc_include_token1] = ACTIONS(1356), + [aux_sym_preproc_def_token1] = ACTIONS(1356), + [aux_sym_preproc_if_token1] = ACTIONS(1356), + [aux_sym_preproc_if_token2] = ACTIONS(1356), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1356), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1356), + [aux_sym_preproc_else_token1] = ACTIONS(1356), + [aux_sym_preproc_elif_token1] = ACTIONS(1356), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1356), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1356), + [sym_preproc_directive] = ACTIONS(1356), + [anon_sym_LPAREN2] = ACTIONS(1358), + [anon_sym_BANG] = ACTIONS(1358), + [anon_sym_TILDE] = ACTIONS(1358), + [anon_sym_DASH] = ACTIONS(1356), + [anon_sym_PLUS] = ACTIONS(1356), + [anon_sym_STAR] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1358), + [anon_sym_SEMI] = ACTIONS(1358), + [anon_sym___extension__] = ACTIONS(1356), + [anon_sym_typedef] = ACTIONS(1356), + [anon_sym_extern] = ACTIONS(1356), + [anon_sym___attribute__] = ACTIONS(1356), + [anon_sym___scanf] = ACTIONS(1356), + [anon_sym___printf] = ACTIONS(1356), + [anon_sym___read_mostly] = ACTIONS(1356), + [anon_sym___must_hold] = ACTIONS(1356), + [anon_sym___ro_after_init] = ACTIONS(1356), + [anon_sym___init] = ACTIONS(1356), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1358), + [anon_sym___declspec] = ACTIONS(1356), + [anon_sym___cdecl] = ACTIONS(1356), + [anon_sym___clrcall] = ACTIONS(1356), + [anon_sym___stdcall] = ACTIONS(1356), + [anon_sym___fastcall] = ACTIONS(1356), + [anon_sym___thiscall] = ACTIONS(1356), + [anon_sym___vectorcall] = ACTIONS(1356), + [anon_sym_LBRACE] = ACTIONS(1358), + [anon_sym_signed] = ACTIONS(1356), + [anon_sym_unsigned] = ACTIONS(1356), + [anon_sym_long] = ACTIONS(1356), + [anon_sym_short] = ACTIONS(1356), + [anon_sym_static] = ACTIONS(1356), + [anon_sym_auto] = ACTIONS(1356), + [anon_sym_register] = ACTIONS(1356), + [anon_sym_inline] = ACTIONS(1356), + [anon_sym___inline] = ACTIONS(1356), + [anon_sym___inline__] = ACTIONS(1356), + [anon_sym___forceinline] = ACTIONS(1356), + [anon_sym_thread_local] = ACTIONS(1356), + [anon_sym___thread] = ACTIONS(1356), + [anon_sym_const] = ACTIONS(1356), + [anon_sym_constexpr] = ACTIONS(1356), + [anon_sym_volatile] = ACTIONS(1356), + [anon_sym_restrict] = ACTIONS(1356), + [anon_sym___restrict__] = ACTIONS(1356), + [anon_sym__Atomic] = ACTIONS(1356), + [anon_sym__Noreturn] = ACTIONS(1356), + [anon_sym_noreturn] = ACTIONS(1356), + [sym_primitive_type] = ACTIONS(1356), + [anon_sym_enum] = ACTIONS(1356), + [anon_sym_struct] = ACTIONS(1356), + [anon_sym_union] = ACTIONS(1356), + [anon_sym_if] = ACTIONS(1356), + [anon_sym_else] = ACTIONS(1356), + [anon_sym_switch] = ACTIONS(1356), + [anon_sym_case] = ACTIONS(1356), + [anon_sym_default] = ACTIONS(1356), + [anon_sym_while] = ACTIONS(1356), + [anon_sym_do] = ACTIONS(1356), + [anon_sym_for] = ACTIONS(1356), + [anon_sym_return] = ACTIONS(1356), + [anon_sym_break] = ACTIONS(1356), + [anon_sym_continue] = ACTIONS(1356), + [anon_sym_goto] = ACTIONS(1356), + [anon_sym___try] = ACTIONS(1356), + [anon_sym___leave] = ACTIONS(1356), + [anon_sym_DASH_DASH] = ACTIONS(1358), + [anon_sym_PLUS_PLUS] = ACTIONS(1358), + [anon_sym_sizeof] = ACTIONS(1356), + [anon_sym___alignof__] = ACTIONS(1356), + [anon_sym___alignof] = ACTIONS(1356), + [anon_sym__alignof] = ACTIONS(1356), + [anon_sym_alignof] = ACTIONS(1356), + [anon_sym__Alignof] = ACTIONS(1356), + [anon_sym_offsetof] = ACTIONS(1356), + [anon_sym__Generic] = ACTIONS(1356), + [anon_sym_asm] = ACTIONS(1356), + [anon_sym___asm__] = ACTIONS(1356), + [sym_number_literal] = ACTIONS(1358), + [anon_sym_L_SQUOTE] = ACTIONS(1358), + [anon_sym_u_SQUOTE] = ACTIONS(1358), + [anon_sym_U_SQUOTE] = ACTIONS(1358), + [anon_sym_u8_SQUOTE] = ACTIONS(1358), + [anon_sym_SQUOTE] = ACTIONS(1358), + [anon_sym_L_DQUOTE] = ACTIONS(1358), + [anon_sym_u_DQUOTE] = ACTIONS(1358), + [anon_sym_U_DQUOTE] = ACTIONS(1358), + [anon_sym_u8_DQUOTE] = ACTIONS(1358), + [anon_sym_DQUOTE] = ACTIONS(1358), + [sym_true] = ACTIONS(1356), + [sym_false] = ACTIONS(1356), + [anon_sym_NULL] = ACTIONS(1356), + [anon_sym_nullptr] = ACTIONS(1356), [sym_comment] = ACTIONS(3), }, [113] = { - [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_LBRACK_LBRACK] = ACTIONS(1315), - [anon_sym___declspec] = 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), - [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_else] = 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_identifier] = ACTIONS(1360), + [aux_sym_preproc_include_token1] = ACTIONS(1360), + [aux_sym_preproc_def_token1] = ACTIONS(1360), + [aux_sym_preproc_if_token1] = ACTIONS(1360), + [aux_sym_preproc_if_token2] = ACTIONS(1360), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1360), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1360), + [aux_sym_preproc_else_token1] = ACTIONS(1360), + [aux_sym_preproc_elif_token1] = ACTIONS(1360), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1360), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1360), + [sym_preproc_directive] = ACTIONS(1360), + [anon_sym_LPAREN2] = ACTIONS(1362), + [anon_sym_BANG] = ACTIONS(1362), + [anon_sym_TILDE] = ACTIONS(1362), + [anon_sym_DASH] = ACTIONS(1360), + [anon_sym_PLUS] = ACTIONS(1360), + [anon_sym_STAR] = ACTIONS(1362), + [anon_sym_AMP] = ACTIONS(1362), + [anon_sym_SEMI] = ACTIONS(1362), + [anon_sym___extension__] = ACTIONS(1360), + [anon_sym_typedef] = ACTIONS(1360), + [anon_sym_extern] = ACTIONS(1360), + [anon_sym___attribute__] = ACTIONS(1360), + [anon_sym___scanf] = ACTIONS(1360), + [anon_sym___printf] = ACTIONS(1360), + [anon_sym___read_mostly] = ACTIONS(1360), + [anon_sym___must_hold] = ACTIONS(1360), + [anon_sym___ro_after_init] = ACTIONS(1360), + [anon_sym___init] = ACTIONS(1360), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1362), + [anon_sym___declspec] = ACTIONS(1360), + [anon_sym___cdecl] = ACTIONS(1360), + [anon_sym___clrcall] = ACTIONS(1360), + [anon_sym___stdcall] = ACTIONS(1360), + [anon_sym___fastcall] = ACTIONS(1360), + [anon_sym___thiscall] = ACTIONS(1360), + [anon_sym___vectorcall] = ACTIONS(1360), + [anon_sym_LBRACE] = ACTIONS(1362), + [anon_sym_signed] = ACTIONS(1360), + [anon_sym_unsigned] = ACTIONS(1360), + [anon_sym_long] = ACTIONS(1360), + [anon_sym_short] = ACTIONS(1360), + [anon_sym_static] = ACTIONS(1360), + [anon_sym_auto] = ACTIONS(1360), + [anon_sym_register] = ACTIONS(1360), + [anon_sym_inline] = ACTIONS(1360), + [anon_sym___inline] = ACTIONS(1360), + [anon_sym___inline__] = ACTIONS(1360), + [anon_sym___forceinline] = ACTIONS(1360), + [anon_sym_thread_local] = ACTIONS(1360), + [anon_sym___thread] = ACTIONS(1360), + [anon_sym_const] = ACTIONS(1360), + [anon_sym_constexpr] = ACTIONS(1360), + [anon_sym_volatile] = ACTIONS(1360), + [anon_sym_restrict] = ACTIONS(1360), + [anon_sym___restrict__] = ACTIONS(1360), + [anon_sym__Atomic] = ACTIONS(1360), + [anon_sym__Noreturn] = ACTIONS(1360), + [anon_sym_noreturn] = ACTIONS(1360), + [sym_primitive_type] = ACTIONS(1360), + [anon_sym_enum] = ACTIONS(1360), + [anon_sym_struct] = ACTIONS(1360), + [anon_sym_union] = ACTIONS(1360), + [anon_sym_if] = ACTIONS(1360), + [anon_sym_else] = ACTIONS(1360), + [anon_sym_switch] = ACTIONS(1360), + [anon_sym_case] = ACTIONS(1360), + [anon_sym_default] = ACTIONS(1360), + [anon_sym_while] = ACTIONS(1360), + [anon_sym_do] = ACTIONS(1360), + [anon_sym_for] = ACTIONS(1360), + [anon_sym_return] = ACTIONS(1360), + [anon_sym_break] = ACTIONS(1360), + [anon_sym_continue] = ACTIONS(1360), + [anon_sym_goto] = ACTIONS(1360), + [anon_sym___try] = ACTIONS(1360), + [anon_sym___leave] = ACTIONS(1360), + [anon_sym_DASH_DASH] = ACTIONS(1362), + [anon_sym_PLUS_PLUS] = ACTIONS(1362), + [anon_sym_sizeof] = ACTIONS(1360), + [anon_sym___alignof__] = ACTIONS(1360), + [anon_sym___alignof] = ACTIONS(1360), + [anon_sym__alignof] = ACTIONS(1360), + [anon_sym_alignof] = ACTIONS(1360), + [anon_sym__Alignof] = ACTIONS(1360), + [anon_sym_offsetof] = ACTIONS(1360), + [anon_sym__Generic] = ACTIONS(1360), + [anon_sym_asm] = ACTIONS(1360), + [anon_sym___asm__] = ACTIONS(1360), + [sym_number_literal] = ACTIONS(1362), + [anon_sym_L_SQUOTE] = ACTIONS(1362), + [anon_sym_u_SQUOTE] = ACTIONS(1362), + [anon_sym_U_SQUOTE] = ACTIONS(1362), + [anon_sym_u8_SQUOTE] = ACTIONS(1362), + [anon_sym_SQUOTE] = ACTIONS(1362), + [anon_sym_L_DQUOTE] = ACTIONS(1362), + [anon_sym_u_DQUOTE] = ACTIONS(1362), + [anon_sym_U_DQUOTE] = ACTIONS(1362), + [anon_sym_u8_DQUOTE] = ACTIONS(1362), + [anon_sym_DQUOTE] = ACTIONS(1362), + [sym_true] = ACTIONS(1360), + [sym_false] = ACTIONS(1360), + [anon_sym_NULL] = ACTIONS(1360), + [anon_sym_nullptr] = ACTIONS(1360), [sym_comment] = ACTIONS(3), }, [114] = { - [ts_builtin_sym_end] = ACTIONS(1323), - [sym_identifier] = ACTIONS(1321), - [aux_sym_preproc_include_token1] = ACTIONS(1321), - [aux_sym_preproc_def_token1] = ACTIONS(1321), - [anon_sym_COMMA] = ACTIONS(1323), - [anon_sym_RPAREN] = ACTIONS(1323), - [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_LBRACK_LBRACK] = ACTIONS(1323), - [anon_sym___declspec] = 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), - [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_else] = 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___except] = ACTIONS(1321), - [anon_sym___finally] = 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_identifier] = ACTIONS(1364), + [aux_sym_preproc_include_token1] = ACTIONS(1364), + [aux_sym_preproc_def_token1] = ACTIONS(1364), + [aux_sym_preproc_if_token1] = ACTIONS(1364), + [aux_sym_preproc_if_token2] = ACTIONS(1364), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1364), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1364), + [aux_sym_preproc_else_token1] = ACTIONS(1364), + [aux_sym_preproc_elif_token1] = ACTIONS(1364), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1364), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1364), + [sym_preproc_directive] = ACTIONS(1364), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(1366), + [anon_sym_TILDE] = ACTIONS(1366), + [anon_sym_DASH] = ACTIONS(1364), + [anon_sym_PLUS] = ACTIONS(1364), + [anon_sym_STAR] = ACTIONS(1366), + [anon_sym_AMP] = ACTIONS(1366), + [anon_sym_SEMI] = ACTIONS(1366), + [anon_sym___extension__] = ACTIONS(1364), + [anon_sym_typedef] = ACTIONS(1364), + [anon_sym_extern] = ACTIONS(1364), + [anon_sym___attribute__] = ACTIONS(1364), + [anon_sym___scanf] = ACTIONS(1364), + [anon_sym___printf] = ACTIONS(1364), + [anon_sym___read_mostly] = ACTIONS(1364), + [anon_sym___must_hold] = ACTIONS(1364), + [anon_sym___ro_after_init] = ACTIONS(1364), + [anon_sym___init] = ACTIONS(1364), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1366), + [anon_sym___declspec] = ACTIONS(1364), + [anon_sym___cdecl] = ACTIONS(1364), + [anon_sym___clrcall] = ACTIONS(1364), + [anon_sym___stdcall] = ACTIONS(1364), + [anon_sym___fastcall] = ACTIONS(1364), + [anon_sym___thiscall] = ACTIONS(1364), + [anon_sym___vectorcall] = ACTIONS(1364), + [anon_sym_LBRACE] = ACTIONS(1366), + [anon_sym_signed] = ACTIONS(1364), + [anon_sym_unsigned] = ACTIONS(1364), + [anon_sym_long] = ACTIONS(1364), + [anon_sym_short] = ACTIONS(1364), + [anon_sym_static] = ACTIONS(1364), + [anon_sym_auto] = ACTIONS(1364), + [anon_sym_register] = ACTIONS(1364), + [anon_sym_inline] = ACTIONS(1364), + [anon_sym___inline] = ACTIONS(1364), + [anon_sym___inline__] = ACTIONS(1364), + [anon_sym___forceinline] = ACTIONS(1364), + [anon_sym_thread_local] = ACTIONS(1364), + [anon_sym___thread] = ACTIONS(1364), + [anon_sym_const] = ACTIONS(1364), + [anon_sym_constexpr] = ACTIONS(1364), + [anon_sym_volatile] = ACTIONS(1364), + [anon_sym_restrict] = ACTIONS(1364), + [anon_sym___restrict__] = ACTIONS(1364), + [anon_sym__Atomic] = ACTIONS(1364), + [anon_sym__Noreturn] = ACTIONS(1364), + [anon_sym_noreturn] = ACTIONS(1364), + [sym_primitive_type] = ACTIONS(1364), + [anon_sym_enum] = ACTIONS(1364), + [anon_sym_struct] = ACTIONS(1364), + [anon_sym_union] = ACTIONS(1364), + [anon_sym_if] = ACTIONS(1364), + [anon_sym_else] = ACTIONS(1364), + [anon_sym_switch] = ACTIONS(1364), + [anon_sym_case] = ACTIONS(1364), + [anon_sym_default] = ACTIONS(1364), + [anon_sym_while] = ACTIONS(1364), + [anon_sym_do] = ACTIONS(1364), + [anon_sym_for] = ACTIONS(1364), + [anon_sym_return] = ACTIONS(1364), + [anon_sym_break] = ACTIONS(1364), + [anon_sym_continue] = ACTIONS(1364), + [anon_sym_goto] = ACTIONS(1364), + [anon_sym___try] = ACTIONS(1364), + [anon_sym___leave] = ACTIONS(1364), + [anon_sym_DASH_DASH] = ACTIONS(1366), + [anon_sym_PLUS_PLUS] = ACTIONS(1366), + [anon_sym_sizeof] = ACTIONS(1364), + [anon_sym___alignof__] = ACTIONS(1364), + [anon_sym___alignof] = ACTIONS(1364), + [anon_sym__alignof] = ACTIONS(1364), + [anon_sym_alignof] = ACTIONS(1364), + [anon_sym__Alignof] = ACTIONS(1364), + [anon_sym_offsetof] = ACTIONS(1364), + [anon_sym__Generic] = ACTIONS(1364), + [anon_sym_asm] = ACTIONS(1364), + [anon_sym___asm__] = ACTIONS(1364), + [sym_number_literal] = ACTIONS(1366), + [anon_sym_L_SQUOTE] = ACTIONS(1366), + [anon_sym_u_SQUOTE] = ACTIONS(1366), + [anon_sym_U_SQUOTE] = ACTIONS(1366), + [anon_sym_u8_SQUOTE] = ACTIONS(1366), + [anon_sym_SQUOTE] = ACTIONS(1366), + [anon_sym_L_DQUOTE] = ACTIONS(1366), + [anon_sym_u_DQUOTE] = ACTIONS(1366), + [anon_sym_U_DQUOTE] = ACTIONS(1366), + [anon_sym_u8_DQUOTE] = ACTIONS(1366), + [anon_sym_DQUOTE] = ACTIONS(1366), + [sym_true] = ACTIONS(1364), + [sym_false] = ACTIONS(1364), + [anon_sym_NULL] = ACTIONS(1364), + [anon_sym_nullptr] = ACTIONS(1364), [sym_comment] = ACTIONS(3), }, [115] = { - [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_LBRACK_LBRACK] = ACTIONS(1363), - [anon_sym___declspec] = 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), - [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_else] = 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_identifier] = ACTIONS(1368), + [aux_sym_preproc_include_token1] = ACTIONS(1368), + [aux_sym_preproc_def_token1] = ACTIONS(1368), + [aux_sym_preproc_if_token1] = ACTIONS(1368), + [aux_sym_preproc_if_token2] = ACTIONS(1368), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1368), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1368), + [aux_sym_preproc_else_token1] = ACTIONS(1368), + [aux_sym_preproc_elif_token1] = ACTIONS(1368), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1368), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1368), + [sym_preproc_directive] = ACTIONS(1368), + [anon_sym_LPAREN2] = ACTIONS(1370), + [anon_sym_BANG] = ACTIONS(1370), + [anon_sym_TILDE] = ACTIONS(1370), + [anon_sym_DASH] = ACTIONS(1368), + [anon_sym_PLUS] = ACTIONS(1368), + [anon_sym_STAR] = ACTIONS(1370), + [anon_sym_AMP] = ACTIONS(1370), + [anon_sym_SEMI] = ACTIONS(1370), + [anon_sym___extension__] = ACTIONS(1368), + [anon_sym_typedef] = ACTIONS(1368), + [anon_sym_extern] = ACTIONS(1368), + [anon_sym___attribute__] = ACTIONS(1368), + [anon_sym___scanf] = ACTIONS(1368), + [anon_sym___printf] = ACTIONS(1368), + [anon_sym___read_mostly] = ACTIONS(1368), + [anon_sym___must_hold] = ACTIONS(1368), + [anon_sym___ro_after_init] = ACTIONS(1368), + [anon_sym___init] = ACTIONS(1368), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1370), + [anon_sym___declspec] = ACTIONS(1368), + [anon_sym___cdecl] = ACTIONS(1368), + [anon_sym___clrcall] = ACTIONS(1368), + [anon_sym___stdcall] = ACTIONS(1368), + [anon_sym___fastcall] = ACTIONS(1368), + [anon_sym___thiscall] = ACTIONS(1368), + [anon_sym___vectorcall] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_signed] = ACTIONS(1368), + [anon_sym_unsigned] = ACTIONS(1368), + [anon_sym_long] = ACTIONS(1368), + [anon_sym_short] = ACTIONS(1368), + [anon_sym_static] = ACTIONS(1368), + [anon_sym_auto] = ACTIONS(1368), + [anon_sym_register] = ACTIONS(1368), + [anon_sym_inline] = ACTIONS(1368), + [anon_sym___inline] = ACTIONS(1368), + [anon_sym___inline__] = ACTIONS(1368), + [anon_sym___forceinline] = ACTIONS(1368), + [anon_sym_thread_local] = ACTIONS(1368), + [anon_sym___thread] = ACTIONS(1368), + [anon_sym_const] = ACTIONS(1368), + [anon_sym_constexpr] = ACTIONS(1368), + [anon_sym_volatile] = ACTIONS(1368), + [anon_sym_restrict] = ACTIONS(1368), + [anon_sym___restrict__] = ACTIONS(1368), + [anon_sym__Atomic] = ACTIONS(1368), + [anon_sym__Noreturn] = ACTIONS(1368), + [anon_sym_noreturn] = ACTIONS(1368), + [sym_primitive_type] = ACTIONS(1368), + [anon_sym_enum] = ACTIONS(1368), + [anon_sym_struct] = ACTIONS(1368), + [anon_sym_union] = ACTIONS(1368), + [anon_sym_if] = ACTIONS(1368), + [anon_sym_else] = ACTIONS(1368), + [anon_sym_switch] = ACTIONS(1368), + [anon_sym_case] = ACTIONS(1368), + [anon_sym_default] = ACTIONS(1368), + [anon_sym_while] = ACTIONS(1368), + [anon_sym_do] = ACTIONS(1368), + [anon_sym_for] = ACTIONS(1368), + [anon_sym_return] = ACTIONS(1368), + [anon_sym_break] = ACTIONS(1368), + [anon_sym_continue] = ACTIONS(1368), + [anon_sym_goto] = ACTIONS(1368), + [anon_sym___try] = ACTIONS(1368), + [anon_sym___leave] = ACTIONS(1368), + [anon_sym_DASH_DASH] = ACTIONS(1370), + [anon_sym_PLUS_PLUS] = ACTIONS(1370), + [anon_sym_sizeof] = ACTIONS(1368), + [anon_sym___alignof__] = ACTIONS(1368), + [anon_sym___alignof] = ACTIONS(1368), + [anon_sym__alignof] = ACTIONS(1368), + [anon_sym_alignof] = ACTIONS(1368), + [anon_sym__Alignof] = ACTIONS(1368), + [anon_sym_offsetof] = ACTIONS(1368), + [anon_sym__Generic] = ACTIONS(1368), + [anon_sym_asm] = ACTIONS(1368), + [anon_sym___asm__] = ACTIONS(1368), + [sym_number_literal] = ACTIONS(1370), + [anon_sym_L_SQUOTE] = ACTIONS(1370), + [anon_sym_u_SQUOTE] = ACTIONS(1370), + [anon_sym_U_SQUOTE] = ACTIONS(1370), + [anon_sym_u8_SQUOTE] = ACTIONS(1370), + [anon_sym_SQUOTE] = ACTIONS(1370), + [anon_sym_L_DQUOTE] = ACTIONS(1370), + [anon_sym_u_DQUOTE] = ACTIONS(1370), + [anon_sym_U_DQUOTE] = ACTIONS(1370), + [anon_sym_u8_DQUOTE] = ACTIONS(1370), + [anon_sym_DQUOTE] = ACTIONS(1370), + [sym_true] = ACTIONS(1368), + [sym_false] = ACTIONS(1368), + [anon_sym_NULL] = ACTIONS(1368), + [anon_sym_nullptr] = ACTIONS(1368), [sym_comment] = ACTIONS(3), }, [116] = { - [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_LBRACK_LBRACK] = ACTIONS(1367), - [anon_sym___declspec] = 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), - [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_else] = 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_identifier] = ACTIONS(1372), + [aux_sym_preproc_include_token1] = ACTIONS(1372), + [aux_sym_preproc_def_token1] = ACTIONS(1372), + [aux_sym_preproc_if_token1] = ACTIONS(1372), + [aux_sym_preproc_if_token2] = ACTIONS(1372), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1372), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1372), + [aux_sym_preproc_else_token1] = ACTIONS(1372), + [aux_sym_preproc_elif_token1] = ACTIONS(1372), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1372), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1372), + [sym_preproc_directive] = ACTIONS(1372), + [anon_sym_LPAREN2] = ACTIONS(1374), + [anon_sym_BANG] = ACTIONS(1374), + [anon_sym_TILDE] = ACTIONS(1374), + [anon_sym_DASH] = ACTIONS(1372), + [anon_sym_PLUS] = ACTIONS(1372), + [anon_sym_STAR] = ACTIONS(1374), + [anon_sym_AMP] = ACTIONS(1374), + [anon_sym_SEMI] = ACTIONS(1374), + [anon_sym___extension__] = ACTIONS(1372), + [anon_sym_typedef] = ACTIONS(1372), + [anon_sym_extern] = ACTIONS(1372), + [anon_sym___attribute__] = ACTIONS(1372), + [anon_sym___scanf] = ACTIONS(1372), + [anon_sym___printf] = ACTIONS(1372), + [anon_sym___read_mostly] = ACTIONS(1372), + [anon_sym___must_hold] = ACTIONS(1372), + [anon_sym___ro_after_init] = ACTIONS(1372), + [anon_sym___init] = ACTIONS(1372), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), + [anon_sym___declspec] = ACTIONS(1372), + [anon_sym___cdecl] = ACTIONS(1372), + [anon_sym___clrcall] = ACTIONS(1372), + [anon_sym___stdcall] = ACTIONS(1372), + [anon_sym___fastcall] = ACTIONS(1372), + [anon_sym___thiscall] = ACTIONS(1372), + [anon_sym___vectorcall] = ACTIONS(1372), + [anon_sym_LBRACE] = ACTIONS(1374), + [anon_sym_signed] = ACTIONS(1372), + [anon_sym_unsigned] = ACTIONS(1372), + [anon_sym_long] = ACTIONS(1372), + [anon_sym_short] = ACTIONS(1372), + [anon_sym_static] = ACTIONS(1372), + [anon_sym_auto] = ACTIONS(1372), + [anon_sym_register] = ACTIONS(1372), + [anon_sym_inline] = ACTIONS(1372), + [anon_sym___inline] = ACTIONS(1372), + [anon_sym___inline__] = ACTIONS(1372), + [anon_sym___forceinline] = ACTIONS(1372), + [anon_sym_thread_local] = ACTIONS(1372), + [anon_sym___thread] = ACTIONS(1372), + [anon_sym_const] = ACTIONS(1372), + [anon_sym_constexpr] = ACTIONS(1372), + [anon_sym_volatile] = ACTIONS(1372), + [anon_sym_restrict] = ACTIONS(1372), + [anon_sym___restrict__] = ACTIONS(1372), + [anon_sym__Atomic] = ACTIONS(1372), + [anon_sym__Noreturn] = ACTIONS(1372), + [anon_sym_noreturn] = ACTIONS(1372), + [sym_primitive_type] = ACTIONS(1372), + [anon_sym_enum] = ACTIONS(1372), + [anon_sym_struct] = ACTIONS(1372), + [anon_sym_union] = ACTIONS(1372), + [anon_sym_if] = ACTIONS(1372), + [anon_sym_else] = ACTIONS(1372), + [anon_sym_switch] = ACTIONS(1372), + [anon_sym_case] = ACTIONS(1372), + [anon_sym_default] = ACTIONS(1372), + [anon_sym_while] = ACTIONS(1372), + [anon_sym_do] = ACTIONS(1372), + [anon_sym_for] = ACTIONS(1372), + [anon_sym_return] = ACTIONS(1372), + [anon_sym_break] = ACTIONS(1372), + [anon_sym_continue] = ACTIONS(1372), + [anon_sym_goto] = ACTIONS(1372), + [anon_sym___try] = ACTIONS(1372), + [anon_sym___leave] = ACTIONS(1372), + [anon_sym_DASH_DASH] = ACTIONS(1374), + [anon_sym_PLUS_PLUS] = ACTIONS(1374), + [anon_sym_sizeof] = ACTIONS(1372), + [anon_sym___alignof__] = ACTIONS(1372), + [anon_sym___alignof] = ACTIONS(1372), + [anon_sym__alignof] = ACTIONS(1372), + [anon_sym_alignof] = ACTIONS(1372), + [anon_sym__Alignof] = ACTIONS(1372), + [anon_sym_offsetof] = ACTIONS(1372), + [anon_sym__Generic] = ACTIONS(1372), + [anon_sym_asm] = ACTIONS(1372), + [anon_sym___asm__] = ACTIONS(1372), + [sym_number_literal] = ACTIONS(1374), + [anon_sym_L_SQUOTE] = ACTIONS(1374), + [anon_sym_u_SQUOTE] = ACTIONS(1374), + [anon_sym_U_SQUOTE] = ACTIONS(1374), + [anon_sym_u8_SQUOTE] = ACTIONS(1374), + [anon_sym_SQUOTE] = ACTIONS(1374), + [anon_sym_L_DQUOTE] = ACTIONS(1374), + [anon_sym_u_DQUOTE] = ACTIONS(1374), + [anon_sym_U_DQUOTE] = ACTIONS(1374), + [anon_sym_u8_DQUOTE] = ACTIONS(1374), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_true] = ACTIONS(1372), + [sym_false] = ACTIONS(1372), + [anon_sym_NULL] = ACTIONS(1372), + [anon_sym_nullptr] = ACTIONS(1372), [sym_comment] = ACTIONS(3), }, [117] = { - [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_LBRACK_LBRACK] = ACTIONS(1315), - [anon_sym___declspec] = 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), - [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_else] = 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_identifier] = ACTIONS(1320), + [aux_sym_preproc_include_token1] = ACTIONS(1320), + [aux_sym_preproc_def_token1] = ACTIONS(1320), + [aux_sym_preproc_if_token1] = ACTIONS(1320), + [aux_sym_preproc_if_token2] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1320), + [aux_sym_preproc_else_token1] = ACTIONS(1320), + [aux_sym_preproc_elif_token1] = ACTIONS(1320), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1320), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1320), + [sym_preproc_directive] = ACTIONS(1320), + [anon_sym_LPAREN2] = ACTIONS(1322), + [anon_sym_BANG] = ACTIONS(1322), + [anon_sym_TILDE] = ACTIONS(1322), + [anon_sym_DASH] = ACTIONS(1320), + [anon_sym_PLUS] = ACTIONS(1320), + [anon_sym_STAR] = ACTIONS(1322), + [anon_sym_AMP] = ACTIONS(1322), + [anon_sym_SEMI] = ACTIONS(1322), + [anon_sym___extension__] = ACTIONS(1320), + [anon_sym_typedef] = ACTIONS(1320), + [anon_sym_extern] = ACTIONS(1320), + [anon_sym___attribute__] = ACTIONS(1320), + [anon_sym___scanf] = ACTIONS(1320), + [anon_sym___printf] = ACTIONS(1320), + [anon_sym___read_mostly] = ACTIONS(1320), + [anon_sym___must_hold] = ACTIONS(1320), + [anon_sym___ro_after_init] = ACTIONS(1320), + [anon_sym___init] = ACTIONS(1320), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1322), + [anon_sym___declspec] = ACTIONS(1320), + [anon_sym___cdecl] = ACTIONS(1320), + [anon_sym___clrcall] = ACTIONS(1320), + [anon_sym___stdcall] = ACTIONS(1320), + [anon_sym___fastcall] = ACTIONS(1320), + [anon_sym___thiscall] = ACTIONS(1320), + [anon_sym___vectorcall] = ACTIONS(1320), + [anon_sym_LBRACE] = ACTIONS(1322), + [anon_sym_signed] = ACTIONS(1320), + [anon_sym_unsigned] = ACTIONS(1320), + [anon_sym_long] = ACTIONS(1320), + [anon_sym_short] = ACTIONS(1320), + [anon_sym_static] = ACTIONS(1320), + [anon_sym_auto] = ACTIONS(1320), + [anon_sym_register] = ACTIONS(1320), + [anon_sym_inline] = ACTIONS(1320), + [anon_sym___inline] = ACTIONS(1320), + [anon_sym___inline__] = ACTIONS(1320), + [anon_sym___forceinline] = ACTIONS(1320), + [anon_sym_thread_local] = ACTIONS(1320), + [anon_sym___thread] = ACTIONS(1320), + [anon_sym_const] = ACTIONS(1320), + [anon_sym_constexpr] = ACTIONS(1320), + [anon_sym_volatile] = ACTIONS(1320), + [anon_sym_restrict] = ACTIONS(1320), + [anon_sym___restrict__] = ACTIONS(1320), + [anon_sym__Atomic] = ACTIONS(1320), + [anon_sym__Noreturn] = ACTIONS(1320), + [anon_sym_noreturn] = ACTIONS(1320), + [sym_primitive_type] = ACTIONS(1320), + [anon_sym_enum] = ACTIONS(1320), + [anon_sym_struct] = ACTIONS(1320), + [anon_sym_union] = ACTIONS(1320), + [anon_sym_if] = ACTIONS(1320), + [anon_sym_else] = ACTIONS(1320), + [anon_sym_switch] = ACTIONS(1320), + [anon_sym_case] = ACTIONS(1320), + [anon_sym_default] = ACTIONS(1320), + [anon_sym_while] = ACTIONS(1320), + [anon_sym_do] = ACTIONS(1320), + [anon_sym_for] = ACTIONS(1320), + [anon_sym_return] = ACTIONS(1320), + [anon_sym_break] = ACTIONS(1320), + [anon_sym_continue] = ACTIONS(1320), + [anon_sym_goto] = ACTIONS(1320), + [anon_sym___try] = ACTIONS(1320), + [anon_sym___leave] = ACTIONS(1320), + [anon_sym_DASH_DASH] = ACTIONS(1322), + [anon_sym_PLUS_PLUS] = ACTIONS(1322), + [anon_sym_sizeof] = ACTIONS(1320), + [anon_sym___alignof__] = ACTIONS(1320), + [anon_sym___alignof] = ACTIONS(1320), + [anon_sym__alignof] = ACTIONS(1320), + [anon_sym_alignof] = ACTIONS(1320), + [anon_sym__Alignof] = ACTIONS(1320), + [anon_sym_offsetof] = ACTIONS(1320), + [anon_sym__Generic] = ACTIONS(1320), + [anon_sym_asm] = ACTIONS(1320), + [anon_sym___asm__] = ACTIONS(1320), + [sym_number_literal] = ACTIONS(1322), + [anon_sym_L_SQUOTE] = ACTIONS(1322), + [anon_sym_u_SQUOTE] = ACTIONS(1322), + [anon_sym_U_SQUOTE] = ACTIONS(1322), + [anon_sym_u8_SQUOTE] = ACTIONS(1322), + [anon_sym_SQUOTE] = ACTIONS(1322), + [anon_sym_L_DQUOTE] = ACTIONS(1322), + [anon_sym_u_DQUOTE] = ACTIONS(1322), + [anon_sym_U_DQUOTE] = ACTIONS(1322), + [anon_sym_u8_DQUOTE] = ACTIONS(1322), + [anon_sym_DQUOTE] = ACTIONS(1322), + [sym_true] = ACTIONS(1320), + [sym_false] = ACTIONS(1320), + [anon_sym_NULL] = ACTIONS(1320), + [anon_sym_nullptr] = ACTIONS(1320), [sym_comment] = ACTIONS(3), }, [118] = { - [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_LBRACK_LBRACK] = ACTIONS(1371), - [anon_sym___declspec] = 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), - [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_else] = 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_identifier] = ACTIONS(1376), + [aux_sym_preproc_include_token1] = ACTIONS(1376), + [aux_sym_preproc_def_token1] = ACTIONS(1376), + [aux_sym_preproc_if_token1] = ACTIONS(1376), + [aux_sym_preproc_if_token2] = ACTIONS(1376), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1376), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1376), + [aux_sym_preproc_else_token1] = ACTIONS(1376), + [aux_sym_preproc_elif_token1] = ACTIONS(1376), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1376), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1376), + [sym_preproc_directive] = ACTIONS(1376), + [anon_sym_LPAREN2] = ACTIONS(1378), + [anon_sym_BANG] = ACTIONS(1378), + [anon_sym_TILDE] = ACTIONS(1378), + [anon_sym_DASH] = ACTIONS(1376), + [anon_sym_PLUS] = ACTIONS(1376), + [anon_sym_STAR] = ACTIONS(1378), + [anon_sym_AMP] = ACTIONS(1378), + [anon_sym_SEMI] = ACTIONS(1378), + [anon_sym___extension__] = ACTIONS(1376), + [anon_sym_typedef] = ACTIONS(1376), + [anon_sym_extern] = ACTIONS(1376), + [anon_sym___attribute__] = ACTIONS(1376), + [anon_sym___scanf] = ACTIONS(1376), + [anon_sym___printf] = ACTIONS(1376), + [anon_sym___read_mostly] = ACTIONS(1376), + [anon_sym___must_hold] = ACTIONS(1376), + [anon_sym___ro_after_init] = ACTIONS(1376), + [anon_sym___init] = ACTIONS(1376), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1378), + [anon_sym___declspec] = ACTIONS(1376), + [anon_sym___cdecl] = ACTIONS(1376), + [anon_sym___clrcall] = ACTIONS(1376), + [anon_sym___stdcall] = ACTIONS(1376), + [anon_sym___fastcall] = ACTIONS(1376), + [anon_sym___thiscall] = ACTIONS(1376), + [anon_sym___vectorcall] = ACTIONS(1376), + [anon_sym_LBRACE] = ACTIONS(1378), + [anon_sym_signed] = ACTIONS(1376), + [anon_sym_unsigned] = ACTIONS(1376), + [anon_sym_long] = ACTIONS(1376), + [anon_sym_short] = ACTIONS(1376), + [anon_sym_static] = ACTIONS(1376), + [anon_sym_auto] = ACTIONS(1376), + [anon_sym_register] = ACTIONS(1376), + [anon_sym_inline] = ACTIONS(1376), + [anon_sym___inline] = ACTIONS(1376), + [anon_sym___inline__] = ACTIONS(1376), + [anon_sym___forceinline] = ACTIONS(1376), + [anon_sym_thread_local] = ACTIONS(1376), + [anon_sym___thread] = ACTIONS(1376), + [anon_sym_const] = ACTIONS(1376), + [anon_sym_constexpr] = ACTIONS(1376), + [anon_sym_volatile] = ACTIONS(1376), + [anon_sym_restrict] = ACTIONS(1376), + [anon_sym___restrict__] = ACTIONS(1376), + [anon_sym__Atomic] = ACTIONS(1376), + [anon_sym__Noreturn] = ACTIONS(1376), + [anon_sym_noreturn] = ACTIONS(1376), + [sym_primitive_type] = ACTIONS(1376), + [anon_sym_enum] = ACTIONS(1376), + [anon_sym_struct] = ACTIONS(1376), + [anon_sym_union] = ACTIONS(1376), + [anon_sym_if] = ACTIONS(1376), + [anon_sym_else] = ACTIONS(1376), + [anon_sym_switch] = ACTIONS(1376), + [anon_sym_case] = ACTIONS(1376), + [anon_sym_default] = ACTIONS(1376), + [anon_sym_while] = ACTIONS(1376), + [anon_sym_do] = ACTIONS(1376), + [anon_sym_for] = ACTIONS(1376), + [anon_sym_return] = ACTIONS(1376), + [anon_sym_break] = ACTIONS(1376), + [anon_sym_continue] = ACTIONS(1376), + [anon_sym_goto] = ACTIONS(1376), + [anon_sym___try] = ACTIONS(1376), + [anon_sym___leave] = ACTIONS(1376), + [anon_sym_DASH_DASH] = ACTIONS(1378), + [anon_sym_PLUS_PLUS] = ACTIONS(1378), + [anon_sym_sizeof] = ACTIONS(1376), + [anon_sym___alignof__] = ACTIONS(1376), + [anon_sym___alignof] = ACTIONS(1376), + [anon_sym__alignof] = ACTIONS(1376), + [anon_sym_alignof] = ACTIONS(1376), + [anon_sym__Alignof] = ACTIONS(1376), + [anon_sym_offsetof] = ACTIONS(1376), + [anon_sym__Generic] = ACTIONS(1376), + [anon_sym_asm] = ACTIONS(1376), + [anon_sym___asm__] = ACTIONS(1376), + [sym_number_literal] = ACTIONS(1378), + [anon_sym_L_SQUOTE] = ACTIONS(1378), + [anon_sym_u_SQUOTE] = ACTIONS(1378), + [anon_sym_U_SQUOTE] = ACTIONS(1378), + [anon_sym_u8_SQUOTE] = ACTIONS(1378), + [anon_sym_SQUOTE] = ACTIONS(1378), + [anon_sym_L_DQUOTE] = ACTIONS(1378), + [anon_sym_u_DQUOTE] = ACTIONS(1378), + [anon_sym_U_DQUOTE] = ACTIONS(1378), + [anon_sym_u8_DQUOTE] = ACTIONS(1378), + [anon_sym_DQUOTE] = ACTIONS(1378), + [sym_true] = ACTIONS(1376), + [sym_false] = ACTIONS(1376), + [anon_sym_NULL] = ACTIONS(1376), + [anon_sym_nullptr] = ACTIONS(1376), [sym_comment] = ACTIONS(3), }, [119] = { - [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_LBRACK_LBRACK] = ACTIONS(1375), - [anon_sym___declspec] = 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), - [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_else] = 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_identifier] = ACTIONS(1380), + [aux_sym_preproc_include_token1] = ACTIONS(1380), + [aux_sym_preproc_def_token1] = ACTIONS(1380), + [aux_sym_preproc_if_token1] = ACTIONS(1380), + [aux_sym_preproc_if_token2] = ACTIONS(1380), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1380), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1380), + [aux_sym_preproc_else_token1] = ACTIONS(1380), + [aux_sym_preproc_elif_token1] = ACTIONS(1380), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1380), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1380), + [sym_preproc_directive] = ACTIONS(1380), + [anon_sym_LPAREN2] = ACTIONS(1382), + [anon_sym_BANG] = ACTIONS(1382), + [anon_sym_TILDE] = ACTIONS(1382), + [anon_sym_DASH] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1380), + [anon_sym_STAR] = ACTIONS(1382), + [anon_sym_AMP] = ACTIONS(1382), + [anon_sym_SEMI] = ACTIONS(1382), + [anon_sym___extension__] = ACTIONS(1380), + [anon_sym_typedef] = ACTIONS(1380), + [anon_sym_extern] = ACTIONS(1380), + [anon_sym___attribute__] = ACTIONS(1380), + [anon_sym___scanf] = ACTIONS(1380), + [anon_sym___printf] = ACTIONS(1380), + [anon_sym___read_mostly] = ACTIONS(1380), + [anon_sym___must_hold] = ACTIONS(1380), + [anon_sym___ro_after_init] = ACTIONS(1380), + [anon_sym___init] = ACTIONS(1380), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1382), + [anon_sym___declspec] = ACTIONS(1380), + [anon_sym___cdecl] = ACTIONS(1380), + [anon_sym___clrcall] = ACTIONS(1380), + [anon_sym___stdcall] = ACTIONS(1380), + [anon_sym___fastcall] = ACTIONS(1380), + [anon_sym___thiscall] = ACTIONS(1380), + [anon_sym___vectorcall] = ACTIONS(1380), + [anon_sym_LBRACE] = ACTIONS(1382), + [anon_sym_signed] = ACTIONS(1380), + [anon_sym_unsigned] = ACTIONS(1380), + [anon_sym_long] = ACTIONS(1380), + [anon_sym_short] = ACTIONS(1380), + [anon_sym_static] = ACTIONS(1380), + [anon_sym_auto] = ACTIONS(1380), + [anon_sym_register] = ACTIONS(1380), + [anon_sym_inline] = ACTIONS(1380), + [anon_sym___inline] = ACTIONS(1380), + [anon_sym___inline__] = ACTIONS(1380), + [anon_sym___forceinline] = ACTIONS(1380), + [anon_sym_thread_local] = ACTIONS(1380), + [anon_sym___thread] = ACTIONS(1380), + [anon_sym_const] = ACTIONS(1380), + [anon_sym_constexpr] = ACTIONS(1380), + [anon_sym_volatile] = ACTIONS(1380), + [anon_sym_restrict] = ACTIONS(1380), + [anon_sym___restrict__] = ACTIONS(1380), + [anon_sym__Atomic] = ACTIONS(1380), + [anon_sym__Noreturn] = ACTIONS(1380), + [anon_sym_noreturn] = ACTIONS(1380), + [sym_primitive_type] = ACTIONS(1380), + [anon_sym_enum] = ACTIONS(1380), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_union] = ACTIONS(1380), + [anon_sym_if] = ACTIONS(1380), + [anon_sym_else] = ACTIONS(1380), + [anon_sym_switch] = ACTIONS(1380), + [anon_sym_case] = ACTIONS(1380), + [anon_sym_default] = ACTIONS(1380), + [anon_sym_while] = ACTIONS(1380), + [anon_sym_do] = ACTIONS(1380), + [anon_sym_for] = ACTIONS(1380), + [anon_sym_return] = ACTIONS(1380), + [anon_sym_break] = ACTIONS(1380), + [anon_sym_continue] = ACTIONS(1380), + [anon_sym_goto] = ACTIONS(1380), + [anon_sym___try] = ACTIONS(1380), + [anon_sym___leave] = ACTIONS(1380), + [anon_sym_DASH_DASH] = ACTIONS(1382), + [anon_sym_PLUS_PLUS] = ACTIONS(1382), + [anon_sym_sizeof] = ACTIONS(1380), + [anon_sym___alignof__] = ACTIONS(1380), + [anon_sym___alignof] = ACTIONS(1380), + [anon_sym__alignof] = ACTIONS(1380), + [anon_sym_alignof] = ACTIONS(1380), + [anon_sym__Alignof] = ACTIONS(1380), + [anon_sym_offsetof] = ACTIONS(1380), + [anon_sym__Generic] = ACTIONS(1380), + [anon_sym_asm] = ACTIONS(1380), + [anon_sym___asm__] = ACTIONS(1380), + [sym_number_literal] = ACTIONS(1382), + [anon_sym_L_SQUOTE] = ACTIONS(1382), + [anon_sym_u_SQUOTE] = ACTIONS(1382), + [anon_sym_U_SQUOTE] = ACTIONS(1382), + [anon_sym_u8_SQUOTE] = ACTIONS(1382), + [anon_sym_SQUOTE] = ACTIONS(1382), + [anon_sym_L_DQUOTE] = ACTIONS(1382), + [anon_sym_u_DQUOTE] = ACTIONS(1382), + [anon_sym_U_DQUOTE] = ACTIONS(1382), + [anon_sym_u8_DQUOTE] = ACTIONS(1382), + [anon_sym_DQUOTE] = ACTIONS(1382), + [sym_true] = ACTIONS(1380), + [sym_false] = ACTIONS(1380), + [anon_sym_NULL] = ACTIONS(1380), + [anon_sym_nullptr] = ACTIONS(1380), [sym_comment] = ACTIONS(3), }, [120] = { - [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_LBRACK_LBRACK] = ACTIONS(1379), - [anon_sym___declspec] = 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), - [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_else] = 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_identifier] = ACTIONS(1320), + [aux_sym_preproc_include_token1] = ACTIONS(1320), + [aux_sym_preproc_def_token1] = ACTIONS(1320), + [aux_sym_preproc_if_token1] = ACTIONS(1320), + [aux_sym_preproc_if_token2] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1320), + [aux_sym_preproc_else_token1] = ACTIONS(1320), + [aux_sym_preproc_elif_token1] = ACTIONS(1320), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1320), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1320), + [sym_preproc_directive] = ACTIONS(1320), + [anon_sym_LPAREN2] = ACTIONS(1322), + [anon_sym_BANG] = ACTIONS(1322), + [anon_sym_TILDE] = ACTIONS(1322), + [anon_sym_DASH] = ACTIONS(1320), + [anon_sym_PLUS] = ACTIONS(1320), + [anon_sym_STAR] = ACTIONS(1322), + [anon_sym_AMP] = ACTIONS(1322), + [anon_sym_SEMI] = ACTIONS(1322), + [anon_sym___extension__] = ACTIONS(1320), + [anon_sym_typedef] = ACTIONS(1320), + [anon_sym_extern] = ACTIONS(1320), + [anon_sym___attribute__] = ACTIONS(1320), + [anon_sym___scanf] = ACTIONS(1320), + [anon_sym___printf] = ACTIONS(1320), + [anon_sym___read_mostly] = ACTIONS(1320), + [anon_sym___must_hold] = ACTIONS(1320), + [anon_sym___ro_after_init] = ACTIONS(1320), + [anon_sym___init] = ACTIONS(1320), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1322), + [anon_sym___declspec] = ACTIONS(1320), + [anon_sym___cdecl] = ACTIONS(1320), + [anon_sym___clrcall] = ACTIONS(1320), + [anon_sym___stdcall] = ACTIONS(1320), + [anon_sym___fastcall] = ACTIONS(1320), + [anon_sym___thiscall] = ACTIONS(1320), + [anon_sym___vectorcall] = ACTIONS(1320), + [anon_sym_LBRACE] = ACTIONS(1322), + [anon_sym_signed] = ACTIONS(1320), + [anon_sym_unsigned] = ACTIONS(1320), + [anon_sym_long] = ACTIONS(1320), + [anon_sym_short] = ACTIONS(1320), + [anon_sym_static] = ACTIONS(1320), + [anon_sym_auto] = ACTIONS(1320), + [anon_sym_register] = ACTIONS(1320), + [anon_sym_inline] = ACTIONS(1320), + [anon_sym___inline] = ACTIONS(1320), + [anon_sym___inline__] = ACTIONS(1320), + [anon_sym___forceinline] = ACTIONS(1320), + [anon_sym_thread_local] = ACTIONS(1320), + [anon_sym___thread] = ACTIONS(1320), + [anon_sym_const] = ACTIONS(1320), + [anon_sym_constexpr] = ACTIONS(1320), + [anon_sym_volatile] = ACTIONS(1320), + [anon_sym_restrict] = ACTIONS(1320), + [anon_sym___restrict__] = ACTIONS(1320), + [anon_sym__Atomic] = ACTIONS(1320), + [anon_sym__Noreturn] = ACTIONS(1320), + [anon_sym_noreturn] = ACTIONS(1320), + [sym_primitive_type] = ACTIONS(1320), + [anon_sym_enum] = ACTIONS(1320), + [anon_sym_struct] = ACTIONS(1320), + [anon_sym_union] = ACTIONS(1320), + [anon_sym_if] = ACTIONS(1320), + [anon_sym_else] = ACTIONS(1320), + [anon_sym_switch] = ACTIONS(1320), + [anon_sym_case] = ACTIONS(1320), + [anon_sym_default] = ACTIONS(1320), + [anon_sym_while] = ACTIONS(1320), + [anon_sym_do] = ACTIONS(1320), + [anon_sym_for] = ACTIONS(1320), + [anon_sym_return] = ACTIONS(1320), + [anon_sym_break] = ACTIONS(1320), + [anon_sym_continue] = ACTIONS(1320), + [anon_sym_goto] = ACTIONS(1320), + [anon_sym___try] = ACTIONS(1320), + [anon_sym___leave] = ACTIONS(1320), + [anon_sym_DASH_DASH] = ACTIONS(1322), + [anon_sym_PLUS_PLUS] = ACTIONS(1322), + [anon_sym_sizeof] = ACTIONS(1320), + [anon_sym___alignof__] = ACTIONS(1320), + [anon_sym___alignof] = ACTIONS(1320), + [anon_sym__alignof] = ACTIONS(1320), + [anon_sym_alignof] = ACTIONS(1320), + [anon_sym__Alignof] = ACTIONS(1320), + [anon_sym_offsetof] = ACTIONS(1320), + [anon_sym__Generic] = ACTIONS(1320), + [anon_sym_asm] = ACTIONS(1320), + [anon_sym___asm__] = ACTIONS(1320), + [sym_number_literal] = ACTIONS(1322), + [anon_sym_L_SQUOTE] = ACTIONS(1322), + [anon_sym_u_SQUOTE] = ACTIONS(1322), + [anon_sym_U_SQUOTE] = ACTIONS(1322), + [anon_sym_u8_SQUOTE] = ACTIONS(1322), + [anon_sym_SQUOTE] = ACTIONS(1322), + [anon_sym_L_DQUOTE] = ACTIONS(1322), + [anon_sym_u_DQUOTE] = ACTIONS(1322), + [anon_sym_U_DQUOTE] = ACTIONS(1322), + [anon_sym_u8_DQUOTE] = ACTIONS(1322), + [anon_sym_DQUOTE] = ACTIONS(1322), + [sym_true] = ACTIONS(1320), + [sym_false] = ACTIONS(1320), + [anon_sym_NULL] = ACTIONS(1320), + [anon_sym_nullptr] = ACTIONS(1320), [sym_comment] = ACTIONS(3), }, [121] = { - [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_LBRACK_LBRACK] = ACTIONS(1315), - [anon_sym___declspec] = 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), - [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_else] = 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_identifier] = ACTIONS(1384), + [aux_sym_preproc_include_token1] = ACTIONS(1384), + [aux_sym_preproc_def_token1] = ACTIONS(1384), + [aux_sym_preproc_if_token1] = ACTIONS(1384), + [aux_sym_preproc_if_token2] = ACTIONS(1384), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1384), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1384), + [aux_sym_preproc_else_token1] = ACTIONS(1384), + [aux_sym_preproc_elif_token1] = ACTIONS(1384), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1384), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1384), + [sym_preproc_directive] = ACTIONS(1384), + [anon_sym_LPAREN2] = ACTIONS(1386), + [anon_sym_BANG] = ACTIONS(1386), + [anon_sym_TILDE] = ACTIONS(1386), + [anon_sym_DASH] = ACTIONS(1384), + [anon_sym_PLUS] = ACTIONS(1384), + [anon_sym_STAR] = ACTIONS(1386), + [anon_sym_AMP] = ACTIONS(1386), + [anon_sym_SEMI] = ACTIONS(1386), + [anon_sym___extension__] = ACTIONS(1384), + [anon_sym_typedef] = ACTIONS(1384), + [anon_sym_extern] = ACTIONS(1384), + [anon_sym___attribute__] = ACTIONS(1384), + [anon_sym___scanf] = ACTIONS(1384), + [anon_sym___printf] = ACTIONS(1384), + [anon_sym___read_mostly] = ACTIONS(1384), + [anon_sym___must_hold] = ACTIONS(1384), + [anon_sym___ro_after_init] = ACTIONS(1384), + [anon_sym___init] = ACTIONS(1384), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1386), + [anon_sym___declspec] = ACTIONS(1384), + [anon_sym___cdecl] = ACTIONS(1384), + [anon_sym___clrcall] = ACTIONS(1384), + [anon_sym___stdcall] = ACTIONS(1384), + [anon_sym___fastcall] = ACTIONS(1384), + [anon_sym___thiscall] = ACTIONS(1384), + [anon_sym___vectorcall] = ACTIONS(1384), + [anon_sym_LBRACE] = ACTIONS(1386), + [anon_sym_signed] = ACTIONS(1384), + [anon_sym_unsigned] = ACTIONS(1384), + [anon_sym_long] = ACTIONS(1384), + [anon_sym_short] = ACTIONS(1384), + [anon_sym_static] = ACTIONS(1384), + [anon_sym_auto] = ACTIONS(1384), + [anon_sym_register] = ACTIONS(1384), + [anon_sym_inline] = ACTIONS(1384), + [anon_sym___inline] = ACTIONS(1384), + [anon_sym___inline__] = ACTIONS(1384), + [anon_sym___forceinline] = ACTIONS(1384), + [anon_sym_thread_local] = ACTIONS(1384), + [anon_sym___thread] = ACTIONS(1384), + [anon_sym_const] = ACTIONS(1384), + [anon_sym_constexpr] = ACTIONS(1384), + [anon_sym_volatile] = ACTIONS(1384), + [anon_sym_restrict] = ACTIONS(1384), + [anon_sym___restrict__] = ACTIONS(1384), + [anon_sym__Atomic] = ACTIONS(1384), + [anon_sym__Noreturn] = ACTIONS(1384), + [anon_sym_noreturn] = ACTIONS(1384), + [sym_primitive_type] = ACTIONS(1384), + [anon_sym_enum] = ACTIONS(1384), + [anon_sym_struct] = ACTIONS(1384), + [anon_sym_union] = ACTIONS(1384), + [anon_sym_if] = ACTIONS(1384), + [anon_sym_else] = ACTIONS(1384), + [anon_sym_switch] = ACTIONS(1384), + [anon_sym_case] = ACTIONS(1384), + [anon_sym_default] = ACTIONS(1384), + [anon_sym_while] = ACTIONS(1384), + [anon_sym_do] = ACTIONS(1384), + [anon_sym_for] = ACTIONS(1384), + [anon_sym_return] = ACTIONS(1384), + [anon_sym_break] = ACTIONS(1384), + [anon_sym_continue] = ACTIONS(1384), + [anon_sym_goto] = ACTIONS(1384), + [anon_sym___try] = ACTIONS(1384), + [anon_sym___leave] = ACTIONS(1384), + [anon_sym_DASH_DASH] = ACTIONS(1386), + [anon_sym_PLUS_PLUS] = ACTIONS(1386), + [anon_sym_sizeof] = ACTIONS(1384), + [anon_sym___alignof__] = ACTIONS(1384), + [anon_sym___alignof] = ACTIONS(1384), + [anon_sym__alignof] = ACTIONS(1384), + [anon_sym_alignof] = ACTIONS(1384), + [anon_sym__Alignof] = ACTIONS(1384), + [anon_sym_offsetof] = ACTIONS(1384), + [anon_sym__Generic] = ACTIONS(1384), + [anon_sym_asm] = ACTIONS(1384), + [anon_sym___asm__] = ACTIONS(1384), + [sym_number_literal] = ACTIONS(1386), + [anon_sym_L_SQUOTE] = ACTIONS(1386), + [anon_sym_u_SQUOTE] = ACTIONS(1386), + [anon_sym_U_SQUOTE] = ACTIONS(1386), + [anon_sym_u8_SQUOTE] = ACTIONS(1386), + [anon_sym_SQUOTE] = ACTIONS(1386), + [anon_sym_L_DQUOTE] = ACTIONS(1386), + [anon_sym_u_DQUOTE] = ACTIONS(1386), + [anon_sym_U_DQUOTE] = ACTIONS(1386), + [anon_sym_u8_DQUOTE] = ACTIONS(1386), + [anon_sym_DQUOTE] = ACTIONS(1386), + [sym_true] = ACTIONS(1384), + [sym_false] = ACTIONS(1384), + [anon_sym_NULL] = ACTIONS(1384), + [anon_sym_nullptr] = ACTIONS(1384), [sym_comment] = ACTIONS(3), }, [122] = { - [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_LBRACK_LBRACK] = ACTIONS(1383), - [anon_sym___declspec] = 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), - [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_else] = 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_identifier] = ACTIONS(1388), + [aux_sym_preproc_include_token1] = ACTIONS(1388), + [aux_sym_preproc_def_token1] = ACTIONS(1388), + [aux_sym_preproc_if_token1] = ACTIONS(1388), + [aux_sym_preproc_if_token2] = ACTIONS(1388), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1388), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1388), + [aux_sym_preproc_else_token1] = ACTIONS(1388), + [aux_sym_preproc_elif_token1] = ACTIONS(1388), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1388), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1388), + [sym_preproc_directive] = ACTIONS(1388), + [anon_sym_LPAREN2] = ACTIONS(1390), + [anon_sym_BANG] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1390), + [anon_sym_DASH] = ACTIONS(1388), + [anon_sym_PLUS] = ACTIONS(1388), + [anon_sym_STAR] = ACTIONS(1390), + [anon_sym_AMP] = ACTIONS(1390), + [anon_sym_SEMI] = ACTIONS(1390), + [anon_sym___extension__] = ACTIONS(1388), + [anon_sym_typedef] = ACTIONS(1388), + [anon_sym_extern] = ACTIONS(1388), + [anon_sym___attribute__] = ACTIONS(1388), + [anon_sym___scanf] = ACTIONS(1388), + [anon_sym___printf] = ACTIONS(1388), + [anon_sym___read_mostly] = ACTIONS(1388), + [anon_sym___must_hold] = ACTIONS(1388), + [anon_sym___ro_after_init] = ACTIONS(1388), + [anon_sym___init] = ACTIONS(1388), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1390), + [anon_sym___declspec] = ACTIONS(1388), + [anon_sym___cdecl] = ACTIONS(1388), + [anon_sym___clrcall] = ACTIONS(1388), + [anon_sym___stdcall] = ACTIONS(1388), + [anon_sym___fastcall] = ACTIONS(1388), + [anon_sym___thiscall] = ACTIONS(1388), + [anon_sym___vectorcall] = ACTIONS(1388), + [anon_sym_LBRACE] = ACTIONS(1390), + [anon_sym_signed] = ACTIONS(1388), + [anon_sym_unsigned] = ACTIONS(1388), + [anon_sym_long] = ACTIONS(1388), + [anon_sym_short] = ACTIONS(1388), + [anon_sym_static] = ACTIONS(1388), + [anon_sym_auto] = ACTIONS(1388), + [anon_sym_register] = ACTIONS(1388), + [anon_sym_inline] = ACTIONS(1388), + [anon_sym___inline] = ACTIONS(1388), + [anon_sym___inline__] = ACTIONS(1388), + [anon_sym___forceinline] = ACTIONS(1388), + [anon_sym_thread_local] = ACTIONS(1388), + [anon_sym___thread] = ACTIONS(1388), + [anon_sym_const] = ACTIONS(1388), + [anon_sym_constexpr] = ACTIONS(1388), + [anon_sym_volatile] = ACTIONS(1388), + [anon_sym_restrict] = ACTIONS(1388), + [anon_sym___restrict__] = ACTIONS(1388), + [anon_sym__Atomic] = ACTIONS(1388), + [anon_sym__Noreturn] = ACTIONS(1388), + [anon_sym_noreturn] = ACTIONS(1388), + [sym_primitive_type] = ACTIONS(1388), + [anon_sym_enum] = ACTIONS(1388), + [anon_sym_struct] = ACTIONS(1388), + [anon_sym_union] = ACTIONS(1388), + [anon_sym_if] = ACTIONS(1388), + [anon_sym_else] = ACTIONS(1388), + [anon_sym_switch] = ACTIONS(1388), + [anon_sym_case] = ACTIONS(1388), + [anon_sym_default] = ACTIONS(1388), + [anon_sym_while] = ACTIONS(1388), + [anon_sym_do] = ACTIONS(1388), + [anon_sym_for] = ACTIONS(1388), + [anon_sym_return] = ACTIONS(1388), + [anon_sym_break] = ACTIONS(1388), + [anon_sym_continue] = ACTIONS(1388), + [anon_sym_goto] = ACTIONS(1388), + [anon_sym___try] = ACTIONS(1388), + [anon_sym___leave] = ACTIONS(1388), + [anon_sym_DASH_DASH] = ACTIONS(1390), + [anon_sym_PLUS_PLUS] = ACTIONS(1390), + [anon_sym_sizeof] = ACTIONS(1388), + [anon_sym___alignof__] = ACTIONS(1388), + [anon_sym___alignof] = ACTIONS(1388), + [anon_sym__alignof] = ACTIONS(1388), + [anon_sym_alignof] = ACTIONS(1388), + [anon_sym__Alignof] = ACTIONS(1388), + [anon_sym_offsetof] = ACTIONS(1388), + [anon_sym__Generic] = ACTIONS(1388), + [anon_sym_asm] = ACTIONS(1388), + [anon_sym___asm__] = ACTIONS(1388), + [sym_number_literal] = ACTIONS(1390), + [anon_sym_L_SQUOTE] = ACTIONS(1390), + [anon_sym_u_SQUOTE] = ACTIONS(1390), + [anon_sym_U_SQUOTE] = ACTIONS(1390), + [anon_sym_u8_SQUOTE] = ACTIONS(1390), + [anon_sym_SQUOTE] = ACTIONS(1390), + [anon_sym_L_DQUOTE] = ACTIONS(1390), + [anon_sym_u_DQUOTE] = ACTIONS(1390), + [anon_sym_U_DQUOTE] = ACTIONS(1390), + [anon_sym_u8_DQUOTE] = ACTIONS(1390), + [anon_sym_DQUOTE] = ACTIONS(1390), + [sym_true] = ACTIONS(1388), + [sym_false] = ACTIONS(1388), + [anon_sym_NULL] = ACTIONS(1388), + [anon_sym_nullptr] = ACTIONS(1388), [sym_comment] = ACTIONS(3), }, [123] = { - [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_LBRACK_LBRACK] = ACTIONS(1315), - [anon_sym___declspec] = 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), - [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_else] = 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_identifier] = ACTIONS(1392), + [aux_sym_preproc_include_token1] = ACTIONS(1392), + [aux_sym_preproc_def_token1] = ACTIONS(1392), + [aux_sym_preproc_if_token1] = ACTIONS(1392), + [aux_sym_preproc_if_token2] = ACTIONS(1392), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1392), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1392), + [aux_sym_preproc_else_token1] = ACTIONS(1392), + [aux_sym_preproc_elif_token1] = ACTIONS(1392), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1392), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1392), + [sym_preproc_directive] = ACTIONS(1392), + [anon_sym_LPAREN2] = ACTIONS(1394), + [anon_sym_BANG] = ACTIONS(1394), + [anon_sym_TILDE] = ACTIONS(1394), + [anon_sym_DASH] = ACTIONS(1392), + [anon_sym_PLUS] = ACTIONS(1392), + [anon_sym_STAR] = ACTIONS(1394), + [anon_sym_AMP] = ACTIONS(1394), + [anon_sym_SEMI] = ACTIONS(1394), + [anon_sym___extension__] = ACTIONS(1392), + [anon_sym_typedef] = ACTIONS(1392), + [anon_sym_extern] = ACTIONS(1392), + [anon_sym___attribute__] = ACTIONS(1392), + [anon_sym___scanf] = ACTIONS(1392), + [anon_sym___printf] = ACTIONS(1392), + [anon_sym___read_mostly] = ACTIONS(1392), + [anon_sym___must_hold] = ACTIONS(1392), + [anon_sym___ro_after_init] = ACTIONS(1392), + [anon_sym___init] = ACTIONS(1392), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1394), + [anon_sym___declspec] = ACTIONS(1392), + [anon_sym___cdecl] = ACTIONS(1392), + [anon_sym___clrcall] = ACTIONS(1392), + [anon_sym___stdcall] = ACTIONS(1392), + [anon_sym___fastcall] = ACTIONS(1392), + [anon_sym___thiscall] = ACTIONS(1392), + [anon_sym___vectorcall] = ACTIONS(1392), + [anon_sym_LBRACE] = ACTIONS(1394), + [anon_sym_signed] = ACTIONS(1392), + [anon_sym_unsigned] = ACTIONS(1392), + [anon_sym_long] = ACTIONS(1392), + [anon_sym_short] = ACTIONS(1392), + [anon_sym_static] = ACTIONS(1392), + [anon_sym_auto] = ACTIONS(1392), + [anon_sym_register] = ACTIONS(1392), + [anon_sym_inline] = ACTIONS(1392), + [anon_sym___inline] = ACTIONS(1392), + [anon_sym___inline__] = ACTIONS(1392), + [anon_sym___forceinline] = ACTIONS(1392), + [anon_sym_thread_local] = ACTIONS(1392), + [anon_sym___thread] = ACTIONS(1392), + [anon_sym_const] = ACTIONS(1392), + [anon_sym_constexpr] = ACTIONS(1392), + [anon_sym_volatile] = ACTIONS(1392), + [anon_sym_restrict] = ACTIONS(1392), + [anon_sym___restrict__] = ACTIONS(1392), + [anon_sym__Atomic] = ACTIONS(1392), + [anon_sym__Noreturn] = ACTIONS(1392), + [anon_sym_noreturn] = ACTIONS(1392), + [sym_primitive_type] = ACTIONS(1392), + [anon_sym_enum] = ACTIONS(1392), + [anon_sym_struct] = ACTIONS(1392), + [anon_sym_union] = ACTIONS(1392), + [anon_sym_if] = ACTIONS(1392), + [anon_sym_else] = ACTIONS(1392), + [anon_sym_switch] = ACTIONS(1392), + [anon_sym_case] = ACTIONS(1392), + [anon_sym_default] = ACTIONS(1392), + [anon_sym_while] = ACTIONS(1392), + [anon_sym_do] = ACTIONS(1392), + [anon_sym_for] = ACTIONS(1392), + [anon_sym_return] = ACTIONS(1392), + [anon_sym_break] = ACTIONS(1392), + [anon_sym_continue] = ACTIONS(1392), + [anon_sym_goto] = ACTIONS(1392), + [anon_sym___try] = ACTIONS(1392), + [anon_sym___leave] = ACTIONS(1392), + [anon_sym_DASH_DASH] = ACTIONS(1394), + [anon_sym_PLUS_PLUS] = ACTIONS(1394), + [anon_sym_sizeof] = ACTIONS(1392), + [anon_sym___alignof__] = ACTIONS(1392), + [anon_sym___alignof] = ACTIONS(1392), + [anon_sym__alignof] = ACTIONS(1392), + [anon_sym_alignof] = ACTIONS(1392), + [anon_sym__Alignof] = ACTIONS(1392), + [anon_sym_offsetof] = ACTIONS(1392), + [anon_sym__Generic] = ACTIONS(1392), + [anon_sym_asm] = ACTIONS(1392), + [anon_sym___asm__] = ACTIONS(1392), + [sym_number_literal] = ACTIONS(1394), + [anon_sym_L_SQUOTE] = ACTIONS(1394), + [anon_sym_u_SQUOTE] = ACTIONS(1394), + [anon_sym_U_SQUOTE] = ACTIONS(1394), + [anon_sym_u8_SQUOTE] = ACTIONS(1394), + [anon_sym_SQUOTE] = ACTIONS(1394), + [anon_sym_L_DQUOTE] = ACTIONS(1394), + [anon_sym_u_DQUOTE] = ACTIONS(1394), + [anon_sym_U_DQUOTE] = ACTIONS(1394), + [anon_sym_u8_DQUOTE] = ACTIONS(1394), + [anon_sym_DQUOTE] = ACTIONS(1394), + [sym_true] = ACTIONS(1392), + [sym_false] = ACTIONS(1392), + [anon_sym_NULL] = ACTIONS(1392), + [anon_sym_nullptr] = ACTIONS(1392), [sym_comment] = ACTIONS(3), }, [124] = { - [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_LBRACK_LBRACK] = ACTIONS(1387), - [anon_sym___declspec] = 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), - [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_else] = 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_identifier] = ACTIONS(1320), + [aux_sym_preproc_include_token1] = ACTIONS(1320), + [aux_sym_preproc_def_token1] = ACTIONS(1320), + [aux_sym_preproc_if_token1] = ACTIONS(1320), + [aux_sym_preproc_if_token2] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1320), + [aux_sym_preproc_else_token1] = ACTIONS(1320), + [aux_sym_preproc_elif_token1] = ACTIONS(1320), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1320), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1320), + [sym_preproc_directive] = ACTIONS(1320), + [anon_sym_LPAREN2] = ACTIONS(1322), + [anon_sym_BANG] = ACTIONS(1322), + [anon_sym_TILDE] = ACTIONS(1322), + [anon_sym_DASH] = ACTIONS(1320), + [anon_sym_PLUS] = ACTIONS(1320), + [anon_sym_STAR] = ACTIONS(1322), + [anon_sym_AMP] = ACTIONS(1322), + [anon_sym_SEMI] = ACTIONS(1322), + [anon_sym___extension__] = ACTIONS(1320), + [anon_sym_typedef] = ACTIONS(1320), + [anon_sym_extern] = ACTIONS(1320), + [anon_sym___attribute__] = ACTIONS(1320), + [anon_sym___scanf] = ACTIONS(1320), + [anon_sym___printf] = ACTIONS(1320), + [anon_sym___read_mostly] = ACTIONS(1320), + [anon_sym___must_hold] = ACTIONS(1320), + [anon_sym___ro_after_init] = ACTIONS(1320), + [anon_sym___init] = ACTIONS(1320), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1322), + [anon_sym___declspec] = ACTIONS(1320), + [anon_sym___cdecl] = ACTIONS(1320), + [anon_sym___clrcall] = ACTIONS(1320), + [anon_sym___stdcall] = ACTIONS(1320), + [anon_sym___fastcall] = ACTIONS(1320), + [anon_sym___thiscall] = ACTIONS(1320), + [anon_sym___vectorcall] = ACTIONS(1320), + [anon_sym_LBRACE] = ACTIONS(1322), + [anon_sym_signed] = ACTIONS(1320), + [anon_sym_unsigned] = ACTIONS(1320), + [anon_sym_long] = ACTIONS(1320), + [anon_sym_short] = ACTIONS(1320), + [anon_sym_static] = ACTIONS(1320), + [anon_sym_auto] = ACTIONS(1320), + [anon_sym_register] = ACTIONS(1320), + [anon_sym_inline] = ACTIONS(1320), + [anon_sym___inline] = ACTIONS(1320), + [anon_sym___inline__] = ACTIONS(1320), + [anon_sym___forceinline] = ACTIONS(1320), + [anon_sym_thread_local] = ACTIONS(1320), + [anon_sym___thread] = ACTIONS(1320), + [anon_sym_const] = ACTIONS(1320), + [anon_sym_constexpr] = ACTIONS(1320), + [anon_sym_volatile] = ACTIONS(1320), + [anon_sym_restrict] = ACTIONS(1320), + [anon_sym___restrict__] = ACTIONS(1320), + [anon_sym__Atomic] = ACTIONS(1320), + [anon_sym__Noreturn] = ACTIONS(1320), + [anon_sym_noreturn] = ACTIONS(1320), + [sym_primitive_type] = ACTIONS(1320), + [anon_sym_enum] = ACTIONS(1320), + [anon_sym_struct] = ACTIONS(1320), + [anon_sym_union] = ACTIONS(1320), + [anon_sym_if] = ACTIONS(1320), + [anon_sym_else] = ACTIONS(1320), + [anon_sym_switch] = ACTIONS(1320), + [anon_sym_case] = ACTIONS(1320), + [anon_sym_default] = ACTIONS(1320), + [anon_sym_while] = ACTIONS(1320), + [anon_sym_do] = ACTIONS(1320), + [anon_sym_for] = ACTIONS(1320), + [anon_sym_return] = ACTIONS(1320), + [anon_sym_break] = ACTIONS(1320), + [anon_sym_continue] = ACTIONS(1320), + [anon_sym_goto] = ACTIONS(1320), + [anon_sym___try] = ACTIONS(1320), + [anon_sym___leave] = ACTIONS(1320), + [anon_sym_DASH_DASH] = ACTIONS(1322), + [anon_sym_PLUS_PLUS] = ACTIONS(1322), + [anon_sym_sizeof] = ACTIONS(1320), + [anon_sym___alignof__] = ACTIONS(1320), + [anon_sym___alignof] = ACTIONS(1320), + [anon_sym__alignof] = ACTIONS(1320), + [anon_sym_alignof] = ACTIONS(1320), + [anon_sym__Alignof] = ACTIONS(1320), + [anon_sym_offsetof] = ACTIONS(1320), + [anon_sym__Generic] = ACTIONS(1320), + [anon_sym_asm] = ACTIONS(1320), + [anon_sym___asm__] = ACTIONS(1320), + [sym_number_literal] = ACTIONS(1322), + [anon_sym_L_SQUOTE] = ACTIONS(1322), + [anon_sym_u_SQUOTE] = ACTIONS(1322), + [anon_sym_U_SQUOTE] = ACTIONS(1322), + [anon_sym_u8_SQUOTE] = ACTIONS(1322), + [anon_sym_SQUOTE] = ACTIONS(1322), + [anon_sym_L_DQUOTE] = ACTIONS(1322), + [anon_sym_u_DQUOTE] = ACTIONS(1322), + [anon_sym_U_DQUOTE] = ACTIONS(1322), + [anon_sym_u8_DQUOTE] = ACTIONS(1322), + [anon_sym_DQUOTE] = ACTIONS(1322), + [sym_true] = ACTIONS(1320), + [sym_false] = ACTIONS(1320), + [anon_sym_NULL] = ACTIONS(1320), + [anon_sym_nullptr] = ACTIONS(1320), [sym_comment] = ACTIONS(3), }, [125] = { - [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_LBRACK_LBRACK] = ACTIONS(1391), - [anon_sym___declspec] = 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), - [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_else] = 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_identifier] = ACTIONS(1396), + [aux_sym_preproc_include_token1] = ACTIONS(1396), + [aux_sym_preproc_def_token1] = ACTIONS(1396), + [aux_sym_preproc_if_token1] = ACTIONS(1396), + [aux_sym_preproc_if_token2] = ACTIONS(1396), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1396), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1396), + [aux_sym_preproc_else_token1] = ACTIONS(1396), + [aux_sym_preproc_elif_token1] = ACTIONS(1396), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1396), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1396), + [anon_sym_LPAREN2] = ACTIONS(1398), + [anon_sym_BANG] = ACTIONS(1398), + [anon_sym_TILDE] = ACTIONS(1398), + [anon_sym_DASH] = ACTIONS(1396), + [anon_sym_PLUS] = ACTIONS(1396), + [anon_sym_STAR] = ACTIONS(1398), + [anon_sym_AMP] = ACTIONS(1398), + [anon_sym_SEMI] = ACTIONS(1398), + [anon_sym___extension__] = ACTIONS(1396), + [anon_sym_typedef] = ACTIONS(1396), + [anon_sym_extern] = ACTIONS(1396), + [anon_sym___attribute__] = ACTIONS(1396), + [anon_sym___scanf] = ACTIONS(1396), + [anon_sym___printf] = ACTIONS(1396), + [anon_sym___read_mostly] = ACTIONS(1396), + [anon_sym___must_hold] = ACTIONS(1396), + [anon_sym___ro_after_init] = ACTIONS(1396), + [anon_sym___init] = ACTIONS(1396), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1398), + [anon_sym___declspec] = ACTIONS(1396), + [anon_sym___cdecl] = ACTIONS(1396), + [anon_sym___clrcall] = ACTIONS(1396), + [anon_sym___stdcall] = ACTIONS(1396), + [anon_sym___fastcall] = ACTIONS(1396), + [anon_sym___thiscall] = ACTIONS(1396), + [anon_sym___vectorcall] = ACTIONS(1396), + [anon_sym_LBRACE] = ACTIONS(1398), + [anon_sym_signed] = ACTIONS(1396), + [anon_sym_unsigned] = ACTIONS(1396), + [anon_sym_long] = ACTIONS(1396), + [anon_sym_short] = ACTIONS(1396), + [anon_sym_static] = ACTIONS(1396), + [anon_sym_auto] = ACTIONS(1396), + [anon_sym_register] = ACTIONS(1396), + [anon_sym_inline] = ACTIONS(1396), + [anon_sym___inline] = ACTIONS(1396), + [anon_sym___inline__] = ACTIONS(1396), + [anon_sym___forceinline] = ACTIONS(1396), + [anon_sym_thread_local] = ACTIONS(1396), + [anon_sym___thread] = ACTIONS(1396), + [anon_sym_const] = ACTIONS(1396), + [anon_sym_constexpr] = ACTIONS(1396), + [anon_sym_volatile] = ACTIONS(1396), + [anon_sym_restrict] = ACTIONS(1396), + [anon_sym___restrict__] = ACTIONS(1396), + [anon_sym__Atomic] = ACTIONS(1396), + [anon_sym__Noreturn] = ACTIONS(1396), + [anon_sym_noreturn] = ACTIONS(1396), + [sym_primitive_type] = ACTIONS(1396), + [anon_sym_enum] = ACTIONS(1396), + [anon_sym_struct] = ACTIONS(1396), + [anon_sym_union] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1396), + [anon_sym_else] = ACTIONS(1396), + [anon_sym_switch] = ACTIONS(1396), + [anon_sym_case] = ACTIONS(1396), + [anon_sym_default] = ACTIONS(1396), + [anon_sym_while] = ACTIONS(1396), + [anon_sym_do] = ACTIONS(1396), + [anon_sym_for] = ACTIONS(1396), + [anon_sym_return] = ACTIONS(1396), + [anon_sym_break] = ACTIONS(1396), + [anon_sym_continue] = ACTIONS(1396), + [anon_sym_goto] = ACTIONS(1396), + [anon_sym___try] = ACTIONS(1396), + [anon_sym___leave] = ACTIONS(1396), + [anon_sym_DASH_DASH] = ACTIONS(1398), + [anon_sym_PLUS_PLUS] = ACTIONS(1398), + [anon_sym_sizeof] = ACTIONS(1396), + [anon_sym___alignof__] = ACTIONS(1396), + [anon_sym___alignof] = ACTIONS(1396), + [anon_sym__alignof] = ACTIONS(1396), + [anon_sym_alignof] = ACTIONS(1396), + [anon_sym__Alignof] = ACTIONS(1396), + [anon_sym_offsetof] = ACTIONS(1396), + [anon_sym__Generic] = ACTIONS(1396), + [anon_sym_asm] = ACTIONS(1396), + [anon_sym___asm__] = ACTIONS(1396), + [sym_number_literal] = ACTIONS(1398), + [anon_sym_L_SQUOTE] = ACTIONS(1398), + [anon_sym_u_SQUOTE] = ACTIONS(1398), + [anon_sym_U_SQUOTE] = ACTIONS(1398), + [anon_sym_u8_SQUOTE] = ACTIONS(1398), + [anon_sym_SQUOTE] = ACTIONS(1398), + [anon_sym_L_DQUOTE] = ACTIONS(1398), + [anon_sym_u_DQUOTE] = ACTIONS(1398), + [anon_sym_U_DQUOTE] = ACTIONS(1398), + [anon_sym_u8_DQUOTE] = ACTIONS(1398), + [anon_sym_DQUOTE] = ACTIONS(1398), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [anon_sym_NULL] = ACTIONS(1396), + [anon_sym_nullptr] = ACTIONS(1396), [sym_comment] = ACTIONS(3), }, [126] = { - [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_LBRACK_LBRACK] = ACTIONS(1315), - [anon_sym___declspec] = 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), - [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_else] = 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_identifier] = ACTIONS(1400), + [aux_sym_preproc_include_token1] = ACTIONS(1400), + [aux_sym_preproc_def_token1] = ACTIONS(1400), + [aux_sym_preproc_if_token1] = ACTIONS(1400), + [aux_sym_preproc_if_token2] = ACTIONS(1400), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1400), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1400), + [aux_sym_preproc_else_token1] = ACTIONS(1400), + [aux_sym_preproc_elif_token1] = ACTIONS(1400), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1400), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1400), + [sym_preproc_directive] = ACTIONS(1400), + [anon_sym_LPAREN2] = ACTIONS(1402), + [anon_sym_BANG] = ACTIONS(1402), + [anon_sym_TILDE] = ACTIONS(1402), + [anon_sym_DASH] = ACTIONS(1400), + [anon_sym_PLUS] = ACTIONS(1400), + [anon_sym_STAR] = ACTIONS(1402), + [anon_sym_AMP] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(1402), + [anon_sym___extension__] = ACTIONS(1400), + [anon_sym_typedef] = ACTIONS(1400), + [anon_sym_extern] = ACTIONS(1400), + [anon_sym___attribute__] = ACTIONS(1400), + [anon_sym___scanf] = ACTIONS(1400), + [anon_sym___printf] = ACTIONS(1400), + [anon_sym___read_mostly] = ACTIONS(1400), + [anon_sym___must_hold] = ACTIONS(1400), + [anon_sym___ro_after_init] = ACTIONS(1400), + [anon_sym___init] = ACTIONS(1400), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1402), + [anon_sym___declspec] = ACTIONS(1400), + [anon_sym___cdecl] = ACTIONS(1400), + [anon_sym___clrcall] = ACTIONS(1400), + [anon_sym___stdcall] = ACTIONS(1400), + [anon_sym___fastcall] = ACTIONS(1400), + [anon_sym___thiscall] = ACTIONS(1400), + [anon_sym___vectorcall] = ACTIONS(1400), + [anon_sym_LBRACE] = ACTIONS(1402), + [anon_sym_signed] = ACTIONS(1400), + [anon_sym_unsigned] = ACTIONS(1400), + [anon_sym_long] = ACTIONS(1400), + [anon_sym_short] = ACTIONS(1400), + [anon_sym_static] = ACTIONS(1400), + [anon_sym_auto] = ACTIONS(1400), + [anon_sym_register] = ACTIONS(1400), + [anon_sym_inline] = ACTIONS(1400), + [anon_sym___inline] = ACTIONS(1400), + [anon_sym___inline__] = ACTIONS(1400), + [anon_sym___forceinline] = ACTIONS(1400), + [anon_sym_thread_local] = ACTIONS(1400), + [anon_sym___thread] = ACTIONS(1400), + [anon_sym_const] = ACTIONS(1400), + [anon_sym_constexpr] = ACTIONS(1400), + [anon_sym_volatile] = ACTIONS(1400), + [anon_sym_restrict] = ACTIONS(1400), + [anon_sym___restrict__] = ACTIONS(1400), + [anon_sym__Atomic] = ACTIONS(1400), + [anon_sym__Noreturn] = ACTIONS(1400), + [anon_sym_noreturn] = ACTIONS(1400), + [sym_primitive_type] = ACTIONS(1400), + [anon_sym_enum] = ACTIONS(1400), + [anon_sym_struct] = ACTIONS(1400), + [anon_sym_union] = ACTIONS(1400), + [anon_sym_if] = ACTIONS(1400), + [anon_sym_else] = ACTIONS(1400), + [anon_sym_switch] = ACTIONS(1400), + [anon_sym_case] = ACTIONS(1400), + [anon_sym_default] = ACTIONS(1400), + [anon_sym_while] = ACTIONS(1400), + [anon_sym_do] = ACTIONS(1400), + [anon_sym_for] = ACTIONS(1400), + [anon_sym_return] = ACTIONS(1400), + [anon_sym_break] = ACTIONS(1400), + [anon_sym_continue] = ACTIONS(1400), + [anon_sym_goto] = ACTIONS(1400), + [anon_sym___try] = ACTIONS(1400), + [anon_sym___leave] = ACTIONS(1400), + [anon_sym_DASH_DASH] = ACTIONS(1402), + [anon_sym_PLUS_PLUS] = ACTIONS(1402), + [anon_sym_sizeof] = ACTIONS(1400), + [anon_sym___alignof__] = ACTIONS(1400), + [anon_sym___alignof] = ACTIONS(1400), + [anon_sym__alignof] = ACTIONS(1400), + [anon_sym_alignof] = ACTIONS(1400), + [anon_sym__Alignof] = ACTIONS(1400), + [anon_sym_offsetof] = ACTIONS(1400), + [anon_sym__Generic] = ACTIONS(1400), + [anon_sym_asm] = ACTIONS(1400), + [anon_sym___asm__] = ACTIONS(1400), + [sym_number_literal] = ACTIONS(1402), + [anon_sym_L_SQUOTE] = ACTIONS(1402), + [anon_sym_u_SQUOTE] = ACTIONS(1402), + [anon_sym_U_SQUOTE] = ACTIONS(1402), + [anon_sym_u8_SQUOTE] = ACTIONS(1402), + [anon_sym_SQUOTE] = ACTIONS(1402), + [anon_sym_L_DQUOTE] = ACTIONS(1402), + [anon_sym_u_DQUOTE] = ACTIONS(1402), + [anon_sym_U_DQUOTE] = ACTIONS(1402), + [anon_sym_u8_DQUOTE] = ACTIONS(1402), + [anon_sym_DQUOTE] = ACTIONS(1402), + [sym_true] = ACTIONS(1400), + [sym_false] = ACTIONS(1400), + [anon_sym_NULL] = ACTIONS(1400), + [anon_sym_nullptr] = ACTIONS(1400), [sym_comment] = ACTIONS(3), }, [127] = { - [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(1309), - [anon_sym_BANG] = ACTIONS(1309), - [anon_sym_TILDE] = ACTIONS(1309), - [anon_sym_DASH] = ACTIONS(1311), - [anon_sym_PLUS] = ACTIONS(1311), - [anon_sym_STAR] = ACTIONS(1309), - [anon_sym_AMP] = ACTIONS(1309), - [anon_sym_SEMI] = ACTIONS(1309), - [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_LBRACK_LBRACK] = ACTIONS(1309), - [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(1309), - [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), - [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_else] = 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(1309), - [anon_sym_PLUS_PLUS] = ACTIONS(1309), - [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(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(1311), - [sym_false] = ACTIONS(1311), - [anon_sym_NULL] = ACTIONS(1311), - [anon_sym_nullptr] = ACTIONS(1311), + [sym_identifier] = ACTIONS(1404), + [aux_sym_preproc_include_token1] = ACTIONS(1404), + [aux_sym_preproc_def_token1] = ACTIONS(1404), + [aux_sym_preproc_if_token1] = ACTIONS(1404), + [aux_sym_preproc_if_token2] = ACTIONS(1404), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1404), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1404), + [aux_sym_preproc_else_token1] = ACTIONS(1404), + [aux_sym_preproc_elif_token1] = ACTIONS(1404), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1404), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1404), + [sym_preproc_directive] = ACTIONS(1404), + [anon_sym_LPAREN2] = ACTIONS(1406), + [anon_sym_BANG] = ACTIONS(1406), + [anon_sym_TILDE] = ACTIONS(1406), + [anon_sym_DASH] = ACTIONS(1404), + [anon_sym_PLUS] = ACTIONS(1404), + [anon_sym_STAR] = ACTIONS(1406), + [anon_sym_AMP] = ACTIONS(1406), + [anon_sym_SEMI] = ACTIONS(1406), + [anon_sym___extension__] = ACTIONS(1404), + [anon_sym_typedef] = ACTIONS(1404), + [anon_sym_extern] = ACTIONS(1404), + [anon_sym___attribute__] = ACTIONS(1404), + [anon_sym___scanf] = ACTIONS(1404), + [anon_sym___printf] = ACTIONS(1404), + [anon_sym___read_mostly] = ACTIONS(1404), + [anon_sym___must_hold] = ACTIONS(1404), + [anon_sym___ro_after_init] = ACTIONS(1404), + [anon_sym___init] = ACTIONS(1404), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1406), + [anon_sym___declspec] = ACTIONS(1404), + [anon_sym___cdecl] = ACTIONS(1404), + [anon_sym___clrcall] = ACTIONS(1404), + [anon_sym___stdcall] = ACTIONS(1404), + [anon_sym___fastcall] = ACTIONS(1404), + [anon_sym___thiscall] = ACTIONS(1404), + [anon_sym___vectorcall] = ACTIONS(1404), + [anon_sym_LBRACE] = ACTIONS(1406), + [anon_sym_signed] = ACTIONS(1404), + [anon_sym_unsigned] = ACTIONS(1404), + [anon_sym_long] = ACTIONS(1404), + [anon_sym_short] = ACTIONS(1404), + [anon_sym_static] = ACTIONS(1404), + [anon_sym_auto] = ACTIONS(1404), + [anon_sym_register] = ACTIONS(1404), + [anon_sym_inline] = ACTIONS(1404), + [anon_sym___inline] = ACTIONS(1404), + [anon_sym___inline__] = ACTIONS(1404), + [anon_sym___forceinline] = ACTIONS(1404), + [anon_sym_thread_local] = ACTIONS(1404), + [anon_sym___thread] = ACTIONS(1404), + [anon_sym_const] = ACTIONS(1404), + [anon_sym_constexpr] = ACTIONS(1404), + [anon_sym_volatile] = ACTIONS(1404), + [anon_sym_restrict] = ACTIONS(1404), + [anon_sym___restrict__] = ACTIONS(1404), + [anon_sym__Atomic] = ACTIONS(1404), + [anon_sym__Noreturn] = ACTIONS(1404), + [anon_sym_noreturn] = ACTIONS(1404), + [sym_primitive_type] = ACTIONS(1404), + [anon_sym_enum] = ACTIONS(1404), + [anon_sym_struct] = ACTIONS(1404), + [anon_sym_union] = ACTIONS(1404), + [anon_sym_if] = ACTIONS(1404), + [anon_sym_else] = ACTIONS(1404), + [anon_sym_switch] = ACTIONS(1404), + [anon_sym_case] = ACTIONS(1404), + [anon_sym_default] = ACTIONS(1404), + [anon_sym_while] = ACTIONS(1404), + [anon_sym_do] = ACTIONS(1404), + [anon_sym_for] = ACTIONS(1404), + [anon_sym_return] = ACTIONS(1404), + [anon_sym_break] = ACTIONS(1404), + [anon_sym_continue] = ACTIONS(1404), + [anon_sym_goto] = ACTIONS(1404), + [anon_sym___try] = ACTIONS(1404), + [anon_sym___leave] = ACTIONS(1404), + [anon_sym_DASH_DASH] = ACTIONS(1406), + [anon_sym_PLUS_PLUS] = ACTIONS(1406), + [anon_sym_sizeof] = ACTIONS(1404), + [anon_sym___alignof__] = ACTIONS(1404), + [anon_sym___alignof] = ACTIONS(1404), + [anon_sym__alignof] = ACTIONS(1404), + [anon_sym_alignof] = ACTIONS(1404), + [anon_sym__Alignof] = ACTIONS(1404), + [anon_sym_offsetof] = ACTIONS(1404), + [anon_sym__Generic] = ACTIONS(1404), + [anon_sym_asm] = ACTIONS(1404), + [anon_sym___asm__] = ACTIONS(1404), + [sym_number_literal] = ACTIONS(1406), + [anon_sym_L_SQUOTE] = ACTIONS(1406), + [anon_sym_u_SQUOTE] = ACTIONS(1406), + [anon_sym_U_SQUOTE] = ACTIONS(1406), + [anon_sym_u8_SQUOTE] = ACTIONS(1406), + [anon_sym_SQUOTE] = ACTIONS(1406), + [anon_sym_L_DQUOTE] = ACTIONS(1406), + [anon_sym_u_DQUOTE] = ACTIONS(1406), + [anon_sym_U_DQUOTE] = ACTIONS(1406), + [anon_sym_u8_DQUOTE] = ACTIONS(1406), + [anon_sym_DQUOTE] = ACTIONS(1406), + [sym_true] = ACTIONS(1404), + [sym_false] = ACTIONS(1404), + [anon_sym_NULL] = ACTIONS(1404), + [anon_sym_nullptr] = ACTIONS(1404), [sym_comment] = ACTIONS(3), }, [128] = { - [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_LBRACK_LBRACK] = ACTIONS(1395), - [anon_sym___declspec] = 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), - [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_else] = 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), + [ts_builtin_sym_end] = ACTIONS(1398), + [sym_identifier] = ACTIONS(1396), + [aux_sym_preproc_include_token1] = ACTIONS(1396), + [aux_sym_preproc_def_token1] = ACTIONS(1396), + [anon_sym_COMMA] = ACTIONS(1398), + [anon_sym_RPAREN] = ACTIONS(1398), + [aux_sym_preproc_if_token1] = ACTIONS(1396), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1396), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1396), + [anon_sym_LPAREN2] = ACTIONS(1398), + [anon_sym_BANG] = ACTIONS(1398), + [anon_sym_TILDE] = ACTIONS(1398), + [anon_sym_DASH] = ACTIONS(1396), + [anon_sym_PLUS] = ACTIONS(1396), + [anon_sym_STAR] = ACTIONS(1398), + [anon_sym_AMP] = ACTIONS(1398), + [anon_sym_SEMI] = ACTIONS(1398), + [anon_sym___extension__] = ACTIONS(1396), + [anon_sym_typedef] = ACTIONS(1396), + [anon_sym_extern] = ACTIONS(1396), + [anon_sym___attribute__] = ACTIONS(1396), + [anon_sym___scanf] = ACTIONS(1396), + [anon_sym___printf] = ACTIONS(1396), + [anon_sym___read_mostly] = ACTIONS(1396), + [anon_sym___must_hold] = ACTIONS(1396), + [anon_sym___ro_after_init] = ACTIONS(1396), + [anon_sym___init] = ACTIONS(1396), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1398), + [anon_sym___declspec] = ACTIONS(1396), + [anon_sym___cdecl] = ACTIONS(1396), + [anon_sym___clrcall] = ACTIONS(1396), + [anon_sym___stdcall] = ACTIONS(1396), + [anon_sym___fastcall] = ACTIONS(1396), + [anon_sym___thiscall] = ACTIONS(1396), + [anon_sym___vectorcall] = ACTIONS(1396), + [anon_sym_LBRACE] = ACTIONS(1398), + [anon_sym_signed] = ACTIONS(1396), + [anon_sym_unsigned] = ACTIONS(1396), + [anon_sym_long] = ACTIONS(1396), + [anon_sym_short] = ACTIONS(1396), + [anon_sym_static] = ACTIONS(1396), + [anon_sym_auto] = ACTIONS(1396), + [anon_sym_register] = ACTIONS(1396), + [anon_sym_inline] = ACTIONS(1396), + [anon_sym___inline] = ACTIONS(1396), + [anon_sym___inline__] = ACTIONS(1396), + [anon_sym___forceinline] = ACTIONS(1396), + [anon_sym_thread_local] = ACTIONS(1396), + [anon_sym___thread] = ACTIONS(1396), + [anon_sym_const] = ACTIONS(1396), + [anon_sym_constexpr] = ACTIONS(1396), + [anon_sym_volatile] = ACTIONS(1396), + [anon_sym_restrict] = ACTIONS(1396), + [anon_sym___restrict__] = ACTIONS(1396), + [anon_sym__Atomic] = ACTIONS(1396), + [anon_sym__Noreturn] = ACTIONS(1396), + [anon_sym_noreturn] = ACTIONS(1396), + [sym_primitive_type] = ACTIONS(1396), + [anon_sym_enum] = ACTIONS(1396), + [anon_sym_struct] = ACTIONS(1396), + [anon_sym_union] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1396), + [anon_sym_else] = ACTIONS(1396), + [anon_sym_switch] = ACTIONS(1396), + [anon_sym_case] = ACTIONS(1396), + [anon_sym_default] = ACTIONS(1396), + [anon_sym_while] = ACTIONS(1396), + [anon_sym_do] = ACTIONS(1396), + [anon_sym_for] = ACTIONS(1396), + [anon_sym_return] = ACTIONS(1396), + [anon_sym_break] = ACTIONS(1396), + [anon_sym_continue] = ACTIONS(1396), + [anon_sym_goto] = ACTIONS(1396), + [anon_sym___try] = ACTIONS(1396), + [anon_sym___except] = ACTIONS(1396), + [anon_sym___finally] = ACTIONS(1396), + [anon_sym___leave] = ACTIONS(1396), + [anon_sym_DASH_DASH] = ACTIONS(1398), + [anon_sym_PLUS_PLUS] = ACTIONS(1398), + [anon_sym_sizeof] = ACTIONS(1396), + [anon_sym___alignof__] = ACTIONS(1396), + [anon_sym___alignof] = ACTIONS(1396), + [anon_sym__alignof] = ACTIONS(1396), + [anon_sym_alignof] = ACTIONS(1396), + [anon_sym__Alignof] = ACTIONS(1396), + [anon_sym_offsetof] = ACTIONS(1396), + [anon_sym__Generic] = ACTIONS(1396), + [anon_sym_asm] = ACTIONS(1396), + [anon_sym___asm__] = ACTIONS(1396), + [sym_number_literal] = ACTIONS(1398), + [anon_sym_L_SQUOTE] = ACTIONS(1398), + [anon_sym_u_SQUOTE] = ACTIONS(1398), + [anon_sym_U_SQUOTE] = ACTIONS(1398), + [anon_sym_u8_SQUOTE] = ACTIONS(1398), + [anon_sym_SQUOTE] = ACTIONS(1398), + [anon_sym_L_DQUOTE] = ACTIONS(1398), + [anon_sym_u_DQUOTE] = ACTIONS(1398), + [anon_sym_U_DQUOTE] = ACTIONS(1398), + [anon_sym_u8_DQUOTE] = ACTIONS(1398), + [anon_sym_DQUOTE] = ACTIONS(1398), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [anon_sym_NULL] = ACTIONS(1396), + [anon_sym_nullptr] = ACTIONS(1396), [sym_comment] = ACTIONS(3), }, [129] = { - [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_LBRACK_LBRACK] = ACTIONS(1315), - [anon_sym___declspec] = 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), - [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_else] = 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_identifier] = ACTIONS(1408), + [aux_sym_preproc_include_token1] = ACTIONS(1408), + [aux_sym_preproc_def_token1] = ACTIONS(1408), + [aux_sym_preproc_if_token1] = ACTIONS(1408), + [aux_sym_preproc_if_token2] = ACTIONS(1408), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1408), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1408), + [aux_sym_preproc_else_token1] = ACTIONS(1408), + [aux_sym_preproc_elif_token1] = ACTIONS(1408), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1408), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1408), + [sym_preproc_directive] = ACTIONS(1408), + [anon_sym_LPAREN2] = ACTIONS(1410), + [anon_sym_BANG] = ACTIONS(1410), + [anon_sym_TILDE] = ACTIONS(1410), + [anon_sym_DASH] = ACTIONS(1408), + [anon_sym_PLUS] = ACTIONS(1408), + [anon_sym_STAR] = ACTIONS(1410), + [anon_sym_AMP] = ACTIONS(1410), + [anon_sym_SEMI] = ACTIONS(1410), + [anon_sym___extension__] = ACTIONS(1408), + [anon_sym_typedef] = ACTIONS(1408), + [anon_sym_extern] = ACTIONS(1408), + [anon_sym___attribute__] = ACTIONS(1408), + [anon_sym___scanf] = ACTIONS(1408), + [anon_sym___printf] = ACTIONS(1408), + [anon_sym___read_mostly] = ACTIONS(1408), + [anon_sym___must_hold] = ACTIONS(1408), + [anon_sym___ro_after_init] = ACTIONS(1408), + [anon_sym___init] = ACTIONS(1408), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1410), + [anon_sym___declspec] = ACTIONS(1408), + [anon_sym___cdecl] = ACTIONS(1408), + [anon_sym___clrcall] = ACTIONS(1408), + [anon_sym___stdcall] = ACTIONS(1408), + [anon_sym___fastcall] = ACTIONS(1408), + [anon_sym___thiscall] = ACTIONS(1408), + [anon_sym___vectorcall] = ACTIONS(1408), + [anon_sym_LBRACE] = ACTIONS(1410), + [anon_sym_signed] = ACTIONS(1408), + [anon_sym_unsigned] = ACTIONS(1408), + [anon_sym_long] = ACTIONS(1408), + [anon_sym_short] = ACTIONS(1408), + [anon_sym_static] = ACTIONS(1408), + [anon_sym_auto] = ACTIONS(1408), + [anon_sym_register] = ACTIONS(1408), + [anon_sym_inline] = ACTIONS(1408), + [anon_sym___inline] = ACTIONS(1408), + [anon_sym___inline__] = ACTIONS(1408), + [anon_sym___forceinline] = ACTIONS(1408), + [anon_sym_thread_local] = ACTIONS(1408), + [anon_sym___thread] = ACTIONS(1408), + [anon_sym_const] = ACTIONS(1408), + [anon_sym_constexpr] = ACTIONS(1408), + [anon_sym_volatile] = ACTIONS(1408), + [anon_sym_restrict] = ACTIONS(1408), + [anon_sym___restrict__] = ACTIONS(1408), + [anon_sym__Atomic] = ACTIONS(1408), + [anon_sym__Noreturn] = ACTIONS(1408), + [anon_sym_noreturn] = ACTIONS(1408), + [sym_primitive_type] = ACTIONS(1408), + [anon_sym_enum] = ACTIONS(1408), + [anon_sym_struct] = ACTIONS(1408), + [anon_sym_union] = ACTIONS(1408), + [anon_sym_if] = ACTIONS(1408), + [anon_sym_else] = ACTIONS(1408), + [anon_sym_switch] = ACTIONS(1408), + [anon_sym_case] = ACTIONS(1408), + [anon_sym_default] = ACTIONS(1408), + [anon_sym_while] = ACTIONS(1408), + [anon_sym_do] = ACTIONS(1408), + [anon_sym_for] = ACTIONS(1408), + [anon_sym_return] = ACTIONS(1408), + [anon_sym_break] = ACTIONS(1408), + [anon_sym_continue] = ACTIONS(1408), + [anon_sym_goto] = ACTIONS(1408), + [anon_sym___try] = ACTIONS(1408), + [anon_sym___leave] = ACTIONS(1408), + [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_PLUS_PLUS] = ACTIONS(1410), + [anon_sym_sizeof] = ACTIONS(1408), + [anon_sym___alignof__] = ACTIONS(1408), + [anon_sym___alignof] = ACTIONS(1408), + [anon_sym__alignof] = ACTIONS(1408), + [anon_sym_alignof] = ACTIONS(1408), + [anon_sym__Alignof] = ACTIONS(1408), + [anon_sym_offsetof] = ACTIONS(1408), + [anon_sym__Generic] = ACTIONS(1408), + [anon_sym_asm] = ACTIONS(1408), + [anon_sym___asm__] = ACTIONS(1408), + [sym_number_literal] = ACTIONS(1410), + [anon_sym_L_SQUOTE] = ACTIONS(1410), + [anon_sym_u_SQUOTE] = ACTIONS(1410), + [anon_sym_U_SQUOTE] = ACTIONS(1410), + [anon_sym_u8_SQUOTE] = ACTIONS(1410), + [anon_sym_SQUOTE] = ACTIONS(1410), + [anon_sym_L_DQUOTE] = ACTIONS(1410), + [anon_sym_u_DQUOTE] = ACTIONS(1410), + [anon_sym_U_DQUOTE] = ACTIONS(1410), + [anon_sym_u8_DQUOTE] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(1410), + [sym_true] = ACTIONS(1408), + [sym_false] = ACTIONS(1408), + [anon_sym_NULL] = ACTIONS(1408), + [anon_sym_nullptr] = ACTIONS(1408), [sym_comment] = ACTIONS(3), }, [130] = { - [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_LBRACK_LBRACK] = ACTIONS(1399), - [anon_sym___declspec] = 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), - [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_else] = 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_identifier] = ACTIONS(1412), + [aux_sym_preproc_include_token1] = ACTIONS(1412), + [aux_sym_preproc_def_token1] = ACTIONS(1412), + [aux_sym_preproc_if_token1] = ACTIONS(1412), + [aux_sym_preproc_if_token2] = ACTIONS(1412), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1412), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1412), + [aux_sym_preproc_else_token1] = ACTIONS(1412), + [aux_sym_preproc_elif_token1] = ACTIONS(1412), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1412), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1412), + [sym_preproc_directive] = ACTIONS(1412), + [anon_sym_LPAREN2] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(1414), + [anon_sym_TILDE] = ACTIONS(1414), + [anon_sym_DASH] = ACTIONS(1412), + [anon_sym_PLUS] = ACTIONS(1412), + [anon_sym_STAR] = ACTIONS(1414), + [anon_sym_AMP] = ACTIONS(1414), + [anon_sym_SEMI] = ACTIONS(1414), + [anon_sym___extension__] = ACTIONS(1412), + [anon_sym_typedef] = ACTIONS(1412), + [anon_sym_extern] = ACTIONS(1412), + [anon_sym___attribute__] = ACTIONS(1412), + [anon_sym___scanf] = ACTIONS(1412), + [anon_sym___printf] = ACTIONS(1412), + [anon_sym___read_mostly] = ACTIONS(1412), + [anon_sym___must_hold] = ACTIONS(1412), + [anon_sym___ro_after_init] = ACTIONS(1412), + [anon_sym___init] = ACTIONS(1412), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1414), + [anon_sym___declspec] = ACTIONS(1412), + [anon_sym___cdecl] = ACTIONS(1412), + [anon_sym___clrcall] = ACTIONS(1412), + [anon_sym___stdcall] = ACTIONS(1412), + [anon_sym___fastcall] = ACTIONS(1412), + [anon_sym___thiscall] = ACTIONS(1412), + [anon_sym___vectorcall] = ACTIONS(1412), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_signed] = ACTIONS(1412), + [anon_sym_unsigned] = ACTIONS(1412), + [anon_sym_long] = ACTIONS(1412), + [anon_sym_short] = ACTIONS(1412), + [anon_sym_static] = ACTIONS(1412), + [anon_sym_auto] = ACTIONS(1412), + [anon_sym_register] = ACTIONS(1412), + [anon_sym_inline] = ACTIONS(1412), + [anon_sym___inline] = ACTIONS(1412), + [anon_sym___inline__] = ACTIONS(1412), + [anon_sym___forceinline] = ACTIONS(1412), + [anon_sym_thread_local] = ACTIONS(1412), + [anon_sym___thread] = ACTIONS(1412), + [anon_sym_const] = ACTIONS(1412), + [anon_sym_constexpr] = ACTIONS(1412), + [anon_sym_volatile] = ACTIONS(1412), + [anon_sym_restrict] = ACTIONS(1412), + [anon_sym___restrict__] = ACTIONS(1412), + [anon_sym__Atomic] = ACTIONS(1412), + [anon_sym__Noreturn] = ACTIONS(1412), + [anon_sym_noreturn] = ACTIONS(1412), + [sym_primitive_type] = ACTIONS(1412), + [anon_sym_enum] = ACTIONS(1412), + [anon_sym_struct] = ACTIONS(1412), + [anon_sym_union] = ACTIONS(1412), + [anon_sym_if] = ACTIONS(1412), + [anon_sym_else] = ACTIONS(1412), + [anon_sym_switch] = ACTIONS(1412), + [anon_sym_case] = ACTIONS(1412), + [anon_sym_default] = ACTIONS(1412), + [anon_sym_while] = ACTIONS(1412), + [anon_sym_do] = ACTIONS(1412), + [anon_sym_for] = ACTIONS(1412), + [anon_sym_return] = ACTIONS(1412), + [anon_sym_break] = ACTIONS(1412), + [anon_sym_continue] = ACTIONS(1412), + [anon_sym_goto] = ACTIONS(1412), + [anon_sym___try] = ACTIONS(1412), + [anon_sym___leave] = ACTIONS(1412), + [anon_sym_DASH_DASH] = ACTIONS(1414), + [anon_sym_PLUS_PLUS] = ACTIONS(1414), + [anon_sym_sizeof] = ACTIONS(1412), + [anon_sym___alignof__] = ACTIONS(1412), + [anon_sym___alignof] = ACTIONS(1412), + [anon_sym__alignof] = ACTIONS(1412), + [anon_sym_alignof] = ACTIONS(1412), + [anon_sym__Alignof] = ACTIONS(1412), + [anon_sym_offsetof] = ACTIONS(1412), + [anon_sym__Generic] = ACTIONS(1412), + [anon_sym_asm] = ACTIONS(1412), + [anon_sym___asm__] = ACTIONS(1412), + [sym_number_literal] = ACTIONS(1414), + [anon_sym_L_SQUOTE] = ACTIONS(1414), + [anon_sym_u_SQUOTE] = ACTIONS(1414), + [anon_sym_U_SQUOTE] = ACTIONS(1414), + [anon_sym_u8_SQUOTE] = ACTIONS(1414), + [anon_sym_SQUOTE] = ACTIONS(1414), + [anon_sym_L_DQUOTE] = ACTIONS(1414), + [anon_sym_u_DQUOTE] = ACTIONS(1414), + [anon_sym_U_DQUOTE] = ACTIONS(1414), + [anon_sym_u8_DQUOTE] = ACTIONS(1414), + [anon_sym_DQUOTE] = ACTIONS(1414), + [sym_true] = ACTIONS(1412), + [sym_false] = ACTIONS(1412), + [anon_sym_NULL] = ACTIONS(1412), + [anon_sym_nullptr] = ACTIONS(1412), [sym_comment] = ACTIONS(3), }, [131] = { - [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(1403), - [anon_sym_BANG] = ACTIONS(1403), - [anon_sym_TILDE] = ACTIONS(1403), - [anon_sym_DASH] = ACTIONS(1401), - [anon_sym_PLUS] = ACTIONS(1401), - [anon_sym_STAR] = ACTIONS(1403), - [anon_sym_AMP] = ACTIONS(1403), - [anon_sym_SEMI] = ACTIONS(1403), - [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_LBRACK_LBRACK] = ACTIONS(1403), - [anon_sym___declspec] = 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(1403), - [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), - [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_else] = 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(1403), - [anon_sym_PLUS_PLUS] = ACTIONS(1403), - [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(1403), - [anon_sym_L_SQUOTE] = ACTIONS(1403), - [anon_sym_u_SQUOTE] = ACTIONS(1403), - [anon_sym_U_SQUOTE] = ACTIONS(1403), - [anon_sym_u8_SQUOTE] = ACTIONS(1403), - [anon_sym_SQUOTE] = ACTIONS(1403), - [anon_sym_L_DQUOTE] = ACTIONS(1403), - [anon_sym_u_DQUOTE] = ACTIONS(1403), - [anon_sym_U_DQUOTE] = ACTIONS(1403), - [anon_sym_u8_DQUOTE] = ACTIONS(1403), - [anon_sym_DQUOTE] = ACTIONS(1403), - [sym_true] = ACTIONS(1401), - [sym_false] = ACTIONS(1401), - [anon_sym_NULL] = ACTIONS(1401), - [anon_sym_nullptr] = ACTIONS(1401), + [sym_identifier] = ACTIONS(1416), + [aux_sym_preproc_include_token1] = ACTIONS(1416), + [aux_sym_preproc_def_token1] = ACTIONS(1416), + [aux_sym_preproc_if_token1] = ACTIONS(1416), + [aux_sym_preproc_if_token2] = ACTIONS(1416), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1416), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1416), + [aux_sym_preproc_else_token1] = ACTIONS(1416), + [aux_sym_preproc_elif_token1] = ACTIONS(1416), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1416), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1416), + [sym_preproc_directive] = ACTIONS(1416), + [anon_sym_LPAREN2] = ACTIONS(1418), + [anon_sym_BANG] = ACTIONS(1418), + [anon_sym_TILDE] = ACTIONS(1418), + [anon_sym_DASH] = ACTIONS(1416), + [anon_sym_PLUS] = ACTIONS(1416), + [anon_sym_STAR] = ACTIONS(1418), + [anon_sym_AMP] = ACTIONS(1418), + [anon_sym_SEMI] = ACTIONS(1418), + [anon_sym___extension__] = ACTIONS(1416), + [anon_sym_typedef] = ACTIONS(1416), + [anon_sym_extern] = ACTIONS(1416), + [anon_sym___attribute__] = ACTIONS(1416), + [anon_sym___scanf] = ACTIONS(1416), + [anon_sym___printf] = ACTIONS(1416), + [anon_sym___read_mostly] = ACTIONS(1416), + [anon_sym___must_hold] = ACTIONS(1416), + [anon_sym___ro_after_init] = ACTIONS(1416), + [anon_sym___init] = ACTIONS(1416), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1418), + [anon_sym___declspec] = ACTIONS(1416), + [anon_sym___cdecl] = ACTIONS(1416), + [anon_sym___clrcall] = ACTIONS(1416), + [anon_sym___stdcall] = ACTIONS(1416), + [anon_sym___fastcall] = ACTIONS(1416), + [anon_sym___thiscall] = ACTIONS(1416), + [anon_sym___vectorcall] = ACTIONS(1416), + [anon_sym_LBRACE] = ACTIONS(1418), + [anon_sym_signed] = ACTIONS(1416), + [anon_sym_unsigned] = ACTIONS(1416), + [anon_sym_long] = ACTIONS(1416), + [anon_sym_short] = ACTIONS(1416), + [anon_sym_static] = ACTIONS(1416), + [anon_sym_auto] = ACTIONS(1416), + [anon_sym_register] = ACTIONS(1416), + [anon_sym_inline] = ACTIONS(1416), + [anon_sym___inline] = ACTIONS(1416), + [anon_sym___inline__] = ACTIONS(1416), + [anon_sym___forceinline] = ACTIONS(1416), + [anon_sym_thread_local] = ACTIONS(1416), + [anon_sym___thread] = ACTIONS(1416), + [anon_sym_const] = ACTIONS(1416), + [anon_sym_constexpr] = ACTIONS(1416), + [anon_sym_volatile] = ACTIONS(1416), + [anon_sym_restrict] = ACTIONS(1416), + [anon_sym___restrict__] = ACTIONS(1416), + [anon_sym__Atomic] = ACTIONS(1416), + [anon_sym__Noreturn] = ACTIONS(1416), + [anon_sym_noreturn] = ACTIONS(1416), + [sym_primitive_type] = ACTIONS(1416), + [anon_sym_enum] = ACTIONS(1416), + [anon_sym_struct] = ACTIONS(1416), + [anon_sym_union] = ACTIONS(1416), + [anon_sym_if] = ACTIONS(1416), + [anon_sym_else] = ACTIONS(1416), + [anon_sym_switch] = ACTIONS(1416), + [anon_sym_case] = ACTIONS(1416), + [anon_sym_default] = ACTIONS(1416), + [anon_sym_while] = ACTIONS(1416), + [anon_sym_do] = ACTIONS(1416), + [anon_sym_for] = ACTIONS(1416), + [anon_sym_return] = ACTIONS(1416), + [anon_sym_break] = ACTIONS(1416), + [anon_sym_continue] = ACTIONS(1416), + [anon_sym_goto] = ACTIONS(1416), + [anon_sym___try] = ACTIONS(1416), + [anon_sym___leave] = ACTIONS(1416), + [anon_sym_DASH_DASH] = ACTIONS(1418), + [anon_sym_PLUS_PLUS] = ACTIONS(1418), + [anon_sym_sizeof] = ACTIONS(1416), + [anon_sym___alignof__] = ACTIONS(1416), + [anon_sym___alignof] = ACTIONS(1416), + [anon_sym__alignof] = ACTIONS(1416), + [anon_sym_alignof] = ACTIONS(1416), + [anon_sym__Alignof] = ACTIONS(1416), + [anon_sym_offsetof] = ACTIONS(1416), + [anon_sym__Generic] = ACTIONS(1416), + [anon_sym_asm] = ACTIONS(1416), + [anon_sym___asm__] = ACTIONS(1416), + [sym_number_literal] = ACTIONS(1418), + [anon_sym_L_SQUOTE] = ACTIONS(1418), + [anon_sym_u_SQUOTE] = ACTIONS(1418), + [anon_sym_U_SQUOTE] = ACTIONS(1418), + [anon_sym_u8_SQUOTE] = ACTIONS(1418), + [anon_sym_SQUOTE] = ACTIONS(1418), + [anon_sym_L_DQUOTE] = ACTIONS(1418), + [anon_sym_u_DQUOTE] = ACTIONS(1418), + [anon_sym_U_DQUOTE] = ACTIONS(1418), + [anon_sym_u8_DQUOTE] = ACTIONS(1418), + [anon_sym_DQUOTE] = ACTIONS(1418), + [sym_true] = ACTIONS(1416), + [sym_false] = ACTIONS(1416), + [anon_sym_NULL] = ACTIONS(1416), + [anon_sym_nullptr] = ACTIONS(1416), [sym_comment] = ACTIONS(3), }, [132] = { - [sym_identifier] = ACTIONS(1405), - [aux_sym_preproc_include_token1] = ACTIONS(1405), - [aux_sym_preproc_def_token1] = ACTIONS(1405), - [aux_sym_preproc_if_token1] = ACTIONS(1405), - [aux_sym_preproc_if_token2] = ACTIONS(1405), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1405), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1405), - [aux_sym_preproc_else_token1] = ACTIONS(1405), - [aux_sym_preproc_elif_token1] = ACTIONS(1405), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1405), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1405), - [sym_preproc_directive] = ACTIONS(1405), - [anon_sym_LPAREN2] = ACTIONS(1407), - [anon_sym_BANG] = ACTIONS(1407), - [anon_sym_TILDE] = ACTIONS(1407), - [anon_sym_DASH] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1405), - [anon_sym_STAR] = ACTIONS(1407), - [anon_sym_AMP] = ACTIONS(1407), - [anon_sym_SEMI] = ACTIONS(1407), - [anon_sym___extension__] = ACTIONS(1405), - [anon_sym_typedef] = ACTIONS(1405), - [anon_sym_extern] = ACTIONS(1405), - [anon_sym___attribute__] = ACTIONS(1405), - [anon_sym___scanf] = ACTIONS(1405), - [anon_sym___printf] = ACTIONS(1405), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1407), - [anon_sym___declspec] = ACTIONS(1405), - [anon_sym___cdecl] = ACTIONS(1405), - [anon_sym___clrcall] = ACTIONS(1405), - [anon_sym___stdcall] = ACTIONS(1405), - [anon_sym___fastcall] = ACTIONS(1405), - [anon_sym___thiscall] = ACTIONS(1405), - [anon_sym___vectorcall] = ACTIONS(1405), - [anon_sym_LBRACE] = ACTIONS(1407), - [anon_sym_signed] = ACTIONS(1405), - [anon_sym_unsigned] = ACTIONS(1405), - [anon_sym_long] = ACTIONS(1405), - [anon_sym_short] = ACTIONS(1405), - [anon_sym_static] = ACTIONS(1405), - [anon_sym_auto] = ACTIONS(1405), - [anon_sym_register] = ACTIONS(1405), - [anon_sym_inline] = ACTIONS(1405), - [anon_sym___inline] = ACTIONS(1405), - [anon_sym___inline__] = ACTIONS(1405), - [anon_sym___forceinline] = ACTIONS(1405), - [anon_sym_thread_local] = ACTIONS(1405), - [anon_sym___thread] = ACTIONS(1405), - [anon_sym_const] = ACTIONS(1405), - [anon_sym_constexpr] = ACTIONS(1405), - [anon_sym_volatile] = ACTIONS(1405), - [anon_sym_restrict] = ACTIONS(1405), - [anon_sym___restrict__] = ACTIONS(1405), - [anon_sym__Atomic] = ACTIONS(1405), - [anon_sym__Noreturn] = ACTIONS(1405), - [anon_sym_noreturn] = ACTIONS(1405), - [sym_primitive_type] = ACTIONS(1405), - [anon_sym_enum] = ACTIONS(1405), - [anon_sym_struct] = ACTIONS(1405), - [anon_sym_union] = ACTIONS(1405), - [anon_sym_if] = ACTIONS(1405), - [anon_sym_else] = ACTIONS(1405), - [anon_sym_switch] = ACTIONS(1405), - [anon_sym_case] = ACTIONS(1405), - [anon_sym_default] = ACTIONS(1405), - [anon_sym_while] = ACTIONS(1405), - [anon_sym_do] = ACTIONS(1405), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_return] = ACTIONS(1405), - [anon_sym_break] = ACTIONS(1405), - [anon_sym_continue] = ACTIONS(1405), - [anon_sym_goto] = ACTIONS(1405), - [anon_sym___try] = ACTIONS(1405), - [anon_sym___leave] = ACTIONS(1405), - [anon_sym_DASH_DASH] = ACTIONS(1407), - [anon_sym_PLUS_PLUS] = ACTIONS(1407), - [anon_sym_sizeof] = ACTIONS(1405), - [anon_sym___alignof__] = ACTIONS(1405), - [anon_sym___alignof] = ACTIONS(1405), - [anon_sym__alignof] = ACTIONS(1405), - [anon_sym_alignof] = ACTIONS(1405), - [anon_sym__Alignof] = ACTIONS(1405), - [anon_sym_offsetof] = ACTIONS(1405), - [anon_sym__Generic] = ACTIONS(1405), - [anon_sym_asm] = ACTIONS(1405), - [anon_sym___asm__] = ACTIONS(1405), - [sym_number_literal] = ACTIONS(1407), - [anon_sym_L_SQUOTE] = ACTIONS(1407), - [anon_sym_u_SQUOTE] = ACTIONS(1407), - [anon_sym_U_SQUOTE] = ACTIONS(1407), - [anon_sym_u8_SQUOTE] = ACTIONS(1407), - [anon_sym_SQUOTE] = ACTIONS(1407), - [anon_sym_L_DQUOTE] = ACTIONS(1407), - [anon_sym_u_DQUOTE] = ACTIONS(1407), - [anon_sym_U_DQUOTE] = ACTIONS(1407), - [anon_sym_u8_DQUOTE] = ACTIONS(1407), - [anon_sym_DQUOTE] = ACTIONS(1407), - [sym_true] = ACTIONS(1405), - [sym_false] = ACTIONS(1405), - [anon_sym_NULL] = ACTIONS(1405), - [anon_sym_nullptr] = ACTIONS(1405), + [sym_identifier] = ACTIONS(1420), + [aux_sym_preproc_include_token1] = ACTIONS(1420), + [aux_sym_preproc_def_token1] = ACTIONS(1420), + [aux_sym_preproc_if_token1] = ACTIONS(1420), + [aux_sym_preproc_if_token2] = ACTIONS(1420), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1420), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1420), + [aux_sym_preproc_else_token1] = ACTIONS(1420), + [aux_sym_preproc_elif_token1] = ACTIONS(1420), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1420), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1420), + [sym_preproc_directive] = ACTIONS(1420), + [anon_sym_LPAREN2] = ACTIONS(1422), + [anon_sym_BANG] = ACTIONS(1422), + [anon_sym_TILDE] = ACTIONS(1422), + [anon_sym_DASH] = ACTIONS(1420), + [anon_sym_PLUS] = ACTIONS(1420), + [anon_sym_STAR] = ACTIONS(1422), + [anon_sym_AMP] = ACTIONS(1422), + [anon_sym_SEMI] = ACTIONS(1422), + [anon_sym___extension__] = ACTIONS(1420), + [anon_sym_typedef] = ACTIONS(1420), + [anon_sym_extern] = ACTIONS(1420), + [anon_sym___attribute__] = ACTIONS(1420), + [anon_sym___scanf] = ACTIONS(1420), + [anon_sym___printf] = ACTIONS(1420), + [anon_sym___read_mostly] = ACTIONS(1420), + [anon_sym___must_hold] = ACTIONS(1420), + [anon_sym___ro_after_init] = ACTIONS(1420), + [anon_sym___init] = ACTIONS(1420), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1422), + [anon_sym___declspec] = ACTIONS(1420), + [anon_sym___cdecl] = ACTIONS(1420), + [anon_sym___clrcall] = ACTIONS(1420), + [anon_sym___stdcall] = ACTIONS(1420), + [anon_sym___fastcall] = ACTIONS(1420), + [anon_sym___thiscall] = ACTIONS(1420), + [anon_sym___vectorcall] = ACTIONS(1420), + [anon_sym_LBRACE] = ACTIONS(1422), + [anon_sym_signed] = ACTIONS(1420), + [anon_sym_unsigned] = ACTIONS(1420), + [anon_sym_long] = ACTIONS(1420), + [anon_sym_short] = ACTIONS(1420), + [anon_sym_static] = ACTIONS(1420), + [anon_sym_auto] = ACTIONS(1420), + [anon_sym_register] = ACTIONS(1420), + [anon_sym_inline] = ACTIONS(1420), + [anon_sym___inline] = ACTIONS(1420), + [anon_sym___inline__] = ACTIONS(1420), + [anon_sym___forceinline] = ACTIONS(1420), + [anon_sym_thread_local] = ACTIONS(1420), + [anon_sym___thread] = ACTIONS(1420), + [anon_sym_const] = ACTIONS(1420), + [anon_sym_constexpr] = ACTIONS(1420), + [anon_sym_volatile] = ACTIONS(1420), + [anon_sym_restrict] = ACTIONS(1420), + [anon_sym___restrict__] = ACTIONS(1420), + [anon_sym__Atomic] = ACTIONS(1420), + [anon_sym__Noreturn] = ACTIONS(1420), + [anon_sym_noreturn] = ACTIONS(1420), + [sym_primitive_type] = ACTIONS(1420), + [anon_sym_enum] = ACTIONS(1420), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_union] = ACTIONS(1420), + [anon_sym_if] = ACTIONS(1420), + [anon_sym_else] = ACTIONS(1420), + [anon_sym_switch] = ACTIONS(1420), + [anon_sym_case] = ACTIONS(1420), + [anon_sym_default] = ACTIONS(1420), + [anon_sym_while] = ACTIONS(1420), + [anon_sym_do] = ACTIONS(1420), + [anon_sym_for] = ACTIONS(1420), + [anon_sym_return] = ACTIONS(1420), + [anon_sym_break] = ACTIONS(1420), + [anon_sym_continue] = ACTIONS(1420), + [anon_sym_goto] = ACTIONS(1420), + [anon_sym___try] = ACTIONS(1420), + [anon_sym___leave] = ACTIONS(1420), + [anon_sym_DASH_DASH] = ACTIONS(1422), + [anon_sym_PLUS_PLUS] = ACTIONS(1422), + [anon_sym_sizeof] = ACTIONS(1420), + [anon_sym___alignof__] = ACTIONS(1420), + [anon_sym___alignof] = ACTIONS(1420), + [anon_sym__alignof] = ACTIONS(1420), + [anon_sym_alignof] = ACTIONS(1420), + [anon_sym__Alignof] = ACTIONS(1420), + [anon_sym_offsetof] = ACTIONS(1420), + [anon_sym__Generic] = ACTIONS(1420), + [anon_sym_asm] = ACTIONS(1420), + [anon_sym___asm__] = ACTIONS(1420), + [sym_number_literal] = ACTIONS(1422), + [anon_sym_L_SQUOTE] = ACTIONS(1422), + [anon_sym_u_SQUOTE] = ACTIONS(1422), + [anon_sym_U_SQUOTE] = ACTIONS(1422), + [anon_sym_u8_SQUOTE] = ACTIONS(1422), + [anon_sym_SQUOTE] = ACTIONS(1422), + [anon_sym_L_DQUOTE] = ACTIONS(1422), + [anon_sym_u_DQUOTE] = ACTIONS(1422), + [anon_sym_U_DQUOTE] = ACTIONS(1422), + [anon_sym_u8_DQUOTE] = ACTIONS(1422), + [anon_sym_DQUOTE] = ACTIONS(1422), + [sym_true] = ACTIONS(1420), + [sym_false] = ACTIONS(1420), + [anon_sym_NULL] = ACTIONS(1420), + [anon_sym_nullptr] = ACTIONS(1420), [sym_comment] = ACTIONS(3), }, [133] = { - [sym_identifier] = ACTIONS(1409), - [aux_sym_preproc_include_token1] = ACTIONS(1409), - [aux_sym_preproc_def_token1] = ACTIONS(1409), - [aux_sym_preproc_if_token1] = ACTIONS(1409), - [aux_sym_preproc_if_token2] = ACTIONS(1409), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1409), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1409), - [aux_sym_preproc_else_token1] = ACTIONS(1409), - [aux_sym_preproc_elif_token1] = ACTIONS(1409), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1409), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1409), - [sym_preproc_directive] = ACTIONS(1409), - [anon_sym_LPAREN2] = ACTIONS(1411), - [anon_sym_BANG] = ACTIONS(1411), - [anon_sym_TILDE] = ACTIONS(1411), - [anon_sym_DASH] = ACTIONS(1409), - [anon_sym_PLUS] = ACTIONS(1409), - [anon_sym_STAR] = ACTIONS(1411), - [anon_sym_AMP] = ACTIONS(1411), - [anon_sym_SEMI] = ACTIONS(1411), - [anon_sym___extension__] = ACTIONS(1409), - [anon_sym_typedef] = ACTIONS(1409), - [anon_sym_extern] = ACTIONS(1409), - [anon_sym___attribute__] = ACTIONS(1409), - [anon_sym___scanf] = ACTIONS(1409), - [anon_sym___printf] = ACTIONS(1409), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1411), - [anon_sym___declspec] = ACTIONS(1409), - [anon_sym___cdecl] = ACTIONS(1409), - [anon_sym___clrcall] = ACTIONS(1409), - [anon_sym___stdcall] = ACTIONS(1409), - [anon_sym___fastcall] = ACTIONS(1409), - [anon_sym___thiscall] = ACTIONS(1409), - [anon_sym___vectorcall] = ACTIONS(1409), - [anon_sym_LBRACE] = ACTIONS(1411), - [anon_sym_signed] = ACTIONS(1409), - [anon_sym_unsigned] = ACTIONS(1409), - [anon_sym_long] = ACTIONS(1409), - [anon_sym_short] = ACTIONS(1409), - [anon_sym_static] = ACTIONS(1409), - [anon_sym_auto] = ACTIONS(1409), - [anon_sym_register] = ACTIONS(1409), - [anon_sym_inline] = ACTIONS(1409), - [anon_sym___inline] = ACTIONS(1409), - [anon_sym___inline__] = ACTIONS(1409), - [anon_sym___forceinline] = ACTIONS(1409), - [anon_sym_thread_local] = ACTIONS(1409), - [anon_sym___thread] = ACTIONS(1409), - [anon_sym_const] = ACTIONS(1409), - [anon_sym_constexpr] = ACTIONS(1409), - [anon_sym_volatile] = ACTIONS(1409), - [anon_sym_restrict] = ACTIONS(1409), - [anon_sym___restrict__] = ACTIONS(1409), - [anon_sym__Atomic] = ACTIONS(1409), - [anon_sym__Noreturn] = ACTIONS(1409), - [anon_sym_noreturn] = ACTIONS(1409), - [sym_primitive_type] = ACTIONS(1409), - [anon_sym_enum] = ACTIONS(1409), - [anon_sym_struct] = ACTIONS(1409), - [anon_sym_union] = ACTIONS(1409), - [anon_sym_if] = ACTIONS(1409), - [anon_sym_else] = ACTIONS(1409), - [anon_sym_switch] = ACTIONS(1409), - [anon_sym_case] = ACTIONS(1409), - [anon_sym_default] = ACTIONS(1409), - [anon_sym_while] = ACTIONS(1409), - [anon_sym_do] = ACTIONS(1409), - [anon_sym_for] = ACTIONS(1409), - [anon_sym_return] = ACTIONS(1409), - [anon_sym_break] = ACTIONS(1409), - [anon_sym_continue] = ACTIONS(1409), - [anon_sym_goto] = ACTIONS(1409), - [anon_sym___try] = ACTIONS(1409), - [anon_sym___leave] = ACTIONS(1409), - [anon_sym_DASH_DASH] = ACTIONS(1411), - [anon_sym_PLUS_PLUS] = ACTIONS(1411), - [anon_sym_sizeof] = ACTIONS(1409), - [anon_sym___alignof__] = ACTIONS(1409), - [anon_sym___alignof] = ACTIONS(1409), - [anon_sym__alignof] = ACTIONS(1409), - [anon_sym_alignof] = ACTIONS(1409), - [anon_sym__Alignof] = ACTIONS(1409), - [anon_sym_offsetof] = ACTIONS(1409), - [anon_sym__Generic] = ACTIONS(1409), - [anon_sym_asm] = ACTIONS(1409), - [anon_sym___asm__] = ACTIONS(1409), - [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(1409), - [sym_false] = ACTIONS(1409), - [anon_sym_NULL] = ACTIONS(1409), - [anon_sym_nullptr] = ACTIONS(1409), + [sym_identifier] = ACTIONS(1334), + [aux_sym_preproc_include_token1] = ACTIONS(1334), + [aux_sym_preproc_def_token1] = ACTIONS(1334), + [aux_sym_preproc_if_token1] = ACTIONS(1334), + [aux_sym_preproc_if_token2] = ACTIONS(1334), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1334), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1334), + [aux_sym_preproc_else_token1] = ACTIONS(1334), + [aux_sym_preproc_elif_token1] = ACTIONS(1334), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1334), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1334), + [sym_preproc_directive] = ACTIONS(1334), + [anon_sym_LPAREN2] = ACTIONS(1332), + [anon_sym_BANG] = ACTIONS(1332), + [anon_sym_TILDE] = ACTIONS(1332), + [anon_sym_DASH] = ACTIONS(1334), + [anon_sym_PLUS] = ACTIONS(1334), + [anon_sym_STAR] = ACTIONS(1332), + [anon_sym_AMP] = ACTIONS(1332), + [anon_sym_SEMI] = ACTIONS(1332), + [anon_sym___extension__] = ACTIONS(1334), + [anon_sym_typedef] = ACTIONS(1334), + [anon_sym_extern] = ACTIONS(1334), + [anon_sym___attribute__] = ACTIONS(1334), + [anon_sym___scanf] = ACTIONS(1334), + [anon_sym___printf] = ACTIONS(1334), + [anon_sym___read_mostly] = ACTIONS(1334), + [anon_sym___must_hold] = ACTIONS(1334), + [anon_sym___ro_after_init] = ACTIONS(1334), + [anon_sym___init] = ACTIONS(1334), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1332), + [anon_sym___declspec] = ACTIONS(1334), + [anon_sym___cdecl] = ACTIONS(1334), + [anon_sym___clrcall] = ACTIONS(1334), + [anon_sym___stdcall] = ACTIONS(1334), + [anon_sym___fastcall] = ACTIONS(1334), + [anon_sym___thiscall] = ACTIONS(1334), + [anon_sym___vectorcall] = ACTIONS(1334), + [anon_sym_LBRACE] = ACTIONS(1332), + [anon_sym_signed] = ACTIONS(1334), + [anon_sym_unsigned] = ACTIONS(1334), + [anon_sym_long] = ACTIONS(1334), + [anon_sym_short] = ACTIONS(1334), + [anon_sym_static] = ACTIONS(1334), + [anon_sym_auto] = ACTIONS(1334), + [anon_sym_register] = ACTIONS(1334), + [anon_sym_inline] = ACTIONS(1334), + [anon_sym___inline] = ACTIONS(1334), + [anon_sym___inline__] = ACTIONS(1334), + [anon_sym___forceinline] = ACTIONS(1334), + [anon_sym_thread_local] = ACTIONS(1334), + [anon_sym___thread] = ACTIONS(1334), + [anon_sym_const] = ACTIONS(1334), + [anon_sym_constexpr] = ACTIONS(1334), + [anon_sym_volatile] = ACTIONS(1334), + [anon_sym_restrict] = ACTIONS(1334), + [anon_sym___restrict__] = ACTIONS(1334), + [anon_sym__Atomic] = ACTIONS(1334), + [anon_sym__Noreturn] = ACTIONS(1334), + [anon_sym_noreturn] = ACTIONS(1334), + [sym_primitive_type] = ACTIONS(1334), + [anon_sym_enum] = ACTIONS(1334), + [anon_sym_struct] = ACTIONS(1334), + [anon_sym_union] = ACTIONS(1334), + [anon_sym_if] = ACTIONS(1334), + [anon_sym_else] = ACTIONS(1334), + [anon_sym_switch] = ACTIONS(1334), + [anon_sym_case] = ACTIONS(1334), + [anon_sym_default] = ACTIONS(1334), + [anon_sym_while] = ACTIONS(1334), + [anon_sym_do] = ACTIONS(1334), + [anon_sym_for] = ACTIONS(1334), + [anon_sym_return] = ACTIONS(1334), + [anon_sym_break] = ACTIONS(1334), + [anon_sym_continue] = ACTIONS(1334), + [anon_sym_goto] = ACTIONS(1334), + [anon_sym___try] = ACTIONS(1334), + [anon_sym___leave] = ACTIONS(1334), + [anon_sym_DASH_DASH] = ACTIONS(1332), + [anon_sym_PLUS_PLUS] = ACTIONS(1332), + [anon_sym_sizeof] = ACTIONS(1334), + [anon_sym___alignof__] = ACTIONS(1334), + [anon_sym___alignof] = ACTIONS(1334), + [anon_sym__alignof] = ACTIONS(1334), + [anon_sym_alignof] = ACTIONS(1334), + [anon_sym__Alignof] = ACTIONS(1334), + [anon_sym_offsetof] = ACTIONS(1334), + [anon_sym__Generic] = ACTIONS(1334), + [anon_sym_asm] = ACTIONS(1334), + [anon_sym___asm__] = ACTIONS(1334), + [sym_number_literal] = ACTIONS(1332), + [anon_sym_L_SQUOTE] = ACTIONS(1332), + [anon_sym_u_SQUOTE] = ACTIONS(1332), + [anon_sym_U_SQUOTE] = ACTIONS(1332), + [anon_sym_u8_SQUOTE] = ACTIONS(1332), + [anon_sym_SQUOTE] = ACTIONS(1332), + [anon_sym_L_DQUOTE] = ACTIONS(1332), + [anon_sym_u_DQUOTE] = ACTIONS(1332), + [anon_sym_U_DQUOTE] = ACTIONS(1332), + [anon_sym_u8_DQUOTE] = ACTIONS(1332), + [anon_sym_DQUOTE] = ACTIONS(1332), + [sym_true] = ACTIONS(1334), + [sym_false] = ACTIONS(1334), + [anon_sym_NULL] = ACTIONS(1334), + [anon_sym_nullptr] = ACTIONS(1334), [sym_comment] = ACTIONS(3), }, [134] = { - [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_if_token2] = ACTIONS(1413), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1413), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1413), - [aux_sym_preproc_else_token1] = ACTIONS(1413), - [aux_sym_preproc_elif_token1] = ACTIONS(1413), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1413), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1413), - [sym_preproc_directive] = ACTIONS(1413), - [anon_sym_LPAREN2] = ACTIONS(1415), - [anon_sym_BANG] = ACTIONS(1415), - [anon_sym_TILDE] = ACTIONS(1415), - [anon_sym_DASH] = ACTIONS(1413), - [anon_sym_PLUS] = ACTIONS(1413), - [anon_sym_STAR] = ACTIONS(1415), - [anon_sym_AMP] = ACTIONS(1415), - [anon_sym_SEMI] = ACTIONS(1415), - [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_LBRACK_LBRACK] = ACTIONS(1415), - [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(1415), - [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), - [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___try] = ACTIONS(1413), - [anon_sym___leave] = ACTIONS(1413), - [anon_sym_DASH_DASH] = ACTIONS(1415), - [anon_sym_PLUS_PLUS] = ACTIONS(1415), - [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(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(1413), - [sym_false] = ACTIONS(1413), - [anon_sym_NULL] = ACTIONS(1413), - [anon_sym_nullptr] = ACTIONS(1413), + [sym_identifier] = ACTIONS(1424), + [aux_sym_preproc_include_token1] = ACTIONS(1424), + [aux_sym_preproc_def_token1] = ACTIONS(1424), + [aux_sym_preproc_if_token1] = ACTIONS(1424), + [aux_sym_preproc_if_token2] = ACTIONS(1424), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1424), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1424), + [aux_sym_preproc_else_token1] = ACTIONS(1424), + [aux_sym_preproc_elif_token1] = ACTIONS(1424), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1424), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1424), + [sym_preproc_directive] = ACTIONS(1424), + [anon_sym_LPAREN2] = ACTIONS(1426), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_DASH] = ACTIONS(1424), + [anon_sym_PLUS] = ACTIONS(1424), + [anon_sym_STAR] = ACTIONS(1426), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_SEMI] = ACTIONS(1426), + [anon_sym___extension__] = ACTIONS(1424), + [anon_sym_typedef] = ACTIONS(1424), + [anon_sym_extern] = ACTIONS(1424), + [anon_sym___attribute__] = ACTIONS(1424), + [anon_sym___scanf] = ACTIONS(1424), + [anon_sym___printf] = ACTIONS(1424), + [anon_sym___read_mostly] = ACTIONS(1424), + [anon_sym___must_hold] = ACTIONS(1424), + [anon_sym___ro_after_init] = ACTIONS(1424), + [anon_sym___init] = ACTIONS(1424), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1426), + [anon_sym___declspec] = ACTIONS(1424), + [anon_sym___cdecl] = ACTIONS(1424), + [anon_sym___clrcall] = ACTIONS(1424), + [anon_sym___stdcall] = ACTIONS(1424), + [anon_sym___fastcall] = ACTIONS(1424), + [anon_sym___thiscall] = ACTIONS(1424), + [anon_sym___vectorcall] = ACTIONS(1424), + [anon_sym_LBRACE] = ACTIONS(1426), + [anon_sym_signed] = ACTIONS(1424), + [anon_sym_unsigned] = ACTIONS(1424), + [anon_sym_long] = ACTIONS(1424), + [anon_sym_short] = ACTIONS(1424), + [anon_sym_static] = ACTIONS(1424), + [anon_sym_auto] = ACTIONS(1424), + [anon_sym_register] = ACTIONS(1424), + [anon_sym_inline] = ACTIONS(1424), + [anon_sym___inline] = ACTIONS(1424), + [anon_sym___inline__] = ACTIONS(1424), + [anon_sym___forceinline] = ACTIONS(1424), + [anon_sym_thread_local] = ACTIONS(1424), + [anon_sym___thread] = ACTIONS(1424), + [anon_sym_const] = ACTIONS(1424), + [anon_sym_constexpr] = ACTIONS(1424), + [anon_sym_volatile] = ACTIONS(1424), + [anon_sym_restrict] = ACTIONS(1424), + [anon_sym___restrict__] = ACTIONS(1424), + [anon_sym__Atomic] = ACTIONS(1424), + [anon_sym__Noreturn] = ACTIONS(1424), + [anon_sym_noreturn] = ACTIONS(1424), + [sym_primitive_type] = ACTIONS(1424), + [anon_sym_enum] = ACTIONS(1424), + [anon_sym_struct] = ACTIONS(1424), + [anon_sym_union] = ACTIONS(1424), + [anon_sym_if] = ACTIONS(1424), + [anon_sym_switch] = ACTIONS(1424), + [anon_sym_case] = ACTIONS(1424), + [anon_sym_default] = ACTIONS(1424), + [anon_sym_while] = ACTIONS(1424), + [anon_sym_do] = ACTIONS(1424), + [anon_sym_for] = ACTIONS(1424), + [anon_sym_return] = ACTIONS(1424), + [anon_sym_break] = ACTIONS(1424), + [anon_sym_continue] = ACTIONS(1424), + [anon_sym_goto] = ACTIONS(1424), + [anon_sym___try] = ACTIONS(1424), + [anon_sym___leave] = ACTIONS(1424), + [anon_sym_DASH_DASH] = ACTIONS(1426), + [anon_sym_PLUS_PLUS] = ACTIONS(1426), + [anon_sym_sizeof] = ACTIONS(1424), + [anon_sym___alignof__] = ACTIONS(1424), + [anon_sym___alignof] = ACTIONS(1424), + [anon_sym__alignof] = ACTIONS(1424), + [anon_sym_alignof] = ACTIONS(1424), + [anon_sym__Alignof] = ACTIONS(1424), + [anon_sym_offsetof] = ACTIONS(1424), + [anon_sym__Generic] = ACTIONS(1424), + [anon_sym_asm] = ACTIONS(1424), + [anon_sym___asm__] = ACTIONS(1424), + [sym_number_literal] = ACTIONS(1426), + [anon_sym_L_SQUOTE] = ACTIONS(1426), + [anon_sym_u_SQUOTE] = ACTIONS(1426), + [anon_sym_U_SQUOTE] = ACTIONS(1426), + [anon_sym_u8_SQUOTE] = ACTIONS(1426), + [anon_sym_SQUOTE] = ACTIONS(1426), + [anon_sym_L_DQUOTE] = ACTIONS(1426), + [anon_sym_u_DQUOTE] = ACTIONS(1426), + [anon_sym_U_DQUOTE] = ACTIONS(1426), + [anon_sym_u8_DQUOTE] = ACTIONS(1426), + [anon_sym_DQUOTE] = ACTIONS(1426), + [sym_true] = ACTIONS(1424), + [sym_false] = ACTIONS(1424), + [anon_sym_NULL] = ACTIONS(1424), + [anon_sym_nullptr] = ACTIONS(1424), [sym_comment] = ACTIONS(3), }, [135] = { - [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_if_token2] = ACTIONS(1417), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1417), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1417), - [aux_sym_preproc_else_token1] = ACTIONS(1417), - [aux_sym_preproc_elif_token1] = ACTIONS(1417), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1417), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1417), - [sym_preproc_directive] = ACTIONS(1417), - [anon_sym_LPAREN2] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(1419), - [anon_sym_TILDE] = ACTIONS(1419), - [anon_sym_DASH] = ACTIONS(1417), - [anon_sym_PLUS] = ACTIONS(1417), - [anon_sym_STAR] = ACTIONS(1419), - [anon_sym_AMP] = ACTIONS(1419), - [anon_sym_SEMI] = ACTIONS(1419), - [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_LBRACK_LBRACK] = ACTIONS(1419), - [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(1419), - [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), - [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___try] = ACTIONS(1417), - [anon_sym___leave] = ACTIONS(1417), - [anon_sym_DASH_DASH] = ACTIONS(1419), - [anon_sym_PLUS_PLUS] = ACTIONS(1419), - [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(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(1417), - [sym_false] = ACTIONS(1417), - [anon_sym_NULL] = ACTIONS(1417), - [anon_sym_nullptr] = ACTIONS(1417), + [sym_identifier] = ACTIONS(1428), + [aux_sym_preproc_include_token1] = ACTIONS(1428), + [aux_sym_preproc_def_token1] = ACTIONS(1428), + [aux_sym_preproc_if_token1] = ACTIONS(1428), + [aux_sym_preproc_if_token2] = ACTIONS(1428), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1428), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1428), + [aux_sym_preproc_else_token1] = ACTIONS(1428), + [aux_sym_preproc_elif_token1] = ACTIONS(1428), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1428), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1428), + [sym_preproc_directive] = ACTIONS(1428), + [anon_sym_LPAREN2] = ACTIONS(1430), + [anon_sym_BANG] = ACTIONS(1430), + [anon_sym_TILDE] = ACTIONS(1430), + [anon_sym_DASH] = ACTIONS(1428), + [anon_sym_PLUS] = ACTIONS(1428), + [anon_sym_STAR] = ACTIONS(1430), + [anon_sym_AMP] = ACTIONS(1430), + [anon_sym_SEMI] = ACTIONS(1430), + [anon_sym___extension__] = ACTIONS(1428), + [anon_sym_typedef] = ACTIONS(1428), + [anon_sym_extern] = ACTIONS(1428), + [anon_sym___attribute__] = ACTIONS(1428), + [anon_sym___scanf] = ACTIONS(1428), + [anon_sym___printf] = ACTIONS(1428), + [anon_sym___read_mostly] = ACTIONS(1428), + [anon_sym___must_hold] = ACTIONS(1428), + [anon_sym___ro_after_init] = ACTIONS(1428), + [anon_sym___init] = ACTIONS(1428), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1430), + [anon_sym___declspec] = ACTIONS(1428), + [anon_sym___cdecl] = ACTIONS(1428), + [anon_sym___clrcall] = ACTIONS(1428), + [anon_sym___stdcall] = ACTIONS(1428), + [anon_sym___fastcall] = ACTIONS(1428), + [anon_sym___thiscall] = ACTIONS(1428), + [anon_sym___vectorcall] = ACTIONS(1428), + [anon_sym_LBRACE] = ACTIONS(1430), + [anon_sym_signed] = ACTIONS(1428), + [anon_sym_unsigned] = ACTIONS(1428), + [anon_sym_long] = ACTIONS(1428), + [anon_sym_short] = ACTIONS(1428), + [anon_sym_static] = ACTIONS(1428), + [anon_sym_auto] = ACTIONS(1428), + [anon_sym_register] = ACTIONS(1428), + [anon_sym_inline] = ACTIONS(1428), + [anon_sym___inline] = ACTIONS(1428), + [anon_sym___inline__] = ACTIONS(1428), + [anon_sym___forceinline] = ACTIONS(1428), + [anon_sym_thread_local] = ACTIONS(1428), + [anon_sym___thread] = ACTIONS(1428), + [anon_sym_const] = ACTIONS(1428), + [anon_sym_constexpr] = ACTIONS(1428), + [anon_sym_volatile] = ACTIONS(1428), + [anon_sym_restrict] = ACTIONS(1428), + [anon_sym___restrict__] = ACTIONS(1428), + [anon_sym__Atomic] = ACTIONS(1428), + [anon_sym__Noreturn] = ACTIONS(1428), + [anon_sym_noreturn] = ACTIONS(1428), + [sym_primitive_type] = ACTIONS(1428), + [anon_sym_enum] = ACTIONS(1428), + [anon_sym_struct] = ACTIONS(1428), + [anon_sym_union] = ACTIONS(1428), + [anon_sym_if] = ACTIONS(1428), + [anon_sym_switch] = ACTIONS(1428), + [anon_sym_case] = ACTIONS(1428), + [anon_sym_default] = ACTIONS(1428), + [anon_sym_while] = ACTIONS(1428), + [anon_sym_do] = ACTIONS(1428), + [anon_sym_for] = ACTIONS(1428), + [anon_sym_return] = ACTIONS(1428), + [anon_sym_break] = ACTIONS(1428), + [anon_sym_continue] = ACTIONS(1428), + [anon_sym_goto] = ACTIONS(1428), + [anon_sym___try] = ACTIONS(1428), + [anon_sym___leave] = ACTIONS(1428), + [anon_sym_DASH_DASH] = ACTIONS(1430), + [anon_sym_PLUS_PLUS] = ACTIONS(1430), + [anon_sym_sizeof] = ACTIONS(1428), + [anon_sym___alignof__] = ACTIONS(1428), + [anon_sym___alignof] = ACTIONS(1428), + [anon_sym__alignof] = ACTIONS(1428), + [anon_sym_alignof] = ACTIONS(1428), + [anon_sym__Alignof] = ACTIONS(1428), + [anon_sym_offsetof] = ACTIONS(1428), + [anon_sym__Generic] = ACTIONS(1428), + [anon_sym_asm] = ACTIONS(1428), + [anon_sym___asm__] = ACTIONS(1428), + [sym_number_literal] = ACTIONS(1430), + [anon_sym_L_SQUOTE] = ACTIONS(1430), + [anon_sym_u_SQUOTE] = ACTIONS(1430), + [anon_sym_U_SQUOTE] = ACTIONS(1430), + [anon_sym_u8_SQUOTE] = ACTIONS(1430), + [anon_sym_SQUOTE] = ACTIONS(1430), + [anon_sym_L_DQUOTE] = ACTIONS(1430), + [anon_sym_u_DQUOTE] = ACTIONS(1430), + [anon_sym_U_DQUOTE] = ACTIONS(1430), + [anon_sym_u8_DQUOTE] = ACTIONS(1430), + [anon_sym_DQUOTE] = ACTIONS(1430), + [sym_true] = ACTIONS(1428), + [sym_false] = ACTIONS(1428), + [anon_sym_NULL] = ACTIONS(1428), + [anon_sym_nullptr] = ACTIONS(1428), [sym_comment] = ACTIONS(3), }, [136] = { - [sym_identifier] = ACTIONS(1421), - [aux_sym_preproc_include_token1] = ACTIONS(1421), - [aux_sym_preproc_def_token1] = ACTIONS(1421), - [aux_sym_preproc_if_token1] = ACTIONS(1421), - [aux_sym_preproc_if_token2] = ACTIONS(1421), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1421), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1421), - [aux_sym_preproc_else_token1] = ACTIONS(1421), - [aux_sym_preproc_elif_token1] = ACTIONS(1421), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1421), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1421), - [sym_preproc_directive] = ACTIONS(1421), - [anon_sym_LPAREN2] = ACTIONS(1423), - [anon_sym_BANG] = ACTIONS(1423), - [anon_sym_TILDE] = ACTIONS(1423), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_PLUS] = ACTIONS(1421), - [anon_sym_STAR] = ACTIONS(1423), - [anon_sym_AMP] = ACTIONS(1423), - [anon_sym_SEMI] = ACTIONS(1423), - [anon_sym___extension__] = ACTIONS(1421), - [anon_sym_typedef] = ACTIONS(1421), - [anon_sym_extern] = ACTIONS(1421), - [anon_sym___attribute__] = ACTIONS(1421), - [anon_sym___scanf] = ACTIONS(1421), - [anon_sym___printf] = ACTIONS(1421), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1423), - [anon_sym___declspec] = ACTIONS(1421), - [anon_sym___cdecl] = ACTIONS(1421), - [anon_sym___clrcall] = ACTIONS(1421), - [anon_sym___stdcall] = ACTIONS(1421), - [anon_sym___fastcall] = ACTIONS(1421), - [anon_sym___thiscall] = ACTIONS(1421), - [anon_sym___vectorcall] = ACTIONS(1421), - [anon_sym_LBRACE] = ACTIONS(1423), - [anon_sym_signed] = ACTIONS(1421), - [anon_sym_unsigned] = ACTIONS(1421), - [anon_sym_long] = ACTIONS(1421), - [anon_sym_short] = ACTIONS(1421), - [anon_sym_static] = ACTIONS(1421), - [anon_sym_auto] = ACTIONS(1421), - [anon_sym_register] = ACTIONS(1421), - [anon_sym_inline] = ACTIONS(1421), - [anon_sym___inline] = ACTIONS(1421), - [anon_sym___inline__] = ACTIONS(1421), - [anon_sym___forceinline] = ACTIONS(1421), - [anon_sym_thread_local] = ACTIONS(1421), - [anon_sym___thread] = ACTIONS(1421), - [anon_sym_const] = ACTIONS(1421), - [anon_sym_constexpr] = ACTIONS(1421), - [anon_sym_volatile] = ACTIONS(1421), - [anon_sym_restrict] = ACTIONS(1421), - [anon_sym___restrict__] = ACTIONS(1421), - [anon_sym__Atomic] = ACTIONS(1421), - [anon_sym__Noreturn] = ACTIONS(1421), - [anon_sym_noreturn] = ACTIONS(1421), - [sym_primitive_type] = ACTIONS(1421), - [anon_sym_enum] = ACTIONS(1421), - [anon_sym_struct] = ACTIONS(1421), - [anon_sym_union] = ACTIONS(1421), - [anon_sym_if] = ACTIONS(1421), - [anon_sym_switch] = ACTIONS(1421), - [anon_sym_case] = ACTIONS(1421), - [anon_sym_default] = ACTIONS(1421), - [anon_sym_while] = ACTIONS(1421), - [anon_sym_do] = ACTIONS(1421), - [anon_sym_for] = ACTIONS(1421), - [anon_sym_return] = ACTIONS(1421), - [anon_sym_break] = ACTIONS(1421), - [anon_sym_continue] = ACTIONS(1421), - [anon_sym_goto] = ACTIONS(1421), - [anon_sym___try] = ACTIONS(1421), - [anon_sym___leave] = ACTIONS(1421), - [anon_sym_DASH_DASH] = ACTIONS(1423), - [anon_sym_PLUS_PLUS] = ACTIONS(1423), - [anon_sym_sizeof] = ACTIONS(1421), - [anon_sym___alignof__] = ACTIONS(1421), - [anon_sym___alignof] = ACTIONS(1421), - [anon_sym__alignof] = ACTIONS(1421), - [anon_sym_alignof] = ACTIONS(1421), - [anon_sym__Alignof] = ACTIONS(1421), - [anon_sym_offsetof] = ACTIONS(1421), - [anon_sym__Generic] = ACTIONS(1421), - [anon_sym_asm] = ACTIONS(1421), - [anon_sym___asm__] = ACTIONS(1421), - [sym_number_literal] = ACTIONS(1423), - [anon_sym_L_SQUOTE] = ACTIONS(1423), - [anon_sym_u_SQUOTE] = ACTIONS(1423), - [anon_sym_U_SQUOTE] = ACTIONS(1423), - [anon_sym_u8_SQUOTE] = ACTIONS(1423), - [anon_sym_SQUOTE] = ACTIONS(1423), - [anon_sym_L_DQUOTE] = ACTIONS(1423), - [anon_sym_u_DQUOTE] = ACTIONS(1423), - [anon_sym_U_DQUOTE] = ACTIONS(1423), - [anon_sym_u8_DQUOTE] = ACTIONS(1423), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_true] = ACTIONS(1421), - [sym_false] = ACTIONS(1421), - [anon_sym_NULL] = ACTIONS(1421), - [anon_sym_nullptr] = ACTIONS(1421), + [sym_identifier] = ACTIONS(1432), + [aux_sym_preproc_include_token1] = ACTIONS(1432), + [aux_sym_preproc_def_token1] = ACTIONS(1432), + [aux_sym_preproc_if_token1] = ACTIONS(1432), + [aux_sym_preproc_if_token2] = ACTIONS(1432), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1432), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1432), + [aux_sym_preproc_else_token1] = ACTIONS(1432), + [aux_sym_preproc_elif_token1] = ACTIONS(1432), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1432), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1432), + [sym_preproc_directive] = ACTIONS(1432), + [anon_sym_LPAREN2] = ACTIONS(1434), + [anon_sym_BANG] = ACTIONS(1434), + [anon_sym_TILDE] = ACTIONS(1434), + [anon_sym_DASH] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1432), + [anon_sym_STAR] = ACTIONS(1434), + [anon_sym_AMP] = ACTIONS(1434), + [anon_sym_SEMI] = ACTIONS(1434), + [anon_sym___extension__] = ACTIONS(1432), + [anon_sym_typedef] = ACTIONS(1432), + [anon_sym_extern] = ACTIONS(1432), + [anon_sym___attribute__] = ACTIONS(1432), + [anon_sym___scanf] = ACTIONS(1432), + [anon_sym___printf] = ACTIONS(1432), + [anon_sym___read_mostly] = ACTIONS(1432), + [anon_sym___must_hold] = ACTIONS(1432), + [anon_sym___ro_after_init] = ACTIONS(1432), + [anon_sym___init] = ACTIONS(1432), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1434), + [anon_sym___declspec] = ACTIONS(1432), + [anon_sym___cdecl] = ACTIONS(1432), + [anon_sym___clrcall] = ACTIONS(1432), + [anon_sym___stdcall] = ACTIONS(1432), + [anon_sym___fastcall] = ACTIONS(1432), + [anon_sym___thiscall] = ACTIONS(1432), + [anon_sym___vectorcall] = ACTIONS(1432), + [anon_sym_LBRACE] = ACTIONS(1434), + [anon_sym_signed] = ACTIONS(1432), + [anon_sym_unsigned] = ACTIONS(1432), + [anon_sym_long] = ACTIONS(1432), + [anon_sym_short] = ACTIONS(1432), + [anon_sym_static] = ACTIONS(1432), + [anon_sym_auto] = ACTIONS(1432), + [anon_sym_register] = ACTIONS(1432), + [anon_sym_inline] = ACTIONS(1432), + [anon_sym___inline] = ACTIONS(1432), + [anon_sym___inline__] = ACTIONS(1432), + [anon_sym___forceinline] = ACTIONS(1432), + [anon_sym_thread_local] = ACTIONS(1432), + [anon_sym___thread] = ACTIONS(1432), + [anon_sym_const] = ACTIONS(1432), + [anon_sym_constexpr] = ACTIONS(1432), + [anon_sym_volatile] = ACTIONS(1432), + [anon_sym_restrict] = ACTIONS(1432), + [anon_sym___restrict__] = ACTIONS(1432), + [anon_sym__Atomic] = ACTIONS(1432), + [anon_sym__Noreturn] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [sym_primitive_type] = ACTIONS(1432), + [anon_sym_enum] = ACTIONS(1432), + [anon_sym_struct] = ACTIONS(1432), + [anon_sym_union] = ACTIONS(1432), + [anon_sym_if] = ACTIONS(1432), + [anon_sym_switch] = ACTIONS(1432), + [anon_sym_case] = ACTIONS(1432), + [anon_sym_default] = ACTIONS(1432), + [anon_sym_while] = ACTIONS(1432), + [anon_sym_do] = ACTIONS(1432), + [anon_sym_for] = ACTIONS(1432), + [anon_sym_return] = ACTIONS(1432), + [anon_sym_break] = ACTIONS(1432), + [anon_sym_continue] = ACTIONS(1432), + [anon_sym_goto] = ACTIONS(1432), + [anon_sym___try] = ACTIONS(1432), + [anon_sym___leave] = ACTIONS(1432), + [anon_sym_DASH_DASH] = ACTIONS(1434), + [anon_sym_PLUS_PLUS] = ACTIONS(1434), + [anon_sym_sizeof] = ACTIONS(1432), + [anon_sym___alignof__] = ACTIONS(1432), + [anon_sym___alignof] = ACTIONS(1432), + [anon_sym__alignof] = ACTIONS(1432), + [anon_sym_alignof] = ACTIONS(1432), + [anon_sym__Alignof] = ACTIONS(1432), + [anon_sym_offsetof] = ACTIONS(1432), + [anon_sym__Generic] = ACTIONS(1432), + [anon_sym_asm] = ACTIONS(1432), + [anon_sym___asm__] = ACTIONS(1432), + [sym_number_literal] = ACTIONS(1434), + [anon_sym_L_SQUOTE] = ACTIONS(1434), + [anon_sym_u_SQUOTE] = ACTIONS(1434), + [anon_sym_U_SQUOTE] = ACTIONS(1434), + [anon_sym_u8_SQUOTE] = ACTIONS(1434), + [anon_sym_SQUOTE] = ACTIONS(1434), + [anon_sym_L_DQUOTE] = ACTIONS(1434), + [anon_sym_u_DQUOTE] = ACTIONS(1434), + [anon_sym_U_DQUOTE] = ACTIONS(1434), + [anon_sym_u8_DQUOTE] = ACTIONS(1434), + [anon_sym_DQUOTE] = ACTIONS(1434), + [sym_true] = ACTIONS(1432), + [sym_false] = ACTIONS(1432), + [anon_sym_NULL] = ACTIONS(1432), + [anon_sym_nullptr] = ACTIONS(1432), [sym_comment] = ACTIONS(3), }, [137] = { - [sym_identifier] = ACTIONS(1425), - [aux_sym_preproc_include_token1] = ACTIONS(1425), - [aux_sym_preproc_def_token1] = ACTIONS(1425), - [aux_sym_preproc_if_token1] = ACTIONS(1425), - [aux_sym_preproc_if_token2] = ACTIONS(1425), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1425), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1425), - [aux_sym_preproc_else_token1] = ACTIONS(1425), - [aux_sym_preproc_elif_token1] = ACTIONS(1425), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1425), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1425), - [sym_preproc_directive] = ACTIONS(1425), - [anon_sym_LPAREN2] = ACTIONS(1427), - [anon_sym_BANG] = ACTIONS(1427), - [anon_sym_TILDE] = ACTIONS(1427), - [anon_sym_DASH] = ACTIONS(1425), - [anon_sym_PLUS] = ACTIONS(1425), - [anon_sym_STAR] = ACTIONS(1427), - [anon_sym_AMP] = ACTIONS(1427), - [anon_sym_SEMI] = ACTIONS(1427), - [anon_sym___extension__] = ACTIONS(1425), - [anon_sym_typedef] = ACTIONS(1425), - [anon_sym_extern] = ACTIONS(1425), - [anon_sym___attribute__] = ACTIONS(1425), - [anon_sym___scanf] = ACTIONS(1425), - [anon_sym___printf] = ACTIONS(1425), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1427), - [anon_sym___declspec] = ACTIONS(1425), - [anon_sym___cdecl] = ACTIONS(1425), - [anon_sym___clrcall] = ACTIONS(1425), - [anon_sym___stdcall] = ACTIONS(1425), - [anon_sym___fastcall] = ACTIONS(1425), - [anon_sym___thiscall] = ACTIONS(1425), - [anon_sym___vectorcall] = ACTIONS(1425), - [anon_sym_LBRACE] = ACTIONS(1427), - [anon_sym_signed] = ACTIONS(1425), - [anon_sym_unsigned] = ACTIONS(1425), - [anon_sym_long] = ACTIONS(1425), - [anon_sym_short] = ACTIONS(1425), - [anon_sym_static] = ACTIONS(1425), - [anon_sym_auto] = ACTIONS(1425), - [anon_sym_register] = ACTIONS(1425), - [anon_sym_inline] = ACTIONS(1425), - [anon_sym___inline] = ACTIONS(1425), - [anon_sym___inline__] = ACTIONS(1425), - [anon_sym___forceinline] = ACTIONS(1425), - [anon_sym_thread_local] = ACTIONS(1425), - [anon_sym___thread] = ACTIONS(1425), - [anon_sym_const] = ACTIONS(1425), - [anon_sym_constexpr] = ACTIONS(1425), - [anon_sym_volatile] = ACTIONS(1425), - [anon_sym_restrict] = ACTIONS(1425), - [anon_sym___restrict__] = ACTIONS(1425), - [anon_sym__Atomic] = ACTIONS(1425), - [anon_sym__Noreturn] = ACTIONS(1425), - [anon_sym_noreturn] = ACTIONS(1425), - [sym_primitive_type] = ACTIONS(1425), - [anon_sym_enum] = ACTIONS(1425), - [anon_sym_struct] = ACTIONS(1425), - [anon_sym_union] = ACTIONS(1425), - [anon_sym_if] = ACTIONS(1425), - [anon_sym_switch] = ACTIONS(1425), - [anon_sym_case] = ACTIONS(1425), - [anon_sym_default] = ACTIONS(1425), - [anon_sym_while] = ACTIONS(1425), - [anon_sym_do] = ACTIONS(1425), - [anon_sym_for] = ACTIONS(1425), - [anon_sym_return] = ACTIONS(1425), - [anon_sym_break] = ACTIONS(1425), - [anon_sym_continue] = ACTIONS(1425), - [anon_sym_goto] = ACTIONS(1425), - [anon_sym___try] = ACTIONS(1425), - [anon_sym___leave] = ACTIONS(1425), - [anon_sym_DASH_DASH] = ACTIONS(1427), - [anon_sym_PLUS_PLUS] = ACTIONS(1427), - [anon_sym_sizeof] = ACTIONS(1425), - [anon_sym___alignof__] = ACTIONS(1425), - [anon_sym___alignof] = ACTIONS(1425), - [anon_sym__alignof] = ACTIONS(1425), - [anon_sym_alignof] = ACTIONS(1425), - [anon_sym__Alignof] = ACTIONS(1425), - [anon_sym_offsetof] = ACTIONS(1425), - [anon_sym__Generic] = ACTIONS(1425), - [anon_sym_asm] = ACTIONS(1425), - [anon_sym___asm__] = ACTIONS(1425), - [sym_number_literal] = ACTIONS(1427), - [anon_sym_L_SQUOTE] = ACTIONS(1427), - [anon_sym_u_SQUOTE] = ACTIONS(1427), - [anon_sym_U_SQUOTE] = ACTIONS(1427), - [anon_sym_u8_SQUOTE] = ACTIONS(1427), - [anon_sym_SQUOTE] = ACTIONS(1427), - [anon_sym_L_DQUOTE] = ACTIONS(1427), - [anon_sym_u_DQUOTE] = ACTIONS(1427), - [anon_sym_U_DQUOTE] = ACTIONS(1427), - [anon_sym_u8_DQUOTE] = ACTIONS(1427), - [anon_sym_DQUOTE] = ACTIONS(1427), - [sym_true] = ACTIONS(1425), - [sym_false] = ACTIONS(1425), - [anon_sym_NULL] = ACTIONS(1425), - [anon_sym_nullptr] = ACTIONS(1425), + [sym_identifier] = ACTIONS(1436), + [aux_sym_preproc_include_token1] = ACTIONS(1436), + [aux_sym_preproc_def_token1] = ACTIONS(1436), + [aux_sym_preproc_if_token1] = ACTIONS(1436), + [aux_sym_preproc_if_token2] = ACTIONS(1436), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1436), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1436), + [aux_sym_preproc_else_token1] = ACTIONS(1436), + [aux_sym_preproc_elif_token1] = ACTIONS(1436), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1436), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1436), + [sym_preproc_directive] = ACTIONS(1436), + [anon_sym_LPAREN2] = ACTIONS(1438), + [anon_sym_BANG] = ACTIONS(1438), + [anon_sym_TILDE] = ACTIONS(1438), + [anon_sym_DASH] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1436), + [anon_sym_STAR] = ACTIONS(1438), + [anon_sym_AMP] = ACTIONS(1438), + [anon_sym_SEMI] = ACTIONS(1438), + [anon_sym___extension__] = ACTIONS(1436), + [anon_sym_typedef] = ACTIONS(1436), + [anon_sym_extern] = ACTIONS(1436), + [anon_sym___attribute__] = ACTIONS(1436), + [anon_sym___scanf] = ACTIONS(1436), + [anon_sym___printf] = ACTIONS(1436), + [anon_sym___read_mostly] = ACTIONS(1436), + [anon_sym___must_hold] = ACTIONS(1436), + [anon_sym___ro_after_init] = ACTIONS(1436), + [anon_sym___init] = ACTIONS(1436), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1438), + [anon_sym___declspec] = ACTIONS(1436), + [anon_sym___cdecl] = ACTIONS(1436), + [anon_sym___clrcall] = ACTIONS(1436), + [anon_sym___stdcall] = ACTIONS(1436), + [anon_sym___fastcall] = ACTIONS(1436), + [anon_sym___thiscall] = ACTIONS(1436), + [anon_sym___vectorcall] = ACTIONS(1436), + [anon_sym_LBRACE] = ACTIONS(1438), + [anon_sym_signed] = ACTIONS(1436), + [anon_sym_unsigned] = ACTIONS(1436), + [anon_sym_long] = ACTIONS(1436), + [anon_sym_short] = ACTIONS(1436), + [anon_sym_static] = ACTIONS(1436), + [anon_sym_auto] = ACTIONS(1436), + [anon_sym_register] = ACTIONS(1436), + [anon_sym_inline] = ACTIONS(1436), + [anon_sym___inline] = ACTIONS(1436), + [anon_sym___inline__] = ACTIONS(1436), + [anon_sym___forceinline] = ACTIONS(1436), + [anon_sym_thread_local] = ACTIONS(1436), + [anon_sym___thread] = ACTIONS(1436), + [anon_sym_const] = ACTIONS(1436), + [anon_sym_constexpr] = ACTIONS(1436), + [anon_sym_volatile] = ACTIONS(1436), + [anon_sym_restrict] = ACTIONS(1436), + [anon_sym___restrict__] = ACTIONS(1436), + [anon_sym__Atomic] = ACTIONS(1436), + [anon_sym__Noreturn] = ACTIONS(1436), + [anon_sym_noreturn] = ACTIONS(1436), + [sym_primitive_type] = ACTIONS(1436), + [anon_sym_enum] = ACTIONS(1436), + [anon_sym_struct] = ACTIONS(1436), + [anon_sym_union] = ACTIONS(1436), + [anon_sym_if] = ACTIONS(1436), + [anon_sym_switch] = ACTIONS(1436), + [anon_sym_case] = ACTIONS(1436), + [anon_sym_default] = ACTIONS(1436), + [anon_sym_while] = ACTIONS(1436), + [anon_sym_do] = ACTIONS(1436), + [anon_sym_for] = ACTIONS(1436), + [anon_sym_return] = ACTIONS(1436), + [anon_sym_break] = ACTIONS(1436), + [anon_sym_continue] = ACTIONS(1436), + [anon_sym_goto] = ACTIONS(1436), + [anon_sym___try] = ACTIONS(1436), + [anon_sym___leave] = ACTIONS(1436), + [anon_sym_DASH_DASH] = ACTIONS(1438), + [anon_sym_PLUS_PLUS] = ACTIONS(1438), + [anon_sym_sizeof] = ACTIONS(1436), + [anon_sym___alignof__] = ACTIONS(1436), + [anon_sym___alignof] = ACTIONS(1436), + [anon_sym__alignof] = ACTIONS(1436), + [anon_sym_alignof] = ACTIONS(1436), + [anon_sym__Alignof] = ACTIONS(1436), + [anon_sym_offsetof] = ACTIONS(1436), + [anon_sym__Generic] = ACTIONS(1436), + [anon_sym_asm] = ACTIONS(1436), + [anon_sym___asm__] = ACTIONS(1436), + [sym_number_literal] = ACTIONS(1438), + [anon_sym_L_SQUOTE] = ACTIONS(1438), + [anon_sym_u_SQUOTE] = ACTIONS(1438), + [anon_sym_U_SQUOTE] = ACTIONS(1438), + [anon_sym_u8_SQUOTE] = ACTIONS(1438), + [anon_sym_SQUOTE] = ACTIONS(1438), + [anon_sym_L_DQUOTE] = ACTIONS(1438), + [anon_sym_u_DQUOTE] = ACTIONS(1438), + [anon_sym_U_DQUOTE] = ACTIONS(1438), + [anon_sym_u8_DQUOTE] = ACTIONS(1438), + [anon_sym_DQUOTE] = ACTIONS(1438), + [sym_true] = ACTIONS(1436), + [sym_false] = ACTIONS(1436), + [anon_sym_NULL] = ACTIONS(1436), + [anon_sym_nullptr] = ACTIONS(1436), [sym_comment] = ACTIONS(3), }, [138] = { - [sym_identifier] = ACTIONS(1429), - [aux_sym_preproc_include_token1] = ACTIONS(1429), - [aux_sym_preproc_def_token1] = ACTIONS(1429), - [aux_sym_preproc_if_token1] = ACTIONS(1429), - [aux_sym_preproc_if_token2] = ACTIONS(1429), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1429), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1429), - [aux_sym_preproc_else_token1] = ACTIONS(1429), - [aux_sym_preproc_elif_token1] = ACTIONS(1429), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1429), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1429), - [sym_preproc_directive] = ACTIONS(1429), - [anon_sym_LPAREN2] = ACTIONS(1431), - [anon_sym_BANG] = ACTIONS(1431), - [anon_sym_TILDE] = ACTIONS(1431), - [anon_sym_DASH] = ACTIONS(1429), - [anon_sym_PLUS] = ACTIONS(1429), - [anon_sym_STAR] = ACTIONS(1431), - [anon_sym_AMP] = ACTIONS(1431), - [anon_sym_SEMI] = ACTIONS(1431), - [anon_sym___extension__] = ACTIONS(1429), - [anon_sym_typedef] = ACTIONS(1429), - [anon_sym_extern] = ACTIONS(1429), - [anon_sym___attribute__] = ACTIONS(1429), - [anon_sym___scanf] = ACTIONS(1429), - [anon_sym___printf] = ACTIONS(1429), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1431), - [anon_sym___declspec] = ACTIONS(1429), - [anon_sym___cdecl] = ACTIONS(1429), - [anon_sym___clrcall] = ACTIONS(1429), - [anon_sym___stdcall] = ACTIONS(1429), - [anon_sym___fastcall] = ACTIONS(1429), - [anon_sym___thiscall] = ACTIONS(1429), - [anon_sym___vectorcall] = ACTIONS(1429), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_signed] = ACTIONS(1429), - [anon_sym_unsigned] = ACTIONS(1429), - [anon_sym_long] = ACTIONS(1429), - [anon_sym_short] = ACTIONS(1429), - [anon_sym_static] = ACTIONS(1429), - [anon_sym_auto] = ACTIONS(1429), - [anon_sym_register] = ACTIONS(1429), - [anon_sym_inline] = ACTIONS(1429), - [anon_sym___inline] = ACTIONS(1429), - [anon_sym___inline__] = ACTIONS(1429), - [anon_sym___forceinline] = ACTIONS(1429), - [anon_sym_thread_local] = ACTIONS(1429), - [anon_sym___thread] = ACTIONS(1429), - [anon_sym_const] = ACTIONS(1429), - [anon_sym_constexpr] = ACTIONS(1429), - [anon_sym_volatile] = ACTIONS(1429), - [anon_sym_restrict] = ACTIONS(1429), - [anon_sym___restrict__] = ACTIONS(1429), - [anon_sym__Atomic] = ACTIONS(1429), - [anon_sym__Noreturn] = ACTIONS(1429), - [anon_sym_noreturn] = ACTIONS(1429), - [sym_primitive_type] = ACTIONS(1429), - [anon_sym_enum] = ACTIONS(1429), - [anon_sym_struct] = ACTIONS(1429), - [anon_sym_union] = ACTIONS(1429), - [anon_sym_if] = ACTIONS(1429), - [anon_sym_switch] = ACTIONS(1429), - [anon_sym_case] = ACTIONS(1429), - [anon_sym_default] = ACTIONS(1429), - [anon_sym_while] = ACTIONS(1429), - [anon_sym_do] = ACTIONS(1429), - [anon_sym_for] = ACTIONS(1429), - [anon_sym_return] = ACTIONS(1429), - [anon_sym_break] = ACTIONS(1429), - [anon_sym_continue] = ACTIONS(1429), - [anon_sym_goto] = ACTIONS(1429), - [anon_sym___try] = ACTIONS(1429), - [anon_sym___leave] = ACTIONS(1429), - [anon_sym_DASH_DASH] = ACTIONS(1431), - [anon_sym_PLUS_PLUS] = ACTIONS(1431), - [anon_sym_sizeof] = ACTIONS(1429), - [anon_sym___alignof__] = ACTIONS(1429), - [anon_sym___alignof] = ACTIONS(1429), - [anon_sym__alignof] = ACTIONS(1429), - [anon_sym_alignof] = ACTIONS(1429), - [anon_sym__Alignof] = ACTIONS(1429), - [anon_sym_offsetof] = ACTIONS(1429), - [anon_sym__Generic] = ACTIONS(1429), - [anon_sym_asm] = ACTIONS(1429), - [anon_sym___asm__] = ACTIONS(1429), - [sym_number_literal] = ACTIONS(1431), - [anon_sym_L_SQUOTE] = ACTIONS(1431), - [anon_sym_u_SQUOTE] = ACTIONS(1431), - [anon_sym_U_SQUOTE] = ACTIONS(1431), - [anon_sym_u8_SQUOTE] = ACTIONS(1431), - [anon_sym_SQUOTE] = ACTIONS(1431), - [anon_sym_L_DQUOTE] = ACTIONS(1431), - [anon_sym_u_DQUOTE] = ACTIONS(1431), - [anon_sym_U_DQUOTE] = ACTIONS(1431), - [anon_sym_u8_DQUOTE] = ACTIONS(1431), - [anon_sym_DQUOTE] = ACTIONS(1431), - [sym_true] = ACTIONS(1429), - [sym_false] = ACTIONS(1429), - [anon_sym_NULL] = ACTIONS(1429), - [anon_sym_nullptr] = ACTIONS(1429), + [sym_identifier] = ACTIONS(1440), + [aux_sym_preproc_include_token1] = ACTIONS(1440), + [aux_sym_preproc_def_token1] = ACTIONS(1440), + [aux_sym_preproc_if_token1] = ACTIONS(1440), + [aux_sym_preproc_if_token2] = ACTIONS(1440), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1440), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1440), + [aux_sym_preproc_else_token1] = ACTIONS(1440), + [aux_sym_preproc_elif_token1] = ACTIONS(1440), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1440), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1440), + [sym_preproc_directive] = ACTIONS(1440), + [anon_sym_LPAREN2] = ACTIONS(1442), + [anon_sym_BANG] = ACTIONS(1442), + [anon_sym_TILDE] = ACTIONS(1442), + [anon_sym_DASH] = ACTIONS(1440), + [anon_sym_PLUS] = ACTIONS(1440), + [anon_sym_STAR] = ACTIONS(1442), + [anon_sym_AMP] = ACTIONS(1442), + [anon_sym_SEMI] = ACTIONS(1442), + [anon_sym___extension__] = ACTIONS(1440), + [anon_sym_typedef] = ACTIONS(1440), + [anon_sym_extern] = ACTIONS(1440), + [anon_sym___attribute__] = ACTIONS(1440), + [anon_sym___scanf] = ACTIONS(1440), + [anon_sym___printf] = ACTIONS(1440), + [anon_sym___read_mostly] = ACTIONS(1440), + [anon_sym___must_hold] = ACTIONS(1440), + [anon_sym___ro_after_init] = ACTIONS(1440), + [anon_sym___init] = ACTIONS(1440), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1442), + [anon_sym___declspec] = ACTIONS(1440), + [anon_sym___cdecl] = ACTIONS(1440), + [anon_sym___clrcall] = ACTIONS(1440), + [anon_sym___stdcall] = ACTIONS(1440), + [anon_sym___fastcall] = ACTIONS(1440), + [anon_sym___thiscall] = ACTIONS(1440), + [anon_sym___vectorcall] = ACTIONS(1440), + [anon_sym_LBRACE] = ACTIONS(1442), + [anon_sym_signed] = ACTIONS(1440), + [anon_sym_unsigned] = ACTIONS(1440), + [anon_sym_long] = ACTIONS(1440), + [anon_sym_short] = ACTIONS(1440), + [anon_sym_static] = ACTIONS(1440), + [anon_sym_auto] = ACTIONS(1440), + [anon_sym_register] = ACTIONS(1440), + [anon_sym_inline] = ACTIONS(1440), + [anon_sym___inline] = ACTIONS(1440), + [anon_sym___inline__] = ACTIONS(1440), + [anon_sym___forceinline] = ACTIONS(1440), + [anon_sym_thread_local] = ACTIONS(1440), + [anon_sym___thread] = ACTIONS(1440), + [anon_sym_const] = ACTIONS(1440), + [anon_sym_constexpr] = ACTIONS(1440), + [anon_sym_volatile] = ACTIONS(1440), + [anon_sym_restrict] = ACTIONS(1440), + [anon_sym___restrict__] = ACTIONS(1440), + [anon_sym__Atomic] = ACTIONS(1440), + [anon_sym__Noreturn] = ACTIONS(1440), + [anon_sym_noreturn] = ACTIONS(1440), + [sym_primitive_type] = ACTIONS(1440), + [anon_sym_enum] = ACTIONS(1440), + [anon_sym_struct] = ACTIONS(1440), + [anon_sym_union] = ACTIONS(1440), + [anon_sym_if] = ACTIONS(1440), + [anon_sym_switch] = ACTIONS(1440), + [anon_sym_case] = ACTIONS(1440), + [anon_sym_default] = ACTIONS(1440), + [anon_sym_while] = ACTIONS(1440), + [anon_sym_do] = ACTIONS(1440), + [anon_sym_for] = ACTIONS(1440), + [anon_sym_return] = ACTIONS(1440), + [anon_sym_break] = ACTIONS(1440), + [anon_sym_continue] = ACTIONS(1440), + [anon_sym_goto] = ACTIONS(1440), + [anon_sym___try] = ACTIONS(1440), + [anon_sym___leave] = ACTIONS(1440), + [anon_sym_DASH_DASH] = ACTIONS(1442), + [anon_sym_PLUS_PLUS] = ACTIONS(1442), + [anon_sym_sizeof] = ACTIONS(1440), + [anon_sym___alignof__] = ACTIONS(1440), + [anon_sym___alignof] = ACTIONS(1440), + [anon_sym__alignof] = ACTIONS(1440), + [anon_sym_alignof] = ACTIONS(1440), + [anon_sym__Alignof] = ACTIONS(1440), + [anon_sym_offsetof] = ACTIONS(1440), + [anon_sym__Generic] = ACTIONS(1440), + [anon_sym_asm] = ACTIONS(1440), + [anon_sym___asm__] = ACTIONS(1440), + [sym_number_literal] = ACTIONS(1442), + [anon_sym_L_SQUOTE] = ACTIONS(1442), + [anon_sym_u_SQUOTE] = ACTIONS(1442), + [anon_sym_U_SQUOTE] = ACTIONS(1442), + [anon_sym_u8_SQUOTE] = ACTIONS(1442), + [anon_sym_SQUOTE] = ACTIONS(1442), + [anon_sym_L_DQUOTE] = ACTIONS(1442), + [anon_sym_u_DQUOTE] = ACTIONS(1442), + [anon_sym_U_DQUOTE] = ACTIONS(1442), + [anon_sym_u8_DQUOTE] = ACTIONS(1442), + [anon_sym_DQUOTE] = ACTIONS(1442), + [sym_true] = ACTIONS(1440), + [sym_false] = ACTIONS(1440), + [anon_sym_NULL] = ACTIONS(1440), + [anon_sym_nullptr] = ACTIONS(1440), [sym_comment] = ACTIONS(3), }, [139] = { - [sym_identifier] = ACTIONS(1433), - [aux_sym_preproc_include_token1] = ACTIONS(1433), - [aux_sym_preproc_def_token1] = ACTIONS(1433), - [aux_sym_preproc_if_token1] = ACTIONS(1433), - [aux_sym_preproc_if_token2] = ACTIONS(1433), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1433), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1433), - [aux_sym_preproc_else_token1] = ACTIONS(1433), - [aux_sym_preproc_elif_token1] = ACTIONS(1433), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1433), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1433), - [sym_preproc_directive] = ACTIONS(1433), - [anon_sym_LPAREN2] = ACTIONS(1435), - [anon_sym_BANG] = ACTIONS(1435), - [anon_sym_TILDE] = ACTIONS(1435), - [anon_sym_DASH] = ACTIONS(1433), - [anon_sym_PLUS] = ACTIONS(1433), - [anon_sym_STAR] = ACTIONS(1435), - [anon_sym_AMP] = ACTIONS(1435), - [anon_sym_SEMI] = ACTIONS(1435), - [anon_sym___extension__] = ACTIONS(1433), - [anon_sym_typedef] = ACTIONS(1433), - [anon_sym_extern] = ACTIONS(1433), - [anon_sym___attribute__] = ACTIONS(1433), - [anon_sym___scanf] = ACTIONS(1433), - [anon_sym___printf] = ACTIONS(1433), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1435), - [anon_sym___declspec] = ACTIONS(1433), - [anon_sym___cdecl] = ACTIONS(1433), - [anon_sym___clrcall] = ACTIONS(1433), - [anon_sym___stdcall] = ACTIONS(1433), - [anon_sym___fastcall] = ACTIONS(1433), - [anon_sym___thiscall] = ACTIONS(1433), - [anon_sym___vectorcall] = ACTIONS(1433), - [anon_sym_LBRACE] = ACTIONS(1435), - [anon_sym_signed] = ACTIONS(1433), - [anon_sym_unsigned] = ACTIONS(1433), - [anon_sym_long] = ACTIONS(1433), - [anon_sym_short] = ACTIONS(1433), - [anon_sym_static] = ACTIONS(1433), - [anon_sym_auto] = ACTIONS(1433), - [anon_sym_register] = ACTIONS(1433), - [anon_sym_inline] = ACTIONS(1433), - [anon_sym___inline] = ACTIONS(1433), - [anon_sym___inline__] = ACTIONS(1433), - [anon_sym___forceinline] = ACTIONS(1433), - [anon_sym_thread_local] = ACTIONS(1433), - [anon_sym___thread] = ACTIONS(1433), - [anon_sym_const] = ACTIONS(1433), - [anon_sym_constexpr] = ACTIONS(1433), - [anon_sym_volatile] = ACTIONS(1433), - [anon_sym_restrict] = ACTIONS(1433), - [anon_sym___restrict__] = ACTIONS(1433), - [anon_sym__Atomic] = ACTIONS(1433), - [anon_sym__Noreturn] = ACTIONS(1433), - [anon_sym_noreturn] = ACTIONS(1433), - [sym_primitive_type] = ACTIONS(1433), - [anon_sym_enum] = ACTIONS(1433), - [anon_sym_struct] = ACTIONS(1433), - [anon_sym_union] = ACTIONS(1433), - [anon_sym_if] = ACTIONS(1433), - [anon_sym_switch] = ACTIONS(1433), - [anon_sym_case] = ACTIONS(1433), - [anon_sym_default] = ACTIONS(1433), - [anon_sym_while] = ACTIONS(1433), - [anon_sym_do] = ACTIONS(1433), - [anon_sym_for] = ACTIONS(1433), - [anon_sym_return] = ACTIONS(1433), - [anon_sym_break] = ACTIONS(1433), - [anon_sym_continue] = ACTIONS(1433), - [anon_sym_goto] = ACTIONS(1433), - [anon_sym___try] = ACTIONS(1433), - [anon_sym___leave] = ACTIONS(1433), - [anon_sym_DASH_DASH] = ACTIONS(1435), - [anon_sym_PLUS_PLUS] = ACTIONS(1435), - [anon_sym_sizeof] = ACTIONS(1433), - [anon_sym___alignof__] = ACTIONS(1433), - [anon_sym___alignof] = ACTIONS(1433), - [anon_sym__alignof] = ACTIONS(1433), - [anon_sym_alignof] = ACTIONS(1433), - [anon_sym__Alignof] = ACTIONS(1433), - [anon_sym_offsetof] = ACTIONS(1433), - [anon_sym__Generic] = ACTIONS(1433), - [anon_sym_asm] = ACTIONS(1433), - [anon_sym___asm__] = ACTIONS(1433), - [sym_number_literal] = ACTIONS(1435), - [anon_sym_L_SQUOTE] = ACTIONS(1435), - [anon_sym_u_SQUOTE] = ACTIONS(1435), - [anon_sym_U_SQUOTE] = ACTIONS(1435), - [anon_sym_u8_SQUOTE] = ACTIONS(1435), - [anon_sym_SQUOTE] = ACTIONS(1435), - [anon_sym_L_DQUOTE] = ACTIONS(1435), - [anon_sym_u_DQUOTE] = ACTIONS(1435), - [anon_sym_U_DQUOTE] = ACTIONS(1435), - [anon_sym_u8_DQUOTE] = ACTIONS(1435), - [anon_sym_DQUOTE] = ACTIONS(1435), - [sym_true] = ACTIONS(1433), - [sym_false] = ACTIONS(1433), - [anon_sym_NULL] = ACTIONS(1433), - [anon_sym_nullptr] = ACTIONS(1433), + [sym_identifier] = ACTIONS(1444), + [aux_sym_preproc_include_token1] = ACTIONS(1444), + [aux_sym_preproc_def_token1] = ACTIONS(1444), + [aux_sym_preproc_if_token1] = ACTIONS(1444), + [aux_sym_preproc_if_token2] = ACTIONS(1444), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1444), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1444), + [aux_sym_preproc_else_token1] = ACTIONS(1444), + [aux_sym_preproc_elif_token1] = ACTIONS(1444), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1444), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1444), + [sym_preproc_directive] = ACTIONS(1444), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_BANG] = ACTIONS(1446), + [anon_sym_TILDE] = ACTIONS(1446), + [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_STAR] = ACTIONS(1446), + [anon_sym_AMP] = ACTIONS(1446), + [anon_sym_SEMI] = ACTIONS(1446), + [anon_sym___extension__] = ACTIONS(1444), + [anon_sym_typedef] = ACTIONS(1444), + [anon_sym_extern] = ACTIONS(1444), + [anon_sym___attribute__] = ACTIONS(1444), + [anon_sym___scanf] = ACTIONS(1444), + [anon_sym___printf] = ACTIONS(1444), + [anon_sym___read_mostly] = ACTIONS(1444), + [anon_sym___must_hold] = ACTIONS(1444), + [anon_sym___ro_after_init] = ACTIONS(1444), + [anon_sym___init] = ACTIONS(1444), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1446), + [anon_sym___declspec] = ACTIONS(1444), + [anon_sym___cdecl] = ACTIONS(1444), + [anon_sym___clrcall] = ACTIONS(1444), + [anon_sym___stdcall] = ACTIONS(1444), + [anon_sym___fastcall] = ACTIONS(1444), + [anon_sym___thiscall] = ACTIONS(1444), + [anon_sym___vectorcall] = ACTIONS(1444), + [anon_sym_LBRACE] = ACTIONS(1446), + [anon_sym_signed] = ACTIONS(1444), + [anon_sym_unsigned] = ACTIONS(1444), + [anon_sym_long] = ACTIONS(1444), + [anon_sym_short] = ACTIONS(1444), + [anon_sym_static] = ACTIONS(1444), + [anon_sym_auto] = ACTIONS(1444), + [anon_sym_register] = ACTIONS(1444), + [anon_sym_inline] = ACTIONS(1444), + [anon_sym___inline] = ACTIONS(1444), + [anon_sym___inline__] = ACTIONS(1444), + [anon_sym___forceinline] = ACTIONS(1444), + [anon_sym_thread_local] = ACTIONS(1444), + [anon_sym___thread] = ACTIONS(1444), + [anon_sym_const] = ACTIONS(1444), + [anon_sym_constexpr] = ACTIONS(1444), + [anon_sym_volatile] = ACTIONS(1444), + [anon_sym_restrict] = ACTIONS(1444), + [anon_sym___restrict__] = ACTIONS(1444), + [anon_sym__Atomic] = ACTIONS(1444), + [anon_sym__Noreturn] = ACTIONS(1444), + [anon_sym_noreturn] = ACTIONS(1444), + [sym_primitive_type] = ACTIONS(1444), + [anon_sym_enum] = ACTIONS(1444), + [anon_sym_struct] = ACTIONS(1444), + [anon_sym_union] = ACTIONS(1444), + [anon_sym_if] = ACTIONS(1444), + [anon_sym_switch] = ACTIONS(1444), + [anon_sym_case] = ACTIONS(1444), + [anon_sym_default] = ACTIONS(1444), + [anon_sym_while] = ACTIONS(1444), + [anon_sym_do] = ACTIONS(1444), + [anon_sym_for] = ACTIONS(1444), + [anon_sym_return] = ACTIONS(1444), + [anon_sym_break] = ACTIONS(1444), + [anon_sym_continue] = ACTIONS(1444), + [anon_sym_goto] = ACTIONS(1444), + [anon_sym___try] = ACTIONS(1444), + [anon_sym___leave] = ACTIONS(1444), + [anon_sym_DASH_DASH] = ACTIONS(1446), + [anon_sym_PLUS_PLUS] = ACTIONS(1446), + [anon_sym_sizeof] = ACTIONS(1444), + [anon_sym___alignof__] = ACTIONS(1444), + [anon_sym___alignof] = ACTIONS(1444), + [anon_sym__alignof] = ACTIONS(1444), + [anon_sym_alignof] = ACTIONS(1444), + [anon_sym__Alignof] = ACTIONS(1444), + [anon_sym_offsetof] = ACTIONS(1444), + [anon_sym__Generic] = ACTIONS(1444), + [anon_sym_asm] = ACTIONS(1444), + [anon_sym___asm__] = ACTIONS(1444), + [sym_number_literal] = ACTIONS(1446), + [anon_sym_L_SQUOTE] = ACTIONS(1446), + [anon_sym_u_SQUOTE] = ACTIONS(1446), + [anon_sym_U_SQUOTE] = ACTIONS(1446), + [anon_sym_u8_SQUOTE] = ACTIONS(1446), + [anon_sym_SQUOTE] = ACTIONS(1446), + [anon_sym_L_DQUOTE] = ACTIONS(1446), + [anon_sym_u_DQUOTE] = ACTIONS(1446), + [anon_sym_U_DQUOTE] = ACTIONS(1446), + [anon_sym_u8_DQUOTE] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1446), + [sym_true] = ACTIONS(1444), + [sym_false] = ACTIONS(1444), + [anon_sym_NULL] = ACTIONS(1444), + [anon_sym_nullptr] = ACTIONS(1444), [sym_comment] = ACTIONS(3), }, [140] = { - [sym_identifier] = ACTIONS(1437), - [aux_sym_preproc_include_token1] = ACTIONS(1437), - [aux_sym_preproc_def_token1] = ACTIONS(1437), - [aux_sym_preproc_if_token1] = ACTIONS(1437), - [aux_sym_preproc_if_token2] = ACTIONS(1437), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1437), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1437), - [aux_sym_preproc_else_token1] = ACTIONS(1437), - [aux_sym_preproc_elif_token1] = ACTIONS(1437), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1437), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1437), - [sym_preproc_directive] = ACTIONS(1437), - [anon_sym_LPAREN2] = ACTIONS(1439), - [anon_sym_BANG] = ACTIONS(1439), - [anon_sym_TILDE] = ACTIONS(1439), - [anon_sym_DASH] = ACTIONS(1437), - [anon_sym_PLUS] = ACTIONS(1437), - [anon_sym_STAR] = ACTIONS(1439), - [anon_sym_AMP] = ACTIONS(1439), - [anon_sym_SEMI] = ACTIONS(1439), - [anon_sym___extension__] = ACTIONS(1437), - [anon_sym_typedef] = ACTIONS(1437), - [anon_sym_extern] = ACTIONS(1437), - [anon_sym___attribute__] = ACTIONS(1437), - [anon_sym___scanf] = ACTIONS(1437), - [anon_sym___printf] = ACTIONS(1437), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1439), - [anon_sym___declspec] = ACTIONS(1437), - [anon_sym___cdecl] = ACTIONS(1437), - [anon_sym___clrcall] = ACTIONS(1437), - [anon_sym___stdcall] = ACTIONS(1437), - [anon_sym___fastcall] = ACTIONS(1437), - [anon_sym___thiscall] = ACTIONS(1437), - [anon_sym___vectorcall] = ACTIONS(1437), - [anon_sym_LBRACE] = ACTIONS(1439), - [anon_sym_signed] = ACTIONS(1437), - [anon_sym_unsigned] = ACTIONS(1437), - [anon_sym_long] = ACTIONS(1437), - [anon_sym_short] = ACTIONS(1437), - [anon_sym_static] = ACTIONS(1437), - [anon_sym_auto] = ACTIONS(1437), - [anon_sym_register] = ACTIONS(1437), - [anon_sym_inline] = ACTIONS(1437), - [anon_sym___inline] = ACTIONS(1437), - [anon_sym___inline__] = ACTIONS(1437), - [anon_sym___forceinline] = ACTIONS(1437), - [anon_sym_thread_local] = ACTIONS(1437), - [anon_sym___thread] = ACTIONS(1437), - [anon_sym_const] = ACTIONS(1437), - [anon_sym_constexpr] = ACTIONS(1437), - [anon_sym_volatile] = ACTIONS(1437), - [anon_sym_restrict] = ACTIONS(1437), - [anon_sym___restrict__] = ACTIONS(1437), - [anon_sym__Atomic] = ACTIONS(1437), - [anon_sym__Noreturn] = ACTIONS(1437), - [anon_sym_noreturn] = ACTIONS(1437), - [sym_primitive_type] = ACTIONS(1437), - [anon_sym_enum] = ACTIONS(1437), - [anon_sym_struct] = ACTIONS(1437), - [anon_sym_union] = ACTIONS(1437), - [anon_sym_if] = ACTIONS(1437), - [anon_sym_switch] = ACTIONS(1437), - [anon_sym_case] = ACTIONS(1437), - [anon_sym_default] = ACTIONS(1437), - [anon_sym_while] = ACTIONS(1437), - [anon_sym_do] = ACTIONS(1437), - [anon_sym_for] = ACTIONS(1437), - [anon_sym_return] = ACTIONS(1437), - [anon_sym_break] = ACTIONS(1437), - [anon_sym_continue] = ACTIONS(1437), - [anon_sym_goto] = ACTIONS(1437), - [anon_sym___try] = ACTIONS(1437), - [anon_sym___leave] = ACTIONS(1437), - [anon_sym_DASH_DASH] = ACTIONS(1439), - [anon_sym_PLUS_PLUS] = ACTIONS(1439), - [anon_sym_sizeof] = ACTIONS(1437), - [anon_sym___alignof__] = ACTIONS(1437), - [anon_sym___alignof] = ACTIONS(1437), - [anon_sym__alignof] = ACTIONS(1437), - [anon_sym_alignof] = ACTIONS(1437), - [anon_sym__Alignof] = ACTIONS(1437), - [anon_sym_offsetof] = ACTIONS(1437), - [anon_sym__Generic] = ACTIONS(1437), - [anon_sym_asm] = ACTIONS(1437), - [anon_sym___asm__] = ACTIONS(1437), - [sym_number_literal] = ACTIONS(1439), - [anon_sym_L_SQUOTE] = ACTIONS(1439), - [anon_sym_u_SQUOTE] = ACTIONS(1439), - [anon_sym_U_SQUOTE] = ACTIONS(1439), - [anon_sym_u8_SQUOTE] = ACTIONS(1439), - [anon_sym_SQUOTE] = ACTIONS(1439), - [anon_sym_L_DQUOTE] = ACTIONS(1439), - [anon_sym_u_DQUOTE] = ACTIONS(1439), - [anon_sym_U_DQUOTE] = ACTIONS(1439), - [anon_sym_u8_DQUOTE] = ACTIONS(1439), - [anon_sym_DQUOTE] = ACTIONS(1439), - [sym_true] = ACTIONS(1437), - [sym_false] = ACTIONS(1437), - [anon_sym_NULL] = ACTIONS(1437), - [anon_sym_nullptr] = ACTIONS(1437), + [sym_identifier] = ACTIONS(1448), + [aux_sym_preproc_include_token1] = ACTIONS(1448), + [aux_sym_preproc_def_token1] = ACTIONS(1448), + [aux_sym_preproc_if_token1] = ACTIONS(1448), + [aux_sym_preproc_if_token2] = ACTIONS(1448), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1448), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1448), + [aux_sym_preproc_else_token1] = ACTIONS(1448), + [aux_sym_preproc_elif_token1] = ACTIONS(1448), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1448), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1448), + [sym_preproc_directive] = ACTIONS(1448), + [anon_sym_LPAREN2] = ACTIONS(1450), + [anon_sym_BANG] = ACTIONS(1450), + [anon_sym_TILDE] = ACTIONS(1450), + [anon_sym_DASH] = ACTIONS(1448), + [anon_sym_PLUS] = ACTIONS(1448), + [anon_sym_STAR] = ACTIONS(1450), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_SEMI] = ACTIONS(1450), + [anon_sym___extension__] = ACTIONS(1448), + [anon_sym_typedef] = ACTIONS(1448), + [anon_sym_extern] = ACTIONS(1448), + [anon_sym___attribute__] = ACTIONS(1448), + [anon_sym___scanf] = ACTIONS(1448), + [anon_sym___printf] = ACTIONS(1448), + [anon_sym___read_mostly] = ACTIONS(1448), + [anon_sym___must_hold] = ACTIONS(1448), + [anon_sym___ro_after_init] = ACTIONS(1448), + [anon_sym___init] = ACTIONS(1448), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1450), + [anon_sym___declspec] = ACTIONS(1448), + [anon_sym___cdecl] = ACTIONS(1448), + [anon_sym___clrcall] = ACTIONS(1448), + [anon_sym___stdcall] = ACTIONS(1448), + [anon_sym___fastcall] = ACTIONS(1448), + [anon_sym___thiscall] = ACTIONS(1448), + [anon_sym___vectorcall] = ACTIONS(1448), + [anon_sym_LBRACE] = ACTIONS(1450), + [anon_sym_signed] = ACTIONS(1448), + [anon_sym_unsigned] = ACTIONS(1448), + [anon_sym_long] = ACTIONS(1448), + [anon_sym_short] = ACTIONS(1448), + [anon_sym_static] = ACTIONS(1448), + [anon_sym_auto] = ACTIONS(1448), + [anon_sym_register] = ACTIONS(1448), + [anon_sym_inline] = ACTIONS(1448), + [anon_sym___inline] = ACTIONS(1448), + [anon_sym___inline__] = ACTIONS(1448), + [anon_sym___forceinline] = ACTIONS(1448), + [anon_sym_thread_local] = ACTIONS(1448), + [anon_sym___thread] = ACTIONS(1448), + [anon_sym_const] = ACTIONS(1448), + [anon_sym_constexpr] = ACTIONS(1448), + [anon_sym_volatile] = ACTIONS(1448), + [anon_sym_restrict] = ACTIONS(1448), + [anon_sym___restrict__] = ACTIONS(1448), + [anon_sym__Atomic] = ACTIONS(1448), + [anon_sym__Noreturn] = ACTIONS(1448), + [anon_sym_noreturn] = ACTIONS(1448), + [sym_primitive_type] = ACTIONS(1448), + [anon_sym_enum] = ACTIONS(1448), + [anon_sym_struct] = ACTIONS(1448), + [anon_sym_union] = ACTIONS(1448), + [anon_sym_if] = ACTIONS(1448), + [anon_sym_switch] = ACTIONS(1448), + [anon_sym_case] = ACTIONS(1448), + [anon_sym_default] = ACTIONS(1448), + [anon_sym_while] = ACTIONS(1448), + [anon_sym_do] = ACTIONS(1448), + [anon_sym_for] = ACTIONS(1448), + [anon_sym_return] = ACTIONS(1448), + [anon_sym_break] = ACTIONS(1448), + [anon_sym_continue] = ACTIONS(1448), + [anon_sym_goto] = ACTIONS(1448), + [anon_sym___try] = ACTIONS(1448), + [anon_sym___leave] = ACTIONS(1448), + [anon_sym_DASH_DASH] = ACTIONS(1450), + [anon_sym_PLUS_PLUS] = ACTIONS(1450), + [anon_sym_sizeof] = ACTIONS(1448), + [anon_sym___alignof__] = ACTIONS(1448), + [anon_sym___alignof] = ACTIONS(1448), + [anon_sym__alignof] = ACTIONS(1448), + [anon_sym_alignof] = ACTIONS(1448), + [anon_sym__Alignof] = ACTIONS(1448), + [anon_sym_offsetof] = ACTIONS(1448), + [anon_sym__Generic] = ACTIONS(1448), + [anon_sym_asm] = ACTIONS(1448), + [anon_sym___asm__] = ACTIONS(1448), + [sym_number_literal] = ACTIONS(1450), + [anon_sym_L_SQUOTE] = ACTIONS(1450), + [anon_sym_u_SQUOTE] = ACTIONS(1450), + [anon_sym_U_SQUOTE] = ACTIONS(1450), + [anon_sym_u8_SQUOTE] = ACTIONS(1450), + [anon_sym_SQUOTE] = ACTIONS(1450), + [anon_sym_L_DQUOTE] = ACTIONS(1450), + [anon_sym_u_DQUOTE] = ACTIONS(1450), + [anon_sym_U_DQUOTE] = ACTIONS(1450), + [anon_sym_u8_DQUOTE] = ACTIONS(1450), + [anon_sym_DQUOTE] = ACTIONS(1450), + [sym_true] = ACTIONS(1448), + [sym_false] = ACTIONS(1448), + [anon_sym_NULL] = ACTIONS(1448), + [anon_sym_nullptr] = ACTIONS(1448), [sym_comment] = ACTIONS(3), }, [141] = { - [sym_identifier] = ACTIONS(1441), - [aux_sym_preproc_include_token1] = ACTIONS(1441), - [aux_sym_preproc_def_token1] = ACTIONS(1441), - [aux_sym_preproc_if_token1] = ACTIONS(1441), - [aux_sym_preproc_if_token2] = ACTIONS(1441), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1441), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1441), - [aux_sym_preproc_else_token1] = ACTIONS(1441), - [aux_sym_preproc_elif_token1] = ACTIONS(1441), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1441), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1441), - [sym_preproc_directive] = ACTIONS(1441), - [anon_sym_LPAREN2] = ACTIONS(1443), - [anon_sym_BANG] = ACTIONS(1443), - [anon_sym_TILDE] = ACTIONS(1443), - [anon_sym_DASH] = ACTIONS(1441), - [anon_sym_PLUS] = ACTIONS(1441), - [anon_sym_STAR] = ACTIONS(1443), - [anon_sym_AMP] = ACTIONS(1443), - [anon_sym_SEMI] = ACTIONS(1443), - [anon_sym___extension__] = ACTIONS(1441), - [anon_sym_typedef] = ACTIONS(1441), - [anon_sym_extern] = ACTIONS(1441), - [anon_sym___attribute__] = ACTIONS(1441), - [anon_sym___scanf] = ACTIONS(1441), - [anon_sym___printf] = ACTIONS(1441), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1443), - [anon_sym___declspec] = ACTIONS(1441), - [anon_sym___cdecl] = ACTIONS(1441), - [anon_sym___clrcall] = ACTIONS(1441), - [anon_sym___stdcall] = ACTIONS(1441), - [anon_sym___fastcall] = ACTIONS(1441), - [anon_sym___thiscall] = ACTIONS(1441), - [anon_sym___vectorcall] = ACTIONS(1441), - [anon_sym_LBRACE] = ACTIONS(1443), - [anon_sym_signed] = ACTIONS(1441), - [anon_sym_unsigned] = ACTIONS(1441), - [anon_sym_long] = ACTIONS(1441), - [anon_sym_short] = ACTIONS(1441), - [anon_sym_static] = ACTIONS(1441), - [anon_sym_auto] = ACTIONS(1441), - [anon_sym_register] = ACTIONS(1441), - [anon_sym_inline] = ACTIONS(1441), - [anon_sym___inline] = ACTIONS(1441), - [anon_sym___inline__] = ACTIONS(1441), - [anon_sym___forceinline] = ACTIONS(1441), - [anon_sym_thread_local] = ACTIONS(1441), - [anon_sym___thread] = ACTIONS(1441), - [anon_sym_const] = ACTIONS(1441), - [anon_sym_constexpr] = ACTIONS(1441), - [anon_sym_volatile] = ACTIONS(1441), - [anon_sym_restrict] = ACTIONS(1441), - [anon_sym___restrict__] = ACTIONS(1441), - [anon_sym__Atomic] = ACTIONS(1441), - [anon_sym__Noreturn] = ACTIONS(1441), - [anon_sym_noreturn] = ACTIONS(1441), - [sym_primitive_type] = ACTIONS(1441), - [anon_sym_enum] = ACTIONS(1441), - [anon_sym_struct] = ACTIONS(1441), - [anon_sym_union] = ACTIONS(1441), - [anon_sym_if] = ACTIONS(1441), - [anon_sym_switch] = ACTIONS(1441), - [anon_sym_case] = ACTIONS(1441), - [anon_sym_default] = ACTIONS(1441), - [anon_sym_while] = ACTIONS(1441), - [anon_sym_do] = ACTIONS(1441), - [anon_sym_for] = ACTIONS(1441), - [anon_sym_return] = ACTIONS(1441), - [anon_sym_break] = ACTIONS(1441), - [anon_sym_continue] = ACTIONS(1441), - [anon_sym_goto] = ACTIONS(1441), - [anon_sym___try] = ACTIONS(1441), - [anon_sym___leave] = ACTIONS(1441), - [anon_sym_DASH_DASH] = ACTIONS(1443), - [anon_sym_PLUS_PLUS] = ACTIONS(1443), - [anon_sym_sizeof] = ACTIONS(1441), - [anon_sym___alignof__] = ACTIONS(1441), - [anon_sym___alignof] = ACTIONS(1441), - [anon_sym__alignof] = ACTIONS(1441), - [anon_sym_alignof] = ACTIONS(1441), - [anon_sym__Alignof] = ACTIONS(1441), - [anon_sym_offsetof] = ACTIONS(1441), - [anon_sym__Generic] = ACTIONS(1441), - [anon_sym_asm] = ACTIONS(1441), - [anon_sym___asm__] = ACTIONS(1441), - [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(1441), - [sym_false] = ACTIONS(1441), - [anon_sym_NULL] = ACTIONS(1441), - [anon_sym_nullptr] = ACTIONS(1441), + [sym_identifier] = ACTIONS(1452), + [aux_sym_preproc_include_token1] = ACTIONS(1452), + [aux_sym_preproc_def_token1] = ACTIONS(1452), + [aux_sym_preproc_if_token1] = ACTIONS(1452), + [aux_sym_preproc_if_token2] = ACTIONS(1452), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1452), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1452), + [aux_sym_preproc_else_token1] = ACTIONS(1452), + [aux_sym_preproc_elif_token1] = ACTIONS(1452), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1452), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1452), + [sym_preproc_directive] = ACTIONS(1452), + [anon_sym_LPAREN2] = ACTIONS(1454), + [anon_sym_BANG] = ACTIONS(1454), + [anon_sym_TILDE] = ACTIONS(1454), + [anon_sym_DASH] = ACTIONS(1452), + [anon_sym_PLUS] = ACTIONS(1452), + [anon_sym_STAR] = ACTIONS(1454), + [anon_sym_AMP] = ACTIONS(1454), + [anon_sym_SEMI] = ACTIONS(1454), + [anon_sym___extension__] = ACTIONS(1452), + [anon_sym_typedef] = ACTIONS(1452), + [anon_sym_extern] = ACTIONS(1452), + [anon_sym___attribute__] = ACTIONS(1452), + [anon_sym___scanf] = ACTIONS(1452), + [anon_sym___printf] = ACTIONS(1452), + [anon_sym___read_mostly] = ACTIONS(1452), + [anon_sym___must_hold] = ACTIONS(1452), + [anon_sym___ro_after_init] = ACTIONS(1452), + [anon_sym___init] = ACTIONS(1452), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), + [anon_sym___declspec] = ACTIONS(1452), + [anon_sym___cdecl] = ACTIONS(1452), + [anon_sym___clrcall] = ACTIONS(1452), + [anon_sym___stdcall] = ACTIONS(1452), + [anon_sym___fastcall] = ACTIONS(1452), + [anon_sym___thiscall] = ACTIONS(1452), + [anon_sym___vectorcall] = ACTIONS(1452), + [anon_sym_LBRACE] = ACTIONS(1454), + [anon_sym_signed] = ACTIONS(1452), + [anon_sym_unsigned] = ACTIONS(1452), + [anon_sym_long] = ACTIONS(1452), + [anon_sym_short] = ACTIONS(1452), + [anon_sym_static] = ACTIONS(1452), + [anon_sym_auto] = ACTIONS(1452), + [anon_sym_register] = ACTIONS(1452), + [anon_sym_inline] = ACTIONS(1452), + [anon_sym___inline] = ACTIONS(1452), + [anon_sym___inline__] = ACTIONS(1452), + [anon_sym___forceinline] = ACTIONS(1452), + [anon_sym_thread_local] = ACTIONS(1452), + [anon_sym___thread] = ACTIONS(1452), + [anon_sym_const] = ACTIONS(1452), + [anon_sym_constexpr] = ACTIONS(1452), + [anon_sym_volatile] = ACTIONS(1452), + [anon_sym_restrict] = ACTIONS(1452), + [anon_sym___restrict__] = ACTIONS(1452), + [anon_sym__Atomic] = ACTIONS(1452), + [anon_sym__Noreturn] = ACTIONS(1452), + [anon_sym_noreturn] = ACTIONS(1452), + [sym_primitive_type] = ACTIONS(1452), + [anon_sym_enum] = ACTIONS(1452), + [anon_sym_struct] = ACTIONS(1452), + [anon_sym_union] = ACTIONS(1452), + [anon_sym_if] = ACTIONS(1452), + [anon_sym_switch] = ACTIONS(1452), + [anon_sym_case] = ACTIONS(1452), + [anon_sym_default] = ACTIONS(1452), + [anon_sym_while] = ACTIONS(1452), + [anon_sym_do] = ACTIONS(1452), + [anon_sym_for] = ACTIONS(1452), + [anon_sym_return] = ACTIONS(1452), + [anon_sym_break] = ACTIONS(1452), + [anon_sym_continue] = ACTIONS(1452), + [anon_sym_goto] = ACTIONS(1452), + [anon_sym___try] = ACTIONS(1452), + [anon_sym___leave] = ACTIONS(1452), + [anon_sym_DASH_DASH] = ACTIONS(1454), + [anon_sym_PLUS_PLUS] = ACTIONS(1454), + [anon_sym_sizeof] = ACTIONS(1452), + [anon_sym___alignof__] = ACTIONS(1452), + [anon_sym___alignof] = ACTIONS(1452), + [anon_sym__alignof] = ACTIONS(1452), + [anon_sym_alignof] = ACTIONS(1452), + [anon_sym__Alignof] = ACTIONS(1452), + [anon_sym_offsetof] = ACTIONS(1452), + [anon_sym__Generic] = ACTIONS(1452), + [anon_sym_asm] = ACTIONS(1452), + [anon_sym___asm__] = ACTIONS(1452), + [sym_number_literal] = ACTIONS(1454), + [anon_sym_L_SQUOTE] = ACTIONS(1454), + [anon_sym_u_SQUOTE] = ACTIONS(1454), + [anon_sym_U_SQUOTE] = ACTIONS(1454), + [anon_sym_u8_SQUOTE] = ACTIONS(1454), + [anon_sym_SQUOTE] = ACTIONS(1454), + [anon_sym_L_DQUOTE] = ACTIONS(1454), + [anon_sym_u_DQUOTE] = ACTIONS(1454), + [anon_sym_U_DQUOTE] = ACTIONS(1454), + [anon_sym_u8_DQUOTE] = ACTIONS(1454), + [anon_sym_DQUOTE] = ACTIONS(1454), + [sym_true] = ACTIONS(1452), + [sym_false] = ACTIONS(1452), + [anon_sym_NULL] = ACTIONS(1452), + [anon_sym_nullptr] = ACTIONS(1452), [sym_comment] = ACTIONS(3), }, [142] = { - [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_if_token2] = ACTIONS(1445), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1445), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1445), - [aux_sym_preproc_else_token1] = ACTIONS(1445), - [aux_sym_preproc_elif_token1] = ACTIONS(1445), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1445), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1445), - [sym_preproc_directive] = ACTIONS(1445), - [anon_sym_LPAREN2] = ACTIONS(1447), - [anon_sym_BANG] = ACTIONS(1447), - [anon_sym_TILDE] = ACTIONS(1447), - [anon_sym_DASH] = ACTIONS(1445), - [anon_sym_PLUS] = ACTIONS(1445), - [anon_sym_STAR] = ACTIONS(1447), - [anon_sym_AMP] = ACTIONS(1447), - [anon_sym_SEMI] = ACTIONS(1447), - [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_LBRACK_LBRACK] = ACTIONS(1447), - [anon_sym___declspec] = 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(1447), - [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), - [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___try] = ACTIONS(1445), - [anon_sym___leave] = ACTIONS(1445), - [anon_sym_DASH_DASH] = ACTIONS(1447), - [anon_sym_PLUS_PLUS] = ACTIONS(1447), - [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(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(1445), - [sym_false] = ACTIONS(1445), - [anon_sym_NULL] = ACTIONS(1445), - [anon_sym_nullptr] = ACTIONS(1445), + [sym_identifier] = ACTIONS(1456), + [aux_sym_preproc_include_token1] = ACTIONS(1456), + [aux_sym_preproc_def_token1] = ACTIONS(1456), + [aux_sym_preproc_if_token1] = ACTIONS(1456), + [aux_sym_preproc_if_token2] = ACTIONS(1456), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1456), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1456), + [aux_sym_preproc_else_token1] = ACTIONS(1456), + [aux_sym_preproc_elif_token1] = ACTIONS(1456), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1456), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1456), + [sym_preproc_directive] = ACTIONS(1456), + [anon_sym_LPAREN2] = ACTIONS(1458), + [anon_sym_BANG] = ACTIONS(1458), + [anon_sym_TILDE] = ACTIONS(1458), + [anon_sym_DASH] = ACTIONS(1456), + [anon_sym_PLUS] = ACTIONS(1456), + [anon_sym_STAR] = ACTIONS(1458), + [anon_sym_AMP] = ACTIONS(1458), + [anon_sym_SEMI] = ACTIONS(1458), + [anon_sym___extension__] = ACTIONS(1456), + [anon_sym_typedef] = ACTIONS(1456), + [anon_sym_extern] = ACTIONS(1456), + [anon_sym___attribute__] = ACTIONS(1456), + [anon_sym___scanf] = ACTIONS(1456), + [anon_sym___printf] = ACTIONS(1456), + [anon_sym___read_mostly] = ACTIONS(1456), + [anon_sym___must_hold] = ACTIONS(1456), + [anon_sym___ro_after_init] = ACTIONS(1456), + [anon_sym___init] = ACTIONS(1456), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1458), + [anon_sym___declspec] = ACTIONS(1456), + [anon_sym___cdecl] = ACTIONS(1456), + [anon_sym___clrcall] = ACTIONS(1456), + [anon_sym___stdcall] = ACTIONS(1456), + [anon_sym___fastcall] = ACTIONS(1456), + [anon_sym___thiscall] = ACTIONS(1456), + [anon_sym___vectorcall] = ACTIONS(1456), + [anon_sym_LBRACE] = ACTIONS(1458), + [anon_sym_signed] = ACTIONS(1456), + [anon_sym_unsigned] = ACTIONS(1456), + [anon_sym_long] = ACTIONS(1456), + [anon_sym_short] = ACTIONS(1456), + [anon_sym_static] = ACTIONS(1456), + [anon_sym_auto] = ACTIONS(1456), + [anon_sym_register] = ACTIONS(1456), + [anon_sym_inline] = ACTIONS(1456), + [anon_sym___inline] = ACTIONS(1456), + [anon_sym___inline__] = ACTIONS(1456), + [anon_sym___forceinline] = ACTIONS(1456), + [anon_sym_thread_local] = ACTIONS(1456), + [anon_sym___thread] = ACTIONS(1456), + [anon_sym_const] = ACTIONS(1456), + [anon_sym_constexpr] = ACTIONS(1456), + [anon_sym_volatile] = ACTIONS(1456), + [anon_sym_restrict] = ACTIONS(1456), + [anon_sym___restrict__] = ACTIONS(1456), + [anon_sym__Atomic] = ACTIONS(1456), + [anon_sym__Noreturn] = ACTIONS(1456), + [anon_sym_noreturn] = ACTIONS(1456), + [sym_primitive_type] = ACTIONS(1456), + [anon_sym_enum] = ACTIONS(1456), + [anon_sym_struct] = ACTIONS(1456), + [anon_sym_union] = ACTIONS(1456), + [anon_sym_if] = ACTIONS(1456), + [anon_sym_switch] = ACTIONS(1456), + [anon_sym_case] = ACTIONS(1456), + [anon_sym_default] = ACTIONS(1456), + [anon_sym_while] = ACTIONS(1456), + [anon_sym_do] = ACTIONS(1456), + [anon_sym_for] = ACTIONS(1456), + [anon_sym_return] = ACTIONS(1456), + [anon_sym_break] = ACTIONS(1456), + [anon_sym_continue] = ACTIONS(1456), + [anon_sym_goto] = ACTIONS(1456), + [anon_sym___try] = ACTIONS(1456), + [anon_sym___leave] = ACTIONS(1456), + [anon_sym_DASH_DASH] = ACTIONS(1458), + [anon_sym_PLUS_PLUS] = ACTIONS(1458), + [anon_sym_sizeof] = ACTIONS(1456), + [anon_sym___alignof__] = ACTIONS(1456), + [anon_sym___alignof] = ACTIONS(1456), + [anon_sym__alignof] = ACTIONS(1456), + [anon_sym_alignof] = ACTIONS(1456), + [anon_sym__Alignof] = ACTIONS(1456), + [anon_sym_offsetof] = ACTIONS(1456), + [anon_sym__Generic] = ACTIONS(1456), + [anon_sym_asm] = ACTIONS(1456), + [anon_sym___asm__] = ACTIONS(1456), + [sym_number_literal] = ACTIONS(1458), + [anon_sym_L_SQUOTE] = ACTIONS(1458), + [anon_sym_u_SQUOTE] = ACTIONS(1458), + [anon_sym_U_SQUOTE] = ACTIONS(1458), + [anon_sym_u8_SQUOTE] = ACTIONS(1458), + [anon_sym_SQUOTE] = ACTIONS(1458), + [anon_sym_L_DQUOTE] = ACTIONS(1458), + [anon_sym_u_DQUOTE] = ACTIONS(1458), + [anon_sym_U_DQUOTE] = ACTIONS(1458), + [anon_sym_u8_DQUOTE] = ACTIONS(1458), + [anon_sym_DQUOTE] = ACTIONS(1458), + [sym_true] = ACTIONS(1456), + [sym_false] = ACTIONS(1456), + [anon_sym_NULL] = ACTIONS(1456), + [anon_sym_nullptr] = ACTIONS(1456), [sym_comment] = ACTIONS(3), }, [143] = { - [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_if_token2] = ACTIONS(1449), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1449), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1449), - [aux_sym_preproc_else_token1] = ACTIONS(1449), - [aux_sym_preproc_elif_token1] = ACTIONS(1449), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1449), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1449), - [sym_preproc_directive] = ACTIONS(1449), - [anon_sym_LPAREN2] = ACTIONS(1451), - [anon_sym_BANG] = ACTIONS(1451), - [anon_sym_TILDE] = ACTIONS(1451), - [anon_sym_DASH] = ACTIONS(1449), - [anon_sym_PLUS] = ACTIONS(1449), - [anon_sym_STAR] = ACTIONS(1451), - [anon_sym_AMP] = ACTIONS(1451), - [anon_sym_SEMI] = ACTIONS(1451), - [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_LBRACK_LBRACK] = ACTIONS(1451), - [anon_sym___declspec] = 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(1451), - [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), - [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___try] = ACTIONS(1449), - [anon_sym___leave] = ACTIONS(1449), - [anon_sym_DASH_DASH] = ACTIONS(1451), - [anon_sym_PLUS_PLUS] = ACTIONS(1451), - [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(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(1449), - [sym_false] = ACTIONS(1449), - [anon_sym_NULL] = ACTIONS(1449), - [anon_sym_nullptr] = ACTIONS(1449), + [sym_identifier] = ACTIONS(1460), + [aux_sym_preproc_include_token1] = ACTIONS(1460), + [aux_sym_preproc_def_token1] = ACTIONS(1460), + [aux_sym_preproc_if_token1] = ACTIONS(1460), + [aux_sym_preproc_if_token2] = ACTIONS(1460), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1460), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1460), + [aux_sym_preproc_else_token1] = ACTIONS(1460), + [aux_sym_preproc_elif_token1] = ACTIONS(1460), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1460), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1460), + [sym_preproc_directive] = ACTIONS(1460), + [anon_sym_LPAREN2] = ACTIONS(1462), + [anon_sym_BANG] = ACTIONS(1462), + [anon_sym_TILDE] = ACTIONS(1462), + [anon_sym_DASH] = ACTIONS(1460), + [anon_sym_PLUS] = ACTIONS(1460), + [anon_sym_STAR] = ACTIONS(1462), + [anon_sym_AMP] = ACTIONS(1462), + [anon_sym_SEMI] = ACTIONS(1462), + [anon_sym___extension__] = ACTIONS(1460), + [anon_sym_typedef] = ACTIONS(1460), + [anon_sym_extern] = ACTIONS(1460), + [anon_sym___attribute__] = ACTIONS(1460), + [anon_sym___scanf] = ACTIONS(1460), + [anon_sym___printf] = ACTIONS(1460), + [anon_sym___read_mostly] = ACTIONS(1460), + [anon_sym___must_hold] = ACTIONS(1460), + [anon_sym___ro_after_init] = ACTIONS(1460), + [anon_sym___init] = ACTIONS(1460), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1462), + [anon_sym___declspec] = ACTIONS(1460), + [anon_sym___cdecl] = ACTIONS(1460), + [anon_sym___clrcall] = ACTIONS(1460), + [anon_sym___stdcall] = ACTIONS(1460), + [anon_sym___fastcall] = ACTIONS(1460), + [anon_sym___thiscall] = ACTIONS(1460), + [anon_sym___vectorcall] = ACTIONS(1460), + [anon_sym_LBRACE] = ACTIONS(1462), + [anon_sym_signed] = ACTIONS(1460), + [anon_sym_unsigned] = ACTIONS(1460), + [anon_sym_long] = ACTIONS(1460), + [anon_sym_short] = ACTIONS(1460), + [anon_sym_static] = ACTIONS(1460), + [anon_sym_auto] = ACTIONS(1460), + [anon_sym_register] = ACTIONS(1460), + [anon_sym_inline] = ACTIONS(1460), + [anon_sym___inline] = ACTIONS(1460), + [anon_sym___inline__] = ACTIONS(1460), + [anon_sym___forceinline] = ACTIONS(1460), + [anon_sym_thread_local] = ACTIONS(1460), + [anon_sym___thread] = ACTIONS(1460), + [anon_sym_const] = ACTIONS(1460), + [anon_sym_constexpr] = ACTIONS(1460), + [anon_sym_volatile] = ACTIONS(1460), + [anon_sym_restrict] = ACTIONS(1460), + [anon_sym___restrict__] = ACTIONS(1460), + [anon_sym__Atomic] = ACTIONS(1460), + [anon_sym__Noreturn] = ACTIONS(1460), + [anon_sym_noreturn] = ACTIONS(1460), + [sym_primitive_type] = ACTIONS(1460), + [anon_sym_enum] = ACTIONS(1460), + [anon_sym_struct] = ACTIONS(1460), + [anon_sym_union] = ACTIONS(1460), + [anon_sym_if] = ACTIONS(1460), + [anon_sym_switch] = ACTIONS(1460), + [anon_sym_case] = ACTIONS(1460), + [anon_sym_default] = ACTIONS(1460), + [anon_sym_while] = ACTIONS(1460), + [anon_sym_do] = ACTIONS(1460), + [anon_sym_for] = ACTIONS(1460), + [anon_sym_return] = ACTIONS(1460), + [anon_sym_break] = ACTIONS(1460), + [anon_sym_continue] = ACTIONS(1460), + [anon_sym_goto] = ACTIONS(1460), + [anon_sym___try] = ACTIONS(1460), + [anon_sym___leave] = ACTIONS(1460), + [anon_sym_DASH_DASH] = ACTIONS(1462), + [anon_sym_PLUS_PLUS] = ACTIONS(1462), + [anon_sym_sizeof] = ACTIONS(1460), + [anon_sym___alignof__] = ACTIONS(1460), + [anon_sym___alignof] = ACTIONS(1460), + [anon_sym__alignof] = ACTIONS(1460), + [anon_sym_alignof] = ACTIONS(1460), + [anon_sym__Alignof] = ACTIONS(1460), + [anon_sym_offsetof] = ACTIONS(1460), + [anon_sym__Generic] = ACTIONS(1460), + [anon_sym_asm] = ACTIONS(1460), + [anon_sym___asm__] = ACTIONS(1460), + [sym_number_literal] = ACTIONS(1462), + [anon_sym_L_SQUOTE] = ACTIONS(1462), + [anon_sym_u_SQUOTE] = ACTIONS(1462), + [anon_sym_U_SQUOTE] = ACTIONS(1462), + [anon_sym_u8_SQUOTE] = ACTIONS(1462), + [anon_sym_SQUOTE] = ACTIONS(1462), + [anon_sym_L_DQUOTE] = ACTIONS(1462), + [anon_sym_u_DQUOTE] = ACTIONS(1462), + [anon_sym_U_DQUOTE] = ACTIONS(1462), + [anon_sym_u8_DQUOTE] = ACTIONS(1462), + [anon_sym_DQUOTE] = ACTIONS(1462), + [sym_true] = ACTIONS(1460), + [sym_false] = ACTIONS(1460), + [anon_sym_NULL] = ACTIONS(1460), + [anon_sym_nullptr] = ACTIONS(1460), [sym_comment] = ACTIONS(3), }, [144] = { - [sym_identifier] = ACTIONS(1453), - [aux_sym_preproc_include_token1] = ACTIONS(1453), - [aux_sym_preproc_def_token1] = ACTIONS(1453), - [aux_sym_preproc_if_token1] = ACTIONS(1453), - [aux_sym_preproc_if_token2] = ACTIONS(1453), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1453), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1453), - [aux_sym_preproc_else_token1] = ACTIONS(1453), - [aux_sym_preproc_elif_token1] = ACTIONS(1453), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1453), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1453), - [sym_preproc_directive] = ACTIONS(1453), - [anon_sym_LPAREN2] = ACTIONS(1455), - [anon_sym_BANG] = ACTIONS(1455), - [anon_sym_TILDE] = ACTIONS(1455), - [anon_sym_DASH] = ACTIONS(1453), - [anon_sym_PLUS] = ACTIONS(1453), - [anon_sym_STAR] = ACTIONS(1455), - [anon_sym_AMP] = ACTIONS(1455), - [anon_sym_SEMI] = ACTIONS(1455), - [anon_sym___extension__] = ACTIONS(1453), - [anon_sym_typedef] = ACTIONS(1453), - [anon_sym_extern] = ACTIONS(1453), - [anon_sym___attribute__] = ACTIONS(1453), - [anon_sym___scanf] = ACTIONS(1453), - [anon_sym___printf] = ACTIONS(1453), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1455), - [anon_sym___declspec] = ACTIONS(1453), - [anon_sym___cdecl] = ACTIONS(1453), - [anon_sym___clrcall] = ACTIONS(1453), - [anon_sym___stdcall] = ACTIONS(1453), - [anon_sym___fastcall] = ACTIONS(1453), - [anon_sym___thiscall] = ACTIONS(1453), - [anon_sym___vectorcall] = ACTIONS(1453), - [anon_sym_LBRACE] = ACTIONS(1455), - [anon_sym_signed] = ACTIONS(1453), - [anon_sym_unsigned] = ACTIONS(1453), - [anon_sym_long] = ACTIONS(1453), - [anon_sym_short] = ACTIONS(1453), - [anon_sym_static] = ACTIONS(1453), - [anon_sym_auto] = ACTIONS(1453), - [anon_sym_register] = ACTIONS(1453), - [anon_sym_inline] = ACTIONS(1453), - [anon_sym___inline] = ACTIONS(1453), - [anon_sym___inline__] = ACTIONS(1453), - [anon_sym___forceinline] = ACTIONS(1453), - [anon_sym_thread_local] = ACTIONS(1453), - [anon_sym___thread] = ACTIONS(1453), - [anon_sym_const] = ACTIONS(1453), - [anon_sym_constexpr] = ACTIONS(1453), - [anon_sym_volatile] = ACTIONS(1453), - [anon_sym_restrict] = ACTIONS(1453), - [anon_sym___restrict__] = ACTIONS(1453), - [anon_sym__Atomic] = ACTIONS(1453), - [anon_sym__Noreturn] = ACTIONS(1453), - [anon_sym_noreturn] = ACTIONS(1453), - [sym_primitive_type] = ACTIONS(1453), - [anon_sym_enum] = ACTIONS(1453), - [anon_sym_struct] = ACTIONS(1453), - [anon_sym_union] = ACTIONS(1453), - [anon_sym_if] = ACTIONS(1453), - [anon_sym_switch] = ACTIONS(1453), - [anon_sym_case] = ACTIONS(1453), - [anon_sym_default] = ACTIONS(1453), - [anon_sym_while] = ACTIONS(1453), - [anon_sym_do] = ACTIONS(1453), - [anon_sym_for] = ACTIONS(1453), - [anon_sym_return] = ACTIONS(1453), - [anon_sym_break] = ACTIONS(1453), - [anon_sym_continue] = ACTIONS(1453), - [anon_sym_goto] = ACTIONS(1453), - [anon_sym___try] = ACTIONS(1453), - [anon_sym___leave] = ACTIONS(1453), - [anon_sym_DASH_DASH] = ACTIONS(1455), - [anon_sym_PLUS_PLUS] = ACTIONS(1455), - [anon_sym_sizeof] = ACTIONS(1453), - [anon_sym___alignof__] = ACTIONS(1453), - [anon_sym___alignof] = ACTIONS(1453), - [anon_sym__alignof] = ACTIONS(1453), - [anon_sym_alignof] = ACTIONS(1453), - [anon_sym__Alignof] = ACTIONS(1453), - [anon_sym_offsetof] = ACTIONS(1453), - [anon_sym__Generic] = ACTIONS(1453), - [anon_sym_asm] = ACTIONS(1453), - [anon_sym___asm__] = ACTIONS(1453), - [sym_number_literal] = ACTIONS(1455), - [anon_sym_L_SQUOTE] = ACTIONS(1455), - [anon_sym_u_SQUOTE] = ACTIONS(1455), - [anon_sym_U_SQUOTE] = ACTIONS(1455), - [anon_sym_u8_SQUOTE] = ACTIONS(1455), - [anon_sym_SQUOTE] = ACTIONS(1455), - [anon_sym_L_DQUOTE] = ACTIONS(1455), - [anon_sym_u_DQUOTE] = ACTIONS(1455), - [anon_sym_U_DQUOTE] = ACTIONS(1455), - [anon_sym_u8_DQUOTE] = ACTIONS(1455), - [anon_sym_DQUOTE] = ACTIONS(1455), - [sym_true] = ACTIONS(1453), - [sym_false] = ACTIONS(1453), - [anon_sym_NULL] = ACTIONS(1453), - [anon_sym_nullptr] = ACTIONS(1453), + [sym_identifier] = ACTIONS(1464), + [aux_sym_preproc_include_token1] = ACTIONS(1464), + [aux_sym_preproc_def_token1] = ACTIONS(1464), + [aux_sym_preproc_if_token1] = ACTIONS(1464), + [aux_sym_preproc_if_token2] = ACTIONS(1464), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1464), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1464), + [aux_sym_preproc_else_token1] = ACTIONS(1464), + [aux_sym_preproc_elif_token1] = ACTIONS(1464), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1464), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1464), + [sym_preproc_directive] = ACTIONS(1464), + [anon_sym_LPAREN2] = ACTIONS(1466), + [anon_sym_BANG] = ACTIONS(1466), + [anon_sym_TILDE] = ACTIONS(1466), + [anon_sym_DASH] = ACTIONS(1464), + [anon_sym_PLUS] = ACTIONS(1464), + [anon_sym_STAR] = ACTIONS(1466), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_SEMI] = ACTIONS(1466), + [anon_sym___extension__] = ACTIONS(1464), + [anon_sym_typedef] = ACTIONS(1464), + [anon_sym_extern] = ACTIONS(1464), + [anon_sym___attribute__] = ACTIONS(1464), + [anon_sym___scanf] = ACTIONS(1464), + [anon_sym___printf] = ACTIONS(1464), + [anon_sym___read_mostly] = ACTIONS(1464), + [anon_sym___must_hold] = ACTIONS(1464), + [anon_sym___ro_after_init] = ACTIONS(1464), + [anon_sym___init] = ACTIONS(1464), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1466), + [anon_sym___declspec] = ACTIONS(1464), + [anon_sym___cdecl] = ACTIONS(1464), + [anon_sym___clrcall] = ACTIONS(1464), + [anon_sym___stdcall] = ACTIONS(1464), + [anon_sym___fastcall] = ACTIONS(1464), + [anon_sym___thiscall] = ACTIONS(1464), + [anon_sym___vectorcall] = ACTIONS(1464), + [anon_sym_LBRACE] = ACTIONS(1466), + [anon_sym_signed] = ACTIONS(1464), + [anon_sym_unsigned] = ACTIONS(1464), + [anon_sym_long] = ACTIONS(1464), + [anon_sym_short] = ACTIONS(1464), + [anon_sym_static] = ACTIONS(1464), + [anon_sym_auto] = ACTIONS(1464), + [anon_sym_register] = ACTIONS(1464), + [anon_sym_inline] = ACTIONS(1464), + [anon_sym___inline] = ACTIONS(1464), + [anon_sym___inline__] = ACTIONS(1464), + [anon_sym___forceinline] = ACTIONS(1464), + [anon_sym_thread_local] = ACTIONS(1464), + [anon_sym___thread] = ACTIONS(1464), + [anon_sym_const] = ACTIONS(1464), + [anon_sym_constexpr] = ACTIONS(1464), + [anon_sym_volatile] = ACTIONS(1464), + [anon_sym_restrict] = ACTIONS(1464), + [anon_sym___restrict__] = ACTIONS(1464), + [anon_sym__Atomic] = ACTIONS(1464), + [anon_sym__Noreturn] = ACTIONS(1464), + [anon_sym_noreturn] = ACTIONS(1464), + [sym_primitive_type] = ACTIONS(1464), + [anon_sym_enum] = ACTIONS(1464), + [anon_sym_struct] = ACTIONS(1464), + [anon_sym_union] = ACTIONS(1464), + [anon_sym_if] = ACTIONS(1464), + [anon_sym_switch] = ACTIONS(1464), + [anon_sym_case] = ACTIONS(1464), + [anon_sym_default] = ACTIONS(1464), + [anon_sym_while] = ACTIONS(1464), + [anon_sym_do] = ACTIONS(1464), + [anon_sym_for] = ACTIONS(1464), + [anon_sym_return] = ACTIONS(1464), + [anon_sym_break] = ACTIONS(1464), + [anon_sym_continue] = ACTIONS(1464), + [anon_sym_goto] = ACTIONS(1464), + [anon_sym___try] = ACTIONS(1464), + [anon_sym___leave] = ACTIONS(1464), + [anon_sym_DASH_DASH] = ACTIONS(1466), + [anon_sym_PLUS_PLUS] = ACTIONS(1466), + [anon_sym_sizeof] = ACTIONS(1464), + [anon_sym___alignof__] = ACTIONS(1464), + [anon_sym___alignof] = ACTIONS(1464), + [anon_sym__alignof] = ACTIONS(1464), + [anon_sym_alignof] = ACTIONS(1464), + [anon_sym__Alignof] = ACTIONS(1464), + [anon_sym_offsetof] = ACTIONS(1464), + [anon_sym__Generic] = ACTIONS(1464), + [anon_sym_asm] = ACTIONS(1464), + [anon_sym___asm__] = ACTIONS(1464), + [sym_number_literal] = ACTIONS(1466), + [anon_sym_L_SQUOTE] = ACTIONS(1466), + [anon_sym_u_SQUOTE] = ACTIONS(1466), + [anon_sym_U_SQUOTE] = ACTIONS(1466), + [anon_sym_u8_SQUOTE] = ACTIONS(1466), + [anon_sym_SQUOTE] = ACTIONS(1466), + [anon_sym_L_DQUOTE] = ACTIONS(1466), + [anon_sym_u_DQUOTE] = ACTIONS(1466), + [anon_sym_U_DQUOTE] = ACTIONS(1466), + [anon_sym_u8_DQUOTE] = ACTIONS(1466), + [anon_sym_DQUOTE] = ACTIONS(1466), + [sym_true] = ACTIONS(1464), + [sym_false] = ACTIONS(1464), + [anon_sym_NULL] = ACTIONS(1464), + [anon_sym_nullptr] = ACTIONS(1464), [sym_comment] = ACTIONS(3), }, [145] = { - [sym_identifier] = ACTIONS(1457), - [aux_sym_preproc_include_token1] = ACTIONS(1457), - [aux_sym_preproc_def_token1] = ACTIONS(1457), - [aux_sym_preproc_if_token1] = ACTIONS(1457), - [aux_sym_preproc_if_token2] = ACTIONS(1457), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1457), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1457), - [aux_sym_preproc_else_token1] = ACTIONS(1457), - [aux_sym_preproc_elif_token1] = ACTIONS(1457), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1457), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1457), - [sym_preproc_directive] = ACTIONS(1457), - [anon_sym_LPAREN2] = ACTIONS(1459), - [anon_sym_BANG] = ACTIONS(1459), - [anon_sym_TILDE] = ACTIONS(1459), - [anon_sym_DASH] = ACTIONS(1457), - [anon_sym_PLUS] = ACTIONS(1457), - [anon_sym_STAR] = ACTIONS(1459), - [anon_sym_AMP] = ACTIONS(1459), - [anon_sym_SEMI] = ACTIONS(1459), - [anon_sym___extension__] = ACTIONS(1457), - [anon_sym_typedef] = ACTIONS(1457), - [anon_sym_extern] = ACTIONS(1457), - [anon_sym___attribute__] = ACTIONS(1457), - [anon_sym___scanf] = ACTIONS(1457), - [anon_sym___printf] = ACTIONS(1457), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1459), - [anon_sym___declspec] = ACTIONS(1457), - [anon_sym___cdecl] = ACTIONS(1457), - [anon_sym___clrcall] = ACTIONS(1457), - [anon_sym___stdcall] = ACTIONS(1457), - [anon_sym___fastcall] = ACTIONS(1457), - [anon_sym___thiscall] = ACTIONS(1457), - [anon_sym___vectorcall] = ACTIONS(1457), - [anon_sym_LBRACE] = ACTIONS(1459), - [anon_sym_signed] = ACTIONS(1457), - [anon_sym_unsigned] = ACTIONS(1457), - [anon_sym_long] = ACTIONS(1457), - [anon_sym_short] = ACTIONS(1457), - [anon_sym_static] = ACTIONS(1457), - [anon_sym_auto] = ACTIONS(1457), - [anon_sym_register] = ACTIONS(1457), - [anon_sym_inline] = ACTIONS(1457), - [anon_sym___inline] = ACTIONS(1457), - [anon_sym___inline__] = ACTIONS(1457), - [anon_sym___forceinline] = ACTIONS(1457), - [anon_sym_thread_local] = ACTIONS(1457), - [anon_sym___thread] = ACTIONS(1457), - [anon_sym_const] = ACTIONS(1457), - [anon_sym_constexpr] = ACTIONS(1457), - [anon_sym_volatile] = ACTIONS(1457), - [anon_sym_restrict] = ACTIONS(1457), - [anon_sym___restrict__] = ACTIONS(1457), - [anon_sym__Atomic] = ACTIONS(1457), - [anon_sym__Noreturn] = ACTIONS(1457), - [anon_sym_noreturn] = ACTIONS(1457), - [sym_primitive_type] = ACTIONS(1457), - [anon_sym_enum] = ACTIONS(1457), - [anon_sym_struct] = ACTIONS(1457), - [anon_sym_union] = ACTIONS(1457), - [anon_sym_if] = ACTIONS(1457), - [anon_sym_switch] = ACTIONS(1457), - [anon_sym_case] = ACTIONS(1457), - [anon_sym_default] = ACTIONS(1457), - [anon_sym_while] = ACTIONS(1457), - [anon_sym_do] = ACTIONS(1457), - [anon_sym_for] = ACTIONS(1457), - [anon_sym_return] = ACTIONS(1457), - [anon_sym_break] = ACTIONS(1457), - [anon_sym_continue] = ACTIONS(1457), - [anon_sym_goto] = ACTIONS(1457), - [anon_sym___try] = ACTIONS(1457), - [anon_sym___leave] = ACTIONS(1457), - [anon_sym_DASH_DASH] = ACTIONS(1459), - [anon_sym_PLUS_PLUS] = ACTIONS(1459), - [anon_sym_sizeof] = ACTIONS(1457), - [anon_sym___alignof__] = ACTIONS(1457), - [anon_sym___alignof] = ACTIONS(1457), - [anon_sym__alignof] = ACTIONS(1457), - [anon_sym_alignof] = ACTIONS(1457), - [anon_sym__Alignof] = ACTIONS(1457), - [anon_sym_offsetof] = ACTIONS(1457), - [anon_sym__Generic] = ACTIONS(1457), - [anon_sym_asm] = ACTIONS(1457), - [anon_sym___asm__] = ACTIONS(1457), - [sym_number_literal] = ACTIONS(1459), - [anon_sym_L_SQUOTE] = ACTIONS(1459), - [anon_sym_u_SQUOTE] = ACTIONS(1459), - [anon_sym_U_SQUOTE] = ACTIONS(1459), - [anon_sym_u8_SQUOTE] = ACTIONS(1459), - [anon_sym_SQUOTE] = ACTIONS(1459), - [anon_sym_L_DQUOTE] = ACTIONS(1459), - [anon_sym_u_DQUOTE] = ACTIONS(1459), - [anon_sym_U_DQUOTE] = ACTIONS(1459), - [anon_sym_u8_DQUOTE] = ACTIONS(1459), - [anon_sym_DQUOTE] = ACTIONS(1459), - [sym_true] = ACTIONS(1457), - [sym_false] = ACTIONS(1457), - [anon_sym_NULL] = ACTIONS(1457), - [anon_sym_nullptr] = ACTIONS(1457), + [sym_identifier] = ACTIONS(1468), + [aux_sym_preproc_include_token1] = ACTIONS(1468), + [aux_sym_preproc_def_token1] = ACTIONS(1468), + [aux_sym_preproc_if_token1] = ACTIONS(1468), + [aux_sym_preproc_if_token2] = ACTIONS(1468), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1468), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1468), + [aux_sym_preproc_else_token1] = ACTIONS(1468), + [aux_sym_preproc_elif_token1] = ACTIONS(1468), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1468), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1468), + [sym_preproc_directive] = ACTIONS(1468), + [anon_sym_LPAREN2] = ACTIONS(1470), + [anon_sym_BANG] = ACTIONS(1470), + [anon_sym_TILDE] = ACTIONS(1470), + [anon_sym_DASH] = ACTIONS(1468), + [anon_sym_PLUS] = ACTIONS(1468), + [anon_sym_STAR] = ACTIONS(1470), + [anon_sym_AMP] = ACTIONS(1470), + [anon_sym_SEMI] = ACTIONS(1470), + [anon_sym___extension__] = ACTIONS(1468), + [anon_sym_typedef] = ACTIONS(1468), + [anon_sym_extern] = ACTIONS(1468), + [anon_sym___attribute__] = ACTIONS(1468), + [anon_sym___scanf] = ACTIONS(1468), + [anon_sym___printf] = ACTIONS(1468), + [anon_sym___read_mostly] = ACTIONS(1468), + [anon_sym___must_hold] = ACTIONS(1468), + [anon_sym___ro_after_init] = ACTIONS(1468), + [anon_sym___init] = ACTIONS(1468), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1470), + [anon_sym___declspec] = ACTIONS(1468), + [anon_sym___cdecl] = ACTIONS(1468), + [anon_sym___clrcall] = ACTIONS(1468), + [anon_sym___stdcall] = ACTIONS(1468), + [anon_sym___fastcall] = ACTIONS(1468), + [anon_sym___thiscall] = ACTIONS(1468), + [anon_sym___vectorcall] = ACTIONS(1468), + [anon_sym_LBRACE] = ACTIONS(1470), + [anon_sym_signed] = ACTIONS(1468), + [anon_sym_unsigned] = ACTIONS(1468), + [anon_sym_long] = ACTIONS(1468), + [anon_sym_short] = ACTIONS(1468), + [anon_sym_static] = ACTIONS(1468), + [anon_sym_auto] = ACTIONS(1468), + [anon_sym_register] = ACTIONS(1468), + [anon_sym_inline] = ACTIONS(1468), + [anon_sym___inline] = ACTIONS(1468), + [anon_sym___inline__] = ACTIONS(1468), + [anon_sym___forceinline] = ACTIONS(1468), + [anon_sym_thread_local] = ACTIONS(1468), + [anon_sym___thread] = ACTIONS(1468), + [anon_sym_const] = ACTIONS(1468), + [anon_sym_constexpr] = ACTIONS(1468), + [anon_sym_volatile] = ACTIONS(1468), + [anon_sym_restrict] = ACTIONS(1468), + [anon_sym___restrict__] = ACTIONS(1468), + [anon_sym__Atomic] = ACTIONS(1468), + [anon_sym__Noreturn] = ACTIONS(1468), + [anon_sym_noreturn] = ACTIONS(1468), + [sym_primitive_type] = ACTIONS(1468), + [anon_sym_enum] = ACTIONS(1468), + [anon_sym_struct] = ACTIONS(1468), + [anon_sym_union] = ACTIONS(1468), + [anon_sym_if] = ACTIONS(1468), + [anon_sym_switch] = ACTIONS(1468), + [anon_sym_case] = ACTIONS(1468), + [anon_sym_default] = ACTIONS(1468), + [anon_sym_while] = ACTIONS(1468), + [anon_sym_do] = ACTIONS(1468), + [anon_sym_for] = ACTIONS(1468), + [anon_sym_return] = ACTIONS(1468), + [anon_sym_break] = ACTIONS(1468), + [anon_sym_continue] = ACTIONS(1468), + [anon_sym_goto] = ACTIONS(1468), + [anon_sym___try] = ACTIONS(1468), + [anon_sym___leave] = ACTIONS(1468), + [anon_sym_DASH_DASH] = ACTIONS(1470), + [anon_sym_PLUS_PLUS] = ACTIONS(1470), + [anon_sym_sizeof] = ACTIONS(1468), + [anon_sym___alignof__] = ACTIONS(1468), + [anon_sym___alignof] = ACTIONS(1468), + [anon_sym__alignof] = ACTIONS(1468), + [anon_sym_alignof] = ACTIONS(1468), + [anon_sym__Alignof] = ACTIONS(1468), + [anon_sym_offsetof] = ACTIONS(1468), + [anon_sym__Generic] = ACTIONS(1468), + [anon_sym_asm] = ACTIONS(1468), + [anon_sym___asm__] = ACTIONS(1468), + [sym_number_literal] = ACTIONS(1470), + [anon_sym_L_SQUOTE] = ACTIONS(1470), + [anon_sym_u_SQUOTE] = ACTIONS(1470), + [anon_sym_U_SQUOTE] = ACTIONS(1470), + [anon_sym_u8_SQUOTE] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1470), + [anon_sym_L_DQUOTE] = ACTIONS(1470), + [anon_sym_u_DQUOTE] = ACTIONS(1470), + [anon_sym_U_DQUOTE] = ACTIONS(1470), + [anon_sym_u8_DQUOTE] = ACTIONS(1470), + [anon_sym_DQUOTE] = ACTIONS(1470), + [sym_true] = ACTIONS(1468), + [sym_false] = ACTIONS(1468), + [anon_sym_NULL] = ACTIONS(1468), + [anon_sym_nullptr] = ACTIONS(1468), [sym_comment] = ACTIONS(3), }, [146] = { - [sym_identifier] = ACTIONS(1461), - [aux_sym_preproc_include_token1] = ACTIONS(1461), - [aux_sym_preproc_def_token1] = ACTIONS(1461), - [aux_sym_preproc_if_token1] = ACTIONS(1461), - [aux_sym_preproc_if_token2] = ACTIONS(1461), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1461), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1461), - [aux_sym_preproc_else_token1] = ACTIONS(1461), - [aux_sym_preproc_elif_token1] = ACTIONS(1461), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1461), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1461), - [sym_preproc_directive] = ACTIONS(1461), - [anon_sym_LPAREN2] = ACTIONS(1463), - [anon_sym_BANG] = ACTIONS(1463), - [anon_sym_TILDE] = ACTIONS(1463), - [anon_sym_DASH] = ACTIONS(1461), - [anon_sym_PLUS] = ACTIONS(1461), - [anon_sym_STAR] = ACTIONS(1463), - [anon_sym_AMP] = ACTIONS(1463), - [anon_sym_SEMI] = ACTIONS(1463), - [anon_sym___extension__] = ACTIONS(1461), - [anon_sym_typedef] = ACTIONS(1461), - [anon_sym_extern] = ACTIONS(1461), - [anon_sym___attribute__] = ACTIONS(1461), - [anon_sym___scanf] = ACTIONS(1461), - [anon_sym___printf] = ACTIONS(1461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1463), - [anon_sym___declspec] = ACTIONS(1461), - [anon_sym___cdecl] = ACTIONS(1461), - [anon_sym___clrcall] = ACTIONS(1461), - [anon_sym___stdcall] = ACTIONS(1461), - [anon_sym___fastcall] = ACTIONS(1461), - [anon_sym___thiscall] = ACTIONS(1461), - [anon_sym___vectorcall] = ACTIONS(1461), - [anon_sym_LBRACE] = ACTIONS(1463), - [anon_sym_signed] = ACTIONS(1461), - [anon_sym_unsigned] = ACTIONS(1461), - [anon_sym_long] = ACTIONS(1461), - [anon_sym_short] = ACTIONS(1461), - [anon_sym_static] = ACTIONS(1461), - [anon_sym_auto] = ACTIONS(1461), - [anon_sym_register] = ACTIONS(1461), - [anon_sym_inline] = ACTIONS(1461), - [anon_sym___inline] = ACTIONS(1461), - [anon_sym___inline__] = ACTIONS(1461), - [anon_sym___forceinline] = ACTIONS(1461), - [anon_sym_thread_local] = ACTIONS(1461), - [anon_sym___thread] = ACTIONS(1461), - [anon_sym_const] = ACTIONS(1461), - [anon_sym_constexpr] = ACTIONS(1461), - [anon_sym_volatile] = ACTIONS(1461), - [anon_sym_restrict] = ACTIONS(1461), - [anon_sym___restrict__] = ACTIONS(1461), - [anon_sym__Atomic] = ACTIONS(1461), - [anon_sym__Noreturn] = ACTIONS(1461), - [anon_sym_noreturn] = ACTIONS(1461), - [sym_primitive_type] = ACTIONS(1461), - [anon_sym_enum] = ACTIONS(1461), - [anon_sym_struct] = ACTIONS(1461), - [anon_sym_union] = ACTIONS(1461), - [anon_sym_if] = ACTIONS(1461), - [anon_sym_switch] = ACTIONS(1461), - [anon_sym_case] = ACTIONS(1461), - [anon_sym_default] = ACTIONS(1461), - [anon_sym_while] = ACTIONS(1461), - [anon_sym_do] = ACTIONS(1461), - [anon_sym_for] = ACTIONS(1461), - [anon_sym_return] = ACTIONS(1461), - [anon_sym_break] = ACTIONS(1461), - [anon_sym_continue] = ACTIONS(1461), - [anon_sym_goto] = ACTIONS(1461), - [anon_sym___try] = ACTIONS(1461), - [anon_sym___leave] = ACTIONS(1461), - [anon_sym_DASH_DASH] = ACTIONS(1463), - [anon_sym_PLUS_PLUS] = ACTIONS(1463), - [anon_sym_sizeof] = ACTIONS(1461), - [anon_sym___alignof__] = ACTIONS(1461), - [anon_sym___alignof] = ACTIONS(1461), - [anon_sym__alignof] = ACTIONS(1461), - [anon_sym_alignof] = ACTIONS(1461), - [anon_sym__Alignof] = ACTIONS(1461), - [anon_sym_offsetof] = ACTIONS(1461), - [anon_sym__Generic] = ACTIONS(1461), - [anon_sym_asm] = ACTIONS(1461), - [anon_sym___asm__] = ACTIONS(1461), - [sym_number_literal] = ACTIONS(1463), - [anon_sym_L_SQUOTE] = ACTIONS(1463), - [anon_sym_u_SQUOTE] = ACTIONS(1463), - [anon_sym_U_SQUOTE] = ACTIONS(1463), - [anon_sym_u8_SQUOTE] = ACTIONS(1463), - [anon_sym_SQUOTE] = ACTIONS(1463), - [anon_sym_L_DQUOTE] = ACTIONS(1463), - [anon_sym_u_DQUOTE] = ACTIONS(1463), - [anon_sym_U_DQUOTE] = ACTIONS(1463), - [anon_sym_u8_DQUOTE] = ACTIONS(1463), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_true] = ACTIONS(1461), - [sym_false] = ACTIONS(1461), - [anon_sym_NULL] = ACTIONS(1461), - [anon_sym_nullptr] = ACTIONS(1461), + [sym_identifier] = ACTIONS(1472), + [aux_sym_preproc_include_token1] = ACTIONS(1472), + [aux_sym_preproc_def_token1] = ACTIONS(1472), + [aux_sym_preproc_if_token1] = ACTIONS(1472), + [aux_sym_preproc_if_token2] = ACTIONS(1472), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1472), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1472), + [aux_sym_preproc_else_token1] = ACTIONS(1472), + [aux_sym_preproc_elif_token1] = ACTIONS(1472), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1472), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1472), + [sym_preproc_directive] = ACTIONS(1472), + [anon_sym_LPAREN2] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1474), + [anon_sym_TILDE] = ACTIONS(1474), + [anon_sym_DASH] = ACTIONS(1472), + [anon_sym_PLUS] = ACTIONS(1472), + [anon_sym_STAR] = ACTIONS(1474), + [anon_sym_AMP] = ACTIONS(1474), + [anon_sym_SEMI] = ACTIONS(1474), + [anon_sym___extension__] = ACTIONS(1472), + [anon_sym_typedef] = ACTIONS(1472), + [anon_sym_extern] = ACTIONS(1472), + [anon_sym___attribute__] = ACTIONS(1472), + [anon_sym___scanf] = ACTIONS(1472), + [anon_sym___printf] = ACTIONS(1472), + [anon_sym___read_mostly] = ACTIONS(1472), + [anon_sym___must_hold] = ACTIONS(1472), + [anon_sym___ro_after_init] = ACTIONS(1472), + [anon_sym___init] = ACTIONS(1472), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1474), + [anon_sym___declspec] = ACTIONS(1472), + [anon_sym___cdecl] = ACTIONS(1472), + [anon_sym___clrcall] = ACTIONS(1472), + [anon_sym___stdcall] = ACTIONS(1472), + [anon_sym___fastcall] = ACTIONS(1472), + [anon_sym___thiscall] = ACTIONS(1472), + [anon_sym___vectorcall] = ACTIONS(1472), + [anon_sym_LBRACE] = ACTIONS(1474), + [anon_sym_signed] = ACTIONS(1472), + [anon_sym_unsigned] = ACTIONS(1472), + [anon_sym_long] = ACTIONS(1472), + [anon_sym_short] = ACTIONS(1472), + [anon_sym_static] = ACTIONS(1472), + [anon_sym_auto] = ACTIONS(1472), + [anon_sym_register] = ACTIONS(1472), + [anon_sym_inline] = ACTIONS(1472), + [anon_sym___inline] = ACTIONS(1472), + [anon_sym___inline__] = ACTIONS(1472), + [anon_sym___forceinline] = ACTIONS(1472), + [anon_sym_thread_local] = ACTIONS(1472), + [anon_sym___thread] = ACTIONS(1472), + [anon_sym_const] = ACTIONS(1472), + [anon_sym_constexpr] = ACTIONS(1472), + [anon_sym_volatile] = ACTIONS(1472), + [anon_sym_restrict] = ACTIONS(1472), + [anon_sym___restrict__] = ACTIONS(1472), + [anon_sym__Atomic] = ACTIONS(1472), + [anon_sym__Noreturn] = ACTIONS(1472), + [anon_sym_noreturn] = ACTIONS(1472), + [sym_primitive_type] = ACTIONS(1472), + [anon_sym_enum] = ACTIONS(1472), + [anon_sym_struct] = ACTIONS(1472), + [anon_sym_union] = ACTIONS(1472), + [anon_sym_if] = ACTIONS(1472), + [anon_sym_switch] = ACTIONS(1472), + [anon_sym_case] = ACTIONS(1472), + [anon_sym_default] = ACTIONS(1472), + [anon_sym_while] = ACTIONS(1472), + [anon_sym_do] = ACTIONS(1472), + [anon_sym_for] = ACTIONS(1472), + [anon_sym_return] = ACTIONS(1472), + [anon_sym_break] = ACTIONS(1472), + [anon_sym_continue] = ACTIONS(1472), + [anon_sym_goto] = ACTIONS(1472), + [anon_sym___try] = ACTIONS(1472), + [anon_sym___leave] = ACTIONS(1472), + [anon_sym_DASH_DASH] = ACTIONS(1474), + [anon_sym_PLUS_PLUS] = ACTIONS(1474), + [anon_sym_sizeof] = ACTIONS(1472), + [anon_sym___alignof__] = ACTIONS(1472), + [anon_sym___alignof] = ACTIONS(1472), + [anon_sym__alignof] = ACTIONS(1472), + [anon_sym_alignof] = ACTIONS(1472), + [anon_sym__Alignof] = ACTIONS(1472), + [anon_sym_offsetof] = ACTIONS(1472), + [anon_sym__Generic] = ACTIONS(1472), + [anon_sym_asm] = ACTIONS(1472), + [anon_sym___asm__] = ACTIONS(1472), + [sym_number_literal] = ACTIONS(1474), + [anon_sym_L_SQUOTE] = ACTIONS(1474), + [anon_sym_u_SQUOTE] = ACTIONS(1474), + [anon_sym_U_SQUOTE] = ACTIONS(1474), + [anon_sym_u8_SQUOTE] = ACTIONS(1474), + [anon_sym_SQUOTE] = ACTIONS(1474), + [anon_sym_L_DQUOTE] = ACTIONS(1474), + [anon_sym_u_DQUOTE] = ACTIONS(1474), + [anon_sym_U_DQUOTE] = ACTIONS(1474), + [anon_sym_u8_DQUOTE] = ACTIONS(1474), + [anon_sym_DQUOTE] = ACTIONS(1474), + [sym_true] = ACTIONS(1472), + [sym_false] = ACTIONS(1472), + [anon_sym_NULL] = ACTIONS(1472), + [anon_sym_nullptr] = ACTIONS(1472), [sym_comment] = ACTIONS(3), }, [147] = { - [sym_identifier] = ACTIONS(1465), - [aux_sym_preproc_include_token1] = ACTIONS(1465), - [aux_sym_preproc_def_token1] = ACTIONS(1465), - [aux_sym_preproc_if_token1] = ACTIONS(1465), - [aux_sym_preproc_if_token2] = ACTIONS(1465), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1465), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1465), - [aux_sym_preproc_else_token1] = ACTIONS(1465), - [aux_sym_preproc_elif_token1] = ACTIONS(1465), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1465), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1465), - [sym_preproc_directive] = ACTIONS(1465), - [anon_sym_LPAREN2] = ACTIONS(1467), - [anon_sym_BANG] = ACTIONS(1467), - [anon_sym_TILDE] = ACTIONS(1467), - [anon_sym_DASH] = ACTIONS(1465), - [anon_sym_PLUS] = ACTIONS(1465), - [anon_sym_STAR] = ACTIONS(1467), - [anon_sym_AMP] = ACTIONS(1467), - [anon_sym_SEMI] = ACTIONS(1467), - [anon_sym___extension__] = ACTIONS(1465), - [anon_sym_typedef] = ACTIONS(1465), - [anon_sym_extern] = ACTIONS(1465), - [anon_sym___attribute__] = ACTIONS(1465), - [anon_sym___scanf] = ACTIONS(1465), - [anon_sym___printf] = ACTIONS(1465), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1467), - [anon_sym___declspec] = ACTIONS(1465), - [anon_sym___cdecl] = ACTIONS(1465), - [anon_sym___clrcall] = ACTIONS(1465), - [anon_sym___stdcall] = ACTIONS(1465), - [anon_sym___fastcall] = ACTIONS(1465), - [anon_sym___thiscall] = ACTIONS(1465), - [anon_sym___vectorcall] = ACTIONS(1465), - [anon_sym_LBRACE] = ACTIONS(1467), - [anon_sym_signed] = ACTIONS(1465), - [anon_sym_unsigned] = ACTIONS(1465), - [anon_sym_long] = ACTIONS(1465), - [anon_sym_short] = ACTIONS(1465), - [anon_sym_static] = ACTIONS(1465), - [anon_sym_auto] = ACTIONS(1465), - [anon_sym_register] = ACTIONS(1465), - [anon_sym_inline] = ACTIONS(1465), - [anon_sym___inline] = ACTIONS(1465), - [anon_sym___inline__] = ACTIONS(1465), - [anon_sym___forceinline] = ACTIONS(1465), - [anon_sym_thread_local] = ACTIONS(1465), - [anon_sym___thread] = ACTIONS(1465), - [anon_sym_const] = ACTIONS(1465), - [anon_sym_constexpr] = ACTIONS(1465), - [anon_sym_volatile] = ACTIONS(1465), - [anon_sym_restrict] = ACTIONS(1465), - [anon_sym___restrict__] = ACTIONS(1465), - [anon_sym__Atomic] = ACTIONS(1465), - [anon_sym__Noreturn] = ACTIONS(1465), - [anon_sym_noreturn] = ACTIONS(1465), - [sym_primitive_type] = ACTIONS(1465), - [anon_sym_enum] = ACTIONS(1465), - [anon_sym_struct] = ACTIONS(1465), - [anon_sym_union] = ACTIONS(1465), - [anon_sym_if] = ACTIONS(1465), - [anon_sym_switch] = ACTIONS(1465), - [anon_sym_case] = ACTIONS(1465), - [anon_sym_default] = ACTIONS(1465), - [anon_sym_while] = ACTIONS(1465), - [anon_sym_do] = ACTIONS(1465), - [anon_sym_for] = ACTIONS(1465), - [anon_sym_return] = ACTIONS(1465), - [anon_sym_break] = ACTIONS(1465), - [anon_sym_continue] = ACTIONS(1465), - [anon_sym_goto] = ACTIONS(1465), - [anon_sym___try] = ACTIONS(1465), - [anon_sym___leave] = ACTIONS(1465), - [anon_sym_DASH_DASH] = ACTIONS(1467), - [anon_sym_PLUS_PLUS] = ACTIONS(1467), - [anon_sym_sizeof] = ACTIONS(1465), - [anon_sym___alignof__] = ACTIONS(1465), - [anon_sym___alignof] = ACTIONS(1465), - [anon_sym__alignof] = ACTIONS(1465), - [anon_sym_alignof] = ACTIONS(1465), - [anon_sym__Alignof] = ACTIONS(1465), - [anon_sym_offsetof] = ACTIONS(1465), - [anon_sym__Generic] = ACTIONS(1465), - [anon_sym_asm] = ACTIONS(1465), - [anon_sym___asm__] = ACTIONS(1465), - [sym_number_literal] = ACTIONS(1467), - [anon_sym_L_SQUOTE] = ACTIONS(1467), - [anon_sym_u_SQUOTE] = ACTIONS(1467), - [anon_sym_U_SQUOTE] = ACTIONS(1467), - [anon_sym_u8_SQUOTE] = ACTIONS(1467), - [anon_sym_SQUOTE] = ACTIONS(1467), - [anon_sym_L_DQUOTE] = ACTIONS(1467), - [anon_sym_u_DQUOTE] = ACTIONS(1467), - [anon_sym_U_DQUOTE] = ACTIONS(1467), - [anon_sym_u8_DQUOTE] = ACTIONS(1467), - [anon_sym_DQUOTE] = ACTIONS(1467), - [sym_true] = ACTIONS(1465), - [sym_false] = ACTIONS(1465), - [anon_sym_NULL] = ACTIONS(1465), - [anon_sym_nullptr] = ACTIONS(1465), + [sym_identifier] = ACTIONS(1476), + [aux_sym_preproc_include_token1] = ACTIONS(1476), + [aux_sym_preproc_def_token1] = ACTIONS(1476), + [aux_sym_preproc_if_token1] = ACTIONS(1476), + [aux_sym_preproc_if_token2] = ACTIONS(1476), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1476), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1476), + [aux_sym_preproc_else_token1] = ACTIONS(1476), + [aux_sym_preproc_elif_token1] = ACTIONS(1476), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1476), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1476), + [sym_preproc_directive] = ACTIONS(1476), + [anon_sym_LPAREN2] = ACTIONS(1478), + [anon_sym_BANG] = ACTIONS(1478), + [anon_sym_TILDE] = ACTIONS(1478), + [anon_sym_DASH] = ACTIONS(1476), + [anon_sym_PLUS] = ACTIONS(1476), + [anon_sym_STAR] = ACTIONS(1478), + [anon_sym_AMP] = ACTIONS(1478), + [anon_sym_SEMI] = ACTIONS(1478), + [anon_sym___extension__] = ACTIONS(1476), + [anon_sym_typedef] = ACTIONS(1476), + [anon_sym_extern] = ACTIONS(1476), + [anon_sym___attribute__] = ACTIONS(1476), + [anon_sym___scanf] = ACTIONS(1476), + [anon_sym___printf] = ACTIONS(1476), + [anon_sym___read_mostly] = ACTIONS(1476), + [anon_sym___must_hold] = ACTIONS(1476), + [anon_sym___ro_after_init] = ACTIONS(1476), + [anon_sym___init] = ACTIONS(1476), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1478), + [anon_sym___declspec] = ACTIONS(1476), + [anon_sym___cdecl] = ACTIONS(1476), + [anon_sym___clrcall] = ACTIONS(1476), + [anon_sym___stdcall] = ACTIONS(1476), + [anon_sym___fastcall] = ACTIONS(1476), + [anon_sym___thiscall] = ACTIONS(1476), + [anon_sym___vectorcall] = ACTIONS(1476), + [anon_sym_LBRACE] = ACTIONS(1478), + [anon_sym_signed] = ACTIONS(1476), + [anon_sym_unsigned] = ACTIONS(1476), + [anon_sym_long] = ACTIONS(1476), + [anon_sym_short] = ACTIONS(1476), + [anon_sym_static] = ACTIONS(1476), + [anon_sym_auto] = ACTIONS(1476), + [anon_sym_register] = ACTIONS(1476), + [anon_sym_inline] = ACTIONS(1476), + [anon_sym___inline] = ACTIONS(1476), + [anon_sym___inline__] = ACTIONS(1476), + [anon_sym___forceinline] = ACTIONS(1476), + [anon_sym_thread_local] = ACTIONS(1476), + [anon_sym___thread] = ACTIONS(1476), + [anon_sym_const] = ACTIONS(1476), + [anon_sym_constexpr] = ACTIONS(1476), + [anon_sym_volatile] = ACTIONS(1476), + [anon_sym_restrict] = ACTIONS(1476), + [anon_sym___restrict__] = ACTIONS(1476), + [anon_sym__Atomic] = ACTIONS(1476), + [anon_sym__Noreturn] = ACTIONS(1476), + [anon_sym_noreturn] = ACTIONS(1476), + [sym_primitive_type] = ACTIONS(1476), + [anon_sym_enum] = ACTIONS(1476), + [anon_sym_struct] = ACTIONS(1476), + [anon_sym_union] = ACTIONS(1476), + [anon_sym_if] = ACTIONS(1476), + [anon_sym_switch] = ACTIONS(1476), + [anon_sym_case] = ACTIONS(1476), + [anon_sym_default] = ACTIONS(1476), + [anon_sym_while] = ACTIONS(1476), + [anon_sym_do] = ACTIONS(1476), + [anon_sym_for] = ACTIONS(1476), + [anon_sym_return] = ACTIONS(1476), + [anon_sym_break] = ACTIONS(1476), + [anon_sym_continue] = ACTIONS(1476), + [anon_sym_goto] = ACTIONS(1476), + [anon_sym___try] = ACTIONS(1476), + [anon_sym___leave] = ACTIONS(1476), + [anon_sym_DASH_DASH] = ACTIONS(1478), + [anon_sym_PLUS_PLUS] = ACTIONS(1478), + [anon_sym_sizeof] = ACTIONS(1476), + [anon_sym___alignof__] = ACTIONS(1476), + [anon_sym___alignof] = ACTIONS(1476), + [anon_sym__alignof] = ACTIONS(1476), + [anon_sym_alignof] = ACTIONS(1476), + [anon_sym__Alignof] = ACTIONS(1476), + [anon_sym_offsetof] = ACTIONS(1476), + [anon_sym__Generic] = ACTIONS(1476), + [anon_sym_asm] = ACTIONS(1476), + [anon_sym___asm__] = ACTIONS(1476), + [sym_number_literal] = ACTIONS(1478), + [anon_sym_L_SQUOTE] = ACTIONS(1478), + [anon_sym_u_SQUOTE] = ACTIONS(1478), + [anon_sym_U_SQUOTE] = ACTIONS(1478), + [anon_sym_u8_SQUOTE] = ACTIONS(1478), + [anon_sym_SQUOTE] = ACTIONS(1478), + [anon_sym_L_DQUOTE] = ACTIONS(1478), + [anon_sym_u_DQUOTE] = ACTIONS(1478), + [anon_sym_U_DQUOTE] = ACTIONS(1478), + [anon_sym_u8_DQUOTE] = ACTIONS(1478), + [anon_sym_DQUOTE] = ACTIONS(1478), + [sym_true] = ACTIONS(1476), + [sym_false] = ACTIONS(1476), + [anon_sym_NULL] = ACTIONS(1476), + [anon_sym_nullptr] = ACTIONS(1476), [sym_comment] = ACTIONS(3), }, [148] = { - [sym_identifier] = ACTIONS(1469), - [aux_sym_preproc_include_token1] = ACTIONS(1469), - [aux_sym_preproc_def_token1] = ACTIONS(1469), - [aux_sym_preproc_if_token1] = ACTIONS(1469), - [aux_sym_preproc_if_token2] = ACTIONS(1469), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1469), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1469), - [aux_sym_preproc_else_token1] = ACTIONS(1469), - [aux_sym_preproc_elif_token1] = ACTIONS(1469), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1469), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1469), - [sym_preproc_directive] = ACTIONS(1469), - [anon_sym_LPAREN2] = ACTIONS(1471), - [anon_sym_BANG] = ACTIONS(1471), - [anon_sym_TILDE] = ACTIONS(1471), - [anon_sym_DASH] = ACTIONS(1469), - [anon_sym_PLUS] = ACTIONS(1469), - [anon_sym_STAR] = ACTIONS(1471), - [anon_sym_AMP] = ACTIONS(1471), - [anon_sym_SEMI] = ACTIONS(1471), - [anon_sym___extension__] = ACTIONS(1469), - [anon_sym_typedef] = ACTIONS(1469), - [anon_sym_extern] = ACTIONS(1469), - [anon_sym___attribute__] = ACTIONS(1469), - [anon_sym___scanf] = ACTIONS(1469), - [anon_sym___printf] = ACTIONS(1469), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1471), - [anon_sym___declspec] = ACTIONS(1469), - [anon_sym___cdecl] = ACTIONS(1469), - [anon_sym___clrcall] = ACTIONS(1469), - [anon_sym___stdcall] = ACTIONS(1469), - [anon_sym___fastcall] = ACTIONS(1469), - [anon_sym___thiscall] = ACTIONS(1469), - [anon_sym___vectorcall] = ACTIONS(1469), - [anon_sym_LBRACE] = ACTIONS(1471), - [anon_sym_signed] = ACTIONS(1469), - [anon_sym_unsigned] = ACTIONS(1469), - [anon_sym_long] = ACTIONS(1469), - [anon_sym_short] = ACTIONS(1469), - [anon_sym_static] = ACTIONS(1469), - [anon_sym_auto] = ACTIONS(1469), - [anon_sym_register] = ACTIONS(1469), - [anon_sym_inline] = ACTIONS(1469), - [anon_sym___inline] = ACTIONS(1469), - [anon_sym___inline__] = ACTIONS(1469), - [anon_sym___forceinline] = ACTIONS(1469), - [anon_sym_thread_local] = ACTIONS(1469), - [anon_sym___thread] = ACTIONS(1469), - [anon_sym_const] = ACTIONS(1469), - [anon_sym_constexpr] = ACTIONS(1469), - [anon_sym_volatile] = ACTIONS(1469), - [anon_sym_restrict] = ACTIONS(1469), - [anon_sym___restrict__] = ACTIONS(1469), - [anon_sym__Atomic] = ACTIONS(1469), - [anon_sym__Noreturn] = ACTIONS(1469), - [anon_sym_noreturn] = ACTIONS(1469), - [sym_primitive_type] = ACTIONS(1469), - [anon_sym_enum] = ACTIONS(1469), - [anon_sym_struct] = ACTIONS(1469), - [anon_sym_union] = ACTIONS(1469), - [anon_sym_if] = ACTIONS(1469), - [anon_sym_switch] = ACTIONS(1469), - [anon_sym_case] = ACTIONS(1469), - [anon_sym_default] = ACTIONS(1469), - [anon_sym_while] = ACTIONS(1469), - [anon_sym_do] = ACTIONS(1469), - [anon_sym_for] = ACTIONS(1469), - [anon_sym_return] = ACTIONS(1469), - [anon_sym_break] = ACTIONS(1469), - [anon_sym_continue] = ACTIONS(1469), - [anon_sym_goto] = ACTIONS(1469), - [anon_sym___try] = ACTIONS(1469), - [anon_sym___leave] = ACTIONS(1469), - [anon_sym_DASH_DASH] = ACTIONS(1471), - [anon_sym_PLUS_PLUS] = ACTIONS(1471), - [anon_sym_sizeof] = ACTIONS(1469), - [anon_sym___alignof__] = ACTIONS(1469), - [anon_sym___alignof] = ACTIONS(1469), - [anon_sym__alignof] = ACTIONS(1469), - [anon_sym_alignof] = ACTIONS(1469), - [anon_sym__Alignof] = ACTIONS(1469), - [anon_sym_offsetof] = ACTIONS(1469), - [anon_sym__Generic] = ACTIONS(1469), - [anon_sym_asm] = ACTIONS(1469), - [anon_sym___asm__] = ACTIONS(1469), - [sym_number_literal] = ACTIONS(1471), - [anon_sym_L_SQUOTE] = ACTIONS(1471), - [anon_sym_u_SQUOTE] = ACTIONS(1471), - [anon_sym_U_SQUOTE] = ACTIONS(1471), - [anon_sym_u8_SQUOTE] = ACTIONS(1471), - [anon_sym_SQUOTE] = ACTIONS(1471), - [anon_sym_L_DQUOTE] = ACTIONS(1471), - [anon_sym_u_DQUOTE] = ACTIONS(1471), - [anon_sym_U_DQUOTE] = ACTIONS(1471), - [anon_sym_u8_DQUOTE] = ACTIONS(1471), - [anon_sym_DQUOTE] = ACTIONS(1471), - [sym_true] = ACTIONS(1469), - [sym_false] = ACTIONS(1469), - [anon_sym_NULL] = ACTIONS(1469), - [anon_sym_nullptr] = ACTIONS(1469), + [sym_identifier] = ACTIONS(1480), + [aux_sym_preproc_include_token1] = ACTIONS(1480), + [aux_sym_preproc_def_token1] = ACTIONS(1480), + [aux_sym_preproc_if_token1] = ACTIONS(1480), + [aux_sym_preproc_if_token2] = ACTIONS(1480), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1480), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1480), + [aux_sym_preproc_else_token1] = ACTIONS(1480), + [aux_sym_preproc_elif_token1] = ACTIONS(1480), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1480), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1480), + [sym_preproc_directive] = ACTIONS(1480), + [anon_sym_LPAREN2] = ACTIONS(1482), + [anon_sym_BANG] = ACTIONS(1482), + [anon_sym_TILDE] = ACTIONS(1482), + [anon_sym_DASH] = ACTIONS(1480), + [anon_sym_PLUS] = ACTIONS(1480), + [anon_sym_STAR] = ACTIONS(1482), + [anon_sym_AMP] = ACTIONS(1482), + [anon_sym_SEMI] = ACTIONS(1482), + [anon_sym___extension__] = ACTIONS(1480), + [anon_sym_typedef] = ACTIONS(1480), + [anon_sym_extern] = ACTIONS(1480), + [anon_sym___attribute__] = ACTIONS(1480), + [anon_sym___scanf] = ACTIONS(1480), + [anon_sym___printf] = ACTIONS(1480), + [anon_sym___read_mostly] = ACTIONS(1480), + [anon_sym___must_hold] = ACTIONS(1480), + [anon_sym___ro_after_init] = ACTIONS(1480), + [anon_sym___init] = ACTIONS(1480), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1482), + [anon_sym___declspec] = ACTIONS(1480), + [anon_sym___cdecl] = ACTIONS(1480), + [anon_sym___clrcall] = ACTIONS(1480), + [anon_sym___stdcall] = ACTIONS(1480), + [anon_sym___fastcall] = ACTIONS(1480), + [anon_sym___thiscall] = ACTIONS(1480), + [anon_sym___vectorcall] = ACTIONS(1480), + [anon_sym_LBRACE] = ACTIONS(1482), + [anon_sym_signed] = ACTIONS(1480), + [anon_sym_unsigned] = ACTIONS(1480), + [anon_sym_long] = ACTIONS(1480), + [anon_sym_short] = ACTIONS(1480), + [anon_sym_static] = ACTIONS(1480), + [anon_sym_auto] = ACTIONS(1480), + [anon_sym_register] = ACTIONS(1480), + [anon_sym_inline] = ACTIONS(1480), + [anon_sym___inline] = ACTIONS(1480), + [anon_sym___inline__] = ACTIONS(1480), + [anon_sym___forceinline] = ACTIONS(1480), + [anon_sym_thread_local] = ACTIONS(1480), + [anon_sym___thread] = ACTIONS(1480), + [anon_sym_const] = ACTIONS(1480), + [anon_sym_constexpr] = ACTIONS(1480), + [anon_sym_volatile] = ACTIONS(1480), + [anon_sym_restrict] = ACTIONS(1480), + [anon_sym___restrict__] = ACTIONS(1480), + [anon_sym__Atomic] = ACTIONS(1480), + [anon_sym__Noreturn] = ACTIONS(1480), + [anon_sym_noreturn] = ACTIONS(1480), + [sym_primitive_type] = ACTIONS(1480), + [anon_sym_enum] = ACTIONS(1480), + [anon_sym_struct] = ACTIONS(1480), + [anon_sym_union] = ACTIONS(1480), + [anon_sym_if] = ACTIONS(1480), + [anon_sym_switch] = ACTIONS(1480), + [anon_sym_case] = ACTIONS(1480), + [anon_sym_default] = ACTIONS(1480), + [anon_sym_while] = ACTIONS(1480), + [anon_sym_do] = ACTIONS(1480), + [anon_sym_for] = ACTIONS(1480), + [anon_sym_return] = ACTIONS(1480), + [anon_sym_break] = ACTIONS(1480), + [anon_sym_continue] = ACTIONS(1480), + [anon_sym_goto] = ACTIONS(1480), + [anon_sym___try] = ACTIONS(1480), + [anon_sym___leave] = ACTIONS(1480), + [anon_sym_DASH_DASH] = ACTIONS(1482), + [anon_sym_PLUS_PLUS] = ACTIONS(1482), + [anon_sym_sizeof] = ACTIONS(1480), + [anon_sym___alignof__] = ACTIONS(1480), + [anon_sym___alignof] = ACTIONS(1480), + [anon_sym__alignof] = ACTIONS(1480), + [anon_sym_alignof] = ACTIONS(1480), + [anon_sym__Alignof] = ACTIONS(1480), + [anon_sym_offsetof] = ACTIONS(1480), + [anon_sym__Generic] = ACTIONS(1480), + [anon_sym_asm] = ACTIONS(1480), + [anon_sym___asm__] = ACTIONS(1480), + [sym_number_literal] = ACTIONS(1482), + [anon_sym_L_SQUOTE] = ACTIONS(1482), + [anon_sym_u_SQUOTE] = ACTIONS(1482), + [anon_sym_U_SQUOTE] = ACTIONS(1482), + [anon_sym_u8_SQUOTE] = ACTIONS(1482), + [anon_sym_SQUOTE] = ACTIONS(1482), + [anon_sym_L_DQUOTE] = ACTIONS(1482), + [anon_sym_u_DQUOTE] = ACTIONS(1482), + [anon_sym_U_DQUOTE] = ACTIONS(1482), + [anon_sym_u8_DQUOTE] = ACTIONS(1482), + [anon_sym_DQUOTE] = ACTIONS(1482), + [sym_true] = ACTIONS(1480), + [sym_false] = ACTIONS(1480), + [anon_sym_NULL] = ACTIONS(1480), + [anon_sym_nullptr] = ACTIONS(1480), [sym_comment] = ACTIONS(3), }, [149] = { - [sym_identifier] = ACTIONS(1473), - [aux_sym_preproc_include_token1] = ACTIONS(1473), - [aux_sym_preproc_def_token1] = ACTIONS(1473), - [aux_sym_preproc_if_token1] = ACTIONS(1473), - [aux_sym_preproc_if_token2] = ACTIONS(1473), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1473), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1473), - [aux_sym_preproc_else_token1] = ACTIONS(1473), - [aux_sym_preproc_elif_token1] = ACTIONS(1473), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1473), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1473), - [sym_preproc_directive] = ACTIONS(1473), - [anon_sym_LPAREN2] = ACTIONS(1475), - [anon_sym_BANG] = ACTIONS(1475), - [anon_sym_TILDE] = ACTIONS(1475), - [anon_sym_DASH] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(1473), - [anon_sym_STAR] = ACTIONS(1475), - [anon_sym_AMP] = ACTIONS(1475), - [anon_sym_SEMI] = ACTIONS(1475), - [anon_sym___extension__] = ACTIONS(1473), - [anon_sym_typedef] = ACTIONS(1473), - [anon_sym_extern] = ACTIONS(1473), - [anon_sym___attribute__] = ACTIONS(1473), - [anon_sym___scanf] = ACTIONS(1473), - [anon_sym___printf] = ACTIONS(1473), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1475), - [anon_sym___declspec] = ACTIONS(1473), - [anon_sym___cdecl] = ACTIONS(1473), - [anon_sym___clrcall] = ACTIONS(1473), - [anon_sym___stdcall] = ACTIONS(1473), - [anon_sym___fastcall] = ACTIONS(1473), - [anon_sym___thiscall] = ACTIONS(1473), - [anon_sym___vectorcall] = ACTIONS(1473), - [anon_sym_LBRACE] = ACTIONS(1475), - [anon_sym_signed] = ACTIONS(1473), - [anon_sym_unsigned] = ACTIONS(1473), - [anon_sym_long] = ACTIONS(1473), - [anon_sym_short] = ACTIONS(1473), - [anon_sym_static] = ACTIONS(1473), - [anon_sym_auto] = ACTIONS(1473), - [anon_sym_register] = ACTIONS(1473), - [anon_sym_inline] = ACTIONS(1473), - [anon_sym___inline] = ACTIONS(1473), - [anon_sym___inline__] = ACTIONS(1473), - [anon_sym___forceinline] = ACTIONS(1473), - [anon_sym_thread_local] = ACTIONS(1473), - [anon_sym___thread] = ACTIONS(1473), - [anon_sym_const] = ACTIONS(1473), - [anon_sym_constexpr] = ACTIONS(1473), - [anon_sym_volatile] = ACTIONS(1473), - [anon_sym_restrict] = ACTIONS(1473), - [anon_sym___restrict__] = ACTIONS(1473), - [anon_sym__Atomic] = ACTIONS(1473), - [anon_sym__Noreturn] = ACTIONS(1473), - [anon_sym_noreturn] = ACTIONS(1473), - [sym_primitive_type] = ACTIONS(1473), - [anon_sym_enum] = ACTIONS(1473), - [anon_sym_struct] = ACTIONS(1473), - [anon_sym_union] = ACTIONS(1473), - [anon_sym_if] = ACTIONS(1473), - [anon_sym_switch] = ACTIONS(1473), - [anon_sym_case] = ACTIONS(1473), - [anon_sym_default] = ACTIONS(1473), - [anon_sym_while] = ACTIONS(1473), - [anon_sym_do] = ACTIONS(1473), - [anon_sym_for] = ACTIONS(1473), - [anon_sym_return] = ACTIONS(1473), - [anon_sym_break] = ACTIONS(1473), - [anon_sym_continue] = ACTIONS(1473), - [anon_sym_goto] = ACTIONS(1473), - [anon_sym___try] = ACTIONS(1473), - [anon_sym___leave] = ACTIONS(1473), - [anon_sym_DASH_DASH] = ACTIONS(1475), - [anon_sym_PLUS_PLUS] = ACTIONS(1475), - [anon_sym_sizeof] = ACTIONS(1473), - [anon_sym___alignof__] = ACTIONS(1473), - [anon_sym___alignof] = ACTIONS(1473), - [anon_sym__alignof] = ACTIONS(1473), - [anon_sym_alignof] = ACTIONS(1473), - [anon_sym__Alignof] = ACTIONS(1473), - [anon_sym_offsetof] = ACTIONS(1473), - [anon_sym__Generic] = ACTIONS(1473), - [anon_sym_asm] = ACTIONS(1473), - [anon_sym___asm__] = ACTIONS(1473), - [sym_number_literal] = ACTIONS(1475), - [anon_sym_L_SQUOTE] = ACTIONS(1475), - [anon_sym_u_SQUOTE] = ACTIONS(1475), - [anon_sym_U_SQUOTE] = ACTIONS(1475), - [anon_sym_u8_SQUOTE] = ACTIONS(1475), - [anon_sym_SQUOTE] = ACTIONS(1475), - [anon_sym_L_DQUOTE] = ACTIONS(1475), - [anon_sym_u_DQUOTE] = ACTIONS(1475), - [anon_sym_U_DQUOTE] = ACTIONS(1475), - [anon_sym_u8_DQUOTE] = ACTIONS(1475), - [anon_sym_DQUOTE] = ACTIONS(1475), - [sym_true] = ACTIONS(1473), - [sym_false] = ACTIONS(1473), - [anon_sym_NULL] = ACTIONS(1473), - [anon_sym_nullptr] = ACTIONS(1473), + [sym_identifier] = ACTIONS(1484), + [aux_sym_preproc_include_token1] = ACTIONS(1484), + [aux_sym_preproc_def_token1] = ACTIONS(1484), + [aux_sym_preproc_if_token1] = ACTIONS(1484), + [aux_sym_preproc_if_token2] = ACTIONS(1484), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1484), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1484), + [aux_sym_preproc_else_token1] = ACTIONS(1484), + [aux_sym_preproc_elif_token1] = ACTIONS(1484), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1484), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1484), + [sym_preproc_directive] = ACTIONS(1484), + [anon_sym_LPAREN2] = ACTIONS(1486), + [anon_sym_BANG] = ACTIONS(1486), + [anon_sym_TILDE] = ACTIONS(1486), + [anon_sym_DASH] = ACTIONS(1484), + [anon_sym_PLUS] = ACTIONS(1484), + [anon_sym_STAR] = ACTIONS(1486), + [anon_sym_AMP] = ACTIONS(1486), + [anon_sym_SEMI] = ACTIONS(1486), + [anon_sym___extension__] = ACTIONS(1484), + [anon_sym_typedef] = ACTIONS(1484), + [anon_sym_extern] = ACTIONS(1484), + [anon_sym___attribute__] = ACTIONS(1484), + [anon_sym___scanf] = ACTIONS(1484), + [anon_sym___printf] = ACTIONS(1484), + [anon_sym___read_mostly] = ACTIONS(1484), + [anon_sym___must_hold] = ACTIONS(1484), + [anon_sym___ro_after_init] = ACTIONS(1484), + [anon_sym___init] = ACTIONS(1484), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1486), + [anon_sym___declspec] = ACTIONS(1484), + [anon_sym___cdecl] = ACTIONS(1484), + [anon_sym___clrcall] = ACTIONS(1484), + [anon_sym___stdcall] = ACTIONS(1484), + [anon_sym___fastcall] = ACTIONS(1484), + [anon_sym___thiscall] = ACTIONS(1484), + [anon_sym___vectorcall] = ACTIONS(1484), + [anon_sym_LBRACE] = ACTIONS(1486), + [anon_sym_signed] = ACTIONS(1484), + [anon_sym_unsigned] = ACTIONS(1484), + [anon_sym_long] = ACTIONS(1484), + [anon_sym_short] = ACTIONS(1484), + [anon_sym_static] = ACTIONS(1484), + [anon_sym_auto] = ACTIONS(1484), + [anon_sym_register] = ACTIONS(1484), + [anon_sym_inline] = ACTIONS(1484), + [anon_sym___inline] = ACTIONS(1484), + [anon_sym___inline__] = ACTIONS(1484), + [anon_sym___forceinline] = ACTIONS(1484), + [anon_sym_thread_local] = ACTIONS(1484), + [anon_sym___thread] = ACTIONS(1484), + [anon_sym_const] = ACTIONS(1484), + [anon_sym_constexpr] = ACTIONS(1484), + [anon_sym_volatile] = ACTIONS(1484), + [anon_sym_restrict] = ACTIONS(1484), + [anon_sym___restrict__] = ACTIONS(1484), + [anon_sym__Atomic] = ACTIONS(1484), + [anon_sym__Noreturn] = ACTIONS(1484), + [anon_sym_noreturn] = ACTIONS(1484), + [sym_primitive_type] = ACTIONS(1484), + [anon_sym_enum] = ACTIONS(1484), + [anon_sym_struct] = ACTIONS(1484), + [anon_sym_union] = ACTIONS(1484), + [anon_sym_if] = ACTIONS(1484), + [anon_sym_switch] = ACTIONS(1484), + [anon_sym_case] = ACTIONS(1484), + [anon_sym_default] = ACTIONS(1484), + [anon_sym_while] = ACTIONS(1484), + [anon_sym_do] = ACTIONS(1484), + [anon_sym_for] = ACTIONS(1484), + [anon_sym_return] = ACTIONS(1484), + [anon_sym_break] = ACTIONS(1484), + [anon_sym_continue] = ACTIONS(1484), + [anon_sym_goto] = ACTIONS(1484), + [anon_sym___try] = ACTIONS(1484), + [anon_sym___leave] = ACTIONS(1484), + [anon_sym_DASH_DASH] = ACTIONS(1486), + [anon_sym_PLUS_PLUS] = ACTIONS(1486), + [anon_sym_sizeof] = ACTIONS(1484), + [anon_sym___alignof__] = ACTIONS(1484), + [anon_sym___alignof] = ACTIONS(1484), + [anon_sym__alignof] = ACTIONS(1484), + [anon_sym_alignof] = ACTIONS(1484), + [anon_sym__Alignof] = ACTIONS(1484), + [anon_sym_offsetof] = ACTIONS(1484), + [anon_sym__Generic] = ACTIONS(1484), + [anon_sym_asm] = ACTIONS(1484), + [anon_sym___asm__] = ACTIONS(1484), + [sym_number_literal] = ACTIONS(1486), + [anon_sym_L_SQUOTE] = ACTIONS(1486), + [anon_sym_u_SQUOTE] = ACTIONS(1486), + [anon_sym_U_SQUOTE] = ACTIONS(1486), + [anon_sym_u8_SQUOTE] = ACTIONS(1486), + [anon_sym_SQUOTE] = ACTIONS(1486), + [anon_sym_L_DQUOTE] = ACTIONS(1486), + [anon_sym_u_DQUOTE] = ACTIONS(1486), + [anon_sym_U_DQUOTE] = ACTIONS(1486), + [anon_sym_u8_DQUOTE] = ACTIONS(1486), + [anon_sym_DQUOTE] = ACTIONS(1486), + [sym_true] = ACTIONS(1484), + [sym_false] = ACTIONS(1484), + [anon_sym_NULL] = ACTIONS(1484), + [anon_sym_nullptr] = ACTIONS(1484), [sym_comment] = ACTIONS(3), }, [150] = { - [sym_identifier] = ACTIONS(1477), - [aux_sym_preproc_include_token1] = ACTIONS(1477), - [aux_sym_preproc_def_token1] = ACTIONS(1477), - [aux_sym_preproc_if_token1] = ACTIONS(1477), - [aux_sym_preproc_if_token2] = ACTIONS(1477), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1477), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1477), - [aux_sym_preproc_else_token1] = ACTIONS(1477), - [aux_sym_preproc_elif_token1] = ACTIONS(1477), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1477), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1477), - [sym_preproc_directive] = ACTIONS(1477), - [anon_sym_LPAREN2] = ACTIONS(1479), - [anon_sym_BANG] = ACTIONS(1479), - [anon_sym_TILDE] = ACTIONS(1479), - [anon_sym_DASH] = ACTIONS(1477), - [anon_sym_PLUS] = ACTIONS(1477), - [anon_sym_STAR] = ACTIONS(1479), - [anon_sym_AMP] = ACTIONS(1479), - [anon_sym_SEMI] = ACTIONS(1479), - [anon_sym___extension__] = ACTIONS(1477), - [anon_sym_typedef] = ACTIONS(1477), - [anon_sym_extern] = ACTIONS(1477), - [anon_sym___attribute__] = ACTIONS(1477), - [anon_sym___scanf] = ACTIONS(1477), - [anon_sym___printf] = ACTIONS(1477), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1479), - [anon_sym___declspec] = ACTIONS(1477), - [anon_sym___cdecl] = ACTIONS(1477), - [anon_sym___clrcall] = ACTIONS(1477), - [anon_sym___stdcall] = ACTIONS(1477), - [anon_sym___fastcall] = ACTIONS(1477), - [anon_sym___thiscall] = ACTIONS(1477), - [anon_sym___vectorcall] = ACTIONS(1477), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_signed] = ACTIONS(1477), - [anon_sym_unsigned] = ACTIONS(1477), - [anon_sym_long] = ACTIONS(1477), - [anon_sym_short] = ACTIONS(1477), - [anon_sym_static] = ACTIONS(1477), - [anon_sym_auto] = ACTIONS(1477), - [anon_sym_register] = ACTIONS(1477), - [anon_sym_inline] = ACTIONS(1477), - [anon_sym___inline] = ACTIONS(1477), - [anon_sym___inline__] = ACTIONS(1477), - [anon_sym___forceinline] = ACTIONS(1477), - [anon_sym_thread_local] = ACTIONS(1477), - [anon_sym___thread] = ACTIONS(1477), - [anon_sym_const] = ACTIONS(1477), - [anon_sym_constexpr] = ACTIONS(1477), - [anon_sym_volatile] = ACTIONS(1477), - [anon_sym_restrict] = ACTIONS(1477), - [anon_sym___restrict__] = ACTIONS(1477), - [anon_sym__Atomic] = ACTIONS(1477), - [anon_sym__Noreturn] = ACTIONS(1477), - [anon_sym_noreturn] = ACTIONS(1477), - [sym_primitive_type] = ACTIONS(1477), - [anon_sym_enum] = ACTIONS(1477), - [anon_sym_struct] = ACTIONS(1477), - [anon_sym_union] = ACTIONS(1477), - [anon_sym_if] = ACTIONS(1477), - [anon_sym_switch] = ACTIONS(1477), - [anon_sym_case] = ACTIONS(1477), - [anon_sym_default] = ACTIONS(1477), - [anon_sym_while] = ACTIONS(1477), - [anon_sym_do] = ACTIONS(1477), - [anon_sym_for] = ACTIONS(1477), - [anon_sym_return] = ACTIONS(1477), - [anon_sym_break] = ACTIONS(1477), - [anon_sym_continue] = ACTIONS(1477), - [anon_sym_goto] = ACTIONS(1477), - [anon_sym___try] = ACTIONS(1477), - [anon_sym___leave] = ACTIONS(1477), - [anon_sym_DASH_DASH] = ACTIONS(1479), - [anon_sym_PLUS_PLUS] = ACTIONS(1479), - [anon_sym_sizeof] = ACTIONS(1477), - [anon_sym___alignof__] = ACTIONS(1477), - [anon_sym___alignof] = ACTIONS(1477), - [anon_sym__alignof] = ACTIONS(1477), - [anon_sym_alignof] = ACTIONS(1477), - [anon_sym__Alignof] = ACTIONS(1477), - [anon_sym_offsetof] = ACTIONS(1477), - [anon_sym__Generic] = ACTIONS(1477), - [anon_sym_asm] = ACTIONS(1477), - [anon_sym___asm__] = ACTIONS(1477), - [sym_number_literal] = ACTIONS(1479), - [anon_sym_L_SQUOTE] = ACTIONS(1479), - [anon_sym_u_SQUOTE] = ACTIONS(1479), - [anon_sym_U_SQUOTE] = ACTIONS(1479), - [anon_sym_u8_SQUOTE] = ACTIONS(1479), - [anon_sym_SQUOTE] = ACTIONS(1479), - [anon_sym_L_DQUOTE] = ACTIONS(1479), - [anon_sym_u_DQUOTE] = ACTIONS(1479), - [anon_sym_U_DQUOTE] = ACTIONS(1479), - [anon_sym_u8_DQUOTE] = ACTIONS(1479), - [anon_sym_DQUOTE] = ACTIONS(1479), - [sym_true] = ACTIONS(1477), - [sym_false] = ACTIONS(1477), - [anon_sym_NULL] = ACTIONS(1477), - [anon_sym_nullptr] = ACTIONS(1477), + [sym_identifier] = ACTIONS(1488), + [aux_sym_preproc_include_token1] = ACTIONS(1488), + [aux_sym_preproc_def_token1] = ACTIONS(1488), + [aux_sym_preproc_if_token1] = ACTIONS(1488), + [aux_sym_preproc_if_token2] = ACTIONS(1488), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1488), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1488), + [aux_sym_preproc_else_token1] = ACTIONS(1488), + [aux_sym_preproc_elif_token1] = ACTIONS(1488), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1488), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1488), + [sym_preproc_directive] = ACTIONS(1488), + [anon_sym_LPAREN2] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(1490), + [anon_sym_TILDE] = ACTIONS(1490), + [anon_sym_DASH] = ACTIONS(1488), + [anon_sym_PLUS] = ACTIONS(1488), + [anon_sym_STAR] = ACTIONS(1490), + [anon_sym_AMP] = ACTIONS(1490), + [anon_sym_SEMI] = ACTIONS(1490), + [anon_sym___extension__] = ACTIONS(1488), + [anon_sym_typedef] = ACTIONS(1488), + [anon_sym_extern] = ACTIONS(1488), + [anon_sym___attribute__] = ACTIONS(1488), + [anon_sym___scanf] = ACTIONS(1488), + [anon_sym___printf] = ACTIONS(1488), + [anon_sym___read_mostly] = ACTIONS(1488), + [anon_sym___must_hold] = ACTIONS(1488), + [anon_sym___ro_after_init] = ACTIONS(1488), + [anon_sym___init] = ACTIONS(1488), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1490), + [anon_sym___declspec] = ACTIONS(1488), + [anon_sym___cdecl] = ACTIONS(1488), + [anon_sym___clrcall] = ACTIONS(1488), + [anon_sym___stdcall] = ACTIONS(1488), + [anon_sym___fastcall] = ACTIONS(1488), + [anon_sym___thiscall] = ACTIONS(1488), + [anon_sym___vectorcall] = ACTIONS(1488), + [anon_sym_LBRACE] = ACTIONS(1490), + [anon_sym_signed] = ACTIONS(1488), + [anon_sym_unsigned] = ACTIONS(1488), + [anon_sym_long] = ACTIONS(1488), + [anon_sym_short] = ACTIONS(1488), + [anon_sym_static] = ACTIONS(1488), + [anon_sym_auto] = ACTIONS(1488), + [anon_sym_register] = ACTIONS(1488), + [anon_sym_inline] = ACTIONS(1488), + [anon_sym___inline] = ACTIONS(1488), + [anon_sym___inline__] = ACTIONS(1488), + [anon_sym___forceinline] = ACTIONS(1488), + [anon_sym_thread_local] = ACTIONS(1488), + [anon_sym___thread] = ACTIONS(1488), + [anon_sym_const] = ACTIONS(1488), + [anon_sym_constexpr] = ACTIONS(1488), + [anon_sym_volatile] = ACTIONS(1488), + [anon_sym_restrict] = ACTIONS(1488), + [anon_sym___restrict__] = ACTIONS(1488), + [anon_sym__Atomic] = ACTIONS(1488), + [anon_sym__Noreturn] = ACTIONS(1488), + [anon_sym_noreturn] = ACTIONS(1488), + [sym_primitive_type] = ACTIONS(1488), + [anon_sym_enum] = ACTIONS(1488), + [anon_sym_struct] = ACTIONS(1488), + [anon_sym_union] = ACTIONS(1488), + [anon_sym_if] = ACTIONS(1488), + [anon_sym_switch] = ACTIONS(1488), + [anon_sym_case] = ACTIONS(1488), + [anon_sym_default] = ACTIONS(1488), + [anon_sym_while] = ACTIONS(1488), + [anon_sym_do] = ACTIONS(1488), + [anon_sym_for] = ACTIONS(1488), + [anon_sym_return] = ACTIONS(1488), + [anon_sym_break] = ACTIONS(1488), + [anon_sym_continue] = ACTIONS(1488), + [anon_sym_goto] = ACTIONS(1488), + [anon_sym___try] = ACTIONS(1488), + [anon_sym___leave] = ACTIONS(1488), + [anon_sym_DASH_DASH] = ACTIONS(1490), + [anon_sym_PLUS_PLUS] = ACTIONS(1490), + [anon_sym_sizeof] = ACTIONS(1488), + [anon_sym___alignof__] = ACTIONS(1488), + [anon_sym___alignof] = ACTIONS(1488), + [anon_sym__alignof] = ACTIONS(1488), + [anon_sym_alignof] = ACTIONS(1488), + [anon_sym__Alignof] = ACTIONS(1488), + [anon_sym_offsetof] = ACTIONS(1488), + [anon_sym__Generic] = ACTIONS(1488), + [anon_sym_asm] = ACTIONS(1488), + [anon_sym___asm__] = ACTIONS(1488), + [sym_number_literal] = ACTIONS(1490), + [anon_sym_L_SQUOTE] = ACTIONS(1490), + [anon_sym_u_SQUOTE] = ACTIONS(1490), + [anon_sym_U_SQUOTE] = ACTIONS(1490), + [anon_sym_u8_SQUOTE] = ACTIONS(1490), + [anon_sym_SQUOTE] = ACTIONS(1490), + [anon_sym_L_DQUOTE] = ACTIONS(1490), + [anon_sym_u_DQUOTE] = ACTIONS(1490), + [anon_sym_U_DQUOTE] = ACTIONS(1490), + [anon_sym_u8_DQUOTE] = ACTIONS(1490), + [anon_sym_DQUOTE] = ACTIONS(1490), + [sym_true] = ACTIONS(1488), + [sym_false] = ACTIONS(1488), + [anon_sym_NULL] = ACTIONS(1488), + [anon_sym_nullptr] = ACTIONS(1488), [sym_comment] = ACTIONS(3), }, [151] = { - [sym_identifier] = ACTIONS(1481), - [aux_sym_preproc_include_token1] = ACTIONS(1481), - [aux_sym_preproc_def_token1] = ACTIONS(1481), - [aux_sym_preproc_if_token1] = ACTIONS(1481), - [aux_sym_preproc_if_token2] = ACTIONS(1481), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1481), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1481), - [aux_sym_preproc_else_token1] = ACTIONS(1481), - [aux_sym_preproc_elif_token1] = ACTIONS(1481), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1481), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1481), - [sym_preproc_directive] = ACTIONS(1481), - [anon_sym_LPAREN2] = ACTIONS(1483), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_PLUS] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_SEMI] = ACTIONS(1483), - [anon_sym___extension__] = ACTIONS(1481), - [anon_sym_typedef] = ACTIONS(1481), - [anon_sym_extern] = ACTIONS(1481), - [anon_sym___attribute__] = ACTIONS(1481), - [anon_sym___scanf] = ACTIONS(1481), - [anon_sym___printf] = ACTIONS(1481), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1483), - [anon_sym___declspec] = ACTIONS(1481), - [anon_sym___cdecl] = ACTIONS(1481), - [anon_sym___clrcall] = ACTIONS(1481), - [anon_sym___stdcall] = ACTIONS(1481), - [anon_sym___fastcall] = ACTIONS(1481), - [anon_sym___thiscall] = ACTIONS(1481), - [anon_sym___vectorcall] = ACTIONS(1481), - [anon_sym_LBRACE] = ACTIONS(1483), - [anon_sym_signed] = ACTIONS(1481), - [anon_sym_unsigned] = ACTIONS(1481), - [anon_sym_long] = ACTIONS(1481), - [anon_sym_short] = ACTIONS(1481), - [anon_sym_static] = ACTIONS(1481), - [anon_sym_auto] = ACTIONS(1481), - [anon_sym_register] = ACTIONS(1481), - [anon_sym_inline] = ACTIONS(1481), - [anon_sym___inline] = ACTIONS(1481), - [anon_sym___inline__] = ACTIONS(1481), - [anon_sym___forceinline] = ACTIONS(1481), - [anon_sym_thread_local] = ACTIONS(1481), - [anon_sym___thread] = ACTIONS(1481), - [anon_sym_const] = ACTIONS(1481), - [anon_sym_constexpr] = ACTIONS(1481), - [anon_sym_volatile] = ACTIONS(1481), - [anon_sym_restrict] = ACTIONS(1481), - [anon_sym___restrict__] = ACTIONS(1481), - [anon_sym__Atomic] = ACTIONS(1481), - [anon_sym__Noreturn] = ACTIONS(1481), - [anon_sym_noreturn] = ACTIONS(1481), - [sym_primitive_type] = ACTIONS(1481), - [anon_sym_enum] = ACTIONS(1481), - [anon_sym_struct] = ACTIONS(1481), - [anon_sym_union] = ACTIONS(1481), - [anon_sym_if] = ACTIONS(1481), - [anon_sym_switch] = ACTIONS(1481), - [anon_sym_case] = ACTIONS(1481), - [anon_sym_default] = ACTIONS(1481), - [anon_sym_while] = ACTIONS(1481), - [anon_sym_do] = ACTIONS(1481), - [anon_sym_for] = ACTIONS(1481), - [anon_sym_return] = ACTIONS(1481), - [anon_sym_break] = ACTIONS(1481), - [anon_sym_continue] = ACTIONS(1481), - [anon_sym_goto] = ACTIONS(1481), - [anon_sym___try] = ACTIONS(1481), - [anon_sym___leave] = ACTIONS(1481), - [anon_sym_DASH_DASH] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_sizeof] = ACTIONS(1481), - [anon_sym___alignof__] = ACTIONS(1481), - [anon_sym___alignof] = ACTIONS(1481), - [anon_sym__alignof] = ACTIONS(1481), - [anon_sym_alignof] = ACTIONS(1481), - [anon_sym__Alignof] = ACTIONS(1481), - [anon_sym_offsetof] = ACTIONS(1481), - [anon_sym__Generic] = ACTIONS(1481), - [anon_sym_asm] = ACTIONS(1481), - [anon_sym___asm__] = ACTIONS(1481), - [sym_number_literal] = ACTIONS(1483), - [anon_sym_L_SQUOTE] = ACTIONS(1483), - [anon_sym_u_SQUOTE] = ACTIONS(1483), - [anon_sym_U_SQUOTE] = ACTIONS(1483), - [anon_sym_u8_SQUOTE] = ACTIONS(1483), - [anon_sym_SQUOTE] = ACTIONS(1483), - [anon_sym_L_DQUOTE] = ACTIONS(1483), - [anon_sym_u_DQUOTE] = ACTIONS(1483), - [anon_sym_U_DQUOTE] = ACTIONS(1483), - [anon_sym_u8_DQUOTE] = ACTIONS(1483), - [anon_sym_DQUOTE] = ACTIONS(1483), - [sym_true] = ACTIONS(1481), - [sym_false] = ACTIONS(1481), - [anon_sym_NULL] = ACTIONS(1481), - [anon_sym_nullptr] = ACTIONS(1481), + [sym_identifier] = ACTIONS(1492), + [aux_sym_preproc_include_token1] = ACTIONS(1492), + [aux_sym_preproc_def_token1] = ACTIONS(1492), + [aux_sym_preproc_if_token1] = ACTIONS(1492), + [aux_sym_preproc_if_token2] = ACTIONS(1492), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1492), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1492), + [aux_sym_preproc_else_token1] = ACTIONS(1492), + [aux_sym_preproc_elif_token1] = ACTIONS(1492), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1492), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1492), + [sym_preproc_directive] = ACTIONS(1492), + [anon_sym_LPAREN2] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(1494), + [anon_sym_TILDE] = ACTIONS(1494), + [anon_sym_DASH] = ACTIONS(1492), + [anon_sym_PLUS] = ACTIONS(1492), + [anon_sym_STAR] = ACTIONS(1494), + [anon_sym_AMP] = ACTIONS(1494), + [anon_sym_SEMI] = ACTIONS(1494), + [anon_sym___extension__] = ACTIONS(1492), + [anon_sym_typedef] = ACTIONS(1492), + [anon_sym_extern] = ACTIONS(1492), + [anon_sym___attribute__] = ACTIONS(1492), + [anon_sym___scanf] = ACTIONS(1492), + [anon_sym___printf] = ACTIONS(1492), + [anon_sym___read_mostly] = ACTIONS(1492), + [anon_sym___must_hold] = ACTIONS(1492), + [anon_sym___ro_after_init] = ACTIONS(1492), + [anon_sym___init] = ACTIONS(1492), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1494), + [anon_sym___declspec] = ACTIONS(1492), + [anon_sym___cdecl] = ACTIONS(1492), + [anon_sym___clrcall] = ACTIONS(1492), + [anon_sym___stdcall] = ACTIONS(1492), + [anon_sym___fastcall] = ACTIONS(1492), + [anon_sym___thiscall] = ACTIONS(1492), + [anon_sym___vectorcall] = ACTIONS(1492), + [anon_sym_LBRACE] = ACTIONS(1494), + [anon_sym_signed] = ACTIONS(1492), + [anon_sym_unsigned] = ACTIONS(1492), + [anon_sym_long] = ACTIONS(1492), + [anon_sym_short] = ACTIONS(1492), + [anon_sym_static] = ACTIONS(1492), + [anon_sym_auto] = ACTIONS(1492), + [anon_sym_register] = ACTIONS(1492), + [anon_sym_inline] = ACTIONS(1492), + [anon_sym___inline] = ACTIONS(1492), + [anon_sym___inline__] = ACTIONS(1492), + [anon_sym___forceinline] = ACTIONS(1492), + [anon_sym_thread_local] = ACTIONS(1492), + [anon_sym___thread] = ACTIONS(1492), + [anon_sym_const] = ACTIONS(1492), + [anon_sym_constexpr] = ACTIONS(1492), + [anon_sym_volatile] = ACTIONS(1492), + [anon_sym_restrict] = ACTIONS(1492), + [anon_sym___restrict__] = ACTIONS(1492), + [anon_sym__Atomic] = ACTIONS(1492), + [anon_sym__Noreturn] = ACTIONS(1492), + [anon_sym_noreturn] = ACTIONS(1492), + [sym_primitive_type] = ACTIONS(1492), + [anon_sym_enum] = ACTIONS(1492), + [anon_sym_struct] = ACTIONS(1492), + [anon_sym_union] = ACTIONS(1492), + [anon_sym_if] = ACTIONS(1492), + [anon_sym_switch] = ACTIONS(1492), + [anon_sym_case] = ACTIONS(1492), + [anon_sym_default] = ACTIONS(1492), + [anon_sym_while] = ACTIONS(1492), + [anon_sym_do] = ACTIONS(1492), + [anon_sym_for] = ACTIONS(1492), + [anon_sym_return] = ACTIONS(1492), + [anon_sym_break] = ACTIONS(1492), + [anon_sym_continue] = ACTIONS(1492), + [anon_sym_goto] = ACTIONS(1492), + [anon_sym___try] = ACTIONS(1492), + [anon_sym___leave] = ACTIONS(1492), + [anon_sym_DASH_DASH] = ACTIONS(1494), + [anon_sym_PLUS_PLUS] = ACTIONS(1494), + [anon_sym_sizeof] = ACTIONS(1492), + [anon_sym___alignof__] = ACTIONS(1492), + [anon_sym___alignof] = ACTIONS(1492), + [anon_sym__alignof] = ACTIONS(1492), + [anon_sym_alignof] = ACTIONS(1492), + [anon_sym__Alignof] = ACTIONS(1492), + [anon_sym_offsetof] = ACTIONS(1492), + [anon_sym__Generic] = ACTIONS(1492), + [anon_sym_asm] = ACTIONS(1492), + [anon_sym___asm__] = ACTIONS(1492), + [sym_number_literal] = ACTIONS(1494), + [anon_sym_L_SQUOTE] = ACTIONS(1494), + [anon_sym_u_SQUOTE] = ACTIONS(1494), + [anon_sym_U_SQUOTE] = ACTIONS(1494), + [anon_sym_u8_SQUOTE] = ACTIONS(1494), + [anon_sym_SQUOTE] = ACTIONS(1494), + [anon_sym_L_DQUOTE] = ACTIONS(1494), + [anon_sym_u_DQUOTE] = ACTIONS(1494), + [anon_sym_U_DQUOTE] = ACTIONS(1494), + [anon_sym_u8_DQUOTE] = ACTIONS(1494), + [anon_sym_DQUOTE] = ACTIONS(1494), + [sym_true] = ACTIONS(1492), + [sym_false] = ACTIONS(1492), + [anon_sym_NULL] = ACTIONS(1492), + [anon_sym_nullptr] = ACTIONS(1492), [sym_comment] = ACTIONS(3), }, [152] = { - [sym_identifier] = ACTIONS(1485), - [aux_sym_preproc_include_token1] = ACTIONS(1485), - [aux_sym_preproc_def_token1] = ACTIONS(1485), - [aux_sym_preproc_if_token1] = ACTIONS(1485), - [aux_sym_preproc_if_token2] = ACTIONS(1485), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1485), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1485), - [aux_sym_preproc_else_token1] = ACTIONS(1485), - [aux_sym_preproc_elif_token1] = ACTIONS(1485), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1485), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1485), - [sym_preproc_directive] = ACTIONS(1485), - [anon_sym_LPAREN2] = ACTIONS(1487), - [anon_sym_BANG] = ACTIONS(1487), - [anon_sym_TILDE] = ACTIONS(1487), - [anon_sym_DASH] = ACTIONS(1485), - [anon_sym_PLUS] = ACTIONS(1485), - [anon_sym_STAR] = ACTIONS(1487), - [anon_sym_AMP] = ACTIONS(1487), - [anon_sym_SEMI] = ACTIONS(1487), - [anon_sym___extension__] = ACTIONS(1485), - [anon_sym_typedef] = ACTIONS(1485), - [anon_sym_extern] = ACTIONS(1485), - [anon_sym___attribute__] = ACTIONS(1485), - [anon_sym___scanf] = ACTIONS(1485), - [anon_sym___printf] = ACTIONS(1485), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1487), - [anon_sym___declspec] = ACTIONS(1485), - [anon_sym___cdecl] = ACTIONS(1485), - [anon_sym___clrcall] = ACTIONS(1485), - [anon_sym___stdcall] = ACTIONS(1485), - [anon_sym___fastcall] = ACTIONS(1485), - [anon_sym___thiscall] = ACTIONS(1485), - [anon_sym___vectorcall] = ACTIONS(1485), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_signed] = ACTIONS(1485), - [anon_sym_unsigned] = ACTIONS(1485), - [anon_sym_long] = ACTIONS(1485), - [anon_sym_short] = ACTIONS(1485), - [anon_sym_static] = ACTIONS(1485), - [anon_sym_auto] = ACTIONS(1485), - [anon_sym_register] = ACTIONS(1485), - [anon_sym_inline] = ACTIONS(1485), - [anon_sym___inline] = ACTIONS(1485), - [anon_sym___inline__] = ACTIONS(1485), - [anon_sym___forceinline] = ACTIONS(1485), - [anon_sym_thread_local] = ACTIONS(1485), - [anon_sym___thread] = ACTIONS(1485), - [anon_sym_const] = ACTIONS(1485), - [anon_sym_constexpr] = ACTIONS(1485), - [anon_sym_volatile] = ACTIONS(1485), - [anon_sym_restrict] = ACTIONS(1485), - [anon_sym___restrict__] = ACTIONS(1485), - [anon_sym__Atomic] = ACTIONS(1485), - [anon_sym__Noreturn] = ACTIONS(1485), - [anon_sym_noreturn] = ACTIONS(1485), - [sym_primitive_type] = ACTIONS(1485), - [anon_sym_enum] = ACTIONS(1485), - [anon_sym_struct] = ACTIONS(1485), - [anon_sym_union] = ACTIONS(1485), - [anon_sym_if] = ACTIONS(1485), - [anon_sym_switch] = ACTIONS(1485), - [anon_sym_case] = ACTIONS(1485), - [anon_sym_default] = ACTIONS(1485), - [anon_sym_while] = ACTIONS(1485), - [anon_sym_do] = ACTIONS(1485), - [anon_sym_for] = ACTIONS(1485), - [anon_sym_return] = ACTIONS(1485), - [anon_sym_break] = ACTIONS(1485), - [anon_sym_continue] = ACTIONS(1485), - [anon_sym_goto] = ACTIONS(1485), - [anon_sym___try] = ACTIONS(1485), - [anon_sym___leave] = ACTIONS(1485), - [anon_sym_DASH_DASH] = ACTIONS(1487), - [anon_sym_PLUS_PLUS] = ACTIONS(1487), - [anon_sym_sizeof] = ACTIONS(1485), - [anon_sym___alignof__] = ACTIONS(1485), - [anon_sym___alignof] = ACTIONS(1485), - [anon_sym__alignof] = ACTIONS(1485), - [anon_sym_alignof] = ACTIONS(1485), - [anon_sym__Alignof] = ACTIONS(1485), - [anon_sym_offsetof] = ACTIONS(1485), - [anon_sym__Generic] = ACTIONS(1485), - [anon_sym_asm] = ACTIONS(1485), - [anon_sym___asm__] = ACTIONS(1485), - [sym_number_literal] = ACTIONS(1487), - [anon_sym_L_SQUOTE] = ACTIONS(1487), - [anon_sym_u_SQUOTE] = ACTIONS(1487), - [anon_sym_U_SQUOTE] = ACTIONS(1487), - [anon_sym_u8_SQUOTE] = ACTIONS(1487), - [anon_sym_SQUOTE] = ACTIONS(1487), - [anon_sym_L_DQUOTE] = ACTIONS(1487), - [anon_sym_u_DQUOTE] = ACTIONS(1487), - [anon_sym_U_DQUOTE] = ACTIONS(1487), - [anon_sym_u8_DQUOTE] = ACTIONS(1487), - [anon_sym_DQUOTE] = ACTIONS(1487), - [sym_true] = ACTIONS(1485), - [sym_false] = ACTIONS(1485), - [anon_sym_NULL] = ACTIONS(1485), - [anon_sym_nullptr] = ACTIONS(1485), + [sym_identifier] = ACTIONS(1496), + [aux_sym_preproc_include_token1] = ACTIONS(1496), + [aux_sym_preproc_def_token1] = ACTIONS(1496), + [aux_sym_preproc_if_token1] = ACTIONS(1496), + [aux_sym_preproc_if_token2] = ACTIONS(1496), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1496), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1496), + [aux_sym_preproc_else_token1] = ACTIONS(1496), + [aux_sym_preproc_elif_token1] = ACTIONS(1496), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1496), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1496), + [sym_preproc_directive] = ACTIONS(1496), + [anon_sym_LPAREN2] = ACTIONS(1498), + [anon_sym_BANG] = ACTIONS(1498), + [anon_sym_TILDE] = ACTIONS(1498), + [anon_sym_DASH] = ACTIONS(1496), + [anon_sym_PLUS] = ACTIONS(1496), + [anon_sym_STAR] = ACTIONS(1498), + [anon_sym_AMP] = ACTIONS(1498), + [anon_sym_SEMI] = ACTIONS(1498), + [anon_sym___extension__] = ACTIONS(1496), + [anon_sym_typedef] = ACTIONS(1496), + [anon_sym_extern] = ACTIONS(1496), + [anon_sym___attribute__] = ACTIONS(1496), + [anon_sym___scanf] = ACTIONS(1496), + [anon_sym___printf] = ACTIONS(1496), + [anon_sym___read_mostly] = ACTIONS(1496), + [anon_sym___must_hold] = ACTIONS(1496), + [anon_sym___ro_after_init] = ACTIONS(1496), + [anon_sym___init] = ACTIONS(1496), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1498), + [anon_sym___declspec] = ACTIONS(1496), + [anon_sym___cdecl] = ACTIONS(1496), + [anon_sym___clrcall] = ACTIONS(1496), + [anon_sym___stdcall] = ACTIONS(1496), + [anon_sym___fastcall] = ACTIONS(1496), + [anon_sym___thiscall] = ACTIONS(1496), + [anon_sym___vectorcall] = ACTIONS(1496), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_signed] = ACTIONS(1496), + [anon_sym_unsigned] = ACTIONS(1496), + [anon_sym_long] = ACTIONS(1496), + [anon_sym_short] = ACTIONS(1496), + [anon_sym_static] = ACTIONS(1496), + [anon_sym_auto] = ACTIONS(1496), + [anon_sym_register] = ACTIONS(1496), + [anon_sym_inline] = ACTIONS(1496), + [anon_sym___inline] = ACTIONS(1496), + [anon_sym___inline__] = ACTIONS(1496), + [anon_sym___forceinline] = ACTIONS(1496), + [anon_sym_thread_local] = ACTIONS(1496), + [anon_sym___thread] = ACTIONS(1496), + [anon_sym_const] = ACTIONS(1496), + [anon_sym_constexpr] = ACTIONS(1496), + [anon_sym_volatile] = ACTIONS(1496), + [anon_sym_restrict] = ACTIONS(1496), + [anon_sym___restrict__] = ACTIONS(1496), + [anon_sym__Atomic] = ACTIONS(1496), + [anon_sym__Noreturn] = ACTIONS(1496), + [anon_sym_noreturn] = ACTIONS(1496), + [sym_primitive_type] = ACTIONS(1496), + [anon_sym_enum] = ACTIONS(1496), + [anon_sym_struct] = ACTIONS(1496), + [anon_sym_union] = ACTIONS(1496), + [anon_sym_if] = ACTIONS(1496), + [anon_sym_switch] = ACTIONS(1496), + [anon_sym_case] = ACTIONS(1496), + [anon_sym_default] = ACTIONS(1496), + [anon_sym_while] = ACTIONS(1496), + [anon_sym_do] = ACTIONS(1496), + [anon_sym_for] = ACTIONS(1496), + [anon_sym_return] = ACTIONS(1496), + [anon_sym_break] = ACTIONS(1496), + [anon_sym_continue] = ACTIONS(1496), + [anon_sym_goto] = ACTIONS(1496), + [anon_sym___try] = ACTIONS(1496), + [anon_sym___leave] = ACTIONS(1496), + [anon_sym_DASH_DASH] = ACTIONS(1498), + [anon_sym_PLUS_PLUS] = ACTIONS(1498), + [anon_sym_sizeof] = ACTIONS(1496), + [anon_sym___alignof__] = ACTIONS(1496), + [anon_sym___alignof] = ACTIONS(1496), + [anon_sym__alignof] = ACTIONS(1496), + [anon_sym_alignof] = ACTIONS(1496), + [anon_sym__Alignof] = ACTIONS(1496), + [anon_sym_offsetof] = ACTIONS(1496), + [anon_sym__Generic] = ACTIONS(1496), + [anon_sym_asm] = ACTIONS(1496), + [anon_sym___asm__] = ACTIONS(1496), + [sym_number_literal] = ACTIONS(1498), + [anon_sym_L_SQUOTE] = ACTIONS(1498), + [anon_sym_u_SQUOTE] = ACTIONS(1498), + [anon_sym_U_SQUOTE] = ACTIONS(1498), + [anon_sym_u8_SQUOTE] = ACTIONS(1498), + [anon_sym_SQUOTE] = ACTIONS(1498), + [anon_sym_L_DQUOTE] = ACTIONS(1498), + [anon_sym_u_DQUOTE] = ACTIONS(1498), + [anon_sym_U_DQUOTE] = ACTIONS(1498), + [anon_sym_u8_DQUOTE] = ACTIONS(1498), + [anon_sym_DQUOTE] = ACTIONS(1498), + [sym_true] = ACTIONS(1496), + [sym_false] = ACTIONS(1496), + [anon_sym_NULL] = ACTIONS(1496), + [anon_sym_nullptr] = ACTIONS(1496), [sym_comment] = ACTIONS(3), }, [153] = { - [sym_identifier] = ACTIONS(1489), - [aux_sym_preproc_include_token1] = ACTIONS(1489), - [aux_sym_preproc_def_token1] = ACTIONS(1489), - [aux_sym_preproc_if_token1] = ACTIONS(1489), - [aux_sym_preproc_if_token2] = ACTIONS(1489), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1489), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1489), - [aux_sym_preproc_else_token1] = ACTIONS(1489), - [aux_sym_preproc_elif_token1] = ACTIONS(1489), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1489), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1489), - [sym_preproc_directive] = ACTIONS(1489), - [anon_sym_LPAREN2] = ACTIONS(1491), - [anon_sym_BANG] = ACTIONS(1491), - [anon_sym_TILDE] = ACTIONS(1491), - [anon_sym_DASH] = ACTIONS(1489), - [anon_sym_PLUS] = ACTIONS(1489), - [anon_sym_STAR] = ACTIONS(1491), - [anon_sym_AMP] = ACTIONS(1491), - [anon_sym_SEMI] = ACTIONS(1491), - [anon_sym___extension__] = ACTIONS(1489), - [anon_sym_typedef] = ACTIONS(1489), - [anon_sym_extern] = ACTIONS(1489), - [anon_sym___attribute__] = ACTIONS(1489), - [anon_sym___scanf] = ACTIONS(1489), - [anon_sym___printf] = ACTIONS(1489), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1491), - [anon_sym___declspec] = ACTIONS(1489), - [anon_sym___cdecl] = ACTIONS(1489), - [anon_sym___clrcall] = ACTIONS(1489), - [anon_sym___stdcall] = ACTIONS(1489), - [anon_sym___fastcall] = ACTIONS(1489), - [anon_sym___thiscall] = ACTIONS(1489), - [anon_sym___vectorcall] = ACTIONS(1489), - [anon_sym_LBRACE] = ACTIONS(1491), - [anon_sym_signed] = ACTIONS(1489), - [anon_sym_unsigned] = ACTIONS(1489), - [anon_sym_long] = ACTIONS(1489), - [anon_sym_short] = ACTIONS(1489), - [anon_sym_static] = ACTIONS(1489), - [anon_sym_auto] = ACTIONS(1489), - [anon_sym_register] = ACTIONS(1489), - [anon_sym_inline] = ACTIONS(1489), - [anon_sym___inline] = ACTIONS(1489), - [anon_sym___inline__] = ACTIONS(1489), - [anon_sym___forceinline] = ACTIONS(1489), - [anon_sym_thread_local] = ACTIONS(1489), - [anon_sym___thread] = ACTIONS(1489), - [anon_sym_const] = ACTIONS(1489), - [anon_sym_constexpr] = ACTIONS(1489), - [anon_sym_volatile] = ACTIONS(1489), - [anon_sym_restrict] = ACTIONS(1489), - [anon_sym___restrict__] = ACTIONS(1489), - [anon_sym__Atomic] = ACTIONS(1489), - [anon_sym__Noreturn] = ACTIONS(1489), - [anon_sym_noreturn] = ACTIONS(1489), - [sym_primitive_type] = ACTIONS(1489), - [anon_sym_enum] = ACTIONS(1489), - [anon_sym_struct] = ACTIONS(1489), - [anon_sym_union] = ACTIONS(1489), - [anon_sym_if] = ACTIONS(1489), - [anon_sym_switch] = ACTIONS(1489), - [anon_sym_case] = ACTIONS(1489), - [anon_sym_default] = ACTIONS(1489), - [anon_sym_while] = ACTIONS(1489), - [anon_sym_do] = ACTIONS(1489), - [anon_sym_for] = ACTIONS(1489), - [anon_sym_return] = ACTIONS(1489), - [anon_sym_break] = ACTIONS(1489), - [anon_sym_continue] = ACTIONS(1489), - [anon_sym_goto] = ACTIONS(1489), - [anon_sym___try] = ACTIONS(1489), - [anon_sym___leave] = ACTIONS(1489), - [anon_sym_DASH_DASH] = ACTIONS(1491), - [anon_sym_PLUS_PLUS] = ACTIONS(1491), - [anon_sym_sizeof] = ACTIONS(1489), - [anon_sym___alignof__] = ACTIONS(1489), - [anon_sym___alignof] = ACTIONS(1489), - [anon_sym__alignof] = ACTIONS(1489), - [anon_sym_alignof] = ACTIONS(1489), - [anon_sym__Alignof] = ACTIONS(1489), - [anon_sym_offsetof] = ACTIONS(1489), - [anon_sym__Generic] = ACTIONS(1489), - [anon_sym_asm] = ACTIONS(1489), - [anon_sym___asm__] = ACTIONS(1489), - [sym_number_literal] = ACTIONS(1491), - [anon_sym_L_SQUOTE] = ACTIONS(1491), - [anon_sym_u_SQUOTE] = ACTIONS(1491), - [anon_sym_U_SQUOTE] = ACTIONS(1491), - [anon_sym_u8_SQUOTE] = ACTIONS(1491), - [anon_sym_SQUOTE] = ACTIONS(1491), - [anon_sym_L_DQUOTE] = ACTIONS(1491), - [anon_sym_u_DQUOTE] = ACTIONS(1491), - [anon_sym_U_DQUOTE] = ACTIONS(1491), - [anon_sym_u8_DQUOTE] = ACTIONS(1491), - [anon_sym_DQUOTE] = ACTIONS(1491), - [sym_true] = ACTIONS(1489), - [sym_false] = ACTIONS(1489), - [anon_sym_NULL] = ACTIONS(1489), - [anon_sym_nullptr] = ACTIONS(1489), + [sym_identifier] = ACTIONS(1500), + [aux_sym_preproc_include_token1] = ACTIONS(1500), + [aux_sym_preproc_def_token1] = ACTIONS(1500), + [aux_sym_preproc_if_token1] = ACTIONS(1500), + [aux_sym_preproc_if_token2] = ACTIONS(1500), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1500), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1500), + [aux_sym_preproc_else_token1] = ACTIONS(1500), + [aux_sym_preproc_elif_token1] = ACTIONS(1500), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1500), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1500), + [sym_preproc_directive] = ACTIONS(1500), + [anon_sym_LPAREN2] = ACTIONS(1502), + [anon_sym_BANG] = ACTIONS(1502), + [anon_sym_TILDE] = ACTIONS(1502), + [anon_sym_DASH] = ACTIONS(1500), + [anon_sym_PLUS] = ACTIONS(1500), + [anon_sym_STAR] = ACTIONS(1502), + [anon_sym_AMP] = ACTIONS(1502), + [anon_sym_SEMI] = ACTIONS(1502), + [anon_sym___extension__] = ACTIONS(1500), + [anon_sym_typedef] = ACTIONS(1500), + [anon_sym_extern] = ACTIONS(1500), + [anon_sym___attribute__] = ACTIONS(1500), + [anon_sym___scanf] = ACTIONS(1500), + [anon_sym___printf] = ACTIONS(1500), + [anon_sym___read_mostly] = ACTIONS(1500), + [anon_sym___must_hold] = ACTIONS(1500), + [anon_sym___ro_after_init] = ACTIONS(1500), + [anon_sym___init] = ACTIONS(1500), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1502), + [anon_sym___declspec] = ACTIONS(1500), + [anon_sym___cdecl] = ACTIONS(1500), + [anon_sym___clrcall] = ACTIONS(1500), + [anon_sym___stdcall] = ACTIONS(1500), + [anon_sym___fastcall] = ACTIONS(1500), + [anon_sym___thiscall] = ACTIONS(1500), + [anon_sym___vectorcall] = ACTIONS(1500), + [anon_sym_LBRACE] = ACTIONS(1502), + [anon_sym_signed] = ACTIONS(1500), + [anon_sym_unsigned] = ACTIONS(1500), + [anon_sym_long] = ACTIONS(1500), + [anon_sym_short] = ACTIONS(1500), + [anon_sym_static] = ACTIONS(1500), + [anon_sym_auto] = ACTIONS(1500), + [anon_sym_register] = ACTIONS(1500), + [anon_sym_inline] = ACTIONS(1500), + [anon_sym___inline] = ACTIONS(1500), + [anon_sym___inline__] = ACTIONS(1500), + [anon_sym___forceinline] = ACTIONS(1500), + [anon_sym_thread_local] = ACTIONS(1500), + [anon_sym___thread] = ACTIONS(1500), + [anon_sym_const] = ACTIONS(1500), + [anon_sym_constexpr] = ACTIONS(1500), + [anon_sym_volatile] = ACTIONS(1500), + [anon_sym_restrict] = ACTIONS(1500), + [anon_sym___restrict__] = ACTIONS(1500), + [anon_sym__Atomic] = ACTIONS(1500), + [anon_sym__Noreturn] = ACTIONS(1500), + [anon_sym_noreturn] = ACTIONS(1500), + [sym_primitive_type] = ACTIONS(1500), + [anon_sym_enum] = ACTIONS(1500), + [anon_sym_struct] = ACTIONS(1500), + [anon_sym_union] = ACTIONS(1500), + [anon_sym_if] = ACTIONS(1500), + [anon_sym_switch] = ACTIONS(1500), + [anon_sym_case] = ACTIONS(1500), + [anon_sym_default] = ACTIONS(1500), + [anon_sym_while] = ACTIONS(1500), + [anon_sym_do] = ACTIONS(1500), + [anon_sym_for] = ACTIONS(1500), + [anon_sym_return] = ACTIONS(1500), + [anon_sym_break] = ACTIONS(1500), + [anon_sym_continue] = ACTIONS(1500), + [anon_sym_goto] = ACTIONS(1500), + [anon_sym___try] = ACTIONS(1500), + [anon_sym___leave] = ACTIONS(1500), + [anon_sym_DASH_DASH] = ACTIONS(1502), + [anon_sym_PLUS_PLUS] = ACTIONS(1502), + [anon_sym_sizeof] = ACTIONS(1500), + [anon_sym___alignof__] = ACTIONS(1500), + [anon_sym___alignof] = ACTIONS(1500), + [anon_sym__alignof] = ACTIONS(1500), + [anon_sym_alignof] = ACTIONS(1500), + [anon_sym__Alignof] = ACTIONS(1500), + [anon_sym_offsetof] = ACTIONS(1500), + [anon_sym__Generic] = ACTIONS(1500), + [anon_sym_asm] = ACTIONS(1500), + [anon_sym___asm__] = ACTIONS(1500), + [sym_number_literal] = ACTIONS(1502), + [anon_sym_L_SQUOTE] = ACTIONS(1502), + [anon_sym_u_SQUOTE] = ACTIONS(1502), + [anon_sym_U_SQUOTE] = ACTIONS(1502), + [anon_sym_u8_SQUOTE] = ACTIONS(1502), + [anon_sym_SQUOTE] = ACTIONS(1502), + [anon_sym_L_DQUOTE] = ACTIONS(1502), + [anon_sym_u_DQUOTE] = ACTIONS(1502), + [anon_sym_U_DQUOTE] = ACTIONS(1502), + [anon_sym_u8_DQUOTE] = ACTIONS(1502), + [anon_sym_DQUOTE] = ACTIONS(1502), + [sym_true] = ACTIONS(1500), + [sym_false] = ACTIONS(1500), + [anon_sym_NULL] = ACTIONS(1500), + [anon_sym_nullptr] = ACTIONS(1500), [sym_comment] = ACTIONS(3), }, [154] = { - [sym_identifier] = ACTIONS(1493), - [aux_sym_preproc_include_token1] = ACTIONS(1493), - [aux_sym_preproc_def_token1] = ACTIONS(1493), - [aux_sym_preproc_if_token1] = ACTIONS(1493), - [aux_sym_preproc_if_token2] = ACTIONS(1493), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1493), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1493), - [aux_sym_preproc_else_token1] = ACTIONS(1493), - [aux_sym_preproc_elif_token1] = ACTIONS(1493), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1493), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1493), - [sym_preproc_directive] = ACTIONS(1493), - [anon_sym_LPAREN2] = ACTIONS(1495), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), - [anon_sym_SEMI] = ACTIONS(1495), - [anon_sym___extension__] = ACTIONS(1493), - [anon_sym_typedef] = ACTIONS(1493), - [anon_sym_extern] = ACTIONS(1493), - [anon_sym___attribute__] = ACTIONS(1493), - [anon_sym___scanf] = ACTIONS(1493), - [anon_sym___printf] = ACTIONS(1493), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1495), - [anon_sym___declspec] = ACTIONS(1493), - [anon_sym___cdecl] = ACTIONS(1493), - [anon_sym___clrcall] = ACTIONS(1493), - [anon_sym___stdcall] = ACTIONS(1493), - [anon_sym___fastcall] = ACTIONS(1493), - [anon_sym___thiscall] = ACTIONS(1493), - [anon_sym___vectorcall] = ACTIONS(1493), - [anon_sym_LBRACE] = ACTIONS(1495), - [anon_sym_signed] = ACTIONS(1493), - [anon_sym_unsigned] = ACTIONS(1493), - [anon_sym_long] = ACTIONS(1493), - [anon_sym_short] = ACTIONS(1493), - [anon_sym_static] = ACTIONS(1493), - [anon_sym_auto] = ACTIONS(1493), - [anon_sym_register] = ACTIONS(1493), - [anon_sym_inline] = ACTIONS(1493), - [anon_sym___inline] = ACTIONS(1493), - [anon_sym___inline__] = ACTIONS(1493), - [anon_sym___forceinline] = ACTIONS(1493), - [anon_sym_thread_local] = ACTIONS(1493), - [anon_sym___thread] = ACTIONS(1493), - [anon_sym_const] = ACTIONS(1493), - [anon_sym_constexpr] = ACTIONS(1493), - [anon_sym_volatile] = ACTIONS(1493), - [anon_sym_restrict] = ACTIONS(1493), - [anon_sym___restrict__] = ACTIONS(1493), - [anon_sym__Atomic] = ACTIONS(1493), - [anon_sym__Noreturn] = ACTIONS(1493), - [anon_sym_noreturn] = ACTIONS(1493), - [sym_primitive_type] = ACTIONS(1493), - [anon_sym_enum] = ACTIONS(1493), - [anon_sym_struct] = ACTIONS(1493), - [anon_sym_union] = ACTIONS(1493), - [anon_sym_if] = ACTIONS(1493), - [anon_sym_switch] = ACTIONS(1493), - [anon_sym_case] = ACTIONS(1493), - [anon_sym_default] = ACTIONS(1493), - [anon_sym_while] = ACTIONS(1493), - [anon_sym_do] = ACTIONS(1493), - [anon_sym_for] = ACTIONS(1493), - [anon_sym_return] = ACTIONS(1493), - [anon_sym_break] = ACTIONS(1493), - [anon_sym_continue] = ACTIONS(1493), - [anon_sym_goto] = ACTIONS(1493), - [anon_sym___try] = ACTIONS(1493), - [anon_sym___leave] = ACTIONS(1493), - [anon_sym_DASH_DASH] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym___alignof__] = ACTIONS(1493), - [anon_sym___alignof] = ACTIONS(1493), - [anon_sym__alignof] = ACTIONS(1493), - [anon_sym_alignof] = ACTIONS(1493), - [anon_sym__Alignof] = ACTIONS(1493), - [anon_sym_offsetof] = ACTIONS(1493), - [anon_sym__Generic] = ACTIONS(1493), - [anon_sym_asm] = ACTIONS(1493), - [anon_sym___asm__] = ACTIONS(1493), - [sym_number_literal] = ACTIONS(1495), - [anon_sym_L_SQUOTE] = ACTIONS(1495), - [anon_sym_u_SQUOTE] = ACTIONS(1495), - [anon_sym_U_SQUOTE] = ACTIONS(1495), - [anon_sym_u8_SQUOTE] = ACTIONS(1495), - [anon_sym_SQUOTE] = ACTIONS(1495), - [anon_sym_L_DQUOTE] = ACTIONS(1495), - [anon_sym_u_DQUOTE] = ACTIONS(1495), - [anon_sym_U_DQUOTE] = ACTIONS(1495), - [anon_sym_u8_DQUOTE] = ACTIONS(1495), - [anon_sym_DQUOTE] = ACTIONS(1495), - [sym_true] = ACTIONS(1493), - [sym_false] = ACTIONS(1493), - [anon_sym_NULL] = ACTIONS(1493), - [anon_sym_nullptr] = ACTIONS(1493), + [sym_identifier] = ACTIONS(1504), + [aux_sym_preproc_include_token1] = ACTIONS(1504), + [aux_sym_preproc_def_token1] = ACTIONS(1504), + [aux_sym_preproc_if_token1] = ACTIONS(1504), + [aux_sym_preproc_if_token2] = ACTIONS(1504), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1504), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1504), + [aux_sym_preproc_else_token1] = ACTIONS(1504), + [aux_sym_preproc_elif_token1] = ACTIONS(1504), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1504), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1504), + [sym_preproc_directive] = ACTIONS(1504), + [anon_sym_LPAREN2] = ACTIONS(1506), + [anon_sym_BANG] = ACTIONS(1506), + [anon_sym_TILDE] = ACTIONS(1506), + [anon_sym_DASH] = ACTIONS(1504), + [anon_sym_PLUS] = ACTIONS(1504), + [anon_sym_STAR] = ACTIONS(1506), + [anon_sym_AMP] = ACTIONS(1506), + [anon_sym_SEMI] = ACTIONS(1506), + [anon_sym___extension__] = ACTIONS(1504), + [anon_sym_typedef] = ACTIONS(1504), + [anon_sym_extern] = ACTIONS(1504), + [anon_sym___attribute__] = ACTIONS(1504), + [anon_sym___scanf] = ACTIONS(1504), + [anon_sym___printf] = ACTIONS(1504), + [anon_sym___read_mostly] = ACTIONS(1504), + [anon_sym___must_hold] = ACTIONS(1504), + [anon_sym___ro_after_init] = ACTIONS(1504), + [anon_sym___init] = ACTIONS(1504), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1506), + [anon_sym___declspec] = ACTIONS(1504), + [anon_sym___cdecl] = ACTIONS(1504), + [anon_sym___clrcall] = ACTIONS(1504), + [anon_sym___stdcall] = ACTIONS(1504), + [anon_sym___fastcall] = ACTIONS(1504), + [anon_sym___thiscall] = ACTIONS(1504), + [anon_sym___vectorcall] = ACTIONS(1504), + [anon_sym_LBRACE] = ACTIONS(1506), + [anon_sym_signed] = ACTIONS(1504), + [anon_sym_unsigned] = ACTIONS(1504), + [anon_sym_long] = ACTIONS(1504), + [anon_sym_short] = ACTIONS(1504), + [anon_sym_static] = ACTIONS(1504), + [anon_sym_auto] = ACTIONS(1504), + [anon_sym_register] = ACTIONS(1504), + [anon_sym_inline] = ACTIONS(1504), + [anon_sym___inline] = ACTIONS(1504), + [anon_sym___inline__] = ACTIONS(1504), + [anon_sym___forceinline] = ACTIONS(1504), + [anon_sym_thread_local] = ACTIONS(1504), + [anon_sym___thread] = ACTIONS(1504), + [anon_sym_const] = ACTIONS(1504), + [anon_sym_constexpr] = ACTIONS(1504), + [anon_sym_volatile] = ACTIONS(1504), + [anon_sym_restrict] = ACTIONS(1504), + [anon_sym___restrict__] = ACTIONS(1504), + [anon_sym__Atomic] = ACTIONS(1504), + [anon_sym__Noreturn] = ACTIONS(1504), + [anon_sym_noreturn] = ACTIONS(1504), + [sym_primitive_type] = ACTIONS(1504), + [anon_sym_enum] = ACTIONS(1504), + [anon_sym_struct] = ACTIONS(1504), + [anon_sym_union] = ACTIONS(1504), + [anon_sym_if] = ACTIONS(1504), + [anon_sym_switch] = ACTIONS(1504), + [anon_sym_case] = ACTIONS(1504), + [anon_sym_default] = ACTIONS(1504), + [anon_sym_while] = ACTIONS(1504), + [anon_sym_do] = ACTIONS(1504), + [anon_sym_for] = ACTIONS(1504), + [anon_sym_return] = ACTIONS(1504), + [anon_sym_break] = ACTIONS(1504), + [anon_sym_continue] = ACTIONS(1504), + [anon_sym_goto] = ACTIONS(1504), + [anon_sym___try] = ACTIONS(1504), + [anon_sym___leave] = ACTIONS(1504), + [anon_sym_DASH_DASH] = ACTIONS(1506), + [anon_sym_PLUS_PLUS] = ACTIONS(1506), + [anon_sym_sizeof] = ACTIONS(1504), + [anon_sym___alignof__] = ACTIONS(1504), + [anon_sym___alignof] = ACTIONS(1504), + [anon_sym__alignof] = ACTIONS(1504), + [anon_sym_alignof] = ACTIONS(1504), + [anon_sym__Alignof] = ACTIONS(1504), + [anon_sym_offsetof] = ACTIONS(1504), + [anon_sym__Generic] = ACTIONS(1504), + [anon_sym_asm] = ACTIONS(1504), + [anon_sym___asm__] = ACTIONS(1504), + [sym_number_literal] = ACTIONS(1506), + [anon_sym_L_SQUOTE] = ACTIONS(1506), + [anon_sym_u_SQUOTE] = ACTIONS(1506), + [anon_sym_U_SQUOTE] = ACTIONS(1506), + [anon_sym_u8_SQUOTE] = ACTIONS(1506), + [anon_sym_SQUOTE] = ACTIONS(1506), + [anon_sym_L_DQUOTE] = ACTIONS(1506), + [anon_sym_u_DQUOTE] = ACTIONS(1506), + [anon_sym_U_DQUOTE] = ACTIONS(1506), + [anon_sym_u8_DQUOTE] = ACTIONS(1506), + [anon_sym_DQUOTE] = ACTIONS(1506), + [sym_true] = ACTIONS(1504), + [sym_false] = ACTIONS(1504), + [anon_sym_NULL] = ACTIONS(1504), + [anon_sym_nullptr] = ACTIONS(1504), [sym_comment] = ACTIONS(3), }, [155] = { - [sym_identifier] = ACTIONS(1497), - [aux_sym_preproc_include_token1] = ACTIONS(1497), - [aux_sym_preproc_def_token1] = ACTIONS(1497), - [aux_sym_preproc_if_token1] = ACTIONS(1497), - [aux_sym_preproc_if_token2] = ACTIONS(1497), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1497), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1497), - [aux_sym_preproc_else_token1] = ACTIONS(1497), - [aux_sym_preproc_elif_token1] = ACTIONS(1497), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1497), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1497), - [sym_preproc_directive] = ACTIONS(1497), - [anon_sym_LPAREN2] = ACTIONS(1499), - [anon_sym_BANG] = ACTIONS(1499), - [anon_sym_TILDE] = ACTIONS(1499), - [anon_sym_DASH] = ACTIONS(1497), - [anon_sym_PLUS] = ACTIONS(1497), - [anon_sym_STAR] = ACTIONS(1499), - [anon_sym_AMP] = ACTIONS(1499), - [anon_sym_SEMI] = ACTIONS(1499), - [anon_sym___extension__] = ACTIONS(1497), - [anon_sym_typedef] = ACTIONS(1497), - [anon_sym_extern] = ACTIONS(1497), - [anon_sym___attribute__] = ACTIONS(1497), - [anon_sym___scanf] = ACTIONS(1497), - [anon_sym___printf] = ACTIONS(1497), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1499), - [anon_sym___declspec] = ACTIONS(1497), - [anon_sym___cdecl] = ACTIONS(1497), - [anon_sym___clrcall] = ACTIONS(1497), - [anon_sym___stdcall] = ACTIONS(1497), - [anon_sym___fastcall] = ACTIONS(1497), - [anon_sym___thiscall] = ACTIONS(1497), - [anon_sym___vectorcall] = ACTIONS(1497), - [anon_sym_LBRACE] = ACTIONS(1499), - [anon_sym_signed] = ACTIONS(1497), - [anon_sym_unsigned] = ACTIONS(1497), - [anon_sym_long] = ACTIONS(1497), - [anon_sym_short] = ACTIONS(1497), - [anon_sym_static] = ACTIONS(1497), - [anon_sym_auto] = ACTIONS(1497), - [anon_sym_register] = ACTIONS(1497), - [anon_sym_inline] = ACTIONS(1497), - [anon_sym___inline] = ACTIONS(1497), - [anon_sym___inline__] = ACTIONS(1497), - [anon_sym___forceinline] = ACTIONS(1497), - [anon_sym_thread_local] = ACTIONS(1497), - [anon_sym___thread] = ACTIONS(1497), - [anon_sym_const] = ACTIONS(1497), - [anon_sym_constexpr] = ACTIONS(1497), - [anon_sym_volatile] = ACTIONS(1497), - [anon_sym_restrict] = ACTIONS(1497), - [anon_sym___restrict__] = ACTIONS(1497), - [anon_sym__Atomic] = ACTIONS(1497), - [anon_sym__Noreturn] = ACTIONS(1497), - [anon_sym_noreturn] = ACTIONS(1497), - [sym_primitive_type] = ACTIONS(1497), - [anon_sym_enum] = ACTIONS(1497), - [anon_sym_struct] = ACTIONS(1497), - [anon_sym_union] = ACTIONS(1497), - [anon_sym_if] = ACTIONS(1497), - [anon_sym_switch] = ACTIONS(1497), - [anon_sym_case] = ACTIONS(1497), - [anon_sym_default] = ACTIONS(1497), - [anon_sym_while] = ACTIONS(1497), - [anon_sym_do] = ACTIONS(1497), - [anon_sym_for] = ACTIONS(1497), - [anon_sym_return] = ACTIONS(1497), - [anon_sym_break] = ACTIONS(1497), - [anon_sym_continue] = ACTIONS(1497), - [anon_sym_goto] = ACTIONS(1497), - [anon_sym___try] = ACTIONS(1497), - [anon_sym___leave] = ACTIONS(1497), - [anon_sym_DASH_DASH] = ACTIONS(1499), - [anon_sym_PLUS_PLUS] = ACTIONS(1499), - [anon_sym_sizeof] = ACTIONS(1497), - [anon_sym___alignof__] = ACTIONS(1497), - [anon_sym___alignof] = ACTIONS(1497), - [anon_sym__alignof] = ACTIONS(1497), - [anon_sym_alignof] = ACTIONS(1497), - [anon_sym__Alignof] = ACTIONS(1497), - [anon_sym_offsetof] = ACTIONS(1497), - [anon_sym__Generic] = ACTIONS(1497), - [anon_sym_asm] = ACTIONS(1497), - [anon_sym___asm__] = ACTIONS(1497), - [sym_number_literal] = ACTIONS(1499), - [anon_sym_L_SQUOTE] = ACTIONS(1499), - [anon_sym_u_SQUOTE] = ACTIONS(1499), - [anon_sym_U_SQUOTE] = ACTIONS(1499), - [anon_sym_u8_SQUOTE] = ACTIONS(1499), - [anon_sym_SQUOTE] = ACTIONS(1499), - [anon_sym_L_DQUOTE] = ACTIONS(1499), - [anon_sym_u_DQUOTE] = ACTIONS(1499), - [anon_sym_U_DQUOTE] = ACTIONS(1499), - [anon_sym_u8_DQUOTE] = ACTIONS(1499), - [anon_sym_DQUOTE] = ACTIONS(1499), - [sym_true] = ACTIONS(1497), - [sym_false] = ACTIONS(1497), - [anon_sym_NULL] = ACTIONS(1497), - [anon_sym_nullptr] = ACTIONS(1497), + [sym_identifier] = ACTIONS(1508), + [aux_sym_preproc_include_token1] = ACTIONS(1508), + [aux_sym_preproc_def_token1] = ACTIONS(1508), + [aux_sym_preproc_if_token1] = ACTIONS(1508), + [aux_sym_preproc_if_token2] = ACTIONS(1508), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1508), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1508), + [aux_sym_preproc_else_token1] = ACTIONS(1508), + [aux_sym_preproc_elif_token1] = ACTIONS(1508), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1508), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1508), + [sym_preproc_directive] = ACTIONS(1508), + [anon_sym_LPAREN2] = ACTIONS(1510), + [anon_sym_BANG] = ACTIONS(1510), + [anon_sym_TILDE] = ACTIONS(1510), + [anon_sym_DASH] = ACTIONS(1508), + [anon_sym_PLUS] = ACTIONS(1508), + [anon_sym_STAR] = ACTIONS(1510), + [anon_sym_AMP] = ACTIONS(1510), + [anon_sym_SEMI] = ACTIONS(1510), + [anon_sym___extension__] = ACTIONS(1508), + [anon_sym_typedef] = ACTIONS(1508), + [anon_sym_extern] = ACTIONS(1508), + [anon_sym___attribute__] = ACTIONS(1508), + [anon_sym___scanf] = ACTIONS(1508), + [anon_sym___printf] = ACTIONS(1508), + [anon_sym___read_mostly] = ACTIONS(1508), + [anon_sym___must_hold] = ACTIONS(1508), + [anon_sym___ro_after_init] = ACTIONS(1508), + [anon_sym___init] = ACTIONS(1508), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1510), + [anon_sym___declspec] = ACTIONS(1508), + [anon_sym___cdecl] = ACTIONS(1508), + [anon_sym___clrcall] = ACTIONS(1508), + [anon_sym___stdcall] = ACTIONS(1508), + [anon_sym___fastcall] = ACTIONS(1508), + [anon_sym___thiscall] = ACTIONS(1508), + [anon_sym___vectorcall] = ACTIONS(1508), + [anon_sym_LBRACE] = ACTIONS(1510), + [anon_sym_signed] = ACTIONS(1508), + [anon_sym_unsigned] = ACTIONS(1508), + [anon_sym_long] = ACTIONS(1508), + [anon_sym_short] = ACTIONS(1508), + [anon_sym_static] = ACTIONS(1508), + [anon_sym_auto] = ACTIONS(1508), + [anon_sym_register] = ACTIONS(1508), + [anon_sym_inline] = ACTIONS(1508), + [anon_sym___inline] = ACTIONS(1508), + [anon_sym___inline__] = ACTIONS(1508), + [anon_sym___forceinline] = ACTIONS(1508), + [anon_sym_thread_local] = ACTIONS(1508), + [anon_sym___thread] = ACTIONS(1508), + [anon_sym_const] = ACTIONS(1508), + [anon_sym_constexpr] = ACTIONS(1508), + [anon_sym_volatile] = ACTIONS(1508), + [anon_sym_restrict] = ACTIONS(1508), + [anon_sym___restrict__] = ACTIONS(1508), + [anon_sym__Atomic] = ACTIONS(1508), + [anon_sym__Noreturn] = ACTIONS(1508), + [anon_sym_noreturn] = ACTIONS(1508), + [sym_primitive_type] = ACTIONS(1508), + [anon_sym_enum] = ACTIONS(1508), + [anon_sym_struct] = ACTIONS(1508), + [anon_sym_union] = ACTIONS(1508), + [anon_sym_if] = ACTIONS(1508), + [anon_sym_switch] = ACTIONS(1508), + [anon_sym_case] = ACTIONS(1508), + [anon_sym_default] = ACTIONS(1508), + [anon_sym_while] = ACTIONS(1508), + [anon_sym_do] = ACTIONS(1508), + [anon_sym_for] = ACTIONS(1508), + [anon_sym_return] = ACTIONS(1508), + [anon_sym_break] = ACTIONS(1508), + [anon_sym_continue] = ACTIONS(1508), + [anon_sym_goto] = ACTIONS(1508), + [anon_sym___try] = ACTIONS(1508), + [anon_sym___leave] = ACTIONS(1508), + [anon_sym_DASH_DASH] = ACTIONS(1510), + [anon_sym_PLUS_PLUS] = ACTIONS(1510), + [anon_sym_sizeof] = ACTIONS(1508), + [anon_sym___alignof__] = ACTIONS(1508), + [anon_sym___alignof] = ACTIONS(1508), + [anon_sym__alignof] = ACTIONS(1508), + [anon_sym_alignof] = ACTIONS(1508), + [anon_sym__Alignof] = ACTIONS(1508), + [anon_sym_offsetof] = ACTIONS(1508), + [anon_sym__Generic] = ACTIONS(1508), + [anon_sym_asm] = ACTIONS(1508), + [anon_sym___asm__] = ACTIONS(1508), + [sym_number_literal] = ACTIONS(1510), + [anon_sym_L_SQUOTE] = ACTIONS(1510), + [anon_sym_u_SQUOTE] = ACTIONS(1510), + [anon_sym_U_SQUOTE] = ACTIONS(1510), + [anon_sym_u8_SQUOTE] = ACTIONS(1510), + [anon_sym_SQUOTE] = ACTIONS(1510), + [anon_sym_L_DQUOTE] = ACTIONS(1510), + [anon_sym_u_DQUOTE] = ACTIONS(1510), + [anon_sym_U_DQUOTE] = ACTIONS(1510), + [anon_sym_u8_DQUOTE] = ACTIONS(1510), + [anon_sym_DQUOTE] = ACTIONS(1510), + [sym_true] = ACTIONS(1508), + [sym_false] = ACTIONS(1508), + [anon_sym_NULL] = ACTIONS(1508), + [anon_sym_nullptr] = ACTIONS(1508), [sym_comment] = ACTIONS(3), }, [156] = { - [sym_else_clause] = STATE(174), - [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), - [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_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), - [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_else] = ACTIONS(1501), - [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_identifier] = ACTIONS(1512), + [aux_sym_preproc_include_token1] = ACTIONS(1512), + [aux_sym_preproc_def_token1] = ACTIONS(1512), + [aux_sym_preproc_if_token1] = ACTIONS(1512), + [aux_sym_preproc_if_token2] = ACTIONS(1512), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1512), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1512), + [aux_sym_preproc_else_token1] = ACTIONS(1512), + [aux_sym_preproc_elif_token1] = ACTIONS(1512), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1512), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1512), + [sym_preproc_directive] = ACTIONS(1512), + [anon_sym_LPAREN2] = ACTIONS(1514), + [anon_sym_BANG] = ACTIONS(1514), + [anon_sym_TILDE] = ACTIONS(1514), + [anon_sym_DASH] = ACTIONS(1512), + [anon_sym_PLUS] = ACTIONS(1512), + [anon_sym_STAR] = ACTIONS(1514), + [anon_sym_AMP] = ACTIONS(1514), + [anon_sym_SEMI] = ACTIONS(1514), + [anon_sym___extension__] = ACTIONS(1512), + [anon_sym_typedef] = ACTIONS(1512), + [anon_sym_extern] = ACTIONS(1512), + [anon_sym___attribute__] = ACTIONS(1512), + [anon_sym___scanf] = ACTIONS(1512), + [anon_sym___printf] = ACTIONS(1512), + [anon_sym___read_mostly] = ACTIONS(1512), + [anon_sym___must_hold] = ACTIONS(1512), + [anon_sym___ro_after_init] = ACTIONS(1512), + [anon_sym___init] = ACTIONS(1512), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1514), + [anon_sym___declspec] = ACTIONS(1512), + [anon_sym___cdecl] = ACTIONS(1512), + [anon_sym___clrcall] = ACTIONS(1512), + [anon_sym___stdcall] = ACTIONS(1512), + [anon_sym___fastcall] = ACTIONS(1512), + [anon_sym___thiscall] = ACTIONS(1512), + [anon_sym___vectorcall] = ACTIONS(1512), + [anon_sym_LBRACE] = ACTIONS(1514), + [anon_sym_signed] = ACTIONS(1512), + [anon_sym_unsigned] = ACTIONS(1512), + [anon_sym_long] = ACTIONS(1512), + [anon_sym_short] = ACTIONS(1512), + [anon_sym_static] = ACTIONS(1512), + [anon_sym_auto] = ACTIONS(1512), + [anon_sym_register] = ACTIONS(1512), + [anon_sym_inline] = ACTIONS(1512), + [anon_sym___inline] = ACTIONS(1512), + [anon_sym___inline__] = ACTIONS(1512), + [anon_sym___forceinline] = ACTIONS(1512), + [anon_sym_thread_local] = ACTIONS(1512), + [anon_sym___thread] = ACTIONS(1512), + [anon_sym_const] = ACTIONS(1512), + [anon_sym_constexpr] = ACTIONS(1512), + [anon_sym_volatile] = ACTIONS(1512), + [anon_sym_restrict] = ACTIONS(1512), + [anon_sym___restrict__] = ACTIONS(1512), + [anon_sym__Atomic] = ACTIONS(1512), + [anon_sym__Noreturn] = ACTIONS(1512), + [anon_sym_noreturn] = ACTIONS(1512), + [sym_primitive_type] = ACTIONS(1512), + [anon_sym_enum] = ACTIONS(1512), + [anon_sym_struct] = ACTIONS(1512), + [anon_sym_union] = ACTIONS(1512), + [anon_sym_if] = ACTIONS(1512), + [anon_sym_switch] = ACTIONS(1512), + [anon_sym_case] = ACTIONS(1512), + [anon_sym_default] = ACTIONS(1512), + [anon_sym_while] = ACTIONS(1512), + [anon_sym_do] = ACTIONS(1512), + [anon_sym_for] = ACTIONS(1512), + [anon_sym_return] = ACTIONS(1512), + [anon_sym_break] = ACTIONS(1512), + [anon_sym_continue] = ACTIONS(1512), + [anon_sym_goto] = ACTIONS(1512), + [anon_sym___try] = ACTIONS(1512), + [anon_sym___leave] = ACTIONS(1512), + [anon_sym_DASH_DASH] = ACTIONS(1514), + [anon_sym_PLUS_PLUS] = ACTIONS(1514), + [anon_sym_sizeof] = ACTIONS(1512), + [anon_sym___alignof__] = ACTIONS(1512), + [anon_sym___alignof] = ACTIONS(1512), + [anon_sym__alignof] = ACTIONS(1512), + [anon_sym_alignof] = ACTIONS(1512), + [anon_sym__Alignof] = ACTIONS(1512), + [anon_sym_offsetof] = ACTIONS(1512), + [anon_sym__Generic] = ACTIONS(1512), + [anon_sym_asm] = ACTIONS(1512), + [anon_sym___asm__] = ACTIONS(1512), + [sym_number_literal] = ACTIONS(1514), + [anon_sym_L_SQUOTE] = ACTIONS(1514), + [anon_sym_u_SQUOTE] = ACTIONS(1514), + [anon_sym_U_SQUOTE] = ACTIONS(1514), + [anon_sym_u8_SQUOTE] = ACTIONS(1514), + [anon_sym_SQUOTE] = ACTIONS(1514), + [anon_sym_L_DQUOTE] = ACTIONS(1514), + [anon_sym_u_DQUOTE] = ACTIONS(1514), + [anon_sym_U_DQUOTE] = ACTIONS(1514), + [anon_sym_u8_DQUOTE] = ACTIONS(1514), + [anon_sym_DQUOTE] = ACTIONS(1514), + [sym_true] = ACTIONS(1512), + [sym_false] = ACTIONS(1512), + [anon_sym_NULL] = ACTIONS(1512), + [anon_sym_nullptr] = ACTIONS(1512), [sym_comment] = ACTIONS(3), }, [157] = { - [sym_identifier] = ACTIONS(1503), - [aux_sym_preproc_include_token1] = ACTIONS(1503), - [aux_sym_preproc_def_token1] = ACTIONS(1503), - [aux_sym_preproc_if_token1] = ACTIONS(1503), - [aux_sym_preproc_if_token2] = ACTIONS(1503), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1503), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1503), - [aux_sym_preproc_else_token1] = ACTIONS(1503), - [aux_sym_preproc_elif_token1] = ACTIONS(1503), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1503), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1503), - [sym_preproc_directive] = ACTIONS(1503), - [anon_sym_LPAREN2] = ACTIONS(1505), - [anon_sym_BANG] = ACTIONS(1505), - [anon_sym_TILDE] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1503), - [anon_sym_PLUS] = ACTIONS(1503), - [anon_sym_STAR] = ACTIONS(1505), - [anon_sym_AMP] = ACTIONS(1505), - [anon_sym_SEMI] = ACTIONS(1505), - [anon_sym___extension__] = ACTIONS(1503), - [anon_sym_typedef] = ACTIONS(1503), - [anon_sym_extern] = ACTIONS(1503), - [anon_sym___attribute__] = ACTIONS(1503), - [anon_sym___scanf] = ACTIONS(1503), - [anon_sym___printf] = ACTIONS(1503), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1505), - [anon_sym___declspec] = ACTIONS(1503), - [anon_sym___cdecl] = ACTIONS(1503), - [anon_sym___clrcall] = ACTIONS(1503), - [anon_sym___stdcall] = ACTIONS(1503), - [anon_sym___fastcall] = ACTIONS(1503), - [anon_sym___thiscall] = ACTIONS(1503), - [anon_sym___vectorcall] = ACTIONS(1503), - [anon_sym_LBRACE] = ACTIONS(1505), - [anon_sym_signed] = ACTIONS(1503), - [anon_sym_unsigned] = ACTIONS(1503), - [anon_sym_long] = ACTIONS(1503), - [anon_sym_short] = ACTIONS(1503), - [anon_sym_static] = ACTIONS(1503), - [anon_sym_auto] = ACTIONS(1503), - [anon_sym_register] = ACTIONS(1503), - [anon_sym_inline] = ACTIONS(1503), - [anon_sym___inline] = ACTIONS(1503), - [anon_sym___inline__] = ACTIONS(1503), - [anon_sym___forceinline] = ACTIONS(1503), - [anon_sym_thread_local] = ACTIONS(1503), - [anon_sym___thread] = ACTIONS(1503), - [anon_sym_const] = ACTIONS(1503), - [anon_sym_constexpr] = ACTIONS(1503), - [anon_sym_volatile] = ACTIONS(1503), - [anon_sym_restrict] = ACTIONS(1503), - [anon_sym___restrict__] = ACTIONS(1503), - [anon_sym__Atomic] = ACTIONS(1503), - [anon_sym__Noreturn] = ACTIONS(1503), - [anon_sym_noreturn] = ACTIONS(1503), - [sym_primitive_type] = ACTIONS(1503), - [anon_sym_enum] = ACTIONS(1503), - [anon_sym_struct] = ACTIONS(1503), - [anon_sym_union] = ACTIONS(1503), - [anon_sym_if] = ACTIONS(1503), - [anon_sym_switch] = ACTIONS(1503), - [anon_sym_case] = ACTIONS(1503), - [anon_sym_default] = ACTIONS(1503), - [anon_sym_while] = ACTIONS(1503), - [anon_sym_do] = ACTIONS(1503), - [anon_sym_for] = ACTIONS(1503), - [anon_sym_return] = ACTIONS(1503), - [anon_sym_break] = ACTIONS(1503), - [anon_sym_continue] = ACTIONS(1503), - [anon_sym_goto] = ACTIONS(1503), - [anon_sym___try] = ACTIONS(1503), - [anon_sym___leave] = ACTIONS(1503), - [anon_sym_DASH_DASH] = ACTIONS(1505), - [anon_sym_PLUS_PLUS] = ACTIONS(1505), - [anon_sym_sizeof] = ACTIONS(1503), - [anon_sym___alignof__] = ACTIONS(1503), - [anon_sym___alignof] = ACTIONS(1503), - [anon_sym__alignof] = ACTIONS(1503), - [anon_sym_alignof] = ACTIONS(1503), - [anon_sym__Alignof] = ACTIONS(1503), - [anon_sym_offsetof] = ACTIONS(1503), - [anon_sym__Generic] = ACTIONS(1503), - [anon_sym_asm] = ACTIONS(1503), - [anon_sym___asm__] = ACTIONS(1503), - [sym_number_literal] = ACTIONS(1505), - [anon_sym_L_SQUOTE] = ACTIONS(1505), - [anon_sym_u_SQUOTE] = ACTIONS(1505), - [anon_sym_U_SQUOTE] = ACTIONS(1505), - [anon_sym_u8_SQUOTE] = ACTIONS(1505), - [anon_sym_SQUOTE] = ACTIONS(1505), - [anon_sym_L_DQUOTE] = ACTIONS(1505), - [anon_sym_u_DQUOTE] = ACTIONS(1505), - [anon_sym_U_DQUOTE] = ACTIONS(1505), - [anon_sym_u8_DQUOTE] = ACTIONS(1505), - [anon_sym_DQUOTE] = ACTIONS(1505), - [sym_true] = ACTIONS(1503), - [sym_false] = ACTIONS(1503), - [anon_sym_NULL] = ACTIONS(1503), - [anon_sym_nullptr] = ACTIONS(1503), + [sym_identifier] = ACTIONS(1516), + [aux_sym_preproc_include_token1] = ACTIONS(1516), + [aux_sym_preproc_def_token1] = ACTIONS(1516), + [aux_sym_preproc_if_token1] = ACTIONS(1516), + [aux_sym_preproc_if_token2] = ACTIONS(1516), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1516), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1516), + [aux_sym_preproc_else_token1] = ACTIONS(1516), + [aux_sym_preproc_elif_token1] = ACTIONS(1516), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1516), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1516), + [sym_preproc_directive] = ACTIONS(1516), + [anon_sym_LPAREN2] = ACTIONS(1518), + [anon_sym_BANG] = ACTIONS(1518), + [anon_sym_TILDE] = ACTIONS(1518), + [anon_sym_DASH] = ACTIONS(1516), + [anon_sym_PLUS] = ACTIONS(1516), + [anon_sym_STAR] = ACTIONS(1518), + [anon_sym_AMP] = ACTIONS(1518), + [anon_sym_SEMI] = ACTIONS(1518), + [anon_sym___extension__] = ACTIONS(1516), + [anon_sym_typedef] = ACTIONS(1516), + [anon_sym_extern] = ACTIONS(1516), + [anon_sym___attribute__] = ACTIONS(1516), + [anon_sym___scanf] = ACTIONS(1516), + [anon_sym___printf] = ACTIONS(1516), + [anon_sym___read_mostly] = ACTIONS(1516), + [anon_sym___must_hold] = ACTIONS(1516), + [anon_sym___ro_after_init] = ACTIONS(1516), + [anon_sym___init] = ACTIONS(1516), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1518), + [anon_sym___declspec] = ACTIONS(1516), + [anon_sym___cdecl] = ACTIONS(1516), + [anon_sym___clrcall] = ACTIONS(1516), + [anon_sym___stdcall] = ACTIONS(1516), + [anon_sym___fastcall] = ACTIONS(1516), + [anon_sym___thiscall] = ACTIONS(1516), + [anon_sym___vectorcall] = ACTIONS(1516), + [anon_sym_LBRACE] = ACTIONS(1518), + [anon_sym_signed] = ACTIONS(1516), + [anon_sym_unsigned] = ACTIONS(1516), + [anon_sym_long] = ACTIONS(1516), + [anon_sym_short] = ACTIONS(1516), + [anon_sym_static] = ACTIONS(1516), + [anon_sym_auto] = ACTIONS(1516), + [anon_sym_register] = ACTIONS(1516), + [anon_sym_inline] = ACTIONS(1516), + [anon_sym___inline] = ACTIONS(1516), + [anon_sym___inline__] = ACTIONS(1516), + [anon_sym___forceinline] = ACTIONS(1516), + [anon_sym_thread_local] = ACTIONS(1516), + [anon_sym___thread] = ACTIONS(1516), + [anon_sym_const] = ACTIONS(1516), + [anon_sym_constexpr] = ACTIONS(1516), + [anon_sym_volatile] = ACTIONS(1516), + [anon_sym_restrict] = ACTIONS(1516), + [anon_sym___restrict__] = ACTIONS(1516), + [anon_sym__Atomic] = ACTIONS(1516), + [anon_sym__Noreturn] = ACTIONS(1516), + [anon_sym_noreturn] = ACTIONS(1516), + [sym_primitive_type] = ACTIONS(1516), + [anon_sym_enum] = ACTIONS(1516), + [anon_sym_struct] = ACTIONS(1516), + [anon_sym_union] = ACTIONS(1516), + [anon_sym_if] = ACTIONS(1516), + [anon_sym_switch] = ACTIONS(1516), + [anon_sym_case] = ACTIONS(1516), + [anon_sym_default] = ACTIONS(1516), + [anon_sym_while] = ACTIONS(1516), + [anon_sym_do] = ACTIONS(1516), + [anon_sym_for] = ACTIONS(1516), + [anon_sym_return] = ACTIONS(1516), + [anon_sym_break] = ACTIONS(1516), + [anon_sym_continue] = ACTIONS(1516), + [anon_sym_goto] = ACTIONS(1516), + [anon_sym___try] = ACTIONS(1516), + [anon_sym___leave] = ACTIONS(1516), + [anon_sym_DASH_DASH] = ACTIONS(1518), + [anon_sym_PLUS_PLUS] = ACTIONS(1518), + [anon_sym_sizeof] = ACTIONS(1516), + [anon_sym___alignof__] = ACTIONS(1516), + [anon_sym___alignof] = ACTIONS(1516), + [anon_sym__alignof] = ACTIONS(1516), + [anon_sym_alignof] = ACTIONS(1516), + [anon_sym__Alignof] = ACTIONS(1516), + [anon_sym_offsetof] = ACTIONS(1516), + [anon_sym__Generic] = ACTIONS(1516), + [anon_sym_asm] = ACTIONS(1516), + [anon_sym___asm__] = ACTIONS(1516), + [sym_number_literal] = ACTIONS(1518), + [anon_sym_L_SQUOTE] = ACTIONS(1518), + [anon_sym_u_SQUOTE] = ACTIONS(1518), + [anon_sym_U_SQUOTE] = ACTIONS(1518), + [anon_sym_u8_SQUOTE] = ACTIONS(1518), + [anon_sym_SQUOTE] = ACTIONS(1518), + [anon_sym_L_DQUOTE] = ACTIONS(1518), + [anon_sym_u_DQUOTE] = ACTIONS(1518), + [anon_sym_U_DQUOTE] = ACTIONS(1518), + [anon_sym_u8_DQUOTE] = ACTIONS(1518), + [anon_sym_DQUOTE] = ACTIONS(1518), + [sym_true] = ACTIONS(1516), + [sym_false] = ACTIONS(1516), + [anon_sym_NULL] = ACTIONS(1516), + [anon_sym_nullptr] = ACTIONS(1516), [sym_comment] = ACTIONS(3), }, [158] = { - [sym_identifier] = ACTIONS(1507), - [aux_sym_preproc_include_token1] = ACTIONS(1507), - [aux_sym_preproc_def_token1] = ACTIONS(1507), - [aux_sym_preproc_if_token1] = ACTIONS(1507), - [aux_sym_preproc_if_token2] = ACTIONS(1507), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1507), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1507), - [aux_sym_preproc_else_token1] = ACTIONS(1507), - [aux_sym_preproc_elif_token1] = ACTIONS(1507), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1507), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1507), - [sym_preproc_directive] = ACTIONS(1507), - [anon_sym_LPAREN2] = ACTIONS(1509), - [anon_sym_BANG] = ACTIONS(1509), - [anon_sym_TILDE] = ACTIONS(1509), - [anon_sym_DASH] = ACTIONS(1507), - [anon_sym_PLUS] = ACTIONS(1507), - [anon_sym_STAR] = ACTIONS(1509), - [anon_sym_AMP] = ACTIONS(1509), - [anon_sym_SEMI] = ACTIONS(1509), - [anon_sym___extension__] = ACTIONS(1507), - [anon_sym_typedef] = ACTIONS(1507), - [anon_sym_extern] = ACTIONS(1507), - [anon_sym___attribute__] = ACTIONS(1507), - [anon_sym___scanf] = ACTIONS(1507), - [anon_sym___printf] = ACTIONS(1507), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1509), - [anon_sym___declspec] = ACTIONS(1507), - [anon_sym___cdecl] = ACTIONS(1507), - [anon_sym___clrcall] = ACTIONS(1507), - [anon_sym___stdcall] = ACTIONS(1507), - [anon_sym___fastcall] = ACTIONS(1507), - [anon_sym___thiscall] = ACTIONS(1507), - [anon_sym___vectorcall] = ACTIONS(1507), - [anon_sym_LBRACE] = ACTIONS(1509), - [anon_sym_signed] = ACTIONS(1507), - [anon_sym_unsigned] = ACTIONS(1507), - [anon_sym_long] = ACTIONS(1507), - [anon_sym_short] = ACTIONS(1507), - [anon_sym_static] = ACTIONS(1507), - [anon_sym_auto] = ACTIONS(1507), - [anon_sym_register] = ACTIONS(1507), - [anon_sym_inline] = ACTIONS(1507), - [anon_sym___inline] = ACTIONS(1507), - [anon_sym___inline__] = ACTIONS(1507), - [anon_sym___forceinline] = ACTIONS(1507), - [anon_sym_thread_local] = ACTIONS(1507), - [anon_sym___thread] = ACTIONS(1507), - [anon_sym_const] = ACTIONS(1507), - [anon_sym_constexpr] = ACTIONS(1507), - [anon_sym_volatile] = ACTIONS(1507), - [anon_sym_restrict] = ACTIONS(1507), - [anon_sym___restrict__] = ACTIONS(1507), - [anon_sym__Atomic] = ACTIONS(1507), - [anon_sym__Noreturn] = ACTIONS(1507), - [anon_sym_noreturn] = ACTIONS(1507), - [sym_primitive_type] = ACTIONS(1507), - [anon_sym_enum] = ACTIONS(1507), - [anon_sym_struct] = ACTIONS(1507), - [anon_sym_union] = ACTIONS(1507), - [anon_sym_if] = ACTIONS(1507), - [anon_sym_switch] = ACTIONS(1507), - [anon_sym_case] = ACTIONS(1507), - [anon_sym_default] = ACTIONS(1507), - [anon_sym_while] = ACTIONS(1507), - [anon_sym_do] = ACTIONS(1507), - [anon_sym_for] = ACTIONS(1507), - [anon_sym_return] = ACTIONS(1507), - [anon_sym_break] = ACTIONS(1507), - [anon_sym_continue] = ACTIONS(1507), - [anon_sym_goto] = ACTIONS(1507), - [anon_sym___try] = ACTIONS(1507), - [anon_sym___leave] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1509), - [anon_sym_PLUS_PLUS] = ACTIONS(1509), - [anon_sym_sizeof] = ACTIONS(1507), - [anon_sym___alignof__] = ACTIONS(1507), - [anon_sym___alignof] = ACTIONS(1507), - [anon_sym__alignof] = ACTIONS(1507), - [anon_sym_alignof] = ACTIONS(1507), - [anon_sym__Alignof] = ACTIONS(1507), - [anon_sym_offsetof] = ACTIONS(1507), - [anon_sym__Generic] = ACTIONS(1507), - [anon_sym_asm] = ACTIONS(1507), - [anon_sym___asm__] = ACTIONS(1507), - [sym_number_literal] = ACTIONS(1509), - [anon_sym_L_SQUOTE] = ACTIONS(1509), - [anon_sym_u_SQUOTE] = ACTIONS(1509), - [anon_sym_U_SQUOTE] = ACTIONS(1509), - [anon_sym_u8_SQUOTE] = ACTIONS(1509), - [anon_sym_SQUOTE] = ACTIONS(1509), - [anon_sym_L_DQUOTE] = ACTIONS(1509), - [anon_sym_u_DQUOTE] = ACTIONS(1509), - [anon_sym_U_DQUOTE] = ACTIONS(1509), - [anon_sym_u8_DQUOTE] = ACTIONS(1509), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_true] = ACTIONS(1507), - [sym_false] = ACTIONS(1507), - [anon_sym_NULL] = ACTIONS(1507), - [anon_sym_nullptr] = ACTIONS(1507), + [sym_identifier] = ACTIONS(1520), + [aux_sym_preproc_include_token1] = ACTIONS(1520), + [aux_sym_preproc_def_token1] = ACTIONS(1520), + [aux_sym_preproc_if_token1] = ACTIONS(1520), + [aux_sym_preproc_if_token2] = ACTIONS(1520), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1520), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1520), + [aux_sym_preproc_else_token1] = ACTIONS(1520), + [aux_sym_preproc_elif_token1] = ACTIONS(1520), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1520), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1520), + [sym_preproc_directive] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), + [anon_sym_BANG] = ACTIONS(1522), + [anon_sym_TILDE] = ACTIONS(1522), + [anon_sym_DASH] = ACTIONS(1520), + [anon_sym_PLUS] = ACTIONS(1520), + [anon_sym_STAR] = ACTIONS(1522), + [anon_sym_AMP] = ACTIONS(1522), + [anon_sym_SEMI] = ACTIONS(1522), + [anon_sym___extension__] = ACTIONS(1520), + [anon_sym_typedef] = ACTIONS(1520), + [anon_sym_extern] = ACTIONS(1520), + [anon_sym___attribute__] = ACTIONS(1520), + [anon_sym___scanf] = ACTIONS(1520), + [anon_sym___printf] = ACTIONS(1520), + [anon_sym___read_mostly] = ACTIONS(1520), + [anon_sym___must_hold] = ACTIONS(1520), + [anon_sym___ro_after_init] = ACTIONS(1520), + [anon_sym___init] = ACTIONS(1520), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1522), + [anon_sym___declspec] = ACTIONS(1520), + [anon_sym___cdecl] = ACTIONS(1520), + [anon_sym___clrcall] = ACTIONS(1520), + [anon_sym___stdcall] = ACTIONS(1520), + [anon_sym___fastcall] = ACTIONS(1520), + [anon_sym___thiscall] = ACTIONS(1520), + [anon_sym___vectorcall] = ACTIONS(1520), + [anon_sym_LBRACE] = ACTIONS(1522), + [anon_sym_signed] = ACTIONS(1520), + [anon_sym_unsigned] = ACTIONS(1520), + [anon_sym_long] = ACTIONS(1520), + [anon_sym_short] = ACTIONS(1520), + [anon_sym_static] = ACTIONS(1520), + [anon_sym_auto] = ACTIONS(1520), + [anon_sym_register] = ACTIONS(1520), + [anon_sym_inline] = ACTIONS(1520), + [anon_sym___inline] = ACTIONS(1520), + [anon_sym___inline__] = ACTIONS(1520), + [anon_sym___forceinline] = ACTIONS(1520), + [anon_sym_thread_local] = ACTIONS(1520), + [anon_sym___thread] = ACTIONS(1520), + [anon_sym_const] = ACTIONS(1520), + [anon_sym_constexpr] = ACTIONS(1520), + [anon_sym_volatile] = ACTIONS(1520), + [anon_sym_restrict] = ACTIONS(1520), + [anon_sym___restrict__] = ACTIONS(1520), + [anon_sym__Atomic] = ACTIONS(1520), + [anon_sym__Noreturn] = ACTIONS(1520), + [anon_sym_noreturn] = ACTIONS(1520), + [sym_primitive_type] = ACTIONS(1520), + [anon_sym_enum] = ACTIONS(1520), + [anon_sym_struct] = ACTIONS(1520), + [anon_sym_union] = ACTIONS(1520), + [anon_sym_if] = ACTIONS(1520), + [anon_sym_switch] = ACTIONS(1520), + [anon_sym_case] = ACTIONS(1520), + [anon_sym_default] = ACTIONS(1520), + [anon_sym_while] = ACTIONS(1520), + [anon_sym_do] = ACTIONS(1520), + [anon_sym_for] = ACTIONS(1520), + [anon_sym_return] = ACTIONS(1520), + [anon_sym_break] = ACTIONS(1520), + [anon_sym_continue] = ACTIONS(1520), + [anon_sym_goto] = ACTIONS(1520), + [anon_sym___try] = ACTIONS(1520), + [anon_sym___leave] = ACTIONS(1520), + [anon_sym_DASH_DASH] = ACTIONS(1522), + [anon_sym_PLUS_PLUS] = ACTIONS(1522), + [anon_sym_sizeof] = ACTIONS(1520), + [anon_sym___alignof__] = ACTIONS(1520), + [anon_sym___alignof] = ACTIONS(1520), + [anon_sym__alignof] = ACTIONS(1520), + [anon_sym_alignof] = ACTIONS(1520), + [anon_sym__Alignof] = ACTIONS(1520), + [anon_sym_offsetof] = ACTIONS(1520), + [anon_sym__Generic] = ACTIONS(1520), + [anon_sym_asm] = ACTIONS(1520), + [anon_sym___asm__] = ACTIONS(1520), + [sym_number_literal] = ACTIONS(1522), + [anon_sym_L_SQUOTE] = ACTIONS(1522), + [anon_sym_u_SQUOTE] = ACTIONS(1522), + [anon_sym_U_SQUOTE] = ACTIONS(1522), + [anon_sym_u8_SQUOTE] = ACTIONS(1522), + [anon_sym_SQUOTE] = ACTIONS(1522), + [anon_sym_L_DQUOTE] = ACTIONS(1522), + [anon_sym_u_DQUOTE] = ACTIONS(1522), + [anon_sym_U_DQUOTE] = ACTIONS(1522), + [anon_sym_u8_DQUOTE] = ACTIONS(1522), + [anon_sym_DQUOTE] = ACTIONS(1522), + [sym_true] = ACTIONS(1520), + [sym_false] = ACTIONS(1520), + [anon_sym_NULL] = ACTIONS(1520), + [anon_sym_nullptr] = ACTIONS(1520), [sym_comment] = ACTIONS(3), }, [159] = { - [sym_identifier] = ACTIONS(1511), - [aux_sym_preproc_include_token1] = ACTIONS(1511), - [aux_sym_preproc_def_token1] = ACTIONS(1511), - [aux_sym_preproc_if_token1] = ACTIONS(1511), - [aux_sym_preproc_if_token2] = ACTIONS(1511), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1511), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1511), - [aux_sym_preproc_else_token1] = ACTIONS(1511), - [aux_sym_preproc_elif_token1] = ACTIONS(1511), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1511), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1511), - [sym_preproc_directive] = ACTIONS(1511), - [anon_sym_LPAREN2] = ACTIONS(1513), - [anon_sym_BANG] = ACTIONS(1513), - [anon_sym_TILDE] = ACTIONS(1513), - [anon_sym_DASH] = ACTIONS(1511), - [anon_sym_PLUS] = ACTIONS(1511), - [anon_sym_STAR] = ACTIONS(1513), - [anon_sym_AMP] = ACTIONS(1513), - [anon_sym_SEMI] = ACTIONS(1513), - [anon_sym___extension__] = ACTIONS(1511), - [anon_sym_typedef] = ACTIONS(1511), - [anon_sym_extern] = ACTIONS(1511), - [anon_sym___attribute__] = ACTIONS(1511), - [anon_sym___scanf] = ACTIONS(1511), - [anon_sym___printf] = ACTIONS(1511), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1513), - [anon_sym___declspec] = ACTIONS(1511), - [anon_sym___cdecl] = ACTIONS(1511), - [anon_sym___clrcall] = ACTIONS(1511), - [anon_sym___stdcall] = ACTIONS(1511), - [anon_sym___fastcall] = ACTIONS(1511), - [anon_sym___thiscall] = ACTIONS(1511), - [anon_sym___vectorcall] = ACTIONS(1511), - [anon_sym_LBRACE] = ACTIONS(1513), - [anon_sym_signed] = ACTIONS(1511), - [anon_sym_unsigned] = ACTIONS(1511), - [anon_sym_long] = ACTIONS(1511), - [anon_sym_short] = ACTIONS(1511), - [anon_sym_static] = ACTIONS(1511), - [anon_sym_auto] = ACTIONS(1511), - [anon_sym_register] = ACTIONS(1511), - [anon_sym_inline] = ACTIONS(1511), - [anon_sym___inline] = ACTIONS(1511), - [anon_sym___inline__] = ACTIONS(1511), - [anon_sym___forceinline] = ACTIONS(1511), - [anon_sym_thread_local] = ACTIONS(1511), - [anon_sym___thread] = ACTIONS(1511), - [anon_sym_const] = ACTIONS(1511), - [anon_sym_constexpr] = ACTIONS(1511), - [anon_sym_volatile] = ACTIONS(1511), - [anon_sym_restrict] = ACTIONS(1511), - [anon_sym___restrict__] = ACTIONS(1511), - [anon_sym__Atomic] = ACTIONS(1511), - [anon_sym__Noreturn] = ACTIONS(1511), - [anon_sym_noreturn] = ACTIONS(1511), - [sym_primitive_type] = ACTIONS(1511), - [anon_sym_enum] = ACTIONS(1511), - [anon_sym_struct] = ACTIONS(1511), - [anon_sym_union] = ACTIONS(1511), - [anon_sym_if] = ACTIONS(1511), - [anon_sym_switch] = ACTIONS(1511), - [anon_sym_case] = ACTIONS(1511), - [anon_sym_default] = ACTIONS(1511), - [anon_sym_while] = ACTIONS(1511), - [anon_sym_do] = ACTIONS(1511), - [anon_sym_for] = ACTIONS(1511), - [anon_sym_return] = ACTIONS(1511), - [anon_sym_break] = ACTIONS(1511), - [anon_sym_continue] = ACTIONS(1511), - [anon_sym_goto] = ACTIONS(1511), - [anon_sym___try] = ACTIONS(1511), - [anon_sym___leave] = ACTIONS(1511), - [anon_sym_DASH_DASH] = ACTIONS(1513), - [anon_sym_PLUS_PLUS] = ACTIONS(1513), - [anon_sym_sizeof] = ACTIONS(1511), - [anon_sym___alignof__] = ACTIONS(1511), - [anon_sym___alignof] = ACTIONS(1511), - [anon_sym__alignof] = ACTIONS(1511), - [anon_sym_alignof] = ACTIONS(1511), - [anon_sym__Alignof] = ACTIONS(1511), - [anon_sym_offsetof] = ACTIONS(1511), - [anon_sym__Generic] = ACTIONS(1511), - [anon_sym_asm] = ACTIONS(1511), - [anon_sym___asm__] = ACTIONS(1511), - [sym_number_literal] = ACTIONS(1513), - [anon_sym_L_SQUOTE] = ACTIONS(1513), - [anon_sym_u_SQUOTE] = ACTIONS(1513), - [anon_sym_U_SQUOTE] = ACTIONS(1513), - [anon_sym_u8_SQUOTE] = ACTIONS(1513), - [anon_sym_SQUOTE] = ACTIONS(1513), - [anon_sym_L_DQUOTE] = ACTIONS(1513), - [anon_sym_u_DQUOTE] = ACTIONS(1513), - [anon_sym_U_DQUOTE] = ACTIONS(1513), - [anon_sym_u8_DQUOTE] = ACTIONS(1513), - [anon_sym_DQUOTE] = ACTIONS(1513), - [sym_true] = ACTIONS(1511), - [sym_false] = ACTIONS(1511), - [anon_sym_NULL] = ACTIONS(1511), - [anon_sym_nullptr] = ACTIONS(1511), + [sym_identifier] = ACTIONS(1524), + [aux_sym_preproc_include_token1] = ACTIONS(1524), + [aux_sym_preproc_def_token1] = ACTIONS(1524), + [aux_sym_preproc_if_token1] = ACTIONS(1524), + [aux_sym_preproc_if_token2] = ACTIONS(1524), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1524), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1524), + [aux_sym_preproc_else_token1] = ACTIONS(1524), + [aux_sym_preproc_elif_token1] = ACTIONS(1524), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1524), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1524), + [sym_preproc_directive] = ACTIONS(1524), + [anon_sym_LPAREN2] = ACTIONS(1526), + [anon_sym_BANG] = ACTIONS(1526), + [anon_sym_TILDE] = ACTIONS(1526), + [anon_sym_DASH] = ACTIONS(1524), + [anon_sym_PLUS] = ACTIONS(1524), + [anon_sym_STAR] = ACTIONS(1526), + [anon_sym_AMP] = ACTIONS(1526), + [anon_sym_SEMI] = ACTIONS(1526), + [anon_sym___extension__] = ACTIONS(1524), + [anon_sym_typedef] = ACTIONS(1524), + [anon_sym_extern] = ACTIONS(1524), + [anon_sym___attribute__] = ACTIONS(1524), + [anon_sym___scanf] = ACTIONS(1524), + [anon_sym___printf] = ACTIONS(1524), + [anon_sym___read_mostly] = ACTIONS(1524), + [anon_sym___must_hold] = ACTIONS(1524), + [anon_sym___ro_after_init] = ACTIONS(1524), + [anon_sym___init] = ACTIONS(1524), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1526), + [anon_sym___declspec] = ACTIONS(1524), + [anon_sym___cdecl] = ACTIONS(1524), + [anon_sym___clrcall] = ACTIONS(1524), + [anon_sym___stdcall] = ACTIONS(1524), + [anon_sym___fastcall] = ACTIONS(1524), + [anon_sym___thiscall] = ACTIONS(1524), + [anon_sym___vectorcall] = ACTIONS(1524), + [anon_sym_LBRACE] = ACTIONS(1526), + [anon_sym_signed] = ACTIONS(1524), + [anon_sym_unsigned] = ACTIONS(1524), + [anon_sym_long] = ACTIONS(1524), + [anon_sym_short] = ACTIONS(1524), + [anon_sym_static] = ACTIONS(1524), + [anon_sym_auto] = ACTIONS(1524), + [anon_sym_register] = ACTIONS(1524), + [anon_sym_inline] = ACTIONS(1524), + [anon_sym___inline] = ACTIONS(1524), + [anon_sym___inline__] = ACTIONS(1524), + [anon_sym___forceinline] = ACTIONS(1524), + [anon_sym_thread_local] = ACTIONS(1524), + [anon_sym___thread] = ACTIONS(1524), + [anon_sym_const] = ACTIONS(1524), + [anon_sym_constexpr] = ACTIONS(1524), + [anon_sym_volatile] = ACTIONS(1524), + [anon_sym_restrict] = ACTIONS(1524), + [anon_sym___restrict__] = ACTIONS(1524), + [anon_sym__Atomic] = ACTIONS(1524), + [anon_sym__Noreturn] = ACTIONS(1524), + [anon_sym_noreturn] = ACTIONS(1524), + [sym_primitive_type] = ACTIONS(1524), + [anon_sym_enum] = ACTIONS(1524), + [anon_sym_struct] = ACTIONS(1524), + [anon_sym_union] = ACTIONS(1524), + [anon_sym_if] = ACTIONS(1524), + [anon_sym_switch] = ACTIONS(1524), + [anon_sym_case] = ACTIONS(1524), + [anon_sym_default] = ACTIONS(1524), + [anon_sym_while] = ACTIONS(1524), + [anon_sym_do] = ACTIONS(1524), + [anon_sym_for] = ACTIONS(1524), + [anon_sym_return] = ACTIONS(1524), + [anon_sym_break] = ACTIONS(1524), + [anon_sym_continue] = ACTIONS(1524), + [anon_sym_goto] = ACTIONS(1524), + [anon_sym___try] = ACTIONS(1524), + [anon_sym___leave] = ACTIONS(1524), + [anon_sym_DASH_DASH] = ACTIONS(1526), + [anon_sym_PLUS_PLUS] = ACTIONS(1526), + [anon_sym_sizeof] = ACTIONS(1524), + [anon_sym___alignof__] = ACTIONS(1524), + [anon_sym___alignof] = ACTIONS(1524), + [anon_sym__alignof] = ACTIONS(1524), + [anon_sym_alignof] = ACTIONS(1524), + [anon_sym__Alignof] = ACTIONS(1524), + [anon_sym_offsetof] = ACTIONS(1524), + [anon_sym__Generic] = ACTIONS(1524), + [anon_sym_asm] = ACTIONS(1524), + [anon_sym___asm__] = ACTIONS(1524), + [sym_number_literal] = ACTIONS(1526), + [anon_sym_L_SQUOTE] = ACTIONS(1526), + [anon_sym_u_SQUOTE] = ACTIONS(1526), + [anon_sym_U_SQUOTE] = ACTIONS(1526), + [anon_sym_u8_SQUOTE] = ACTIONS(1526), + [anon_sym_SQUOTE] = ACTIONS(1526), + [anon_sym_L_DQUOTE] = ACTIONS(1526), + [anon_sym_u_DQUOTE] = ACTIONS(1526), + [anon_sym_U_DQUOTE] = ACTIONS(1526), + [anon_sym_u8_DQUOTE] = ACTIONS(1526), + [anon_sym_DQUOTE] = ACTIONS(1526), + [sym_true] = ACTIONS(1524), + [sym_false] = ACTIONS(1524), + [anon_sym_NULL] = ACTIONS(1524), + [anon_sym_nullptr] = ACTIONS(1524), [sym_comment] = ACTIONS(3), }, [160] = { - [sym_identifier] = ACTIONS(1515), - [aux_sym_preproc_include_token1] = ACTIONS(1515), - [aux_sym_preproc_def_token1] = ACTIONS(1515), - [aux_sym_preproc_if_token1] = ACTIONS(1515), - [aux_sym_preproc_if_token2] = ACTIONS(1515), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1515), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1515), - [aux_sym_preproc_else_token1] = ACTIONS(1515), - [aux_sym_preproc_elif_token1] = ACTIONS(1515), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1515), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1515), - [sym_preproc_directive] = ACTIONS(1515), - [anon_sym_LPAREN2] = ACTIONS(1517), - [anon_sym_BANG] = ACTIONS(1517), - [anon_sym_TILDE] = ACTIONS(1517), - [anon_sym_DASH] = ACTIONS(1515), - [anon_sym_PLUS] = ACTIONS(1515), - [anon_sym_STAR] = ACTIONS(1517), - [anon_sym_AMP] = ACTIONS(1517), - [anon_sym_SEMI] = ACTIONS(1517), - [anon_sym___extension__] = ACTIONS(1515), - [anon_sym_typedef] = ACTIONS(1515), - [anon_sym_extern] = ACTIONS(1515), - [anon_sym___attribute__] = ACTIONS(1515), - [anon_sym___scanf] = ACTIONS(1515), - [anon_sym___printf] = ACTIONS(1515), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1517), - [anon_sym___declspec] = ACTIONS(1515), - [anon_sym___cdecl] = ACTIONS(1515), - [anon_sym___clrcall] = ACTIONS(1515), - [anon_sym___stdcall] = ACTIONS(1515), - [anon_sym___fastcall] = ACTIONS(1515), - [anon_sym___thiscall] = ACTIONS(1515), - [anon_sym___vectorcall] = ACTIONS(1515), - [anon_sym_LBRACE] = ACTIONS(1517), - [anon_sym_signed] = ACTIONS(1515), - [anon_sym_unsigned] = ACTIONS(1515), - [anon_sym_long] = ACTIONS(1515), - [anon_sym_short] = ACTIONS(1515), - [anon_sym_static] = ACTIONS(1515), - [anon_sym_auto] = ACTIONS(1515), - [anon_sym_register] = ACTIONS(1515), - [anon_sym_inline] = ACTIONS(1515), - [anon_sym___inline] = ACTIONS(1515), - [anon_sym___inline__] = ACTIONS(1515), - [anon_sym___forceinline] = ACTIONS(1515), - [anon_sym_thread_local] = ACTIONS(1515), - [anon_sym___thread] = ACTIONS(1515), - [anon_sym_const] = ACTIONS(1515), - [anon_sym_constexpr] = ACTIONS(1515), - [anon_sym_volatile] = ACTIONS(1515), - [anon_sym_restrict] = ACTIONS(1515), - [anon_sym___restrict__] = ACTIONS(1515), - [anon_sym__Atomic] = ACTIONS(1515), - [anon_sym__Noreturn] = ACTIONS(1515), - [anon_sym_noreturn] = ACTIONS(1515), - [sym_primitive_type] = ACTIONS(1515), - [anon_sym_enum] = ACTIONS(1515), - [anon_sym_struct] = ACTIONS(1515), - [anon_sym_union] = ACTIONS(1515), - [anon_sym_if] = ACTIONS(1515), - [anon_sym_switch] = ACTIONS(1515), - [anon_sym_case] = ACTIONS(1515), - [anon_sym_default] = ACTIONS(1515), - [anon_sym_while] = ACTIONS(1515), - [anon_sym_do] = ACTIONS(1515), - [anon_sym_for] = ACTIONS(1515), - [anon_sym_return] = ACTIONS(1515), - [anon_sym_break] = ACTIONS(1515), - [anon_sym_continue] = ACTIONS(1515), - [anon_sym_goto] = ACTIONS(1515), - [anon_sym___try] = ACTIONS(1515), - [anon_sym___leave] = ACTIONS(1515), - [anon_sym_DASH_DASH] = ACTIONS(1517), - [anon_sym_PLUS_PLUS] = ACTIONS(1517), - [anon_sym_sizeof] = ACTIONS(1515), - [anon_sym___alignof__] = ACTIONS(1515), - [anon_sym___alignof] = ACTIONS(1515), - [anon_sym__alignof] = ACTIONS(1515), - [anon_sym_alignof] = ACTIONS(1515), - [anon_sym__Alignof] = ACTIONS(1515), - [anon_sym_offsetof] = ACTIONS(1515), - [anon_sym__Generic] = ACTIONS(1515), - [anon_sym_asm] = ACTIONS(1515), - [anon_sym___asm__] = ACTIONS(1515), - [sym_number_literal] = ACTIONS(1517), - [anon_sym_L_SQUOTE] = ACTIONS(1517), - [anon_sym_u_SQUOTE] = ACTIONS(1517), - [anon_sym_U_SQUOTE] = ACTIONS(1517), - [anon_sym_u8_SQUOTE] = ACTIONS(1517), - [anon_sym_SQUOTE] = ACTIONS(1517), - [anon_sym_L_DQUOTE] = ACTIONS(1517), - [anon_sym_u_DQUOTE] = ACTIONS(1517), - [anon_sym_U_DQUOTE] = ACTIONS(1517), - [anon_sym_u8_DQUOTE] = ACTIONS(1517), - [anon_sym_DQUOTE] = ACTIONS(1517), - [sym_true] = ACTIONS(1515), - [sym_false] = ACTIONS(1515), - [anon_sym_NULL] = ACTIONS(1515), - [anon_sym_nullptr] = ACTIONS(1515), + [sym_else_clause] = STATE(175), + [sym_identifier] = ACTIONS(1314), + [aux_sym_preproc_include_token1] = ACTIONS(1314), + [aux_sym_preproc_def_token1] = ACTIONS(1314), + [aux_sym_preproc_if_token1] = ACTIONS(1314), + [aux_sym_preproc_if_token2] = ACTIONS(1314), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1314), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1314), + [aux_sym_preproc_else_token1] = ACTIONS(1314), + [aux_sym_preproc_elif_token1] = ACTIONS(1314), + [sym_preproc_directive] = ACTIONS(1314), + [anon_sym_LPAREN2] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(1316), + [anon_sym_TILDE] = ACTIONS(1316), + [anon_sym_DASH] = ACTIONS(1314), + [anon_sym_PLUS] = ACTIONS(1314), + [anon_sym_STAR] = ACTIONS(1316), + [anon_sym_AMP] = ACTIONS(1316), + [anon_sym_SEMI] = ACTIONS(1316), + [anon_sym___extension__] = ACTIONS(1314), + [anon_sym_typedef] = ACTIONS(1314), + [anon_sym_extern] = ACTIONS(1314), + [anon_sym___attribute__] = ACTIONS(1314), + [anon_sym___scanf] = ACTIONS(1314), + [anon_sym___printf] = ACTIONS(1314), + [anon_sym___read_mostly] = ACTIONS(1314), + [anon_sym___must_hold] = ACTIONS(1314), + [anon_sym___ro_after_init] = ACTIONS(1314), + [anon_sym___init] = ACTIONS(1314), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1316), + [anon_sym___declspec] = ACTIONS(1314), + [anon_sym___cdecl] = ACTIONS(1314), + [anon_sym___clrcall] = ACTIONS(1314), + [anon_sym___stdcall] = ACTIONS(1314), + [anon_sym___fastcall] = ACTIONS(1314), + [anon_sym___thiscall] = ACTIONS(1314), + [anon_sym___vectorcall] = ACTIONS(1314), + [anon_sym_LBRACE] = ACTIONS(1316), + [anon_sym_signed] = ACTIONS(1314), + [anon_sym_unsigned] = ACTIONS(1314), + [anon_sym_long] = ACTIONS(1314), + [anon_sym_short] = ACTIONS(1314), + [anon_sym_static] = ACTIONS(1314), + [anon_sym_auto] = ACTIONS(1314), + [anon_sym_register] = ACTIONS(1314), + [anon_sym_inline] = ACTIONS(1314), + [anon_sym___inline] = ACTIONS(1314), + [anon_sym___inline__] = ACTIONS(1314), + [anon_sym___forceinline] = ACTIONS(1314), + [anon_sym_thread_local] = ACTIONS(1314), + [anon_sym___thread] = ACTIONS(1314), + [anon_sym_const] = ACTIONS(1314), + [anon_sym_constexpr] = ACTIONS(1314), + [anon_sym_volatile] = ACTIONS(1314), + [anon_sym_restrict] = ACTIONS(1314), + [anon_sym___restrict__] = ACTIONS(1314), + [anon_sym__Atomic] = ACTIONS(1314), + [anon_sym__Noreturn] = ACTIONS(1314), + [anon_sym_noreturn] = ACTIONS(1314), + [sym_primitive_type] = ACTIONS(1314), + [anon_sym_enum] = ACTIONS(1314), + [anon_sym_struct] = ACTIONS(1314), + [anon_sym_union] = ACTIONS(1314), + [anon_sym_if] = ACTIONS(1314), + [anon_sym_else] = ACTIONS(1528), + [anon_sym_switch] = ACTIONS(1314), + [anon_sym_case] = ACTIONS(1314), + [anon_sym_default] = ACTIONS(1314), + [anon_sym_while] = ACTIONS(1314), + [anon_sym_do] = ACTIONS(1314), + [anon_sym_for] = ACTIONS(1314), + [anon_sym_return] = ACTIONS(1314), + [anon_sym_break] = ACTIONS(1314), + [anon_sym_continue] = ACTIONS(1314), + [anon_sym_goto] = ACTIONS(1314), + [anon_sym___try] = ACTIONS(1314), + [anon_sym___leave] = ACTIONS(1314), + [anon_sym_DASH_DASH] = ACTIONS(1316), + [anon_sym_PLUS_PLUS] = ACTIONS(1316), + [anon_sym_sizeof] = ACTIONS(1314), + [anon_sym___alignof__] = ACTIONS(1314), + [anon_sym___alignof] = ACTIONS(1314), + [anon_sym__alignof] = ACTIONS(1314), + [anon_sym_alignof] = ACTIONS(1314), + [anon_sym__Alignof] = ACTIONS(1314), + [anon_sym_offsetof] = ACTIONS(1314), + [anon_sym__Generic] = ACTIONS(1314), + [anon_sym_asm] = ACTIONS(1314), + [anon_sym___asm__] = ACTIONS(1314), + [sym_number_literal] = ACTIONS(1316), + [anon_sym_L_SQUOTE] = ACTIONS(1316), + [anon_sym_u_SQUOTE] = ACTIONS(1316), + [anon_sym_U_SQUOTE] = ACTIONS(1316), + [anon_sym_u8_SQUOTE] = ACTIONS(1316), + [anon_sym_SQUOTE] = ACTIONS(1316), + [anon_sym_L_DQUOTE] = ACTIONS(1316), + [anon_sym_u_DQUOTE] = ACTIONS(1316), + [anon_sym_U_DQUOTE] = ACTIONS(1316), + [anon_sym_u8_DQUOTE] = ACTIONS(1316), + [anon_sym_DQUOTE] = ACTIONS(1316), + [sym_true] = ACTIONS(1314), + [sym_false] = ACTIONS(1314), + [anon_sym_NULL] = ACTIONS(1314), + [anon_sym_nullptr] = ACTIONS(1314), [sym_comment] = ACTIONS(3), }, [161] = { - [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), - [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_LBRACK_LBRACK] = ACTIONS(1339), - [anon_sym___declspec] = 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), - [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_else] = 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_identifier] = ACTIONS(1320), + [aux_sym_preproc_include_token1] = ACTIONS(1320), + [aux_sym_preproc_def_token1] = ACTIONS(1320), + [aux_sym_preproc_if_token1] = ACTIONS(1320), + [aux_sym_preproc_if_token2] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1320), + [aux_sym_preproc_else_token1] = ACTIONS(1320), + [aux_sym_preproc_elif_token1] = ACTIONS(1320), + [sym_preproc_directive] = ACTIONS(1320), + [anon_sym_LPAREN2] = ACTIONS(1322), + [anon_sym_BANG] = ACTIONS(1322), + [anon_sym_TILDE] = ACTIONS(1322), + [anon_sym_DASH] = ACTIONS(1320), + [anon_sym_PLUS] = ACTIONS(1320), + [anon_sym_STAR] = ACTIONS(1322), + [anon_sym_AMP] = ACTIONS(1322), + [anon_sym_SEMI] = ACTIONS(1322), + [anon_sym___extension__] = ACTIONS(1320), + [anon_sym_typedef] = ACTIONS(1320), + [anon_sym_extern] = ACTIONS(1320), + [anon_sym___attribute__] = ACTIONS(1320), + [anon_sym___scanf] = ACTIONS(1320), + [anon_sym___printf] = ACTIONS(1320), + [anon_sym___read_mostly] = ACTIONS(1320), + [anon_sym___must_hold] = ACTIONS(1320), + [anon_sym___ro_after_init] = ACTIONS(1320), + [anon_sym___init] = ACTIONS(1320), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1322), + [anon_sym___declspec] = ACTIONS(1320), + [anon_sym___cdecl] = ACTIONS(1320), + [anon_sym___clrcall] = ACTIONS(1320), + [anon_sym___stdcall] = ACTIONS(1320), + [anon_sym___fastcall] = ACTIONS(1320), + [anon_sym___thiscall] = ACTIONS(1320), + [anon_sym___vectorcall] = ACTIONS(1320), + [anon_sym_LBRACE] = ACTIONS(1322), + [anon_sym_signed] = ACTIONS(1320), + [anon_sym_unsigned] = ACTIONS(1320), + [anon_sym_long] = ACTIONS(1320), + [anon_sym_short] = ACTIONS(1320), + [anon_sym_static] = ACTIONS(1320), + [anon_sym_auto] = ACTIONS(1320), + [anon_sym_register] = ACTIONS(1320), + [anon_sym_inline] = ACTIONS(1320), + [anon_sym___inline] = ACTIONS(1320), + [anon_sym___inline__] = ACTIONS(1320), + [anon_sym___forceinline] = ACTIONS(1320), + [anon_sym_thread_local] = ACTIONS(1320), + [anon_sym___thread] = ACTIONS(1320), + [anon_sym_const] = ACTIONS(1320), + [anon_sym_constexpr] = ACTIONS(1320), + [anon_sym_volatile] = ACTIONS(1320), + [anon_sym_restrict] = ACTIONS(1320), + [anon_sym___restrict__] = ACTIONS(1320), + [anon_sym__Atomic] = ACTIONS(1320), + [anon_sym__Noreturn] = ACTIONS(1320), + [anon_sym_noreturn] = ACTIONS(1320), + [sym_primitive_type] = ACTIONS(1320), + [anon_sym_enum] = ACTIONS(1320), + [anon_sym_struct] = ACTIONS(1320), + [anon_sym_union] = ACTIONS(1320), + [anon_sym_if] = ACTIONS(1320), + [anon_sym_else] = ACTIONS(1320), + [anon_sym_switch] = ACTIONS(1320), + [anon_sym_case] = ACTIONS(1320), + [anon_sym_default] = ACTIONS(1320), + [anon_sym_while] = ACTIONS(1320), + [anon_sym_do] = ACTIONS(1320), + [anon_sym_for] = ACTIONS(1320), + [anon_sym_return] = ACTIONS(1320), + [anon_sym_break] = ACTIONS(1320), + [anon_sym_continue] = ACTIONS(1320), + [anon_sym_goto] = ACTIONS(1320), + [anon_sym___try] = ACTIONS(1320), + [anon_sym___leave] = ACTIONS(1320), + [anon_sym_DASH_DASH] = ACTIONS(1322), + [anon_sym_PLUS_PLUS] = ACTIONS(1322), + [anon_sym_sizeof] = ACTIONS(1320), + [anon_sym___alignof__] = ACTIONS(1320), + [anon_sym___alignof] = ACTIONS(1320), + [anon_sym__alignof] = ACTIONS(1320), + [anon_sym_alignof] = ACTIONS(1320), + [anon_sym__Alignof] = ACTIONS(1320), + [anon_sym_offsetof] = ACTIONS(1320), + [anon_sym__Generic] = ACTIONS(1320), + [anon_sym_asm] = ACTIONS(1320), + [anon_sym___asm__] = ACTIONS(1320), + [sym_number_literal] = ACTIONS(1322), + [anon_sym_L_SQUOTE] = ACTIONS(1322), + [anon_sym_u_SQUOTE] = ACTIONS(1322), + [anon_sym_U_SQUOTE] = ACTIONS(1322), + [anon_sym_u8_SQUOTE] = ACTIONS(1322), + [anon_sym_SQUOTE] = ACTIONS(1322), + [anon_sym_L_DQUOTE] = ACTIONS(1322), + [anon_sym_u_DQUOTE] = ACTIONS(1322), + [anon_sym_U_DQUOTE] = ACTIONS(1322), + [anon_sym_u8_DQUOTE] = ACTIONS(1322), + [anon_sym_DQUOTE] = ACTIONS(1322), + [sym_true] = ACTIONS(1320), + [sym_false] = ACTIONS(1320), + [anon_sym_NULL] = ACTIONS(1320), + [anon_sym_nullptr] = ACTIONS(1320), [sym_comment] = ACTIONS(3), }, [162] = { - [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), - [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_LBRACK_LBRACK] = ACTIONS(1315), - [anon_sym___declspec] = 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), - [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_else] = 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_identifier] = ACTIONS(1320), + [aux_sym_preproc_include_token1] = ACTIONS(1320), + [aux_sym_preproc_def_token1] = ACTIONS(1320), + [aux_sym_preproc_if_token1] = ACTIONS(1320), + [aux_sym_preproc_if_token2] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1320), + [aux_sym_preproc_else_token1] = ACTIONS(1320), + [aux_sym_preproc_elif_token1] = ACTIONS(1320), + [sym_preproc_directive] = ACTIONS(1320), + [anon_sym_LPAREN2] = ACTIONS(1322), + [anon_sym_BANG] = ACTIONS(1322), + [anon_sym_TILDE] = ACTIONS(1322), + [anon_sym_DASH] = ACTIONS(1320), + [anon_sym_PLUS] = ACTIONS(1320), + [anon_sym_STAR] = ACTIONS(1322), + [anon_sym_AMP] = ACTIONS(1322), + [anon_sym_SEMI] = ACTIONS(1322), + [anon_sym___extension__] = ACTIONS(1320), + [anon_sym_typedef] = ACTIONS(1320), + [anon_sym_extern] = ACTIONS(1320), + [anon_sym___attribute__] = ACTIONS(1320), + [anon_sym___scanf] = ACTIONS(1320), + [anon_sym___printf] = ACTIONS(1320), + [anon_sym___read_mostly] = ACTIONS(1320), + [anon_sym___must_hold] = ACTIONS(1320), + [anon_sym___ro_after_init] = ACTIONS(1320), + [anon_sym___init] = ACTIONS(1320), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1322), + [anon_sym___declspec] = ACTIONS(1320), + [anon_sym___cdecl] = ACTIONS(1320), + [anon_sym___clrcall] = ACTIONS(1320), + [anon_sym___stdcall] = ACTIONS(1320), + [anon_sym___fastcall] = ACTIONS(1320), + [anon_sym___thiscall] = ACTIONS(1320), + [anon_sym___vectorcall] = ACTIONS(1320), + [anon_sym_LBRACE] = ACTIONS(1322), + [anon_sym_signed] = ACTIONS(1320), + [anon_sym_unsigned] = ACTIONS(1320), + [anon_sym_long] = ACTIONS(1320), + [anon_sym_short] = ACTIONS(1320), + [anon_sym_static] = ACTIONS(1320), + [anon_sym_auto] = ACTIONS(1320), + [anon_sym_register] = ACTIONS(1320), + [anon_sym_inline] = ACTIONS(1320), + [anon_sym___inline] = ACTIONS(1320), + [anon_sym___inline__] = ACTIONS(1320), + [anon_sym___forceinline] = ACTIONS(1320), + [anon_sym_thread_local] = ACTIONS(1320), + [anon_sym___thread] = ACTIONS(1320), + [anon_sym_const] = ACTIONS(1320), + [anon_sym_constexpr] = ACTIONS(1320), + [anon_sym_volatile] = ACTIONS(1320), + [anon_sym_restrict] = ACTIONS(1320), + [anon_sym___restrict__] = ACTIONS(1320), + [anon_sym__Atomic] = ACTIONS(1320), + [anon_sym__Noreturn] = ACTIONS(1320), + [anon_sym_noreturn] = ACTIONS(1320), + [sym_primitive_type] = ACTIONS(1320), + [anon_sym_enum] = ACTIONS(1320), + [anon_sym_struct] = ACTIONS(1320), + [anon_sym_union] = ACTIONS(1320), + [anon_sym_if] = ACTIONS(1320), + [anon_sym_else] = ACTIONS(1320), + [anon_sym_switch] = ACTIONS(1320), + [anon_sym_case] = ACTIONS(1320), + [anon_sym_default] = ACTIONS(1320), + [anon_sym_while] = ACTIONS(1320), + [anon_sym_do] = ACTIONS(1320), + [anon_sym_for] = ACTIONS(1320), + [anon_sym_return] = ACTIONS(1320), + [anon_sym_break] = ACTIONS(1320), + [anon_sym_continue] = ACTIONS(1320), + [anon_sym_goto] = ACTIONS(1320), + [anon_sym___try] = ACTIONS(1320), + [anon_sym___leave] = ACTIONS(1320), + [anon_sym_DASH_DASH] = ACTIONS(1322), + [anon_sym_PLUS_PLUS] = ACTIONS(1322), + [anon_sym_sizeof] = ACTIONS(1320), + [anon_sym___alignof__] = ACTIONS(1320), + [anon_sym___alignof] = ACTIONS(1320), + [anon_sym__alignof] = ACTIONS(1320), + [anon_sym_alignof] = ACTIONS(1320), + [anon_sym__Alignof] = ACTIONS(1320), + [anon_sym_offsetof] = ACTIONS(1320), + [anon_sym__Generic] = ACTIONS(1320), + [anon_sym_asm] = ACTIONS(1320), + [anon_sym___asm__] = ACTIONS(1320), + [sym_number_literal] = ACTIONS(1322), + [anon_sym_L_SQUOTE] = ACTIONS(1322), + [anon_sym_u_SQUOTE] = ACTIONS(1322), + [anon_sym_U_SQUOTE] = ACTIONS(1322), + [anon_sym_u8_SQUOTE] = ACTIONS(1322), + [anon_sym_SQUOTE] = ACTIONS(1322), + [anon_sym_L_DQUOTE] = ACTIONS(1322), + [anon_sym_u_DQUOTE] = ACTIONS(1322), + [anon_sym_U_DQUOTE] = ACTIONS(1322), + [anon_sym_u8_DQUOTE] = ACTIONS(1322), + [anon_sym_DQUOTE] = ACTIONS(1322), + [sym_true] = ACTIONS(1320), + [sym_false] = ACTIONS(1320), + [anon_sym_NULL] = ACTIONS(1320), + [anon_sym_nullptr] = ACTIONS(1320), [sym_comment] = ACTIONS(3), }, [163] = { - [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), - [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_LBRACK_LBRACK] = ACTIONS(1351), - [anon_sym___declspec] = 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), - [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_else] = 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_identifier] = ACTIONS(1356), + [aux_sym_preproc_include_token1] = ACTIONS(1356), + [aux_sym_preproc_def_token1] = ACTIONS(1356), + [aux_sym_preproc_if_token1] = ACTIONS(1356), + [aux_sym_preproc_if_token2] = ACTIONS(1356), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1356), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1356), + [aux_sym_preproc_else_token1] = ACTIONS(1356), + [aux_sym_preproc_elif_token1] = ACTIONS(1356), + [sym_preproc_directive] = ACTIONS(1356), + [anon_sym_LPAREN2] = ACTIONS(1358), + [anon_sym_BANG] = ACTIONS(1358), + [anon_sym_TILDE] = ACTIONS(1358), + [anon_sym_DASH] = ACTIONS(1356), + [anon_sym_PLUS] = ACTIONS(1356), + [anon_sym_STAR] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1358), + [anon_sym_SEMI] = ACTIONS(1358), + [anon_sym___extension__] = ACTIONS(1356), + [anon_sym_typedef] = ACTIONS(1356), + [anon_sym_extern] = ACTIONS(1356), + [anon_sym___attribute__] = ACTIONS(1356), + [anon_sym___scanf] = ACTIONS(1356), + [anon_sym___printf] = ACTIONS(1356), + [anon_sym___read_mostly] = ACTIONS(1356), + [anon_sym___must_hold] = ACTIONS(1356), + [anon_sym___ro_after_init] = ACTIONS(1356), + [anon_sym___init] = ACTIONS(1356), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1358), + [anon_sym___declspec] = ACTIONS(1356), + [anon_sym___cdecl] = ACTIONS(1356), + [anon_sym___clrcall] = ACTIONS(1356), + [anon_sym___stdcall] = ACTIONS(1356), + [anon_sym___fastcall] = ACTIONS(1356), + [anon_sym___thiscall] = ACTIONS(1356), + [anon_sym___vectorcall] = ACTIONS(1356), + [anon_sym_LBRACE] = ACTIONS(1358), + [anon_sym_signed] = ACTIONS(1356), + [anon_sym_unsigned] = ACTIONS(1356), + [anon_sym_long] = ACTIONS(1356), + [anon_sym_short] = ACTIONS(1356), + [anon_sym_static] = ACTIONS(1356), + [anon_sym_auto] = ACTIONS(1356), + [anon_sym_register] = ACTIONS(1356), + [anon_sym_inline] = ACTIONS(1356), + [anon_sym___inline] = ACTIONS(1356), + [anon_sym___inline__] = ACTIONS(1356), + [anon_sym___forceinline] = ACTIONS(1356), + [anon_sym_thread_local] = ACTIONS(1356), + [anon_sym___thread] = ACTIONS(1356), + [anon_sym_const] = ACTIONS(1356), + [anon_sym_constexpr] = ACTIONS(1356), + [anon_sym_volatile] = ACTIONS(1356), + [anon_sym_restrict] = ACTIONS(1356), + [anon_sym___restrict__] = ACTIONS(1356), + [anon_sym__Atomic] = ACTIONS(1356), + [anon_sym__Noreturn] = ACTIONS(1356), + [anon_sym_noreturn] = ACTIONS(1356), + [sym_primitive_type] = ACTIONS(1356), + [anon_sym_enum] = ACTIONS(1356), + [anon_sym_struct] = ACTIONS(1356), + [anon_sym_union] = ACTIONS(1356), + [anon_sym_if] = ACTIONS(1356), + [anon_sym_else] = ACTIONS(1356), + [anon_sym_switch] = ACTIONS(1356), + [anon_sym_case] = ACTIONS(1356), + [anon_sym_default] = ACTIONS(1356), + [anon_sym_while] = ACTIONS(1356), + [anon_sym_do] = ACTIONS(1356), + [anon_sym_for] = ACTIONS(1356), + [anon_sym_return] = ACTIONS(1356), + [anon_sym_break] = ACTIONS(1356), + [anon_sym_continue] = ACTIONS(1356), + [anon_sym_goto] = ACTIONS(1356), + [anon_sym___try] = ACTIONS(1356), + [anon_sym___leave] = ACTIONS(1356), + [anon_sym_DASH_DASH] = ACTIONS(1358), + [anon_sym_PLUS_PLUS] = ACTIONS(1358), + [anon_sym_sizeof] = ACTIONS(1356), + [anon_sym___alignof__] = ACTIONS(1356), + [anon_sym___alignof] = ACTIONS(1356), + [anon_sym__alignof] = ACTIONS(1356), + [anon_sym_alignof] = ACTIONS(1356), + [anon_sym__Alignof] = ACTIONS(1356), + [anon_sym_offsetof] = ACTIONS(1356), + [anon_sym__Generic] = ACTIONS(1356), + [anon_sym_asm] = ACTIONS(1356), + [anon_sym___asm__] = ACTIONS(1356), + [sym_number_literal] = ACTIONS(1358), + [anon_sym_L_SQUOTE] = ACTIONS(1358), + [anon_sym_u_SQUOTE] = ACTIONS(1358), + [anon_sym_U_SQUOTE] = ACTIONS(1358), + [anon_sym_u8_SQUOTE] = ACTIONS(1358), + [anon_sym_SQUOTE] = ACTIONS(1358), + [anon_sym_L_DQUOTE] = ACTIONS(1358), + [anon_sym_u_DQUOTE] = ACTIONS(1358), + [anon_sym_U_DQUOTE] = ACTIONS(1358), + [anon_sym_u8_DQUOTE] = ACTIONS(1358), + [anon_sym_DQUOTE] = ACTIONS(1358), + [sym_true] = ACTIONS(1356), + [sym_false] = ACTIONS(1356), + [anon_sym_NULL] = ACTIONS(1356), + [anon_sym_nullptr] = ACTIONS(1356), [sym_comment] = ACTIONS(3), }, [164] = { - [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), - [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_LBRACK_LBRACK] = ACTIONS(1363), - [anon_sym___declspec] = 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), - [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_else] = 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_identifier] = ACTIONS(1328), + [aux_sym_preproc_include_token1] = ACTIONS(1328), + [aux_sym_preproc_def_token1] = ACTIONS(1328), + [aux_sym_preproc_if_token1] = ACTIONS(1328), + [aux_sym_preproc_if_token2] = ACTIONS(1328), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1328), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1328), + [aux_sym_preproc_else_token1] = ACTIONS(1328), + [aux_sym_preproc_elif_token1] = ACTIONS(1328), + [sym_preproc_directive] = ACTIONS(1328), + [anon_sym_LPAREN2] = ACTIONS(1330), + [anon_sym_BANG] = ACTIONS(1330), + [anon_sym_TILDE] = ACTIONS(1330), + [anon_sym_DASH] = ACTIONS(1328), + [anon_sym_PLUS] = ACTIONS(1328), + [anon_sym_STAR] = ACTIONS(1330), + [anon_sym_AMP] = ACTIONS(1330), + [anon_sym_SEMI] = ACTIONS(1330), + [anon_sym___extension__] = ACTIONS(1328), + [anon_sym_typedef] = ACTIONS(1328), + [anon_sym_extern] = ACTIONS(1328), + [anon_sym___attribute__] = ACTIONS(1328), + [anon_sym___scanf] = ACTIONS(1328), + [anon_sym___printf] = ACTIONS(1328), + [anon_sym___read_mostly] = ACTIONS(1328), + [anon_sym___must_hold] = ACTIONS(1328), + [anon_sym___ro_after_init] = ACTIONS(1328), + [anon_sym___init] = ACTIONS(1328), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1330), + [anon_sym___declspec] = ACTIONS(1328), + [anon_sym___cdecl] = ACTIONS(1328), + [anon_sym___clrcall] = ACTIONS(1328), + [anon_sym___stdcall] = ACTIONS(1328), + [anon_sym___fastcall] = ACTIONS(1328), + [anon_sym___thiscall] = ACTIONS(1328), + [anon_sym___vectorcall] = ACTIONS(1328), + [anon_sym_LBRACE] = ACTIONS(1330), + [anon_sym_signed] = ACTIONS(1328), + [anon_sym_unsigned] = ACTIONS(1328), + [anon_sym_long] = ACTIONS(1328), + [anon_sym_short] = ACTIONS(1328), + [anon_sym_static] = ACTIONS(1328), + [anon_sym_auto] = ACTIONS(1328), + [anon_sym_register] = ACTIONS(1328), + [anon_sym_inline] = ACTIONS(1328), + [anon_sym___inline] = ACTIONS(1328), + [anon_sym___inline__] = ACTIONS(1328), + [anon_sym___forceinline] = ACTIONS(1328), + [anon_sym_thread_local] = ACTIONS(1328), + [anon_sym___thread] = ACTIONS(1328), + [anon_sym_const] = ACTIONS(1328), + [anon_sym_constexpr] = ACTIONS(1328), + [anon_sym_volatile] = ACTIONS(1328), + [anon_sym_restrict] = ACTIONS(1328), + [anon_sym___restrict__] = ACTIONS(1328), + [anon_sym__Atomic] = ACTIONS(1328), + [anon_sym__Noreturn] = ACTIONS(1328), + [anon_sym_noreturn] = ACTIONS(1328), + [sym_primitive_type] = ACTIONS(1328), + [anon_sym_enum] = ACTIONS(1328), + [anon_sym_struct] = ACTIONS(1328), + [anon_sym_union] = ACTIONS(1328), + [anon_sym_if] = ACTIONS(1328), + [anon_sym_else] = ACTIONS(1328), + [anon_sym_switch] = ACTIONS(1328), + [anon_sym_case] = ACTIONS(1328), + [anon_sym_default] = ACTIONS(1328), + [anon_sym_while] = ACTIONS(1328), + [anon_sym_do] = ACTIONS(1328), + [anon_sym_for] = ACTIONS(1328), + [anon_sym_return] = ACTIONS(1328), + [anon_sym_break] = ACTIONS(1328), + [anon_sym_continue] = ACTIONS(1328), + [anon_sym_goto] = ACTIONS(1328), + [anon_sym___try] = ACTIONS(1328), + [anon_sym___leave] = ACTIONS(1328), + [anon_sym_DASH_DASH] = ACTIONS(1330), + [anon_sym_PLUS_PLUS] = ACTIONS(1330), + [anon_sym_sizeof] = ACTIONS(1328), + [anon_sym___alignof__] = ACTIONS(1328), + [anon_sym___alignof] = ACTIONS(1328), + [anon_sym__alignof] = ACTIONS(1328), + [anon_sym_alignof] = ACTIONS(1328), + [anon_sym__Alignof] = ACTIONS(1328), + [anon_sym_offsetof] = ACTIONS(1328), + [anon_sym__Generic] = ACTIONS(1328), + [anon_sym_asm] = ACTIONS(1328), + [anon_sym___asm__] = ACTIONS(1328), + [sym_number_literal] = ACTIONS(1330), + [anon_sym_L_SQUOTE] = ACTIONS(1330), + [anon_sym_u_SQUOTE] = ACTIONS(1330), + [anon_sym_U_SQUOTE] = ACTIONS(1330), + [anon_sym_u8_SQUOTE] = ACTIONS(1330), + [anon_sym_SQUOTE] = ACTIONS(1330), + [anon_sym_L_DQUOTE] = ACTIONS(1330), + [anon_sym_u_DQUOTE] = ACTIONS(1330), + [anon_sym_U_DQUOTE] = ACTIONS(1330), + [anon_sym_u8_DQUOTE] = ACTIONS(1330), + [anon_sym_DQUOTE] = ACTIONS(1330), + [sym_true] = ACTIONS(1328), + [sym_false] = ACTIONS(1328), + [anon_sym_NULL] = ACTIONS(1328), + [anon_sym_nullptr] = ACTIONS(1328), [sym_comment] = ACTIONS(3), }, [165] = { - [sym_identifier] = ACTIONS(1405), - [aux_sym_preproc_include_token1] = ACTIONS(1405), - [aux_sym_preproc_def_token1] = ACTIONS(1405), - [aux_sym_preproc_if_token1] = ACTIONS(1405), - [aux_sym_preproc_if_token2] = ACTIONS(1405), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1405), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1405), - [aux_sym_preproc_else_token1] = ACTIONS(1405), - [aux_sym_preproc_elif_token1] = ACTIONS(1405), - [sym_preproc_directive] = ACTIONS(1405), - [anon_sym_LPAREN2] = ACTIONS(1407), - [anon_sym_BANG] = ACTIONS(1407), - [anon_sym_TILDE] = ACTIONS(1407), - [anon_sym_DASH] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1405), - [anon_sym_STAR] = ACTIONS(1407), - [anon_sym_AMP] = ACTIONS(1407), - [anon_sym_SEMI] = ACTIONS(1407), - [anon_sym___extension__] = ACTIONS(1405), - [anon_sym_typedef] = ACTIONS(1405), - [anon_sym_extern] = ACTIONS(1405), - [anon_sym___attribute__] = ACTIONS(1405), - [anon_sym___scanf] = ACTIONS(1405), - [anon_sym___printf] = ACTIONS(1405), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1407), - [anon_sym___declspec] = ACTIONS(1405), - [anon_sym___cdecl] = ACTIONS(1405), - [anon_sym___clrcall] = ACTIONS(1405), - [anon_sym___stdcall] = ACTIONS(1405), - [anon_sym___fastcall] = ACTIONS(1405), - [anon_sym___thiscall] = ACTIONS(1405), - [anon_sym___vectorcall] = ACTIONS(1405), - [anon_sym_LBRACE] = ACTIONS(1407), - [anon_sym_signed] = ACTIONS(1405), - [anon_sym_unsigned] = ACTIONS(1405), - [anon_sym_long] = ACTIONS(1405), - [anon_sym_short] = ACTIONS(1405), - [anon_sym_static] = ACTIONS(1405), - [anon_sym_auto] = ACTIONS(1405), - [anon_sym_register] = ACTIONS(1405), - [anon_sym_inline] = ACTIONS(1405), - [anon_sym___inline] = ACTIONS(1405), - [anon_sym___inline__] = ACTIONS(1405), - [anon_sym___forceinline] = ACTIONS(1405), - [anon_sym_thread_local] = ACTIONS(1405), - [anon_sym___thread] = ACTIONS(1405), - [anon_sym_const] = ACTIONS(1405), - [anon_sym_constexpr] = ACTIONS(1405), - [anon_sym_volatile] = ACTIONS(1405), - [anon_sym_restrict] = ACTIONS(1405), - [anon_sym___restrict__] = ACTIONS(1405), - [anon_sym__Atomic] = ACTIONS(1405), - [anon_sym__Noreturn] = ACTIONS(1405), - [anon_sym_noreturn] = ACTIONS(1405), - [sym_primitive_type] = ACTIONS(1405), - [anon_sym_enum] = ACTIONS(1405), - [anon_sym_struct] = ACTIONS(1405), - [anon_sym_union] = ACTIONS(1405), - [anon_sym_if] = ACTIONS(1405), - [anon_sym_else] = ACTIONS(1405), - [anon_sym_switch] = ACTIONS(1405), - [anon_sym_case] = ACTIONS(1405), - [anon_sym_default] = ACTIONS(1405), - [anon_sym_while] = ACTIONS(1405), - [anon_sym_do] = ACTIONS(1405), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_return] = ACTIONS(1405), - [anon_sym_break] = ACTIONS(1405), - [anon_sym_continue] = ACTIONS(1405), - [anon_sym_goto] = ACTIONS(1405), - [anon_sym___try] = ACTIONS(1405), - [anon_sym___leave] = ACTIONS(1405), - [anon_sym_DASH_DASH] = ACTIONS(1407), - [anon_sym_PLUS_PLUS] = ACTIONS(1407), - [anon_sym_sizeof] = ACTIONS(1405), - [anon_sym___alignof__] = ACTIONS(1405), - [anon_sym___alignof] = ACTIONS(1405), - [anon_sym__alignof] = ACTIONS(1405), - [anon_sym_alignof] = ACTIONS(1405), - [anon_sym__Alignof] = ACTIONS(1405), - [anon_sym_offsetof] = ACTIONS(1405), - [anon_sym__Generic] = ACTIONS(1405), - [anon_sym_asm] = ACTIONS(1405), - [anon_sym___asm__] = ACTIONS(1405), - [sym_number_literal] = ACTIONS(1407), - [anon_sym_L_SQUOTE] = ACTIONS(1407), - [anon_sym_u_SQUOTE] = ACTIONS(1407), - [anon_sym_U_SQUOTE] = ACTIONS(1407), - [anon_sym_u8_SQUOTE] = ACTIONS(1407), - [anon_sym_SQUOTE] = ACTIONS(1407), - [anon_sym_L_DQUOTE] = ACTIONS(1407), - [anon_sym_u_DQUOTE] = ACTIONS(1407), - [anon_sym_U_DQUOTE] = ACTIONS(1407), - [anon_sym_u8_DQUOTE] = ACTIONS(1407), - [anon_sym_DQUOTE] = ACTIONS(1407), - [sym_true] = ACTIONS(1405), - [sym_false] = ACTIONS(1405), - [anon_sym_NULL] = ACTIONS(1405), - [anon_sym_nullptr] = ACTIONS(1405), + [sym_identifier] = ACTIONS(1352), + [aux_sym_preproc_include_token1] = ACTIONS(1352), + [aux_sym_preproc_def_token1] = ACTIONS(1352), + [aux_sym_preproc_if_token1] = ACTIONS(1352), + [aux_sym_preproc_if_token2] = ACTIONS(1352), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1352), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1352), + [aux_sym_preproc_else_token1] = ACTIONS(1352), + [aux_sym_preproc_elif_token1] = ACTIONS(1352), + [sym_preproc_directive] = ACTIONS(1352), + [anon_sym_LPAREN2] = ACTIONS(1354), + [anon_sym_BANG] = ACTIONS(1354), + [anon_sym_TILDE] = ACTIONS(1354), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_PLUS] = ACTIONS(1352), + [anon_sym_STAR] = ACTIONS(1354), + [anon_sym_AMP] = ACTIONS(1354), + [anon_sym_SEMI] = ACTIONS(1354), + [anon_sym___extension__] = ACTIONS(1352), + [anon_sym_typedef] = ACTIONS(1352), + [anon_sym_extern] = ACTIONS(1352), + [anon_sym___attribute__] = ACTIONS(1352), + [anon_sym___scanf] = ACTIONS(1352), + [anon_sym___printf] = ACTIONS(1352), + [anon_sym___read_mostly] = ACTIONS(1352), + [anon_sym___must_hold] = ACTIONS(1352), + [anon_sym___ro_after_init] = ACTIONS(1352), + [anon_sym___init] = ACTIONS(1352), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1354), + [anon_sym___declspec] = ACTIONS(1352), + [anon_sym___cdecl] = ACTIONS(1352), + [anon_sym___clrcall] = ACTIONS(1352), + [anon_sym___stdcall] = ACTIONS(1352), + [anon_sym___fastcall] = ACTIONS(1352), + [anon_sym___thiscall] = ACTIONS(1352), + [anon_sym___vectorcall] = ACTIONS(1352), + [anon_sym_LBRACE] = ACTIONS(1354), + [anon_sym_signed] = ACTIONS(1352), + [anon_sym_unsigned] = ACTIONS(1352), + [anon_sym_long] = ACTIONS(1352), + [anon_sym_short] = ACTIONS(1352), + [anon_sym_static] = ACTIONS(1352), + [anon_sym_auto] = ACTIONS(1352), + [anon_sym_register] = ACTIONS(1352), + [anon_sym_inline] = ACTIONS(1352), + [anon_sym___inline] = ACTIONS(1352), + [anon_sym___inline__] = ACTIONS(1352), + [anon_sym___forceinline] = ACTIONS(1352), + [anon_sym_thread_local] = ACTIONS(1352), + [anon_sym___thread] = ACTIONS(1352), + [anon_sym_const] = ACTIONS(1352), + [anon_sym_constexpr] = ACTIONS(1352), + [anon_sym_volatile] = ACTIONS(1352), + [anon_sym_restrict] = ACTIONS(1352), + [anon_sym___restrict__] = ACTIONS(1352), + [anon_sym__Atomic] = ACTIONS(1352), + [anon_sym__Noreturn] = ACTIONS(1352), + [anon_sym_noreturn] = ACTIONS(1352), + [sym_primitive_type] = ACTIONS(1352), + [anon_sym_enum] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1352), + [anon_sym_union] = ACTIONS(1352), + [anon_sym_if] = ACTIONS(1352), + [anon_sym_else] = ACTIONS(1352), + [anon_sym_switch] = ACTIONS(1352), + [anon_sym_case] = ACTIONS(1352), + [anon_sym_default] = ACTIONS(1352), + [anon_sym_while] = ACTIONS(1352), + [anon_sym_do] = ACTIONS(1352), + [anon_sym_for] = ACTIONS(1352), + [anon_sym_return] = ACTIONS(1352), + [anon_sym_break] = ACTIONS(1352), + [anon_sym_continue] = ACTIONS(1352), + [anon_sym_goto] = ACTIONS(1352), + [anon_sym___try] = ACTIONS(1352), + [anon_sym___leave] = ACTIONS(1352), + [anon_sym_DASH_DASH] = ACTIONS(1354), + [anon_sym_PLUS_PLUS] = ACTIONS(1354), + [anon_sym_sizeof] = ACTIONS(1352), + [anon_sym___alignof__] = ACTIONS(1352), + [anon_sym___alignof] = ACTIONS(1352), + [anon_sym__alignof] = ACTIONS(1352), + [anon_sym_alignof] = ACTIONS(1352), + [anon_sym__Alignof] = ACTIONS(1352), + [anon_sym_offsetof] = ACTIONS(1352), + [anon_sym__Generic] = ACTIONS(1352), + [anon_sym_asm] = ACTIONS(1352), + [anon_sym___asm__] = ACTIONS(1352), + [sym_number_literal] = ACTIONS(1354), + [anon_sym_L_SQUOTE] = ACTIONS(1354), + [anon_sym_u_SQUOTE] = ACTIONS(1354), + [anon_sym_U_SQUOTE] = ACTIONS(1354), + [anon_sym_u8_SQUOTE] = ACTIONS(1354), + [anon_sym_SQUOTE] = ACTIONS(1354), + [anon_sym_L_DQUOTE] = ACTIONS(1354), + [anon_sym_u_DQUOTE] = ACTIONS(1354), + [anon_sym_U_DQUOTE] = ACTIONS(1354), + [anon_sym_u8_DQUOTE] = ACTIONS(1354), + [anon_sym_DQUOTE] = ACTIONS(1354), + [sym_true] = ACTIONS(1352), + [sym_false] = ACTIONS(1352), + [anon_sym_NULL] = ACTIONS(1352), + [anon_sym_nullptr] = ACTIONS(1352), [sym_comment] = ACTIONS(3), }, [166] = { - [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), - [sym_preproc_directive] = ACTIONS(1401), - [anon_sym_LPAREN2] = ACTIONS(1403), - [anon_sym_BANG] = ACTIONS(1403), - [anon_sym_TILDE] = ACTIONS(1403), - [anon_sym_DASH] = ACTIONS(1401), - [anon_sym_PLUS] = ACTIONS(1401), - [anon_sym_STAR] = ACTIONS(1403), - [anon_sym_AMP] = ACTIONS(1403), - [anon_sym_SEMI] = ACTIONS(1403), - [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_LBRACK_LBRACK] = ACTIONS(1403), - [anon_sym___declspec] = 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(1403), - [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), - [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_else] = 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(1403), - [anon_sym_PLUS_PLUS] = ACTIONS(1403), - [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(1403), - [anon_sym_L_SQUOTE] = ACTIONS(1403), - [anon_sym_u_SQUOTE] = ACTIONS(1403), - [anon_sym_U_SQUOTE] = ACTIONS(1403), - [anon_sym_u8_SQUOTE] = ACTIONS(1403), - [anon_sym_SQUOTE] = ACTIONS(1403), - [anon_sym_L_DQUOTE] = ACTIONS(1403), - [anon_sym_u_DQUOTE] = ACTIONS(1403), - [anon_sym_U_DQUOTE] = ACTIONS(1403), - [anon_sym_u8_DQUOTE] = ACTIONS(1403), - [anon_sym_DQUOTE] = ACTIONS(1403), - [sym_true] = ACTIONS(1401), - [sym_false] = ACTIONS(1401), - [anon_sym_NULL] = ACTIONS(1401), - [anon_sym_nullptr] = ACTIONS(1401), + [sym_identifier] = ACTIONS(1348), + [aux_sym_preproc_include_token1] = ACTIONS(1348), + [aux_sym_preproc_def_token1] = ACTIONS(1348), + [aux_sym_preproc_if_token1] = ACTIONS(1348), + [aux_sym_preproc_if_token2] = ACTIONS(1348), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1348), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1348), + [aux_sym_preproc_else_token1] = ACTIONS(1348), + [aux_sym_preproc_elif_token1] = ACTIONS(1348), + [sym_preproc_directive] = ACTIONS(1348), + [anon_sym_LPAREN2] = ACTIONS(1350), + [anon_sym_BANG] = ACTIONS(1350), + [anon_sym_TILDE] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(1348), + [anon_sym_PLUS] = ACTIONS(1348), + [anon_sym_STAR] = ACTIONS(1350), + [anon_sym_AMP] = ACTIONS(1350), + [anon_sym_SEMI] = ACTIONS(1350), + [anon_sym___extension__] = ACTIONS(1348), + [anon_sym_typedef] = ACTIONS(1348), + [anon_sym_extern] = ACTIONS(1348), + [anon_sym___attribute__] = ACTIONS(1348), + [anon_sym___scanf] = ACTIONS(1348), + [anon_sym___printf] = ACTIONS(1348), + [anon_sym___read_mostly] = ACTIONS(1348), + [anon_sym___must_hold] = ACTIONS(1348), + [anon_sym___ro_after_init] = ACTIONS(1348), + [anon_sym___init] = ACTIONS(1348), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1350), + [anon_sym___declspec] = ACTIONS(1348), + [anon_sym___cdecl] = ACTIONS(1348), + [anon_sym___clrcall] = ACTIONS(1348), + [anon_sym___stdcall] = ACTIONS(1348), + [anon_sym___fastcall] = ACTIONS(1348), + [anon_sym___thiscall] = ACTIONS(1348), + [anon_sym___vectorcall] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_signed] = ACTIONS(1348), + [anon_sym_unsigned] = ACTIONS(1348), + [anon_sym_long] = ACTIONS(1348), + [anon_sym_short] = ACTIONS(1348), + [anon_sym_static] = ACTIONS(1348), + [anon_sym_auto] = ACTIONS(1348), + [anon_sym_register] = ACTIONS(1348), + [anon_sym_inline] = ACTIONS(1348), + [anon_sym___inline] = ACTIONS(1348), + [anon_sym___inline__] = ACTIONS(1348), + [anon_sym___forceinline] = ACTIONS(1348), + [anon_sym_thread_local] = ACTIONS(1348), + [anon_sym___thread] = ACTIONS(1348), + [anon_sym_const] = ACTIONS(1348), + [anon_sym_constexpr] = ACTIONS(1348), + [anon_sym_volatile] = ACTIONS(1348), + [anon_sym_restrict] = ACTIONS(1348), + [anon_sym___restrict__] = ACTIONS(1348), + [anon_sym__Atomic] = ACTIONS(1348), + [anon_sym__Noreturn] = ACTIONS(1348), + [anon_sym_noreturn] = ACTIONS(1348), + [sym_primitive_type] = ACTIONS(1348), + [anon_sym_enum] = ACTIONS(1348), + [anon_sym_struct] = ACTIONS(1348), + [anon_sym_union] = ACTIONS(1348), + [anon_sym_if] = ACTIONS(1348), + [anon_sym_else] = ACTIONS(1348), + [anon_sym_switch] = ACTIONS(1348), + [anon_sym_case] = ACTIONS(1348), + [anon_sym_default] = ACTIONS(1348), + [anon_sym_while] = ACTIONS(1348), + [anon_sym_do] = ACTIONS(1348), + [anon_sym_for] = ACTIONS(1348), + [anon_sym_return] = ACTIONS(1348), + [anon_sym_break] = ACTIONS(1348), + [anon_sym_continue] = ACTIONS(1348), + [anon_sym_goto] = ACTIONS(1348), + [anon_sym___try] = ACTIONS(1348), + [anon_sym___leave] = ACTIONS(1348), + [anon_sym_DASH_DASH] = ACTIONS(1350), + [anon_sym_PLUS_PLUS] = ACTIONS(1350), + [anon_sym_sizeof] = ACTIONS(1348), + [anon_sym___alignof__] = ACTIONS(1348), + [anon_sym___alignof] = ACTIONS(1348), + [anon_sym__alignof] = ACTIONS(1348), + [anon_sym_alignof] = ACTIONS(1348), + [anon_sym__Alignof] = ACTIONS(1348), + [anon_sym_offsetof] = ACTIONS(1348), + [anon_sym__Generic] = ACTIONS(1348), + [anon_sym_asm] = ACTIONS(1348), + [anon_sym___asm__] = ACTIONS(1348), + [sym_number_literal] = ACTIONS(1350), + [anon_sym_L_SQUOTE] = ACTIONS(1350), + [anon_sym_u_SQUOTE] = ACTIONS(1350), + [anon_sym_U_SQUOTE] = ACTIONS(1350), + [anon_sym_u8_SQUOTE] = ACTIONS(1350), + [anon_sym_SQUOTE] = ACTIONS(1350), + [anon_sym_L_DQUOTE] = ACTIONS(1350), + [anon_sym_u_DQUOTE] = ACTIONS(1350), + [anon_sym_U_DQUOTE] = ACTIONS(1350), + [anon_sym_u8_DQUOTE] = ACTIONS(1350), + [anon_sym_DQUOTE] = ACTIONS(1350), + [sym_true] = ACTIONS(1348), + [sym_false] = ACTIONS(1348), + [anon_sym_NULL] = ACTIONS(1348), + [anon_sym_nullptr] = ACTIONS(1348), [sym_comment] = ACTIONS(3), }, [167] = { - [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), - [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_LBRACK_LBRACK] = ACTIONS(1355), - [anon_sym___declspec] = 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), - [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_else] = 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_identifier] = ACTIONS(1344), + [aux_sym_preproc_include_token1] = ACTIONS(1344), + [aux_sym_preproc_def_token1] = ACTIONS(1344), + [aux_sym_preproc_if_token1] = ACTIONS(1344), + [aux_sym_preproc_if_token2] = ACTIONS(1344), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1344), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1344), + [aux_sym_preproc_else_token1] = ACTIONS(1344), + [aux_sym_preproc_elif_token1] = ACTIONS(1344), + [sym_preproc_directive] = ACTIONS(1344), + [anon_sym_LPAREN2] = ACTIONS(1346), + [anon_sym_BANG] = ACTIONS(1346), + [anon_sym_TILDE] = ACTIONS(1346), + [anon_sym_DASH] = ACTIONS(1344), + [anon_sym_PLUS] = ACTIONS(1344), + [anon_sym_STAR] = ACTIONS(1346), + [anon_sym_AMP] = ACTIONS(1346), + [anon_sym_SEMI] = ACTIONS(1346), + [anon_sym___extension__] = ACTIONS(1344), + [anon_sym_typedef] = ACTIONS(1344), + [anon_sym_extern] = ACTIONS(1344), + [anon_sym___attribute__] = ACTIONS(1344), + [anon_sym___scanf] = ACTIONS(1344), + [anon_sym___printf] = ACTIONS(1344), + [anon_sym___read_mostly] = ACTIONS(1344), + [anon_sym___must_hold] = ACTIONS(1344), + [anon_sym___ro_after_init] = ACTIONS(1344), + [anon_sym___init] = ACTIONS(1344), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1346), + [anon_sym___declspec] = ACTIONS(1344), + [anon_sym___cdecl] = ACTIONS(1344), + [anon_sym___clrcall] = ACTIONS(1344), + [anon_sym___stdcall] = ACTIONS(1344), + [anon_sym___fastcall] = ACTIONS(1344), + [anon_sym___thiscall] = ACTIONS(1344), + [anon_sym___vectorcall] = ACTIONS(1344), + [anon_sym_LBRACE] = ACTIONS(1346), + [anon_sym_signed] = ACTIONS(1344), + [anon_sym_unsigned] = ACTIONS(1344), + [anon_sym_long] = ACTIONS(1344), + [anon_sym_short] = ACTIONS(1344), + [anon_sym_static] = ACTIONS(1344), + [anon_sym_auto] = ACTIONS(1344), + [anon_sym_register] = ACTIONS(1344), + [anon_sym_inline] = ACTIONS(1344), + [anon_sym___inline] = ACTIONS(1344), + [anon_sym___inline__] = ACTIONS(1344), + [anon_sym___forceinline] = ACTIONS(1344), + [anon_sym_thread_local] = ACTIONS(1344), + [anon_sym___thread] = ACTIONS(1344), + [anon_sym_const] = ACTIONS(1344), + [anon_sym_constexpr] = ACTIONS(1344), + [anon_sym_volatile] = ACTIONS(1344), + [anon_sym_restrict] = ACTIONS(1344), + [anon_sym___restrict__] = ACTIONS(1344), + [anon_sym__Atomic] = ACTIONS(1344), + [anon_sym__Noreturn] = ACTIONS(1344), + [anon_sym_noreturn] = ACTIONS(1344), + [sym_primitive_type] = ACTIONS(1344), + [anon_sym_enum] = ACTIONS(1344), + [anon_sym_struct] = ACTIONS(1344), + [anon_sym_union] = ACTIONS(1344), + [anon_sym_if] = ACTIONS(1344), + [anon_sym_else] = ACTIONS(1344), + [anon_sym_switch] = ACTIONS(1344), + [anon_sym_case] = ACTIONS(1344), + [anon_sym_default] = ACTIONS(1344), + [anon_sym_while] = ACTIONS(1344), + [anon_sym_do] = ACTIONS(1344), + [anon_sym_for] = ACTIONS(1344), + [anon_sym_return] = ACTIONS(1344), + [anon_sym_break] = ACTIONS(1344), + [anon_sym_continue] = ACTIONS(1344), + [anon_sym_goto] = ACTIONS(1344), + [anon_sym___try] = ACTIONS(1344), + [anon_sym___leave] = ACTIONS(1344), + [anon_sym_DASH_DASH] = ACTIONS(1346), + [anon_sym_PLUS_PLUS] = ACTIONS(1346), + [anon_sym_sizeof] = ACTIONS(1344), + [anon_sym___alignof__] = ACTIONS(1344), + [anon_sym___alignof] = ACTIONS(1344), + [anon_sym__alignof] = ACTIONS(1344), + [anon_sym_alignof] = ACTIONS(1344), + [anon_sym__Alignof] = ACTIONS(1344), + [anon_sym_offsetof] = ACTIONS(1344), + [anon_sym__Generic] = ACTIONS(1344), + [anon_sym_asm] = ACTIONS(1344), + [anon_sym___asm__] = ACTIONS(1344), + [sym_number_literal] = ACTIONS(1346), + [anon_sym_L_SQUOTE] = ACTIONS(1346), + [anon_sym_u_SQUOTE] = ACTIONS(1346), + [anon_sym_U_SQUOTE] = ACTIONS(1346), + [anon_sym_u8_SQUOTE] = ACTIONS(1346), + [anon_sym_SQUOTE] = ACTIONS(1346), + [anon_sym_L_DQUOTE] = ACTIONS(1346), + [anon_sym_u_DQUOTE] = ACTIONS(1346), + [anon_sym_U_DQUOTE] = ACTIONS(1346), + [anon_sym_u8_DQUOTE] = ACTIONS(1346), + [anon_sym_DQUOTE] = ACTIONS(1346), + [sym_true] = ACTIONS(1344), + [sym_false] = ACTIONS(1344), + [anon_sym_NULL] = ACTIONS(1344), + [anon_sym_nullptr] = ACTIONS(1344), [sym_comment] = ACTIONS(3), }, [168] = { - [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), - [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_LBRACK_LBRACK] = ACTIONS(1315), - [anon_sym___declspec] = 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), - [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_else] = 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_identifier] = ACTIONS(1340), + [aux_sym_preproc_include_token1] = ACTIONS(1340), + [aux_sym_preproc_def_token1] = ACTIONS(1340), + [aux_sym_preproc_if_token1] = ACTIONS(1340), + [aux_sym_preproc_if_token2] = ACTIONS(1340), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1340), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1340), + [aux_sym_preproc_else_token1] = ACTIONS(1340), + [aux_sym_preproc_elif_token1] = ACTIONS(1340), + [sym_preproc_directive] = ACTIONS(1340), + [anon_sym_LPAREN2] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1342), + [anon_sym_TILDE] = ACTIONS(1342), + [anon_sym_DASH] = ACTIONS(1340), + [anon_sym_PLUS] = ACTIONS(1340), + [anon_sym_STAR] = ACTIONS(1342), + [anon_sym_AMP] = ACTIONS(1342), + [anon_sym_SEMI] = ACTIONS(1342), + [anon_sym___extension__] = ACTIONS(1340), + [anon_sym_typedef] = ACTIONS(1340), + [anon_sym_extern] = ACTIONS(1340), + [anon_sym___attribute__] = ACTIONS(1340), + [anon_sym___scanf] = ACTIONS(1340), + [anon_sym___printf] = ACTIONS(1340), + [anon_sym___read_mostly] = ACTIONS(1340), + [anon_sym___must_hold] = ACTIONS(1340), + [anon_sym___ro_after_init] = ACTIONS(1340), + [anon_sym___init] = ACTIONS(1340), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1342), + [anon_sym___declspec] = ACTIONS(1340), + [anon_sym___cdecl] = ACTIONS(1340), + [anon_sym___clrcall] = ACTIONS(1340), + [anon_sym___stdcall] = ACTIONS(1340), + [anon_sym___fastcall] = ACTIONS(1340), + [anon_sym___thiscall] = ACTIONS(1340), + [anon_sym___vectorcall] = ACTIONS(1340), + [anon_sym_LBRACE] = ACTIONS(1342), + [anon_sym_signed] = ACTIONS(1340), + [anon_sym_unsigned] = ACTIONS(1340), + [anon_sym_long] = ACTIONS(1340), + [anon_sym_short] = ACTIONS(1340), + [anon_sym_static] = ACTIONS(1340), + [anon_sym_auto] = ACTIONS(1340), + [anon_sym_register] = ACTIONS(1340), + [anon_sym_inline] = ACTIONS(1340), + [anon_sym___inline] = ACTIONS(1340), + [anon_sym___inline__] = ACTIONS(1340), + [anon_sym___forceinline] = ACTIONS(1340), + [anon_sym_thread_local] = ACTIONS(1340), + [anon_sym___thread] = ACTIONS(1340), + [anon_sym_const] = ACTIONS(1340), + [anon_sym_constexpr] = ACTIONS(1340), + [anon_sym_volatile] = ACTIONS(1340), + [anon_sym_restrict] = ACTIONS(1340), + [anon_sym___restrict__] = ACTIONS(1340), + [anon_sym__Atomic] = ACTIONS(1340), + [anon_sym__Noreturn] = ACTIONS(1340), + [anon_sym_noreturn] = ACTIONS(1340), + [sym_primitive_type] = ACTIONS(1340), + [anon_sym_enum] = ACTIONS(1340), + [anon_sym_struct] = ACTIONS(1340), + [anon_sym_union] = ACTIONS(1340), + [anon_sym_if] = ACTIONS(1340), + [anon_sym_else] = ACTIONS(1340), + [anon_sym_switch] = ACTIONS(1340), + [anon_sym_case] = ACTIONS(1340), + [anon_sym_default] = ACTIONS(1340), + [anon_sym_while] = ACTIONS(1340), + [anon_sym_do] = ACTIONS(1340), + [anon_sym_for] = ACTIONS(1340), + [anon_sym_return] = ACTIONS(1340), + [anon_sym_break] = ACTIONS(1340), + [anon_sym_continue] = ACTIONS(1340), + [anon_sym_goto] = ACTIONS(1340), + [anon_sym___try] = ACTIONS(1340), + [anon_sym___leave] = ACTIONS(1340), + [anon_sym_DASH_DASH] = ACTIONS(1342), + [anon_sym_PLUS_PLUS] = ACTIONS(1342), + [anon_sym_sizeof] = ACTIONS(1340), + [anon_sym___alignof__] = ACTIONS(1340), + [anon_sym___alignof] = ACTIONS(1340), + [anon_sym__alignof] = ACTIONS(1340), + [anon_sym_alignof] = ACTIONS(1340), + [anon_sym__Alignof] = ACTIONS(1340), + [anon_sym_offsetof] = ACTIONS(1340), + [anon_sym__Generic] = ACTIONS(1340), + [anon_sym_asm] = ACTIONS(1340), + [anon_sym___asm__] = ACTIONS(1340), + [sym_number_literal] = ACTIONS(1342), + [anon_sym_L_SQUOTE] = ACTIONS(1342), + [anon_sym_u_SQUOTE] = ACTIONS(1342), + [anon_sym_U_SQUOTE] = ACTIONS(1342), + [anon_sym_u8_SQUOTE] = ACTIONS(1342), + [anon_sym_SQUOTE] = ACTIONS(1342), + [anon_sym_L_DQUOTE] = ACTIONS(1342), + [anon_sym_u_DQUOTE] = ACTIONS(1342), + [anon_sym_U_DQUOTE] = ACTIONS(1342), + [anon_sym_u8_DQUOTE] = ACTIONS(1342), + [anon_sym_DQUOTE] = ACTIONS(1342), + [sym_true] = ACTIONS(1340), + [sym_false] = ACTIONS(1340), + [anon_sym_NULL] = ACTIONS(1340), + [anon_sym_nullptr] = ACTIONS(1340), [sym_comment] = ACTIONS(3), }, [169] = { - [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), - [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_LBRACK_LBRACK] = ACTIONS(1315), - [anon_sym___declspec] = 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), - [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_else] = 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_identifier] = ACTIONS(1320), + [aux_sym_preproc_include_token1] = ACTIONS(1320), + [aux_sym_preproc_def_token1] = ACTIONS(1320), + [aux_sym_preproc_if_token1] = ACTIONS(1320), + [aux_sym_preproc_if_token2] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1320), + [aux_sym_preproc_else_token1] = ACTIONS(1320), + [aux_sym_preproc_elif_token1] = ACTIONS(1320), + [sym_preproc_directive] = ACTIONS(1320), + [anon_sym_LPAREN2] = ACTIONS(1322), + [anon_sym_BANG] = ACTIONS(1322), + [anon_sym_TILDE] = ACTIONS(1322), + [anon_sym_DASH] = ACTIONS(1320), + [anon_sym_PLUS] = ACTIONS(1320), + [anon_sym_STAR] = ACTIONS(1322), + [anon_sym_AMP] = ACTIONS(1322), + [anon_sym_SEMI] = ACTIONS(1322), + [anon_sym___extension__] = ACTIONS(1320), + [anon_sym_typedef] = ACTIONS(1320), + [anon_sym_extern] = ACTIONS(1320), + [anon_sym___attribute__] = ACTIONS(1320), + [anon_sym___scanf] = ACTIONS(1320), + [anon_sym___printf] = ACTIONS(1320), + [anon_sym___read_mostly] = ACTIONS(1320), + [anon_sym___must_hold] = ACTIONS(1320), + [anon_sym___ro_after_init] = ACTIONS(1320), + [anon_sym___init] = ACTIONS(1320), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1322), + [anon_sym___declspec] = ACTIONS(1320), + [anon_sym___cdecl] = ACTIONS(1320), + [anon_sym___clrcall] = ACTIONS(1320), + [anon_sym___stdcall] = ACTIONS(1320), + [anon_sym___fastcall] = ACTIONS(1320), + [anon_sym___thiscall] = ACTIONS(1320), + [anon_sym___vectorcall] = ACTIONS(1320), + [anon_sym_LBRACE] = ACTIONS(1322), + [anon_sym_signed] = ACTIONS(1320), + [anon_sym_unsigned] = ACTIONS(1320), + [anon_sym_long] = ACTIONS(1320), + [anon_sym_short] = ACTIONS(1320), + [anon_sym_static] = ACTIONS(1320), + [anon_sym_auto] = ACTIONS(1320), + [anon_sym_register] = ACTIONS(1320), + [anon_sym_inline] = ACTIONS(1320), + [anon_sym___inline] = ACTIONS(1320), + [anon_sym___inline__] = ACTIONS(1320), + [anon_sym___forceinline] = ACTIONS(1320), + [anon_sym_thread_local] = ACTIONS(1320), + [anon_sym___thread] = ACTIONS(1320), + [anon_sym_const] = ACTIONS(1320), + [anon_sym_constexpr] = ACTIONS(1320), + [anon_sym_volatile] = ACTIONS(1320), + [anon_sym_restrict] = ACTIONS(1320), + [anon_sym___restrict__] = ACTIONS(1320), + [anon_sym__Atomic] = ACTIONS(1320), + [anon_sym__Noreturn] = ACTIONS(1320), + [anon_sym_noreturn] = ACTIONS(1320), + [sym_primitive_type] = ACTIONS(1320), + [anon_sym_enum] = ACTIONS(1320), + [anon_sym_struct] = ACTIONS(1320), + [anon_sym_union] = ACTIONS(1320), + [anon_sym_if] = ACTIONS(1320), + [anon_sym_else] = ACTIONS(1320), + [anon_sym_switch] = ACTIONS(1320), + [anon_sym_case] = ACTIONS(1320), + [anon_sym_default] = ACTIONS(1320), + [anon_sym_while] = ACTIONS(1320), + [anon_sym_do] = ACTIONS(1320), + [anon_sym_for] = ACTIONS(1320), + [anon_sym_return] = ACTIONS(1320), + [anon_sym_break] = ACTIONS(1320), + [anon_sym_continue] = ACTIONS(1320), + [anon_sym_goto] = ACTIONS(1320), + [anon_sym___try] = ACTIONS(1320), + [anon_sym___leave] = ACTIONS(1320), + [anon_sym_DASH_DASH] = ACTIONS(1322), + [anon_sym_PLUS_PLUS] = ACTIONS(1322), + [anon_sym_sizeof] = ACTIONS(1320), + [anon_sym___alignof__] = ACTIONS(1320), + [anon_sym___alignof] = ACTIONS(1320), + [anon_sym__alignof] = ACTIONS(1320), + [anon_sym_alignof] = ACTIONS(1320), + [anon_sym__Alignof] = ACTIONS(1320), + [anon_sym_offsetof] = ACTIONS(1320), + [anon_sym__Generic] = ACTIONS(1320), + [anon_sym_asm] = ACTIONS(1320), + [anon_sym___asm__] = ACTIONS(1320), + [sym_number_literal] = ACTIONS(1322), + [anon_sym_L_SQUOTE] = ACTIONS(1322), + [anon_sym_u_SQUOTE] = ACTIONS(1322), + [anon_sym_U_SQUOTE] = ACTIONS(1322), + [anon_sym_u8_SQUOTE] = ACTIONS(1322), + [anon_sym_SQUOTE] = ACTIONS(1322), + [anon_sym_L_DQUOTE] = ACTIONS(1322), + [anon_sym_u_DQUOTE] = ACTIONS(1322), + [anon_sym_U_DQUOTE] = ACTIONS(1322), + [anon_sym_u8_DQUOTE] = ACTIONS(1322), + [anon_sym_DQUOTE] = ACTIONS(1322), + [sym_true] = ACTIONS(1320), + [sym_false] = ACTIONS(1320), + [anon_sym_NULL] = ACTIONS(1320), + [anon_sym_nullptr] = ACTIONS(1320), [sym_comment] = ACTIONS(3), }, [170] = { - [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), - [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_LBRACK_LBRACK] = ACTIONS(1315), - [anon_sym___declspec] = 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), - [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_else] = 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_identifier] = ACTIONS(1368), + [aux_sym_preproc_include_token1] = ACTIONS(1368), + [aux_sym_preproc_def_token1] = ACTIONS(1368), + [aux_sym_preproc_if_token1] = ACTIONS(1368), + [aux_sym_preproc_if_token2] = ACTIONS(1368), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1368), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1368), + [aux_sym_preproc_else_token1] = ACTIONS(1368), + [aux_sym_preproc_elif_token1] = ACTIONS(1368), + [sym_preproc_directive] = ACTIONS(1368), + [anon_sym_LPAREN2] = ACTIONS(1370), + [anon_sym_BANG] = ACTIONS(1370), + [anon_sym_TILDE] = ACTIONS(1370), + [anon_sym_DASH] = ACTIONS(1368), + [anon_sym_PLUS] = ACTIONS(1368), + [anon_sym_STAR] = ACTIONS(1370), + [anon_sym_AMP] = ACTIONS(1370), + [anon_sym_SEMI] = ACTIONS(1370), + [anon_sym___extension__] = ACTIONS(1368), + [anon_sym_typedef] = ACTIONS(1368), + [anon_sym_extern] = ACTIONS(1368), + [anon_sym___attribute__] = ACTIONS(1368), + [anon_sym___scanf] = ACTIONS(1368), + [anon_sym___printf] = ACTIONS(1368), + [anon_sym___read_mostly] = ACTIONS(1368), + [anon_sym___must_hold] = ACTIONS(1368), + [anon_sym___ro_after_init] = ACTIONS(1368), + [anon_sym___init] = ACTIONS(1368), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1370), + [anon_sym___declspec] = ACTIONS(1368), + [anon_sym___cdecl] = ACTIONS(1368), + [anon_sym___clrcall] = ACTIONS(1368), + [anon_sym___stdcall] = ACTIONS(1368), + [anon_sym___fastcall] = ACTIONS(1368), + [anon_sym___thiscall] = ACTIONS(1368), + [anon_sym___vectorcall] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_signed] = ACTIONS(1368), + [anon_sym_unsigned] = ACTIONS(1368), + [anon_sym_long] = ACTIONS(1368), + [anon_sym_short] = ACTIONS(1368), + [anon_sym_static] = ACTIONS(1368), + [anon_sym_auto] = ACTIONS(1368), + [anon_sym_register] = ACTIONS(1368), + [anon_sym_inline] = ACTIONS(1368), + [anon_sym___inline] = ACTIONS(1368), + [anon_sym___inline__] = ACTIONS(1368), + [anon_sym___forceinline] = ACTIONS(1368), + [anon_sym_thread_local] = ACTIONS(1368), + [anon_sym___thread] = ACTIONS(1368), + [anon_sym_const] = ACTIONS(1368), + [anon_sym_constexpr] = ACTIONS(1368), + [anon_sym_volatile] = ACTIONS(1368), + [anon_sym_restrict] = ACTIONS(1368), + [anon_sym___restrict__] = ACTIONS(1368), + [anon_sym__Atomic] = ACTIONS(1368), + [anon_sym__Noreturn] = ACTIONS(1368), + [anon_sym_noreturn] = ACTIONS(1368), + [sym_primitive_type] = ACTIONS(1368), + [anon_sym_enum] = ACTIONS(1368), + [anon_sym_struct] = ACTIONS(1368), + [anon_sym_union] = ACTIONS(1368), + [anon_sym_if] = ACTIONS(1368), + [anon_sym_else] = ACTIONS(1368), + [anon_sym_switch] = ACTIONS(1368), + [anon_sym_case] = ACTIONS(1368), + [anon_sym_default] = ACTIONS(1368), + [anon_sym_while] = ACTIONS(1368), + [anon_sym_do] = ACTIONS(1368), + [anon_sym_for] = ACTIONS(1368), + [anon_sym_return] = ACTIONS(1368), + [anon_sym_break] = ACTIONS(1368), + [anon_sym_continue] = ACTIONS(1368), + [anon_sym_goto] = ACTIONS(1368), + [anon_sym___try] = ACTIONS(1368), + [anon_sym___leave] = ACTIONS(1368), + [anon_sym_DASH_DASH] = ACTIONS(1370), + [anon_sym_PLUS_PLUS] = ACTIONS(1370), + [anon_sym_sizeof] = ACTIONS(1368), + [anon_sym___alignof__] = ACTIONS(1368), + [anon_sym___alignof] = ACTIONS(1368), + [anon_sym__alignof] = ACTIONS(1368), + [anon_sym_alignof] = ACTIONS(1368), + [anon_sym__Alignof] = ACTIONS(1368), + [anon_sym_offsetof] = ACTIONS(1368), + [anon_sym__Generic] = ACTIONS(1368), + [anon_sym_asm] = ACTIONS(1368), + [anon_sym___asm__] = ACTIONS(1368), + [sym_number_literal] = ACTIONS(1370), + [anon_sym_L_SQUOTE] = ACTIONS(1370), + [anon_sym_u_SQUOTE] = ACTIONS(1370), + [anon_sym_U_SQUOTE] = ACTIONS(1370), + [anon_sym_u8_SQUOTE] = ACTIONS(1370), + [anon_sym_SQUOTE] = ACTIONS(1370), + [anon_sym_L_DQUOTE] = ACTIONS(1370), + [anon_sym_u_DQUOTE] = ACTIONS(1370), + [anon_sym_U_DQUOTE] = ACTIONS(1370), + [anon_sym_u8_DQUOTE] = ACTIONS(1370), + [anon_sym_DQUOTE] = ACTIONS(1370), + [sym_true] = ACTIONS(1368), + [sym_false] = ACTIONS(1368), + [anon_sym_NULL] = ACTIONS(1368), + [anon_sym_nullptr] = ACTIONS(1368), [sym_comment] = ACTIONS(3), }, [171] = { - [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), - [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_LBRACK_LBRACK] = ACTIONS(1315), - [anon_sym___declspec] = 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), - [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_else] = 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_identifier] = ACTIONS(1320), + [aux_sym_preproc_include_token1] = ACTIONS(1320), + [aux_sym_preproc_def_token1] = ACTIONS(1320), + [aux_sym_preproc_if_token1] = ACTIONS(1320), + [aux_sym_preproc_if_token2] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1320), + [aux_sym_preproc_else_token1] = ACTIONS(1320), + [aux_sym_preproc_elif_token1] = ACTIONS(1320), + [sym_preproc_directive] = ACTIONS(1320), + [anon_sym_LPAREN2] = ACTIONS(1322), + [anon_sym_BANG] = ACTIONS(1322), + [anon_sym_TILDE] = ACTIONS(1322), + [anon_sym_DASH] = ACTIONS(1320), + [anon_sym_PLUS] = ACTIONS(1320), + [anon_sym_STAR] = ACTIONS(1322), + [anon_sym_AMP] = ACTIONS(1322), + [anon_sym_SEMI] = ACTIONS(1322), + [anon_sym___extension__] = ACTIONS(1320), + [anon_sym_typedef] = ACTIONS(1320), + [anon_sym_extern] = ACTIONS(1320), + [anon_sym___attribute__] = ACTIONS(1320), + [anon_sym___scanf] = ACTIONS(1320), + [anon_sym___printf] = ACTIONS(1320), + [anon_sym___read_mostly] = ACTIONS(1320), + [anon_sym___must_hold] = ACTIONS(1320), + [anon_sym___ro_after_init] = ACTIONS(1320), + [anon_sym___init] = ACTIONS(1320), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1322), + [anon_sym___declspec] = ACTIONS(1320), + [anon_sym___cdecl] = ACTIONS(1320), + [anon_sym___clrcall] = ACTIONS(1320), + [anon_sym___stdcall] = ACTIONS(1320), + [anon_sym___fastcall] = ACTIONS(1320), + [anon_sym___thiscall] = ACTIONS(1320), + [anon_sym___vectorcall] = ACTIONS(1320), + [anon_sym_LBRACE] = ACTIONS(1322), + [anon_sym_signed] = ACTIONS(1320), + [anon_sym_unsigned] = ACTIONS(1320), + [anon_sym_long] = ACTIONS(1320), + [anon_sym_short] = ACTIONS(1320), + [anon_sym_static] = ACTIONS(1320), + [anon_sym_auto] = ACTIONS(1320), + [anon_sym_register] = ACTIONS(1320), + [anon_sym_inline] = ACTIONS(1320), + [anon_sym___inline] = ACTIONS(1320), + [anon_sym___inline__] = ACTIONS(1320), + [anon_sym___forceinline] = ACTIONS(1320), + [anon_sym_thread_local] = ACTIONS(1320), + [anon_sym___thread] = ACTIONS(1320), + [anon_sym_const] = ACTIONS(1320), + [anon_sym_constexpr] = ACTIONS(1320), + [anon_sym_volatile] = ACTIONS(1320), + [anon_sym_restrict] = ACTIONS(1320), + [anon_sym___restrict__] = ACTIONS(1320), + [anon_sym__Atomic] = ACTIONS(1320), + [anon_sym__Noreturn] = ACTIONS(1320), + [anon_sym_noreturn] = ACTIONS(1320), + [sym_primitive_type] = ACTIONS(1320), + [anon_sym_enum] = ACTIONS(1320), + [anon_sym_struct] = ACTIONS(1320), + [anon_sym_union] = ACTIONS(1320), + [anon_sym_if] = ACTIONS(1320), + [anon_sym_else] = ACTIONS(1320), + [anon_sym_switch] = ACTIONS(1320), + [anon_sym_case] = ACTIONS(1320), + [anon_sym_default] = ACTIONS(1320), + [anon_sym_while] = ACTIONS(1320), + [anon_sym_do] = ACTIONS(1320), + [anon_sym_for] = ACTIONS(1320), + [anon_sym_return] = ACTIONS(1320), + [anon_sym_break] = ACTIONS(1320), + [anon_sym_continue] = ACTIONS(1320), + [anon_sym_goto] = ACTIONS(1320), + [anon_sym___try] = ACTIONS(1320), + [anon_sym___leave] = ACTIONS(1320), + [anon_sym_DASH_DASH] = ACTIONS(1322), + [anon_sym_PLUS_PLUS] = ACTIONS(1322), + [anon_sym_sizeof] = ACTIONS(1320), + [anon_sym___alignof__] = ACTIONS(1320), + [anon_sym___alignof] = ACTIONS(1320), + [anon_sym__alignof] = ACTIONS(1320), + [anon_sym_alignof] = ACTIONS(1320), + [anon_sym__Alignof] = ACTIONS(1320), + [anon_sym_offsetof] = ACTIONS(1320), + [anon_sym__Generic] = ACTIONS(1320), + [anon_sym_asm] = ACTIONS(1320), + [anon_sym___asm__] = ACTIONS(1320), + [sym_number_literal] = ACTIONS(1322), + [anon_sym_L_SQUOTE] = ACTIONS(1322), + [anon_sym_u_SQUOTE] = ACTIONS(1322), + [anon_sym_U_SQUOTE] = ACTIONS(1322), + [anon_sym_u8_SQUOTE] = ACTIONS(1322), + [anon_sym_SQUOTE] = ACTIONS(1322), + [anon_sym_L_DQUOTE] = ACTIONS(1322), + [anon_sym_u_DQUOTE] = ACTIONS(1322), + [anon_sym_U_DQUOTE] = ACTIONS(1322), + [anon_sym_u8_DQUOTE] = ACTIONS(1322), + [anon_sym_DQUOTE] = ACTIONS(1322), + [sym_true] = ACTIONS(1320), + [sym_false] = ACTIONS(1320), + [anon_sym_NULL] = ACTIONS(1320), + [anon_sym_nullptr] = ACTIONS(1320), [sym_comment] = ACTIONS(3), }, [172] = { - [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), - [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_LBRACK_LBRACK] = ACTIONS(1315), - [anon_sym___declspec] = 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), - [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_else] = 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_identifier] = ACTIONS(1320), + [aux_sym_preproc_include_token1] = ACTIONS(1320), + [aux_sym_preproc_def_token1] = ACTIONS(1320), + [aux_sym_preproc_if_token1] = ACTIONS(1320), + [aux_sym_preproc_if_token2] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1320), + [aux_sym_preproc_else_token1] = ACTIONS(1320), + [aux_sym_preproc_elif_token1] = ACTIONS(1320), + [sym_preproc_directive] = ACTIONS(1320), + [anon_sym_LPAREN2] = ACTIONS(1322), + [anon_sym_BANG] = ACTIONS(1322), + [anon_sym_TILDE] = ACTIONS(1322), + [anon_sym_DASH] = ACTIONS(1320), + [anon_sym_PLUS] = ACTIONS(1320), + [anon_sym_STAR] = ACTIONS(1322), + [anon_sym_AMP] = ACTIONS(1322), + [anon_sym_SEMI] = ACTIONS(1322), + [anon_sym___extension__] = ACTIONS(1320), + [anon_sym_typedef] = ACTIONS(1320), + [anon_sym_extern] = ACTIONS(1320), + [anon_sym___attribute__] = ACTIONS(1320), + [anon_sym___scanf] = ACTIONS(1320), + [anon_sym___printf] = ACTIONS(1320), + [anon_sym___read_mostly] = ACTIONS(1320), + [anon_sym___must_hold] = ACTIONS(1320), + [anon_sym___ro_after_init] = ACTIONS(1320), + [anon_sym___init] = ACTIONS(1320), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1322), + [anon_sym___declspec] = ACTIONS(1320), + [anon_sym___cdecl] = ACTIONS(1320), + [anon_sym___clrcall] = ACTIONS(1320), + [anon_sym___stdcall] = ACTIONS(1320), + [anon_sym___fastcall] = ACTIONS(1320), + [anon_sym___thiscall] = ACTIONS(1320), + [anon_sym___vectorcall] = ACTIONS(1320), + [anon_sym_LBRACE] = ACTIONS(1322), + [anon_sym_signed] = ACTIONS(1320), + [anon_sym_unsigned] = ACTIONS(1320), + [anon_sym_long] = ACTIONS(1320), + [anon_sym_short] = ACTIONS(1320), + [anon_sym_static] = ACTIONS(1320), + [anon_sym_auto] = ACTIONS(1320), + [anon_sym_register] = ACTIONS(1320), + [anon_sym_inline] = ACTIONS(1320), + [anon_sym___inline] = ACTIONS(1320), + [anon_sym___inline__] = ACTIONS(1320), + [anon_sym___forceinline] = ACTIONS(1320), + [anon_sym_thread_local] = ACTIONS(1320), + [anon_sym___thread] = ACTIONS(1320), + [anon_sym_const] = ACTIONS(1320), + [anon_sym_constexpr] = ACTIONS(1320), + [anon_sym_volatile] = ACTIONS(1320), + [anon_sym_restrict] = ACTIONS(1320), + [anon_sym___restrict__] = ACTIONS(1320), + [anon_sym__Atomic] = ACTIONS(1320), + [anon_sym__Noreturn] = ACTIONS(1320), + [anon_sym_noreturn] = ACTIONS(1320), + [sym_primitive_type] = ACTIONS(1320), + [anon_sym_enum] = ACTIONS(1320), + [anon_sym_struct] = ACTIONS(1320), + [anon_sym_union] = ACTIONS(1320), + [anon_sym_if] = ACTIONS(1320), + [anon_sym_else] = ACTIONS(1320), + [anon_sym_switch] = ACTIONS(1320), + [anon_sym_case] = ACTIONS(1320), + [anon_sym_default] = ACTIONS(1320), + [anon_sym_while] = ACTIONS(1320), + [anon_sym_do] = ACTIONS(1320), + [anon_sym_for] = ACTIONS(1320), + [anon_sym_return] = ACTIONS(1320), + [anon_sym_break] = ACTIONS(1320), + [anon_sym_continue] = ACTIONS(1320), + [anon_sym_goto] = ACTIONS(1320), + [anon_sym___try] = ACTIONS(1320), + [anon_sym___leave] = ACTIONS(1320), + [anon_sym_DASH_DASH] = ACTIONS(1322), + [anon_sym_PLUS_PLUS] = ACTIONS(1322), + [anon_sym_sizeof] = ACTIONS(1320), + [anon_sym___alignof__] = ACTIONS(1320), + [anon_sym___alignof] = ACTIONS(1320), + [anon_sym__alignof] = ACTIONS(1320), + [anon_sym_alignof] = ACTIONS(1320), + [anon_sym__Alignof] = ACTIONS(1320), + [anon_sym_offsetof] = ACTIONS(1320), + [anon_sym__Generic] = ACTIONS(1320), + [anon_sym_asm] = ACTIONS(1320), + [anon_sym___asm__] = ACTIONS(1320), + [sym_number_literal] = ACTIONS(1322), + [anon_sym_L_SQUOTE] = ACTIONS(1322), + [anon_sym_u_SQUOTE] = ACTIONS(1322), + [anon_sym_U_SQUOTE] = ACTIONS(1322), + [anon_sym_u8_SQUOTE] = ACTIONS(1322), + [anon_sym_SQUOTE] = ACTIONS(1322), + [anon_sym_L_DQUOTE] = ACTIONS(1322), + [anon_sym_u_DQUOTE] = ACTIONS(1322), + [anon_sym_U_DQUOTE] = ACTIONS(1322), + [anon_sym_u8_DQUOTE] = ACTIONS(1322), + [anon_sym_DQUOTE] = ACTIONS(1322), + [sym_true] = ACTIONS(1320), + [sym_false] = ACTIONS(1320), + [anon_sym_NULL] = ACTIONS(1320), + [anon_sym_nullptr] = ACTIONS(1320), [sym_comment] = ACTIONS(3), }, [173] = { - [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), - [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_LBRACK_LBRACK] = ACTIONS(1347), - [anon_sym___declspec] = 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), - [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_else] = 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_identifier] = ACTIONS(1320), + [aux_sym_preproc_include_token1] = ACTIONS(1320), + [aux_sym_preproc_def_token1] = ACTIONS(1320), + [aux_sym_preproc_if_token1] = ACTIONS(1320), + [aux_sym_preproc_if_token2] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1320), + [aux_sym_preproc_else_token1] = ACTIONS(1320), + [aux_sym_preproc_elif_token1] = ACTIONS(1320), + [sym_preproc_directive] = ACTIONS(1320), + [anon_sym_LPAREN2] = ACTIONS(1322), + [anon_sym_BANG] = ACTIONS(1322), + [anon_sym_TILDE] = ACTIONS(1322), + [anon_sym_DASH] = ACTIONS(1320), + [anon_sym_PLUS] = ACTIONS(1320), + [anon_sym_STAR] = ACTIONS(1322), + [anon_sym_AMP] = ACTIONS(1322), + [anon_sym_SEMI] = ACTIONS(1322), + [anon_sym___extension__] = ACTIONS(1320), + [anon_sym_typedef] = ACTIONS(1320), + [anon_sym_extern] = ACTIONS(1320), + [anon_sym___attribute__] = ACTIONS(1320), + [anon_sym___scanf] = ACTIONS(1320), + [anon_sym___printf] = ACTIONS(1320), + [anon_sym___read_mostly] = ACTIONS(1320), + [anon_sym___must_hold] = ACTIONS(1320), + [anon_sym___ro_after_init] = ACTIONS(1320), + [anon_sym___init] = ACTIONS(1320), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1322), + [anon_sym___declspec] = ACTIONS(1320), + [anon_sym___cdecl] = ACTIONS(1320), + [anon_sym___clrcall] = ACTIONS(1320), + [anon_sym___stdcall] = ACTIONS(1320), + [anon_sym___fastcall] = ACTIONS(1320), + [anon_sym___thiscall] = ACTIONS(1320), + [anon_sym___vectorcall] = ACTIONS(1320), + [anon_sym_LBRACE] = ACTIONS(1322), + [anon_sym_signed] = ACTIONS(1320), + [anon_sym_unsigned] = ACTIONS(1320), + [anon_sym_long] = ACTIONS(1320), + [anon_sym_short] = ACTIONS(1320), + [anon_sym_static] = ACTIONS(1320), + [anon_sym_auto] = ACTIONS(1320), + [anon_sym_register] = ACTIONS(1320), + [anon_sym_inline] = ACTIONS(1320), + [anon_sym___inline] = ACTIONS(1320), + [anon_sym___inline__] = ACTIONS(1320), + [anon_sym___forceinline] = ACTIONS(1320), + [anon_sym_thread_local] = ACTIONS(1320), + [anon_sym___thread] = ACTIONS(1320), + [anon_sym_const] = ACTIONS(1320), + [anon_sym_constexpr] = ACTIONS(1320), + [anon_sym_volatile] = ACTIONS(1320), + [anon_sym_restrict] = ACTIONS(1320), + [anon_sym___restrict__] = ACTIONS(1320), + [anon_sym__Atomic] = ACTIONS(1320), + [anon_sym__Noreturn] = ACTIONS(1320), + [anon_sym_noreturn] = ACTIONS(1320), + [sym_primitive_type] = ACTIONS(1320), + [anon_sym_enum] = ACTIONS(1320), + [anon_sym_struct] = ACTIONS(1320), + [anon_sym_union] = ACTIONS(1320), + [anon_sym_if] = ACTIONS(1320), + [anon_sym_else] = ACTIONS(1320), + [anon_sym_switch] = ACTIONS(1320), + [anon_sym_case] = ACTIONS(1320), + [anon_sym_default] = ACTIONS(1320), + [anon_sym_while] = ACTIONS(1320), + [anon_sym_do] = ACTIONS(1320), + [anon_sym_for] = ACTIONS(1320), + [anon_sym_return] = ACTIONS(1320), + [anon_sym_break] = ACTIONS(1320), + [anon_sym_continue] = ACTIONS(1320), + [anon_sym_goto] = ACTIONS(1320), + [anon_sym___try] = ACTIONS(1320), + [anon_sym___leave] = ACTIONS(1320), + [anon_sym_DASH_DASH] = ACTIONS(1322), + [anon_sym_PLUS_PLUS] = ACTIONS(1322), + [anon_sym_sizeof] = ACTIONS(1320), + [anon_sym___alignof__] = ACTIONS(1320), + [anon_sym___alignof] = ACTIONS(1320), + [anon_sym__alignof] = ACTIONS(1320), + [anon_sym_alignof] = ACTIONS(1320), + [anon_sym__Alignof] = ACTIONS(1320), + [anon_sym_offsetof] = ACTIONS(1320), + [anon_sym__Generic] = ACTIONS(1320), + [anon_sym_asm] = ACTIONS(1320), + [anon_sym___asm__] = ACTIONS(1320), + [sym_number_literal] = ACTIONS(1322), + [anon_sym_L_SQUOTE] = ACTIONS(1322), + [anon_sym_u_SQUOTE] = ACTIONS(1322), + [anon_sym_U_SQUOTE] = ACTIONS(1322), + [anon_sym_u8_SQUOTE] = ACTIONS(1322), + [anon_sym_SQUOTE] = ACTIONS(1322), + [anon_sym_L_DQUOTE] = ACTIONS(1322), + [anon_sym_u_DQUOTE] = ACTIONS(1322), + [anon_sym_U_DQUOTE] = ACTIONS(1322), + [anon_sym_u8_DQUOTE] = ACTIONS(1322), + [anon_sym_DQUOTE] = ACTIONS(1322), + [sym_true] = ACTIONS(1320), + [sym_false] = ACTIONS(1320), + [anon_sym_NULL] = ACTIONS(1320), + [anon_sym_nullptr] = ACTIONS(1320), [sym_comment] = ACTIONS(3), }, [174] = { - [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), - [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_LBRACK_LBRACK] = ACTIONS(1379), - [anon_sym___declspec] = 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), - [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_else] = 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_identifier] = ACTIONS(1364), + [aux_sym_preproc_include_token1] = ACTIONS(1364), + [aux_sym_preproc_def_token1] = ACTIONS(1364), + [aux_sym_preproc_if_token1] = ACTIONS(1364), + [aux_sym_preproc_if_token2] = ACTIONS(1364), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1364), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1364), + [aux_sym_preproc_else_token1] = ACTIONS(1364), + [aux_sym_preproc_elif_token1] = ACTIONS(1364), + [sym_preproc_directive] = ACTIONS(1364), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(1366), + [anon_sym_TILDE] = ACTIONS(1366), + [anon_sym_DASH] = ACTIONS(1364), + [anon_sym_PLUS] = ACTIONS(1364), + [anon_sym_STAR] = ACTIONS(1366), + [anon_sym_AMP] = ACTIONS(1366), + [anon_sym_SEMI] = ACTIONS(1366), + [anon_sym___extension__] = ACTIONS(1364), + [anon_sym_typedef] = ACTIONS(1364), + [anon_sym_extern] = ACTIONS(1364), + [anon_sym___attribute__] = ACTIONS(1364), + [anon_sym___scanf] = ACTIONS(1364), + [anon_sym___printf] = ACTIONS(1364), + [anon_sym___read_mostly] = ACTIONS(1364), + [anon_sym___must_hold] = ACTIONS(1364), + [anon_sym___ro_after_init] = ACTIONS(1364), + [anon_sym___init] = ACTIONS(1364), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1366), + [anon_sym___declspec] = ACTIONS(1364), + [anon_sym___cdecl] = ACTIONS(1364), + [anon_sym___clrcall] = ACTIONS(1364), + [anon_sym___stdcall] = ACTIONS(1364), + [anon_sym___fastcall] = ACTIONS(1364), + [anon_sym___thiscall] = ACTIONS(1364), + [anon_sym___vectorcall] = ACTIONS(1364), + [anon_sym_LBRACE] = ACTIONS(1366), + [anon_sym_signed] = ACTIONS(1364), + [anon_sym_unsigned] = ACTIONS(1364), + [anon_sym_long] = ACTIONS(1364), + [anon_sym_short] = ACTIONS(1364), + [anon_sym_static] = ACTIONS(1364), + [anon_sym_auto] = ACTIONS(1364), + [anon_sym_register] = ACTIONS(1364), + [anon_sym_inline] = ACTIONS(1364), + [anon_sym___inline] = ACTIONS(1364), + [anon_sym___inline__] = ACTIONS(1364), + [anon_sym___forceinline] = ACTIONS(1364), + [anon_sym_thread_local] = ACTIONS(1364), + [anon_sym___thread] = ACTIONS(1364), + [anon_sym_const] = ACTIONS(1364), + [anon_sym_constexpr] = ACTIONS(1364), + [anon_sym_volatile] = ACTIONS(1364), + [anon_sym_restrict] = ACTIONS(1364), + [anon_sym___restrict__] = ACTIONS(1364), + [anon_sym__Atomic] = ACTIONS(1364), + [anon_sym__Noreturn] = ACTIONS(1364), + [anon_sym_noreturn] = ACTIONS(1364), + [sym_primitive_type] = ACTIONS(1364), + [anon_sym_enum] = ACTIONS(1364), + [anon_sym_struct] = ACTIONS(1364), + [anon_sym_union] = ACTIONS(1364), + [anon_sym_if] = ACTIONS(1364), + [anon_sym_else] = ACTIONS(1364), + [anon_sym_switch] = ACTIONS(1364), + [anon_sym_case] = ACTIONS(1364), + [anon_sym_default] = ACTIONS(1364), + [anon_sym_while] = ACTIONS(1364), + [anon_sym_do] = ACTIONS(1364), + [anon_sym_for] = ACTIONS(1364), + [anon_sym_return] = ACTIONS(1364), + [anon_sym_break] = ACTIONS(1364), + [anon_sym_continue] = ACTIONS(1364), + [anon_sym_goto] = ACTIONS(1364), + [anon_sym___try] = ACTIONS(1364), + [anon_sym___leave] = ACTIONS(1364), + [anon_sym_DASH_DASH] = ACTIONS(1366), + [anon_sym_PLUS_PLUS] = ACTIONS(1366), + [anon_sym_sizeof] = ACTIONS(1364), + [anon_sym___alignof__] = ACTIONS(1364), + [anon_sym___alignof] = ACTIONS(1364), + [anon_sym__alignof] = ACTIONS(1364), + [anon_sym_alignof] = ACTIONS(1364), + [anon_sym__Alignof] = ACTIONS(1364), + [anon_sym_offsetof] = ACTIONS(1364), + [anon_sym__Generic] = ACTIONS(1364), + [anon_sym_asm] = ACTIONS(1364), + [anon_sym___asm__] = ACTIONS(1364), + [sym_number_literal] = ACTIONS(1366), + [anon_sym_L_SQUOTE] = ACTIONS(1366), + [anon_sym_u_SQUOTE] = ACTIONS(1366), + [anon_sym_U_SQUOTE] = ACTIONS(1366), + [anon_sym_u8_SQUOTE] = ACTIONS(1366), + [anon_sym_SQUOTE] = ACTIONS(1366), + [anon_sym_L_DQUOTE] = ACTIONS(1366), + [anon_sym_u_DQUOTE] = ACTIONS(1366), + [anon_sym_U_DQUOTE] = ACTIONS(1366), + [anon_sym_u8_DQUOTE] = ACTIONS(1366), + [anon_sym_DQUOTE] = ACTIONS(1366), + [sym_true] = ACTIONS(1364), + [sym_false] = ACTIONS(1364), + [anon_sym_NULL] = ACTIONS(1364), + [anon_sym_nullptr] = ACTIONS(1364), [sym_comment] = ACTIONS(3), }, [175] = { - [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), - [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_LBRACK_LBRACK] = ACTIONS(1375), - [anon_sym___declspec] = 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), - [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_else] = 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_identifier] = ACTIONS(1360), + [aux_sym_preproc_include_token1] = ACTIONS(1360), + [aux_sym_preproc_def_token1] = ACTIONS(1360), + [aux_sym_preproc_if_token1] = ACTIONS(1360), + [aux_sym_preproc_if_token2] = ACTIONS(1360), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1360), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1360), + [aux_sym_preproc_else_token1] = ACTIONS(1360), + [aux_sym_preproc_elif_token1] = ACTIONS(1360), + [sym_preproc_directive] = ACTIONS(1360), + [anon_sym_LPAREN2] = ACTIONS(1362), + [anon_sym_BANG] = ACTIONS(1362), + [anon_sym_TILDE] = ACTIONS(1362), + [anon_sym_DASH] = ACTIONS(1360), + [anon_sym_PLUS] = ACTIONS(1360), + [anon_sym_STAR] = ACTIONS(1362), + [anon_sym_AMP] = ACTIONS(1362), + [anon_sym_SEMI] = ACTIONS(1362), + [anon_sym___extension__] = ACTIONS(1360), + [anon_sym_typedef] = ACTIONS(1360), + [anon_sym_extern] = ACTIONS(1360), + [anon_sym___attribute__] = ACTIONS(1360), + [anon_sym___scanf] = ACTIONS(1360), + [anon_sym___printf] = ACTIONS(1360), + [anon_sym___read_mostly] = ACTIONS(1360), + [anon_sym___must_hold] = ACTIONS(1360), + [anon_sym___ro_after_init] = ACTIONS(1360), + [anon_sym___init] = ACTIONS(1360), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1362), + [anon_sym___declspec] = ACTIONS(1360), + [anon_sym___cdecl] = ACTIONS(1360), + [anon_sym___clrcall] = ACTIONS(1360), + [anon_sym___stdcall] = ACTIONS(1360), + [anon_sym___fastcall] = ACTIONS(1360), + [anon_sym___thiscall] = ACTIONS(1360), + [anon_sym___vectorcall] = ACTIONS(1360), + [anon_sym_LBRACE] = ACTIONS(1362), + [anon_sym_signed] = ACTIONS(1360), + [anon_sym_unsigned] = ACTIONS(1360), + [anon_sym_long] = ACTIONS(1360), + [anon_sym_short] = ACTIONS(1360), + [anon_sym_static] = ACTIONS(1360), + [anon_sym_auto] = ACTIONS(1360), + [anon_sym_register] = ACTIONS(1360), + [anon_sym_inline] = ACTIONS(1360), + [anon_sym___inline] = ACTIONS(1360), + [anon_sym___inline__] = ACTIONS(1360), + [anon_sym___forceinline] = ACTIONS(1360), + [anon_sym_thread_local] = ACTIONS(1360), + [anon_sym___thread] = ACTIONS(1360), + [anon_sym_const] = ACTIONS(1360), + [anon_sym_constexpr] = ACTIONS(1360), + [anon_sym_volatile] = ACTIONS(1360), + [anon_sym_restrict] = ACTIONS(1360), + [anon_sym___restrict__] = ACTIONS(1360), + [anon_sym__Atomic] = ACTIONS(1360), + [anon_sym__Noreturn] = ACTIONS(1360), + [anon_sym_noreturn] = ACTIONS(1360), + [sym_primitive_type] = ACTIONS(1360), + [anon_sym_enum] = ACTIONS(1360), + [anon_sym_struct] = ACTIONS(1360), + [anon_sym_union] = ACTIONS(1360), + [anon_sym_if] = ACTIONS(1360), + [anon_sym_else] = ACTIONS(1360), + [anon_sym_switch] = ACTIONS(1360), + [anon_sym_case] = ACTIONS(1360), + [anon_sym_default] = ACTIONS(1360), + [anon_sym_while] = ACTIONS(1360), + [anon_sym_do] = ACTIONS(1360), + [anon_sym_for] = ACTIONS(1360), + [anon_sym_return] = ACTIONS(1360), + [anon_sym_break] = ACTIONS(1360), + [anon_sym_continue] = ACTIONS(1360), + [anon_sym_goto] = ACTIONS(1360), + [anon_sym___try] = ACTIONS(1360), + [anon_sym___leave] = ACTIONS(1360), + [anon_sym_DASH_DASH] = ACTIONS(1362), + [anon_sym_PLUS_PLUS] = ACTIONS(1362), + [anon_sym_sizeof] = ACTIONS(1360), + [anon_sym___alignof__] = ACTIONS(1360), + [anon_sym___alignof] = ACTIONS(1360), + [anon_sym__alignof] = ACTIONS(1360), + [anon_sym_alignof] = ACTIONS(1360), + [anon_sym__Alignof] = ACTIONS(1360), + [anon_sym_offsetof] = ACTIONS(1360), + [anon_sym__Generic] = ACTIONS(1360), + [anon_sym_asm] = ACTIONS(1360), + [anon_sym___asm__] = ACTIONS(1360), + [sym_number_literal] = ACTIONS(1362), + [anon_sym_L_SQUOTE] = ACTIONS(1362), + [anon_sym_u_SQUOTE] = ACTIONS(1362), + [anon_sym_U_SQUOTE] = ACTIONS(1362), + [anon_sym_u8_SQUOTE] = ACTIONS(1362), + [anon_sym_SQUOTE] = ACTIONS(1362), + [anon_sym_L_DQUOTE] = ACTIONS(1362), + [anon_sym_u_DQUOTE] = ACTIONS(1362), + [anon_sym_U_DQUOTE] = ACTIONS(1362), + [anon_sym_u8_DQUOTE] = ACTIONS(1362), + [anon_sym_DQUOTE] = ACTIONS(1362), + [sym_true] = ACTIONS(1360), + [sym_false] = ACTIONS(1360), + [anon_sym_NULL] = ACTIONS(1360), + [anon_sym_nullptr] = ACTIONS(1360), [sym_comment] = ACTIONS(3), }, [176] = { - [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), - [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_LBRACK_LBRACK] = ACTIONS(1315), - [anon_sym___declspec] = 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), - [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_else] = 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_identifier] = ACTIONS(1320), + [aux_sym_preproc_include_token1] = ACTIONS(1320), + [aux_sym_preproc_def_token1] = ACTIONS(1320), + [aux_sym_preproc_if_token1] = ACTIONS(1320), + [aux_sym_preproc_if_token2] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1320), + [aux_sym_preproc_else_token1] = ACTIONS(1320), + [aux_sym_preproc_elif_token1] = ACTIONS(1320), + [sym_preproc_directive] = ACTIONS(1320), + [anon_sym_LPAREN2] = ACTIONS(1322), + [anon_sym_BANG] = ACTIONS(1322), + [anon_sym_TILDE] = ACTIONS(1322), + [anon_sym_DASH] = ACTIONS(1320), + [anon_sym_PLUS] = ACTIONS(1320), + [anon_sym_STAR] = ACTIONS(1322), + [anon_sym_AMP] = ACTIONS(1322), + [anon_sym_SEMI] = ACTIONS(1322), + [anon_sym___extension__] = ACTIONS(1320), + [anon_sym_typedef] = ACTIONS(1320), + [anon_sym_extern] = ACTIONS(1320), + [anon_sym___attribute__] = ACTIONS(1320), + [anon_sym___scanf] = ACTIONS(1320), + [anon_sym___printf] = ACTIONS(1320), + [anon_sym___read_mostly] = ACTIONS(1320), + [anon_sym___must_hold] = ACTIONS(1320), + [anon_sym___ro_after_init] = ACTIONS(1320), + [anon_sym___init] = ACTIONS(1320), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1322), + [anon_sym___declspec] = ACTIONS(1320), + [anon_sym___cdecl] = ACTIONS(1320), + [anon_sym___clrcall] = ACTIONS(1320), + [anon_sym___stdcall] = ACTIONS(1320), + [anon_sym___fastcall] = ACTIONS(1320), + [anon_sym___thiscall] = ACTIONS(1320), + [anon_sym___vectorcall] = ACTIONS(1320), + [anon_sym_LBRACE] = ACTIONS(1322), + [anon_sym_signed] = ACTIONS(1320), + [anon_sym_unsigned] = ACTIONS(1320), + [anon_sym_long] = ACTIONS(1320), + [anon_sym_short] = ACTIONS(1320), + [anon_sym_static] = ACTIONS(1320), + [anon_sym_auto] = ACTIONS(1320), + [anon_sym_register] = ACTIONS(1320), + [anon_sym_inline] = ACTIONS(1320), + [anon_sym___inline] = ACTIONS(1320), + [anon_sym___inline__] = ACTIONS(1320), + [anon_sym___forceinline] = ACTIONS(1320), + [anon_sym_thread_local] = ACTIONS(1320), + [anon_sym___thread] = ACTIONS(1320), + [anon_sym_const] = ACTIONS(1320), + [anon_sym_constexpr] = ACTIONS(1320), + [anon_sym_volatile] = ACTIONS(1320), + [anon_sym_restrict] = ACTIONS(1320), + [anon_sym___restrict__] = ACTIONS(1320), + [anon_sym__Atomic] = ACTIONS(1320), + [anon_sym__Noreturn] = ACTIONS(1320), + [anon_sym_noreturn] = ACTIONS(1320), + [sym_primitive_type] = ACTIONS(1320), + [anon_sym_enum] = ACTIONS(1320), + [anon_sym_struct] = ACTIONS(1320), + [anon_sym_union] = ACTIONS(1320), + [anon_sym_if] = ACTIONS(1320), + [anon_sym_else] = ACTIONS(1320), + [anon_sym_switch] = ACTIONS(1320), + [anon_sym_case] = ACTIONS(1320), + [anon_sym_default] = ACTIONS(1320), + [anon_sym_while] = ACTIONS(1320), + [anon_sym_do] = ACTIONS(1320), + [anon_sym_for] = ACTIONS(1320), + [anon_sym_return] = ACTIONS(1320), + [anon_sym_break] = ACTIONS(1320), + [anon_sym_continue] = ACTIONS(1320), + [anon_sym_goto] = ACTIONS(1320), + [anon_sym___try] = ACTIONS(1320), + [anon_sym___leave] = ACTIONS(1320), + [anon_sym_DASH_DASH] = ACTIONS(1322), + [anon_sym_PLUS_PLUS] = ACTIONS(1322), + [anon_sym_sizeof] = ACTIONS(1320), + [anon_sym___alignof__] = ACTIONS(1320), + [anon_sym___alignof] = ACTIONS(1320), + [anon_sym__alignof] = ACTIONS(1320), + [anon_sym_alignof] = ACTIONS(1320), + [anon_sym__Alignof] = ACTIONS(1320), + [anon_sym_offsetof] = ACTIONS(1320), + [anon_sym__Generic] = ACTIONS(1320), + [anon_sym_asm] = ACTIONS(1320), + [anon_sym___asm__] = ACTIONS(1320), + [sym_number_literal] = ACTIONS(1322), + [anon_sym_L_SQUOTE] = ACTIONS(1322), + [anon_sym_u_SQUOTE] = ACTIONS(1322), + [anon_sym_U_SQUOTE] = ACTIONS(1322), + [anon_sym_u8_SQUOTE] = ACTIONS(1322), + [anon_sym_SQUOTE] = ACTIONS(1322), + [anon_sym_L_DQUOTE] = ACTIONS(1322), + [anon_sym_u_DQUOTE] = ACTIONS(1322), + [anon_sym_U_DQUOTE] = ACTIONS(1322), + [anon_sym_u8_DQUOTE] = ACTIONS(1322), + [anon_sym_DQUOTE] = ACTIONS(1322), + [sym_true] = ACTIONS(1320), + [sym_false] = ACTIONS(1320), + [anon_sym_NULL] = ACTIONS(1320), + [anon_sym_nullptr] = ACTIONS(1320), [sym_comment] = ACTIONS(3), }, [177] = { - [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), - [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_LBRACK_LBRACK] = ACTIONS(1367), - [anon_sym___declspec] = 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), - [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_else] = 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_identifier] = ACTIONS(1376), + [aux_sym_preproc_include_token1] = ACTIONS(1376), + [aux_sym_preproc_def_token1] = ACTIONS(1376), + [aux_sym_preproc_if_token1] = ACTIONS(1376), + [aux_sym_preproc_if_token2] = ACTIONS(1376), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1376), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1376), + [aux_sym_preproc_else_token1] = ACTIONS(1376), + [aux_sym_preproc_elif_token1] = ACTIONS(1376), + [sym_preproc_directive] = ACTIONS(1376), + [anon_sym_LPAREN2] = ACTIONS(1378), + [anon_sym_BANG] = ACTIONS(1378), + [anon_sym_TILDE] = ACTIONS(1378), + [anon_sym_DASH] = ACTIONS(1376), + [anon_sym_PLUS] = ACTIONS(1376), + [anon_sym_STAR] = ACTIONS(1378), + [anon_sym_AMP] = ACTIONS(1378), + [anon_sym_SEMI] = ACTIONS(1378), + [anon_sym___extension__] = ACTIONS(1376), + [anon_sym_typedef] = ACTIONS(1376), + [anon_sym_extern] = ACTIONS(1376), + [anon_sym___attribute__] = ACTIONS(1376), + [anon_sym___scanf] = ACTIONS(1376), + [anon_sym___printf] = ACTIONS(1376), + [anon_sym___read_mostly] = ACTIONS(1376), + [anon_sym___must_hold] = ACTIONS(1376), + [anon_sym___ro_after_init] = ACTIONS(1376), + [anon_sym___init] = ACTIONS(1376), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1378), + [anon_sym___declspec] = ACTIONS(1376), + [anon_sym___cdecl] = ACTIONS(1376), + [anon_sym___clrcall] = ACTIONS(1376), + [anon_sym___stdcall] = ACTIONS(1376), + [anon_sym___fastcall] = ACTIONS(1376), + [anon_sym___thiscall] = ACTIONS(1376), + [anon_sym___vectorcall] = ACTIONS(1376), + [anon_sym_LBRACE] = ACTIONS(1378), + [anon_sym_signed] = ACTIONS(1376), + [anon_sym_unsigned] = ACTIONS(1376), + [anon_sym_long] = ACTIONS(1376), + [anon_sym_short] = ACTIONS(1376), + [anon_sym_static] = ACTIONS(1376), + [anon_sym_auto] = ACTIONS(1376), + [anon_sym_register] = ACTIONS(1376), + [anon_sym_inline] = ACTIONS(1376), + [anon_sym___inline] = ACTIONS(1376), + [anon_sym___inline__] = ACTIONS(1376), + [anon_sym___forceinline] = ACTIONS(1376), + [anon_sym_thread_local] = ACTIONS(1376), + [anon_sym___thread] = ACTIONS(1376), + [anon_sym_const] = ACTIONS(1376), + [anon_sym_constexpr] = ACTIONS(1376), + [anon_sym_volatile] = ACTIONS(1376), + [anon_sym_restrict] = ACTIONS(1376), + [anon_sym___restrict__] = ACTIONS(1376), + [anon_sym__Atomic] = ACTIONS(1376), + [anon_sym__Noreturn] = ACTIONS(1376), + [anon_sym_noreturn] = ACTIONS(1376), + [sym_primitive_type] = ACTIONS(1376), + [anon_sym_enum] = ACTIONS(1376), + [anon_sym_struct] = ACTIONS(1376), + [anon_sym_union] = ACTIONS(1376), + [anon_sym_if] = ACTIONS(1376), + [anon_sym_else] = ACTIONS(1376), + [anon_sym_switch] = ACTIONS(1376), + [anon_sym_case] = ACTIONS(1376), + [anon_sym_default] = ACTIONS(1376), + [anon_sym_while] = ACTIONS(1376), + [anon_sym_do] = ACTIONS(1376), + [anon_sym_for] = ACTIONS(1376), + [anon_sym_return] = ACTIONS(1376), + [anon_sym_break] = ACTIONS(1376), + [anon_sym_continue] = ACTIONS(1376), + [anon_sym_goto] = ACTIONS(1376), + [anon_sym___try] = ACTIONS(1376), + [anon_sym___leave] = ACTIONS(1376), + [anon_sym_DASH_DASH] = ACTIONS(1378), + [anon_sym_PLUS_PLUS] = ACTIONS(1378), + [anon_sym_sizeof] = ACTIONS(1376), + [anon_sym___alignof__] = ACTIONS(1376), + [anon_sym___alignof] = ACTIONS(1376), + [anon_sym__alignof] = ACTIONS(1376), + [anon_sym_alignof] = ACTIONS(1376), + [anon_sym__Alignof] = ACTIONS(1376), + [anon_sym_offsetof] = ACTIONS(1376), + [anon_sym__Generic] = ACTIONS(1376), + [anon_sym_asm] = ACTIONS(1376), + [anon_sym___asm__] = ACTIONS(1376), + [sym_number_literal] = ACTIONS(1378), + [anon_sym_L_SQUOTE] = ACTIONS(1378), + [anon_sym_u_SQUOTE] = ACTIONS(1378), + [anon_sym_U_SQUOTE] = ACTIONS(1378), + [anon_sym_u8_SQUOTE] = ACTIONS(1378), + [anon_sym_SQUOTE] = ACTIONS(1378), + [anon_sym_L_DQUOTE] = ACTIONS(1378), + [anon_sym_u_DQUOTE] = ACTIONS(1378), + [anon_sym_U_DQUOTE] = ACTIONS(1378), + [anon_sym_u8_DQUOTE] = ACTIONS(1378), + [anon_sym_DQUOTE] = ACTIONS(1378), + [sym_true] = ACTIONS(1376), + [sym_false] = ACTIONS(1376), + [anon_sym_NULL] = ACTIONS(1376), + [anon_sym_nullptr] = ACTIONS(1376), [sym_comment] = ACTIONS(3), }, [178] = { - [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), - [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_LBRACK_LBRACK] = ACTIONS(1315), - [anon_sym___declspec] = 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), - [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_else] = 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_identifier] = ACTIONS(1320), + [aux_sym_preproc_include_token1] = ACTIONS(1320), + [aux_sym_preproc_def_token1] = ACTIONS(1320), + [aux_sym_preproc_if_token1] = ACTIONS(1320), + [aux_sym_preproc_if_token2] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1320), + [aux_sym_preproc_else_token1] = ACTIONS(1320), + [aux_sym_preproc_elif_token1] = ACTIONS(1320), + [sym_preproc_directive] = ACTIONS(1320), + [anon_sym_LPAREN2] = ACTIONS(1322), + [anon_sym_BANG] = ACTIONS(1322), + [anon_sym_TILDE] = ACTIONS(1322), + [anon_sym_DASH] = ACTIONS(1320), + [anon_sym_PLUS] = ACTIONS(1320), + [anon_sym_STAR] = ACTIONS(1322), + [anon_sym_AMP] = ACTIONS(1322), + [anon_sym_SEMI] = ACTIONS(1322), + [anon_sym___extension__] = ACTIONS(1320), + [anon_sym_typedef] = ACTIONS(1320), + [anon_sym_extern] = ACTIONS(1320), + [anon_sym___attribute__] = ACTIONS(1320), + [anon_sym___scanf] = ACTIONS(1320), + [anon_sym___printf] = ACTIONS(1320), + [anon_sym___read_mostly] = ACTIONS(1320), + [anon_sym___must_hold] = ACTIONS(1320), + [anon_sym___ro_after_init] = ACTIONS(1320), + [anon_sym___init] = ACTIONS(1320), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1322), + [anon_sym___declspec] = ACTIONS(1320), + [anon_sym___cdecl] = ACTIONS(1320), + [anon_sym___clrcall] = ACTIONS(1320), + [anon_sym___stdcall] = ACTIONS(1320), + [anon_sym___fastcall] = ACTIONS(1320), + [anon_sym___thiscall] = ACTIONS(1320), + [anon_sym___vectorcall] = ACTIONS(1320), + [anon_sym_LBRACE] = ACTIONS(1322), + [anon_sym_signed] = ACTIONS(1320), + [anon_sym_unsigned] = ACTIONS(1320), + [anon_sym_long] = ACTIONS(1320), + [anon_sym_short] = ACTIONS(1320), + [anon_sym_static] = ACTIONS(1320), + [anon_sym_auto] = ACTIONS(1320), + [anon_sym_register] = ACTIONS(1320), + [anon_sym_inline] = ACTIONS(1320), + [anon_sym___inline] = ACTIONS(1320), + [anon_sym___inline__] = ACTIONS(1320), + [anon_sym___forceinline] = ACTIONS(1320), + [anon_sym_thread_local] = ACTIONS(1320), + [anon_sym___thread] = ACTIONS(1320), + [anon_sym_const] = ACTIONS(1320), + [anon_sym_constexpr] = ACTIONS(1320), + [anon_sym_volatile] = ACTIONS(1320), + [anon_sym_restrict] = ACTIONS(1320), + [anon_sym___restrict__] = ACTIONS(1320), + [anon_sym__Atomic] = ACTIONS(1320), + [anon_sym__Noreturn] = ACTIONS(1320), + [anon_sym_noreturn] = ACTIONS(1320), + [sym_primitive_type] = ACTIONS(1320), + [anon_sym_enum] = ACTIONS(1320), + [anon_sym_struct] = ACTIONS(1320), + [anon_sym_union] = ACTIONS(1320), + [anon_sym_if] = ACTIONS(1320), + [anon_sym_else] = ACTIONS(1320), + [anon_sym_switch] = ACTIONS(1320), + [anon_sym_case] = ACTIONS(1320), + [anon_sym_default] = ACTIONS(1320), + [anon_sym_while] = ACTIONS(1320), + [anon_sym_do] = ACTIONS(1320), + [anon_sym_for] = ACTIONS(1320), + [anon_sym_return] = ACTIONS(1320), + [anon_sym_break] = ACTIONS(1320), + [anon_sym_continue] = ACTIONS(1320), + [anon_sym_goto] = ACTIONS(1320), + [anon_sym___try] = ACTIONS(1320), + [anon_sym___leave] = ACTIONS(1320), + [anon_sym_DASH_DASH] = ACTIONS(1322), + [anon_sym_PLUS_PLUS] = ACTIONS(1322), + [anon_sym_sizeof] = ACTIONS(1320), + [anon_sym___alignof__] = ACTIONS(1320), + [anon_sym___alignof] = ACTIONS(1320), + [anon_sym__alignof] = ACTIONS(1320), + [anon_sym_alignof] = ACTIONS(1320), + [anon_sym__Alignof] = ACTIONS(1320), + [anon_sym_offsetof] = ACTIONS(1320), + [anon_sym__Generic] = ACTIONS(1320), + [anon_sym_asm] = ACTIONS(1320), + [anon_sym___asm__] = ACTIONS(1320), + [sym_number_literal] = ACTIONS(1322), + [anon_sym_L_SQUOTE] = ACTIONS(1322), + [anon_sym_u_SQUOTE] = ACTIONS(1322), + [anon_sym_U_SQUOTE] = ACTIONS(1322), + [anon_sym_u8_SQUOTE] = ACTIONS(1322), + [anon_sym_SQUOTE] = ACTIONS(1322), + [anon_sym_L_DQUOTE] = ACTIONS(1322), + [anon_sym_u_DQUOTE] = ACTIONS(1322), + [anon_sym_U_DQUOTE] = ACTIONS(1322), + [anon_sym_u8_DQUOTE] = ACTIONS(1322), + [anon_sym_DQUOTE] = ACTIONS(1322), + [sym_true] = ACTIONS(1320), + [sym_false] = ACTIONS(1320), + [anon_sym_NULL] = ACTIONS(1320), + [anon_sym_nullptr] = ACTIONS(1320), [sym_comment] = ACTIONS(3), }, [179] = { - [sym_identifier] = ACTIONS(1409), - [aux_sym_preproc_include_token1] = ACTIONS(1409), - [aux_sym_preproc_def_token1] = ACTIONS(1409), - [aux_sym_preproc_if_token1] = ACTIONS(1409), - [aux_sym_preproc_if_token2] = ACTIONS(1409), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1409), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1409), - [aux_sym_preproc_else_token1] = ACTIONS(1409), - [aux_sym_preproc_elif_token1] = ACTIONS(1409), - [sym_preproc_directive] = ACTIONS(1409), - [anon_sym_LPAREN2] = ACTIONS(1411), - [anon_sym_BANG] = ACTIONS(1411), - [anon_sym_TILDE] = ACTIONS(1411), - [anon_sym_DASH] = ACTIONS(1409), - [anon_sym_PLUS] = ACTIONS(1409), - [anon_sym_STAR] = ACTIONS(1411), - [anon_sym_AMP] = ACTIONS(1411), - [anon_sym_SEMI] = ACTIONS(1411), - [anon_sym___extension__] = ACTIONS(1409), - [anon_sym_typedef] = ACTIONS(1409), - [anon_sym_extern] = ACTIONS(1409), - [anon_sym___attribute__] = ACTIONS(1409), - [anon_sym___scanf] = ACTIONS(1409), - [anon_sym___printf] = ACTIONS(1409), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1411), - [anon_sym___declspec] = ACTIONS(1409), - [anon_sym___cdecl] = ACTIONS(1409), - [anon_sym___clrcall] = ACTIONS(1409), - [anon_sym___stdcall] = ACTIONS(1409), - [anon_sym___fastcall] = ACTIONS(1409), - [anon_sym___thiscall] = ACTIONS(1409), - [anon_sym___vectorcall] = ACTIONS(1409), - [anon_sym_LBRACE] = ACTIONS(1411), - [anon_sym_signed] = ACTIONS(1409), - [anon_sym_unsigned] = ACTIONS(1409), - [anon_sym_long] = ACTIONS(1409), - [anon_sym_short] = ACTIONS(1409), - [anon_sym_static] = ACTIONS(1409), - [anon_sym_auto] = ACTIONS(1409), - [anon_sym_register] = ACTIONS(1409), - [anon_sym_inline] = ACTIONS(1409), - [anon_sym___inline] = ACTIONS(1409), - [anon_sym___inline__] = ACTIONS(1409), - [anon_sym___forceinline] = ACTIONS(1409), - [anon_sym_thread_local] = ACTIONS(1409), - [anon_sym___thread] = ACTIONS(1409), - [anon_sym_const] = ACTIONS(1409), - [anon_sym_constexpr] = ACTIONS(1409), - [anon_sym_volatile] = ACTIONS(1409), - [anon_sym_restrict] = ACTIONS(1409), - [anon_sym___restrict__] = ACTIONS(1409), - [anon_sym__Atomic] = ACTIONS(1409), - [anon_sym__Noreturn] = ACTIONS(1409), - [anon_sym_noreturn] = ACTIONS(1409), - [sym_primitive_type] = ACTIONS(1409), - [anon_sym_enum] = ACTIONS(1409), - [anon_sym_struct] = ACTIONS(1409), - [anon_sym_union] = ACTIONS(1409), - [anon_sym_if] = ACTIONS(1409), - [anon_sym_else] = ACTIONS(1409), - [anon_sym_switch] = ACTIONS(1409), - [anon_sym_case] = ACTIONS(1409), - [anon_sym_default] = ACTIONS(1409), - [anon_sym_while] = ACTIONS(1409), - [anon_sym_do] = ACTIONS(1409), - [anon_sym_for] = ACTIONS(1409), - [anon_sym_return] = ACTIONS(1409), - [anon_sym_break] = ACTIONS(1409), - [anon_sym_continue] = ACTIONS(1409), - [anon_sym_goto] = ACTIONS(1409), - [anon_sym___try] = ACTIONS(1409), - [anon_sym___leave] = ACTIONS(1409), - [anon_sym_DASH_DASH] = ACTIONS(1411), - [anon_sym_PLUS_PLUS] = ACTIONS(1411), - [anon_sym_sizeof] = ACTIONS(1409), - [anon_sym___alignof__] = ACTIONS(1409), - [anon_sym___alignof] = ACTIONS(1409), - [anon_sym__alignof] = ACTIONS(1409), - [anon_sym_alignof] = ACTIONS(1409), - [anon_sym__Alignof] = ACTIONS(1409), - [anon_sym_offsetof] = ACTIONS(1409), - [anon_sym__Generic] = ACTIONS(1409), - [anon_sym_asm] = ACTIONS(1409), - [anon_sym___asm__] = ACTIONS(1409), - [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(1409), - [sym_false] = ACTIONS(1409), - [anon_sym_NULL] = ACTIONS(1409), - [anon_sym_nullptr] = ACTIONS(1409), + [sym_identifier] = ACTIONS(1320), + [aux_sym_preproc_include_token1] = ACTIONS(1320), + [aux_sym_preproc_def_token1] = ACTIONS(1320), + [aux_sym_preproc_if_token1] = ACTIONS(1320), + [aux_sym_preproc_if_token2] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1320), + [aux_sym_preproc_else_token1] = ACTIONS(1320), + [aux_sym_preproc_elif_token1] = ACTIONS(1320), + [sym_preproc_directive] = ACTIONS(1320), + [anon_sym_LPAREN2] = ACTIONS(1322), + [anon_sym_BANG] = ACTIONS(1322), + [anon_sym_TILDE] = ACTIONS(1322), + [anon_sym_DASH] = ACTIONS(1320), + [anon_sym_PLUS] = ACTIONS(1320), + [anon_sym_STAR] = ACTIONS(1322), + [anon_sym_AMP] = ACTIONS(1322), + [anon_sym_SEMI] = ACTIONS(1322), + [anon_sym___extension__] = ACTIONS(1320), + [anon_sym_typedef] = ACTIONS(1320), + [anon_sym_extern] = ACTIONS(1320), + [anon_sym___attribute__] = ACTIONS(1320), + [anon_sym___scanf] = ACTIONS(1320), + [anon_sym___printf] = ACTIONS(1320), + [anon_sym___read_mostly] = ACTIONS(1320), + [anon_sym___must_hold] = ACTIONS(1320), + [anon_sym___ro_after_init] = ACTIONS(1320), + [anon_sym___init] = ACTIONS(1320), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1322), + [anon_sym___declspec] = ACTIONS(1320), + [anon_sym___cdecl] = ACTIONS(1320), + [anon_sym___clrcall] = ACTIONS(1320), + [anon_sym___stdcall] = ACTIONS(1320), + [anon_sym___fastcall] = ACTIONS(1320), + [anon_sym___thiscall] = ACTIONS(1320), + [anon_sym___vectorcall] = ACTIONS(1320), + [anon_sym_LBRACE] = ACTIONS(1322), + [anon_sym_signed] = ACTIONS(1320), + [anon_sym_unsigned] = ACTIONS(1320), + [anon_sym_long] = ACTIONS(1320), + [anon_sym_short] = ACTIONS(1320), + [anon_sym_static] = ACTIONS(1320), + [anon_sym_auto] = ACTIONS(1320), + [anon_sym_register] = ACTIONS(1320), + [anon_sym_inline] = ACTIONS(1320), + [anon_sym___inline] = ACTIONS(1320), + [anon_sym___inline__] = ACTIONS(1320), + [anon_sym___forceinline] = ACTIONS(1320), + [anon_sym_thread_local] = ACTIONS(1320), + [anon_sym___thread] = ACTIONS(1320), + [anon_sym_const] = ACTIONS(1320), + [anon_sym_constexpr] = ACTIONS(1320), + [anon_sym_volatile] = ACTIONS(1320), + [anon_sym_restrict] = ACTIONS(1320), + [anon_sym___restrict__] = ACTIONS(1320), + [anon_sym__Atomic] = ACTIONS(1320), + [anon_sym__Noreturn] = ACTIONS(1320), + [anon_sym_noreturn] = ACTIONS(1320), + [sym_primitive_type] = ACTIONS(1320), + [anon_sym_enum] = ACTIONS(1320), + [anon_sym_struct] = ACTIONS(1320), + [anon_sym_union] = ACTIONS(1320), + [anon_sym_if] = ACTIONS(1320), + [anon_sym_else] = ACTIONS(1320), + [anon_sym_switch] = ACTIONS(1320), + [anon_sym_case] = ACTIONS(1320), + [anon_sym_default] = ACTIONS(1320), + [anon_sym_while] = ACTIONS(1320), + [anon_sym_do] = ACTIONS(1320), + [anon_sym_for] = ACTIONS(1320), + [anon_sym_return] = ACTIONS(1320), + [anon_sym_break] = ACTIONS(1320), + [anon_sym_continue] = ACTIONS(1320), + [anon_sym_goto] = ACTIONS(1320), + [anon_sym___try] = ACTIONS(1320), + [anon_sym___leave] = ACTIONS(1320), + [anon_sym_DASH_DASH] = ACTIONS(1322), + [anon_sym_PLUS_PLUS] = ACTIONS(1322), + [anon_sym_sizeof] = ACTIONS(1320), + [anon_sym___alignof__] = ACTIONS(1320), + [anon_sym___alignof] = ACTIONS(1320), + [anon_sym__alignof] = ACTIONS(1320), + [anon_sym_alignof] = ACTIONS(1320), + [anon_sym__Alignof] = ACTIONS(1320), + [anon_sym_offsetof] = ACTIONS(1320), + [anon_sym__Generic] = ACTIONS(1320), + [anon_sym_asm] = ACTIONS(1320), + [anon_sym___asm__] = ACTIONS(1320), + [sym_number_literal] = ACTIONS(1322), + [anon_sym_L_SQUOTE] = ACTIONS(1322), + [anon_sym_u_SQUOTE] = ACTIONS(1322), + [anon_sym_U_SQUOTE] = ACTIONS(1322), + [anon_sym_u8_SQUOTE] = ACTIONS(1322), + [anon_sym_SQUOTE] = ACTIONS(1322), + [anon_sym_L_DQUOTE] = ACTIONS(1322), + [anon_sym_u_DQUOTE] = ACTIONS(1322), + [anon_sym_U_DQUOTE] = ACTIONS(1322), + [anon_sym_u8_DQUOTE] = ACTIONS(1322), + [anon_sym_DQUOTE] = ACTIONS(1322), + [sym_true] = ACTIONS(1320), + [sym_false] = ACTIONS(1320), + [anon_sym_NULL] = ACTIONS(1320), + [anon_sym_nullptr] = ACTIONS(1320), [sym_comment] = ACTIONS(3), }, [180] = { - [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), - [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_LBRACK_LBRACK] = ACTIONS(1315), - [anon_sym___declspec] = 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), - [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_else] = 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_identifier] = ACTIONS(1372), + [aux_sym_preproc_include_token1] = ACTIONS(1372), + [aux_sym_preproc_def_token1] = ACTIONS(1372), + [aux_sym_preproc_if_token1] = ACTIONS(1372), + [aux_sym_preproc_if_token2] = ACTIONS(1372), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1372), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1372), + [aux_sym_preproc_else_token1] = ACTIONS(1372), + [aux_sym_preproc_elif_token1] = ACTIONS(1372), + [sym_preproc_directive] = ACTIONS(1372), + [anon_sym_LPAREN2] = ACTIONS(1374), + [anon_sym_BANG] = ACTIONS(1374), + [anon_sym_TILDE] = ACTIONS(1374), + [anon_sym_DASH] = ACTIONS(1372), + [anon_sym_PLUS] = ACTIONS(1372), + [anon_sym_STAR] = ACTIONS(1374), + [anon_sym_AMP] = ACTIONS(1374), + [anon_sym_SEMI] = ACTIONS(1374), + [anon_sym___extension__] = ACTIONS(1372), + [anon_sym_typedef] = ACTIONS(1372), + [anon_sym_extern] = ACTIONS(1372), + [anon_sym___attribute__] = ACTIONS(1372), + [anon_sym___scanf] = ACTIONS(1372), + [anon_sym___printf] = ACTIONS(1372), + [anon_sym___read_mostly] = ACTIONS(1372), + [anon_sym___must_hold] = ACTIONS(1372), + [anon_sym___ro_after_init] = ACTIONS(1372), + [anon_sym___init] = ACTIONS(1372), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), + [anon_sym___declspec] = ACTIONS(1372), + [anon_sym___cdecl] = ACTIONS(1372), + [anon_sym___clrcall] = ACTIONS(1372), + [anon_sym___stdcall] = ACTIONS(1372), + [anon_sym___fastcall] = ACTIONS(1372), + [anon_sym___thiscall] = ACTIONS(1372), + [anon_sym___vectorcall] = ACTIONS(1372), + [anon_sym_LBRACE] = ACTIONS(1374), + [anon_sym_signed] = ACTIONS(1372), + [anon_sym_unsigned] = ACTIONS(1372), + [anon_sym_long] = ACTIONS(1372), + [anon_sym_short] = ACTIONS(1372), + [anon_sym_static] = ACTIONS(1372), + [anon_sym_auto] = ACTIONS(1372), + [anon_sym_register] = ACTIONS(1372), + [anon_sym_inline] = ACTIONS(1372), + [anon_sym___inline] = ACTIONS(1372), + [anon_sym___inline__] = ACTIONS(1372), + [anon_sym___forceinline] = ACTIONS(1372), + [anon_sym_thread_local] = ACTIONS(1372), + [anon_sym___thread] = ACTIONS(1372), + [anon_sym_const] = ACTIONS(1372), + [anon_sym_constexpr] = ACTIONS(1372), + [anon_sym_volatile] = ACTIONS(1372), + [anon_sym_restrict] = ACTIONS(1372), + [anon_sym___restrict__] = ACTIONS(1372), + [anon_sym__Atomic] = ACTIONS(1372), + [anon_sym__Noreturn] = ACTIONS(1372), + [anon_sym_noreturn] = ACTIONS(1372), + [sym_primitive_type] = ACTIONS(1372), + [anon_sym_enum] = ACTIONS(1372), + [anon_sym_struct] = ACTIONS(1372), + [anon_sym_union] = ACTIONS(1372), + [anon_sym_if] = ACTIONS(1372), + [anon_sym_else] = ACTIONS(1372), + [anon_sym_switch] = ACTIONS(1372), + [anon_sym_case] = ACTIONS(1372), + [anon_sym_default] = ACTIONS(1372), + [anon_sym_while] = ACTIONS(1372), + [anon_sym_do] = ACTIONS(1372), + [anon_sym_for] = ACTIONS(1372), + [anon_sym_return] = ACTIONS(1372), + [anon_sym_break] = ACTIONS(1372), + [anon_sym_continue] = ACTIONS(1372), + [anon_sym_goto] = ACTIONS(1372), + [anon_sym___try] = ACTIONS(1372), + [anon_sym___leave] = ACTIONS(1372), + [anon_sym_DASH_DASH] = ACTIONS(1374), + [anon_sym_PLUS_PLUS] = ACTIONS(1374), + [anon_sym_sizeof] = ACTIONS(1372), + [anon_sym___alignof__] = ACTIONS(1372), + [anon_sym___alignof] = ACTIONS(1372), + [anon_sym__alignof] = ACTIONS(1372), + [anon_sym_alignof] = ACTIONS(1372), + [anon_sym__Alignof] = ACTIONS(1372), + [anon_sym_offsetof] = ACTIONS(1372), + [anon_sym__Generic] = ACTIONS(1372), + [anon_sym_asm] = ACTIONS(1372), + [anon_sym___asm__] = ACTIONS(1372), + [sym_number_literal] = ACTIONS(1374), + [anon_sym_L_SQUOTE] = ACTIONS(1374), + [anon_sym_u_SQUOTE] = ACTIONS(1374), + [anon_sym_U_SQUOTE] = ACTIONS(1374), + [anon_sym_u8_SQUOTE] = ACTIONS(1374), + [anon_sym_SQUOTE] = ACTIONS(1374), + [anon_sym_L_DQUOTE] = ACTIONS(1374), + [anon_sym_u_DQUOTE] = ACTIONS(1374), + [anon_sym_U_DQUOTE] = ACTIONS(1374), + [anon_sym_u8_DQUOTE] = ACTIONS(1374), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_true] = ACTIONS(1372), + [sym_false] = ACTIONS(1372), + [anon_sym_NULL] = ACTIONS(1372), + [anon_sym_nullptr] = ACTIONS(1372), [sym_comment] = ACTIONS(3), }, [181] = { - [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), - [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_LBRACK_LBRACK] = ACTIONS(1315), - [anon_sym___declspec] = 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), - [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_else] = 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_identifier] = ACTIONS(1320), + [aux_sym_preproc_include_token1] = ACTIONS(1320), + [aux_sym_preproc_def_token1] = ACTIONS(1320), + [aux_sym_preproc_if_token1] = ACTIONS(1320), + [aux_sym_preproc_if_token2] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1320), + [aux_sym_preproc_else_token1] = ACTIONS(1320), + [aux_sym_preproc_elif_token1] = ACTIONS(1320), + [sym_preproc_directive] = ACTIONS(1320), + [anon_sym_LPAREN2] = ACTIONS(1322), + [anon_sym_BANG] = ACTIONS(1322), + [anon_sym_TILDE] = ACTIONS(1322), + [anon_sym_DASH] = ACTIONS(1320), + [anon_sym_PLUS] = ACTIONS(1320), + [anon_sym_STAR] = ACTIONS(1322), + [anon_sym_AMP] = ACTIONS(1322), + [anon_sym_SEMI] = ACTIONS(1322), + [anon_sym___extension__] = ACTIONS(1320), + [anon_sym_typedef] = ACTIONS(1320), + [anon_sym_extern] = ACTIONS(1320), + [anon_sym___attribute__] = ACTIONS(1320), + [anon_sym___scanf] = ACTIONS(1320), + [anon_sym___printf] = ACTIONS(1320), + [anon_sym___read_mostly] = ACTIONS(1320), + [anon_sym___must_hold] = ACTIONS(1320), + [anon_sym___ro_after_init] = ACTIONS(1320), + [anon_sym___init] = ACTIONS(1320), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1322), + [anon_sym___declspec] = ACTIONS(1320), + [anon_sym___cdecl] = ACTIONS(1320), + [anon_sym___clrcall] = ACTIONS(1320), + [anon_sym___stdcall] = ACTIONS(1320), + [anon_sym___fastcall] = ACTIONS(1320), + [anon_sym___thiscall] = ACTIONS(1320), + [anon_sym___vectorcall] = ACTIONS(1320), + [anon_sym_LBRACE] = ACTIONS(1322), + [anon_sym_signed] = ACTIONS(1320), + [anon_sym_unsigned] = ACTIONS(1320), + [anon_sym_long] = ACTIONS(1320), + [anon_sym_short] = ACTIONS(1320), + [anon_sym_static] = ACTIONS(1320), + [anon_sym_auto] = ACTIONS(1320), + [anon_sym_register] = ACTIONS(1320), + [anon_sym_inline] = ACTIONS(1320), + [anon_sym___inline] = ACTIONS(1320), + [anon_sym___inline__] = ACTIONS(1320), + [anon_sym___forceinline] = ACTIONS(1320), + [anon_sym_thread_local] = ACTIONS(1320), + [anon_sym___thread] = ACTIONS(1320), + [anon_sym_const] = ACTIONS(1320), + [anon_sym_constexpr] = ACTIONS(1320), + [anon_sym_volatile] = ACTIONS(1320), + [anon_sym_restrict] = ACTIONS(1320), + [anon_sym___restrict__] = ACTIONS(1320), + [anon_sym__Atomic] = ACTIONS(1320), + [anon_sym__Noreturn] = ACTIONS(1320), + [anon_sym_noreturn] = ACTIONS(1320), + [sym_primitive_type] = ACTIONS(1320), + [anon_sym_enum] = ACTIONS(1320), + [anon_sym_struct] = ACTIONS(1320), + [anon_sym_union] = ACTIONS(1320), + [anon_sym_if] = ACTIONS(1320), + [anon_sym_else] = ACTIONS(1320), + [anon_sym_switch] = ACTIONS(1320), + [anon_sym_case] = ACTIONS(1320), + [anon_sym_default] = ACTIONS(1320), + [anon_sym_while] = ACTIONS(1320), + [anon_sym_do] = ACTIONS(1320), + [anon_sym_for] = ACTIONS(1320), + [anon_sym_return] = ACTIONS(1320), + [anon_sym_break] = ACTIONS(1320), + [anon_sym_continue] = ACTIONS(1320), + [anon_sym_goto] = ACTIONS(1320), + [anon_sym___try] = ACTIONS(1320), + [anon_sym___leave] = ACTIONS(1320), + [anon_sym_DASH_DASH] = ACTIONS(1322), + [anon_sym_PLUS_PLUS] = ACTIONS(1322), + [anon_sym_sizeof] = ACTIONS(1320), + [anon_sym___alignof__] = ACTIONS(1320), + [anon_sym___alignof] = ACTIONS(1320), + [anon_sym__alignof] = ACTIONS(1320), + [anon_sym_alignof] = ACTIONS(1320), + [anon_sym__Alignof] = ACTIONS(1320), + [anon_sym_offsetof] = ACTIONS(1320), + [anon_sym__Generic] = ACTIONS(1320), + [anon_sym_asm] = ACTIONS(1320), + [anon_sym___asm__] = ACTIONS(1320), + [sym_number_literal] = ACTIONS(1322), + [anon_sym_L_SQUOTE] = ACTIONS(1322), + [anon_sym_u_SQUOTE] = ACTIONS(1322), + [anon_sym_U_SQUOTE] = ACTIONS(1322), + [anon_sym_u8_SQUOTE] = ACTIONS(1322), + [anon_sym_SQUOTE] = ACTIONS(1322), + [anon_sym_L_DQUOTE] = ACTIONS(1322), + [anon_sym_u_DQUOTE] = ACTIONS(1322), + [anon_sym_U_DQUOTE] = ACTIONS(1322), + [anon_sym_u8_DQUOTE] = ACTIONS(1322), + [anon_sym_DQUOTE] = ACTIONS(1322), + [sym_true] = ACTIONS(1320), + [sym_false] = ACTIONS(1320), + [anon_sym_NULL] = ACTIONS(1320), + [anon_sym_nullptr] = ACTIONS(1320), [sym_comment] = ACTIONS(3), }, [182] = { - [sym_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), - [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_LBRACK_LBRACK] = ACTIONS(1395), - [anon_sym___declspec] = 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), - [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_else] = 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_identifier] = ACTIONS(1336), + [aux_sym_preproc_include_token1] = ACTIONS(1336), + [aux_sym_preproc_def_token1] = ACTIONS(1336), + [aux_sym_preproc_if_token1] = ACTIONS(1336), + [aux_sym_preproc_if_token2] = ACTIONS(1336), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1336), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1336), + [aux_sym_preproc_else_token1] = ACTIONS(1336), + [aux_sym_preproc_elif_token1] = ACTIONS(1336), + [sym_preproc_directive] = ACTIONS(1336), + [anon_sym_LPAREN2] = ACTIONS(1338), + [anon_sym_BANG] = ACTIONS(1338), + [anon_sym_TILDE] = ACTIONS(1338), + [anon_sym_DASH] = ACTIONS(1336), + [anon_sym_PLUS] = ACTIONS(1336), + [anon_sym_STAR] = ACTIONS(1338), + [anon_sym_AMP] = ACTIONS(1338), + [anon_sym_SEMI] = ACTIONS(1338), + [anon_sym___extension__] = ACTIONS(1336), + [anon_sym_typedef] = ACTIONS(1336), + [anon_sym_extern] = ACTIONS(1336), + [anon_sym___attribute__] = ACTIONS(1336), + [anon_sym___scanf] = ACTIONS(1336), + [anon_sym___printf] = ACTIONS(1336), + [anon_sym___read_mostly] = ACTIONS(1336), + [anon_sym___must_hold] = ACTIONS(1336), + [anon_sym___ro_after_init] = ACTIONS(1336), + [anon_sym___init] = ACTIONS(1336), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1338), + [anon_sym___declspec] = ACTIONS(1336), + [anon_sym___cdecl] = ACTIONS(1336), + [anon_sym___clrcall] = ACTIONS(1336), + [anon_sym___stdcall] = ACTIONS(1336), + [anon_sym___fastcall] = ACTIONS(1336), + [anon_sym___thiscall] = ACTIONS(1336), + [anon_sym___vectorcall] = ACTIONS(1336), + [anon_sym_LBRACE] = ACTIONS(1338), + [anon_sym_signed] = ACTIONS(1336), + [anon_sym_unsigned] = ACTIONS(1336), + [anon_sym_long] = ACTIONS(1336), + [anon_sym_short] = ACTIONS(1336), + [anon_sym_static] = ACTIONS(1336), + [anon_sym_auto] = ACTIONS(1336), + [anon_sym_register] = ACTIONS(1336), + [anon_sym_inline] = ACTIONS(1336), + [anon_sym___inline] = ACTIONS(1336), + [anon_sym___inline__] = ACTIONS(1336), + [anon_sym___forceinline] = ACTIONS(1336), + [anon_sym_thread_local] = ACTIONS(1336), + [anon_sym___thread] = ACTIONS(1336), + [anon_sym_const] = ACTIONS(1336), + [anon_sym_constexpr] = ACTIONS(1336), + [anon_sym_volatile] = ACTIONS(1336), + [anon_sym_restrict] = ACTIONS(1336), + [anon_sym___restrict__] = ACTIONS(1336), + [anon_sym__Atomic] = ACTIONS(1336), + [anon_sym__Noreturn] = ACTIONS(1336), + [anon_sym_noreturn] = ACTIONS(1336), + [sym_primitive_type] = ACTIONS(1336), + [anon_sym_enum] = ACTIONS(1336), + [anon_sym_struct] = ACTIONS(1336), + [anon_sym_union] = ACTIONS(1336), + [anon_sym_if] = ACTIONS(1336), + [anon_sym_else] = ACTIONS(1336), + [anon_sym_switch] = ACTIONS(1336), + [anon_sym_case] = ACTIONS(1336), + [anon_sym_default] = ACTIONS(1336), + [anon_sym_while] = ACTIONS(1336), + [anon_sym_do] = ACTIONS(1336), + [anon_sym_for] = ACTIONS(1336), + [anon_sym_return] = ACTIONS(1336), + [anon_sym_break] = ACTIONS(1336), + [anon_sym_continue] = ACTIONS(1336), + [anon_sym_goto] = ACTIONS(1336), + [anon_sym___try] = ACTIONS(1336), + [anon_sym___leave] = ACTIONS(1336), + [anon_sym_DASH_DASH] = ACTIONS(1338), + [anon_sym_PLUS_PLUS] = ACTIONS(1338), + [anon_sym_sizeof] = ACTIONS(1336), + [anon_sym___alignof__] = ACTIONS(1336), + [anon_sym___alignof] = ACTIONS(1336), + [anon_sym__alignof] = ACTIONS(1336), + [anon_sym_alignof] = ACTIONS(1336), + [anon_sym__Alignof] = ACTIONS(1336), + [anon_sym_offsetof] = ACTIONS(1336), + [anon_sym__Generic] = ACTIONS(1336), + [anon_sym_asm] = ACTIONS(1336), + [anon_sym___asm__] = ACTIONS(1336), + [sym_number_literal] = ACTIONS(1338), + [anon_sym_L_SQUOTE] = ACTIONS(1338), + [anon_sym_u_SQUOTE] = ACTIONS(1338), + [anon_sym_U_SQUOTE] = ACTIONS(1338), + [anon_sym_u8_SQUOTE] = ACTIONS(1338), + [anon_sym_SQUOTE] = ACTIONS(1338), + [anon_sym_L_DQUOTE] = ACTIONS(1338), + [anon_sym_u_DQUOTE] = ACTIONS(1338), + [anon_sym_U_DQUOTE] = ACTIONS(1338), + [anon_sym_u8_DQUOTE] = ACTIONS(1338), + [anon_sym_DQUOTE] = ACTIONS(1338), + [sym_true] = ACTIONS(1336), + [sym_false] = ACTIONS(1336), + [anon_sym_NULL] = ACTIONS(1336), + [anon_sym_nullptr] = ACTIONS(1336), [sym_comment] = ACTIONS(3), }, [183] = { - [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), - [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_LBRACK_LBRACK] = ACTIONS(1343), - [anon_sym___declspec] = 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), - [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_else] = 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_identifier] = ACTIONS(1320), + [aux_sym_preproc_include_token1] = ACTIONS(1320), + [aux_sym_preproc_def_token1] = ACTIONS(1320), + [aux_sym_preproc_if_token1] = ACTIONS(1320), + [aux_sym_preproc_if_token2] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1320), + [aux_sym_preproc_else_token1] = ACTIONS(1320), + [aux_sym_preproc_elif_token1] = ACTIONS(1320), + [sym_preproc_directive] = ACTIONS(1320), + [anon_sym_LPAREN2] = ACTIONS(1322), + [anon_sym_BANG] = ACTIONS(1322), + [anon_sym_TILDE] = ACTIONS(1322), + [anon_sym_DASH] = ACTIONS(1320), + [anon_sym_PLUS] = ACTIONS(1320), + [anon_sym_STAR] = ACTIONS(1322), + [anon_sym_AMP] = ACTIONS(1322), + [anon_sym_SEMI] = ACTIONS(1322), + [anon_sym___extension__] = ACTIONS(1320), + [anon_sym_typedef] = ACTIONS(1320), + [anon_sym_extern] = ACTIONS(1320), + [anon_sym___attribute__] = ACTIONS(1320), + [anon_sym___scanf] = ACTIONS(1320), + [anon_sym___printf] = ACTIONS(1320), + [anon_sym___read_mostly] = ACTIONS(1320), + [anon_sym___must_hold] = ACTIONS(1320), + [anon_sym___ro_after_init] = ACTIONS(1320), + [anon_sym___init] = ACTIONS(1320), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1322), + [anon_sym___declspec] = ACTIONS(1320), + [anon_sym___cdecl] = ACTIONS(1320), + [anon_sym___clrcall] = ACTIONS(1320), + [anon_sym___stdcall] = ACTIONS(1320), + [anon_sym___fastcall] = ACTIONS(1320), + [anon_sym___thiscall] = ACTIONS(1320), + [anon_sym___vectorcall] = ACTIONS(1320), + [anon_sym_LBRACE] = ACTIONS(1322), + [anon_sym_signed] = ACTIONS(1320), + [anon_sym_unsigned] = ACTIONS(1320), + [anon_sym_long] = ACTIONS(1320), + [anon_sym_short] = ACTIONS(1320), + [anon_sym_static] = ACTIONS(1320), + [anon_sym_auto] = ACTIONS(1320), + [anon_sym_register] = ACTIONS(1320), + [anon_sym_inline] = ACTIONS(1320), + [anon_sym___inline] = ACTIONS(1320), + [anon_sym___inline__] = ACTIONS(1320), + [anon_sym___forceinline] = ACTIONS(1320), + [anon_sym_thread_local] = ACTIONS(1320), + [anon_sym___thread] = ACTIONS(1320), + [anon_sym_const] = ACTIONS(1320), + [anon_sym_constexpr] = ACTIONS(1320), + [anon_sym_volatile] = ACTIONS(1320), + [anon_sym_restrict] = ACTIONS(1320), + [anon_sym___restrict__] = ACTIONS(1320), + [anon_sym__Atomic] = ACTIONS(1320), + [anon_sym__Noreturn] = ACTIONS(1320), + [anon_sym_noreturn] = ACTIONS(1320), + [sym_primitive_type] = ACTIONS(1320), + [anon_sym_enum] = ACTIONS(1320), + [anon_sym_struct] = ACTIONS(1320), + [anon_sym_union] = ACTIONS(1320), + [anon_sym_if] = ACTIONS(1320), + [anon_sym_else] = ACTIONS(1320), + [anon_sym_switch] = ACTIONS(1320), + [anon_sym_case] = ACTIONS(1320), + [anon_sym_default] = ACTIONS(1320), + [anon_sym_while] = ACTIONS(1320), + [anon_sym_do] = ACTIONS(1320), + [anon_sym_for] = ACTIONS(1320), + [anon_sym_return] = ACTIONS(1320), + [anon_sym_break] = ACTIONS(1320), + [anon_sym_continue] = ACTIONS(1320), + [anon_sym_goto] = ACTIONS(1320), + [anon_sym___try] = ACTIONS(1320), + [anon_sym___leave] = ACTIONS(1320), + [anon_sym_DASH_DASH] = ACTIONS(1322), + [anon_sym_PLUS_PLUS] = ACTIONS(1322), + [anon_sym_sizeof] = ACTIONS(1320), + [anon_sym___alignof__] = ACTIONS(1320), + [anon_sym___alignof] = ACTIONS(1320), + [anon_sym__alignof] = ACTIONS(1320), + [anon_sym_alignof] = ACTIONS(1320), + [anon_sym__Alignof] = ACTIONS(1320), + [anon_sym_offsetof] = ACTIONS(1320), + [anon_sym__Generic] = ACTIONS(1320), + [anon_sym_asm] = ACTIONS(1320), + [anon_sym___asm__] = ACTIONS(1320), + [sym_number_literal] = ACTIONS(1322), + [anon_sym_L_SQUOTE] = ACTIONS(1322), + [anon_sym_u_SQUOTE] = ACTIONS(1322), + [anon_sym_U_SQUOTE] = ACTIONS(1322), + [anon_sym_u8_SQUOTE] = ACTIONS(1322), + [anon_sym_SQUOTE] = ACTIONS(1322), + [anon_sym_L_DQUOTE] = ACTIONS(1322), + [anon_sym_u_DQUOTE] = ACTIONS(1322), + [anon_sym_U_DQUOTE] = ACTIONS(1322), + [anon_sym_u8_DQUOTE] = ACTIONS(1322), + [anon_sym_DQUOTE] = ACTIONS(1322), + [sym_true] = ACTIONS(1320), + [sym_false] = ACTIONS(1320), + [anon_sym_NULL] = ACTIONS(1320), + [anon_sym_nullptr] = ACTIONS(1320), [sym_comment] = ACTIONS(3), }, [184] = { - [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), - [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_LBRACK_LBRACK] = ACTIONS(1335), - [anon_sym___declspec] = 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), - [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_else] = 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_identifier] = ACTIONS(1320), + [aux_sym_preproc_include_token1] = ACTIONS(1320), + [aux_sym_preproc_def_token1] = ACTIONS(1320), + [aux_sym_preproc_if_token1] = ACTIONS(1320), + [aux_sym_preproc_if_token2] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1320), + [aux_sym_preproc_else_token1] = ACTIONS(1320), + [aux_sym_preproc_elif_token1] = ACTIONS(1320), + [sym_preproc_directive] = ACTIONS(1320), + [anon_sym_LPAREN2] = ACTIONS(1322), + [anon_sym_BANG] = ACTIONS(1322), + [anon_sym_TILDE] = ACTIONS(1322), + [anon_sym_DASH] = ACTIONS(1320), + [anon_sym_PLUS] = ACTIONS(1320), + [anon_sym_STAR] = ACTIONS(1322), + [anon_sym_AMP] = ACTIONS(1322), + [anon_sym_SEMI] = ACTIONS(1322), + [anon_sym___extension__] = ACTIONS(1320), + [anon_sym_typedef] = ACTIONS(1320), + [anon_sym_extern] = ACTIONS(1320), + [anon_sym___attribute__] = ACTIONS(1320), + [anon_sym___scanf] = ACTIONS(1320), + [anon_sym___printf] = ACTIONS(1320), + [anon_sym___read_mostly] = ACTIONS(1320), + [anon_sym___must_hold] = ACTIONS(1320), + [anon_sym___ro_after_init] = ACTIONS(1320), + [anon_sym___init] = ACTIONS(1320), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1322), + [anon_sym___declspec] = ACTIONS(1320), + [anon_sym___cdecl] = ACTIONS(1320), + [anon_sym___clrcall] = ACTIONS(1320), + [anon_sym___stdcall] = ACTIONS(1320), + [anon_sym___fastcall] = ACTIONS(1320), + [anon_sym___thiscall] = ACTIONS(1320), + [anon_sym___vectorcall] = ACTIONS(1320), + [anon_sym_LBRACE] = ACTIONS(1322), + [anon_sym_signed] = ACTIONS(1320), + [anon_sym_unsigned] = ACTIONS(1320), + [anon_sym_long] = ACTIONS(1320), + [anon_sym_short] = ACTIONS(1320), + [anon_sym_static] = ACTIONS(1320), + [anon_sym_auto] = ACTIONS(1320), + [anon_sym_register] = ACTIONS(1320), + [anon_sym_inline] = ACTIONS(1320), + [anon_sym___inline] = ACTIONS(1320), + [anon_sym___inline__] = ACTIONS(1320), + [anon_sym___forceinline] = ACTIONS(1320), + [anon_sym_thread_local] = ACTIONS(1320), + [anon_sym___thread] = ACTIONS(1320), + [anon_sym_const] = ACTIONS(1320), + [anon_sym_constexpr] = ACTIONS(1320), + [anon_sym_volatile] = ACTIONS(1320), + [anon_sym_restrict] = ACTIONS(1320), + [anon_sym___restrict__] = ACTIONS(1320), + [anon_sym__Atomic] = ACTIONS(1320), + [anon_sym__Noreturn] = ACTIONS(1320), + [anon_sym_noreturn] = ACTIONS(1320), + [sym_primitive_type] = ACTIONS(1320), + [anon_sym_enum] = ACTIONS(1320), + [anon_sym_struct] = ACTIONS(1320), + [anon_sym_union] = ACTIONS(1320), + [anon_sym_if] = ACTIONS(1320), + [anon_sym_else] = ACTIONS(1320), + [anon_sym_switch] = ACTIONS(1320), + [anon_sym_case] = ACTIONS(1320), + [anon_sym_default] = ACTIONS(1320), + [anon_sym_while] = ACTIONS(1320), + [anon_sym_do] = ACTIONS(1320), + [anon_sym_for] = ACTIONS(1320), + [anon_sym_return] = ACTIONS(1320), + [anon_sym_break] = ACTIONS(1320), + [anon_sym_continue] = ACTIONS(1320), + [anon_sym_goto] = ACTIONS(1320), + [anon_sym___try] = ACTIONS(1320), + [anon_sym___leave] = ACTIONS(1320), + [anon_sym_DASH_DASH] = ACTIONS(1322), + [anon_sym_PLUS_PLUS] = ACTIONS(1322), + [anon_sym_sizeof] = ACTIONS(1320), + [anon_sym___alignof__] = ACTIONS(1320), + [anon_sym___alignof] = ACTIONS(1320), + [anon_sym__alignof] = ACTIONS(1320), + [anon_sym_alignof] = ACTIONS(1320), + [anon_sym__Alignof] = ACTIONS(1320), + [anon_sym_offsetof] = ACTIONS(1320), + [anon_sym__Generic] = ACTIONS(1320), + [anon_sym_asm] = ACTIONS(1320), + [anon_sym___asm__] = ACTIONS(1320), + [sym_number_literal] = ACTIONS(1322), + [anon_sym_L_SQUOTE] = ACTIONS(1322), + [anon_sym_u_SQUOTE] = ACTIONS(1322), + [anon_sym_U_SQUOTE] = ACTIONS(1322), + [anon_sym_u8_SQUOTE] = ACTIONS(1322), + [anon_sym_SQUOTE] = ACTIONS(1322), + [anon_sym_L_DQUOTE] = ACTIONS(1322), + [anon_sym_u_DQUOTE] = ACTIONS(1322), + [anon_sym_U_DQUOTE] = ACTIONS(1322), + [anon_sym_u8_DQUOTE] = ACTIONS(1322), + [anon_sym_DQUOTE] = ACTIONS(1322), + [sym_true] = ACTIONS(1320), + [sym_false] = ACTIONS(1320), + [anon_sym_NULL] = ACTIONS(1320), + [anon_sym_nullptr] = ACTIONS(1320), [sym_comment] = ACTIONS(3), }, [185] = { - [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), - [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_LBRACK_LBRACK] = ACTIONS(1331), - [anon_sym___declspec] = 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), - [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_else] = 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_identifier] = ACTIONS(1324), + [aux_sym_preproc_include_token1] = ACTIONS(1324), + [aux_sym_preproc_def_token1] = ACTIONS(1324), + [aux_sym_preproc_if_token1] = ACTIONS(1324), + [aux_sym_preproc_if_token2] = ACTIONS(1324), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1324), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1324), + [aux_sym_preproc_else_token1] = ACTIONS(1324), + [aux_sym_preproc_elif_token1] = ACTIONS(1324), + [sym_preproc_directive] = ACTIONS(1324), + [anon_sym_LPAREN2] = ACTIONS(1326), + [anon_sym_BANG] = ACTIONS(1326), + [anon_sym_TILDE] = ACTIONS(1326), + [anon_sym_DASH] = ACTIONS(1324), + [anon_sym_PLUS] = ACTIONS(1324), + [anon_sym_STAR] = ACTIONS(1326), + [anon_sym_AMP] = ACTIONS(1326), + [anon_sym_SEMI] = ACTIONS(1326), + [anon_sym___extension__] = ACTIONS(1324), + [anon_sym_typedef] = ACTIONS(1324), + [anon_sym_extern] = ACTIONS(1324), + [anon_sym___attribute__] = ACTIONS(1324), + [anon_sym___scanf] = ACTIONS(1324), + [anon_sym___printf] = ACTIONS(1324), + [anon_sym___read_mostly] = ACTIONS(1324), + [anon_sym___must_hold] = ACTIONS(1324), + [anon_sym___ro_after_init] = ACTIONS(1324), + [anon_sym___init] = ACTIONS(1324), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1326), + [anon_sym___declspec] = ACTIONS(1324), + [anon_sym___cdecl] = ACTIONS(1324), + [anon_sym___clrcall] = ACTIONS(1324), + [anon_sym___stdcall] = ACTIONS(1324), + [anon_sym___fastcall] = ACTIONS(1324), + [anon_sym___thiscall] = ACTIONS(1324), + [anon_sym___vectorcall] = ACTIONS(1324), + [anon_sym_LBRACE] = ACTIONS(1326), + [anon_sym_signed] = ACTIONS(1324), + [anon_sym_unsigned] = ACTIONS(1324), + [anon_sym_long] = ACTIONS(1324), + [anon_sym_short] = ACTIONS(1324), + [anon_sym_static] = ACTIONS(1324), + [anon_sym_auto] = ACTIONS(1324), + [anon_sym_register] = ACTIONS(1324), + [anon_sym_inline] = ACTIONS(1324), + [anon_sym___inline] = ACTIONS(1324), + [anon_sym___inline__] = ACTIONS(1324), + [anon_sym___forceinline] = ACTIONS(1324), + [anon_sym_thread_local] = ACTIONS(1324), + [anon_sym___thread] = ACTIONS(1324), + [anon_sym_const] = ACTIONS(1324), + [anon_sym_constexpr] = ACTIONS(1324), + [anon_sym_volatile] = ACTIONS(1324), + [anon_sym_restrict] = ACTIONS(1324), + [anon_sym___restrict__] = ACTIONS(1324), + [anon_sym__Atomic] = ACTIONS(1324), + [anon_sym__Noreturn] = ACTIONS(1324), + [anon_sym_noreturn] = ACTIONS(1324), + [sym_primitive_type] = ACTIONS(1324), + [anon_sym_enum] = ACTIONS(1324), + [anon_sym_struct] = ACTIONS(1324), + [anon_sym_union] = ACTIONS(1324), + [anon_sym_if] = ACTIONS(1324), + [anon_sym_else] = ACTIONS(1324), + [anon_sym_switch] = ACTIONS(1324), + [anon_sym_case] = ACTIONS(1324), + [anon_sym_default] = ACTIONS(1324), + [anon_sym_while] = ACTIONS(1324), + [anon_sym_do] = ACTIONS(1324), + [anon_sym_for] = ACTIONS(1324), + [anon_sym_return] = ACTIONS(1324), + [anon_sym_break] = ACTIONS(1324), + [anon_sym_continue] = ACTIONS(1324), + [anon_sym_goto] = ACTIONS(1324), + [anon_sym___try] = ACTIONS(1324), + [anon_sym___leave] = ACTIONS(1324), + [anon_sym_DASH_DASH] = ACTIONS(1326), + [anon_sym_PLUS_PLUS] = ACTIONS(1326), + [anon_sym_sizeof] = ACTIONS(1324), + [anon_sym___alignof__] = ACTIONS(1324), + [anon_sym___alignof] = ACTIONS(1324), + [anon_sym__alignof] = ACTIONS(1324), + [anon_sym_alignof] = ACTIONS(1324), + [anon_sym__Alignof] = ACTIONS(1324), + [anon_sym_offsetof] = ACTIONS(1324), + [anon_sym__Generic] = ACTIONS(1324), + [anon_sym_asm] = ACTIONS(1324), + [anon_sym___asm__] = ACTIONS(1324), + [sym_number_literal] = ACTIONS(1326), + [anon_sym_L_SQUOTE] = ACTIONS(1326), + [anon_sym_u_SQUOTE] = ACTIONS(1326), + [anon_sym_U_SQUOTE] = ACTIONS(1326), + [anon_sym_u8_SQUOTE] = ACTIONS(1326), + [anon_sym_SQUOTE] = ACTIONS(1326), + [anon_sym_L_DQUOTE] = ACTIONS(1326), + [anon_sym_u_DQUOTE] = ACTIONS(1326), + [anon_sym_U_DQUOTE] = ACTIONS(1326), + [anon_sym_u8_DQUOTE] = ACTIONS(1326), + [anon_sym_DQUOTE] = ACTIONS(1326), + [sym_true] = ACTIONS(1324), + [sym_false] = ACTIONS(1324), + [anon_sym_NULL] = ACTIONS(1324), + [anon_sym_nullptr] = ACTIONS(1324), [sym_comment] = ACTIONS(3), }, [186] = { - [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), - [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_LBRACK_LBRACK] = ACTIONS(1315), - [anon_sym___declspec] = 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), - [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_else] = 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_identifier] = ACTIONS(1380), + [aux_sym_preproc_include_token1] = ACTIONS(1380), + [aux_sym_preproc_def_token1] = ACTIONS(1380), + [aux_sym_preproc_if_token1] = ACTIONS(1380), + [aux_sym_preproc_if_token2] = ACTIONS(1380), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1380), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1380), + [aux_sym_preproc_else_token1] = ACTIONS(1380), + [aux_sym_preproc_elif_token1] = ACTIONS(1380), + [sym_preproc_directive] = ACTIONS(1380), + [anon_sym_LPAREN2] = ACTIONS(1382), + [anon_sym_BANG] = ACTIONS(1382), + [anon_sym_TILDE] = ACTIONS(1382), + [anon_sym_DASH] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1380), + [anon_sym_STAR] = ACTIONS(1382), + [anon_sym_AMP] = ACTIONS(1382), + [anon_sym_SEMI] = ACTIONS(1382), + [anon_sym___extension__] = ACTIONS(1380), + [anon_sym_typedef] = ACTIONS(1380), + [anon_sym_extern] = ACTIONS(1380), + [anon_sym___attribute__] = ACTIONS(1380), + [anon_sym___scanf] = ACTIONS(1380), + [anon_sym___printf] = ACTIONS(1380), + [anon_sym___read_mostly] = ACTIONS(1380), + [anon_sym___must_hold] = ACTIONS(1380), + [anon_sym___ro_after_init] = ACTIONS(1380), + [anon_sym___init] = ACTIONS(1380), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1382), + [anon_sym___declspec] = ACTIONS(1380), + [anon_sym___cdecl] = ACTIONS(1380), + [anon_sym___clrcall] = ACTIONS(1380), + [anon_sym___stdcall] = ACTIONS(1380), + [anon_sym___fastcall] = ACTIONS(1380), + [anon_sym___thiscall] = ACTIONS(1380), + [anon_sym___vectorcall] = ACTIONS(1380), + [anon_sym_LBRACE] = ACTIONS(1382), + [anon_sym_signed] = ACTIONS(1380), + [anon_sym_unsigned] = ACTIONS(1380), + [anon_sym_long] = ACTIONS(1380), + [anon_sym_short] = ACTIONS(1380), + [anon_sym_static] = ACTIONS(1380), + [anon_sym_auto] = ACTIONS(1380), + [anon_sym_register] = ACTIONS(1380), + [anon_sym_inline] = ACTIONS(1380), + [anon_sym___inline] = ACTIONS(1380), + [anon_sym___inline__] = ACTIONS(1380), + [anon_sym___forceinline] = ACTIONS(1380), + [anon_sym_thread_local] = ACTIONS(1380), + [anon_sym___thread] = ACTIONS(1380), + [anon_sym_const] = ACTIONS(1380), + [anon_sym_constexpr] = ACTIONS(1380), + [anon_sym_volatile] = ACTIONS(1380), + [anon_sym_restrict] = ACTIONS(1380), + [anon_sym___restrict__] = ACTIONS(1380), + [anon_sym__Atomic] = ACTIONS(1380), + [anon_sym__Noreturn] = ACTIONS(1380), + [anon_sym_noreturn] = ACTIONS(1380), + [sym_primitive_type] = ACTIONS(1380), + [anon_sym_enum] = ACTIONS(1380), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_union] = ACTIONS(1380), + [anon_sym_if] = ACTIONS(1380), + [anon_sym_else] = ACTIONS(1380), + [anon_sym_switch] = ACTIONS(1380), + [anon_sym_case] = ACTIONS(1380), + [anon_sym_default] = ACTIONS(1380), + [anon_sym_while] = ACTIONS(1380), + [anon_sym_do] = ACTIONS(1380), + [anon_sym_for] = ACTIONS(1380), + [anon_sym_return] = ACTIONS(1380), + [anon_sym_break] = ACTIONS(1380), + [anon_sym_continue] = ACTIONS(1380), + [anon_sym_goto] = ACTIONS(1380), + [anon_sym___try] = ACTIONS(1380), + [anon_sym___leave] = ACTIONS(1380), + [anon_sym_DASH_DASH] = ACTIONS(1382), + [anon_sym_PLUS_PLUS] = ACTIONS(1382), + [anon_sym_sizeof] = ACTIONS(1380), + [anon_sym___alignof__] = ACTIONS(1380), + [anon_sym___alignof] = ACTIONS(1380), + [anon_sym__alignof] = ACTIONS(1380), + [anon_sym_alignof] = ACTIONS(1380), + [anon_sym__Alignof] = ACTIONS(1380), + [anon_sym_offsetof] = ACTIONS(1380), + [anon_sym__Generic] = ACTIONS(1380), + [anon_sym_asm] = ACTIONS(1380), + [anon_sym___asm__] = ACTIONS(1380), + [sym_number_literal] = ACTIONS(1382), + [anon_sym_L_SQUOTE] = ACTIONS(1382), + [anon_sym_u_SQUOTE] = ACTIONS(1382), + [anon_sym_U_SQUOTE] = ACTIONS(1382), + [anon_sym_u8_SQUOTE] = ACTIONS(1382), + [anon_sym_SQUOTE] = ACTIONS(1382), + [anon_sym_L_DQUOTE] = ACTIONS(1382), + [anon_sym_u_DQUOTE] = ACTIONS(1382), + [anon_sym_U_DQUOTE] = ACTIONS(1382), + [anon_sym_u8_DQUOTE] = ACTIONS(1382), + [anon_sym_DQUOTE] = ACTIONS(1382), + [sym_true] = ACTIONS(1380), + [sym_false] = ACTIONS(1380), + [anon_sym_NULL] = ACTIONS(1380), + [anon_sym_nullptr] = ACTIONS(1380), [sym_comment] = ACTIONS(3), }, [187] = { - [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), - [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_LBRACK_LBRACK] = ACTIONS(1399), - [anon_sym___declspec] = 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), - [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_else] = 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_identifier] = ACTIONS(1384), + [aux_sym_preproc_include_token1] = ACTIONS(1384), + [aux_sym_preproc_def_token1] = ACTIONS(1384), + [aux_sym_preproc_if_token1] = ACTIONS(1384), + [aux_sym_preproc_if_token2] = ACTIONS(1384), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1384), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1384), + [aux_sym_preproc_else_token1] = ACTIONS(1384), + [aux_sym_preproc_elif_token1] = ACTIONS(1384), + [sym_preproc_directive] = ACTIONS(1384), + [anon_sym_LPAREN2] = ACTIONS(1386), + [anon_sym_BANG] = ACTIONS(1386), + [anon_sym_TILDE] = ACTIONS(1386), + [anon_sym_DASH] = ACTIONS(1384), + [anon_sym_PLUS] = ACTIONS(1384), + [anon_sym_STAR] = ACTIONS(1386), + [anon_sym_AMP] = ACTIONS(1386), + [anon_sym_SEMI] = ACTIONS(1386), + [anon_sym___extension__] = ACTIONS(1384), + [anon_sym_typedef] = ACTIONS(1384), + [anon_sym_extern] = ACTIONS(1384), + [anon_sym___attribute__] = ACTIONS(1384), + [anon_sym___scanf] = ACTIONS(1384), + [anon_sym___printf] = ACTIONS(1384), + [anon_sym___read_mostly] = ACTIONS(1384), + [anon_sym___must_hold] = ACTIONS(1384), + [anon_sym___ro_after_init] = ACTIONS(1384), + [anon_sym___init] = ACTIONS(1384), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1386), + [anon_sym___declspec] = ACTIONS(1384), + [anon_sym___cdecl] = ACTIONS(1384), + [anon_sym___clrcall] = ACTIONS(1384), + [anon_sym___stdcall] = ACTIONS(1384), + [anon_sym___fastcall] = ACTIONS(1384), + [anon_sym___thiscall] = ACTIONS(1384), + [anon_sym___vectorcall] = ACTIONS(1384), + [anon_sym_LBRACE] = ACTIONS(1386), + [anon_sym_signed] = ACTIONS(1384), + [anon_sym_unsigned] = ACTIONS(1384), + [anon_sym_long] = ACTIONS(1384), + [anon_sym_short] = ACTIONS(1384), + [anon_sym_static] = ACTIONS(1384), + [anon_sym_auto] = ACTIONS(1384), + [anon_sym_register] = ACTIONS(1384), + [anon_sym_inline] = ACTIONS(1384), + [anon_sym___inline] = ACTIONS(1384), + [anon_sym___inline__] = ACTIONS(1384), + [anon_sym___forceinline] = ACTIONS(1384), + [anon_sym_thread_local] = ACTIONS(1384), + [anon_sym___thread] = ACTIONS(1384), + [anon_sym_const] = ACTIONS(1384), + [anon_sym_constexpr] = ACTIONS(1384), + [anon_sym_volatile] = ACTIONS(1384), + [anon_sym_restrict] = ACTIONS(1384), + [anon_sym___restrict__] = ACTIONS(1384), + [anon_sym__Atomic] = ACTIONS(1384), + [anon_sym__Noreturn] = ACTIONS(1384), + [anon_sym_noreturn] = ACTIONS(1384), + [sym_primitive_type] = ACTIONS(1384), + [anon_sym_enum] = ACTIONS(1384), + [anon_sym_struct] = ACTIONS(1384), + [anon_sym_union] = ACTIONS(1384), + [anon_sym_if] = ACTIONS(1384), + [anon_sym_else] = ACTIONS(1384), + [anon_sym_switch] = ACTIONS(1384), + [anon_sym_case] = ACTIONS(1384), + [anon_sym_default] = ACTIONS(1384), + [anon_sym_while] = ACTIONS(1384), + [anon_sym_do] = ACTIONS(1384), + [anon_sym_for] = ACTIONS(1384), + [anon_sym_return] = ACTIONS(1384), + [anon_sym_break] = ACTIONS(1384), + [anon_sym_continue] = ACTIONS(1384), + [anon_sym_goto] = ACTIONS(1384), + [anon_sym___try] = ACTIONS(1384), + [anon_sym___leave] = ACTIONS(1384), + [anon_sym_DASH_DASH] = ACTIONS(1386), + [anon_sym_PLUS_PLUS] = ACTIONS(1386), + [anon_sym_sizeof] = ACTIONS(1384), + [anon_sym___alignof__] = ACTIONS(1384), + [anon_sym___alignof] = ACTIONS(1384), + [anon_sym__alignof] = ACTIONS(1384), + [anon_sym_alignof] = ACTIONS(1384), + [anon_sym__Alignof] = ACTIONS(1384), + [anon_sym_offsetof] = ACTIONS(1384), + [anon_sym__Generic] = ACTIONS(1384), + [anon_sym_asm] = ACTIONS(1384), + [anon_sym___asm__] = ACTIONS(1384), + [sym_number_literal] = ACTIONS(1386), + [anon_sym_L_SQUOTE] = ACTIONS(1386), + [anon_sym_u_SQUOTE] = ACTIONS(1386), + [anon_sym_U_SQUOTE] = ACTIONS(1386), + [anon_sym_u8_SQUOTE] = ACTIONS(1386), + [anon_sym_SQUOTE] = ACTIONS(1386), + [anon_sym_L_DQUOTE] = ACTIONS(1386), + [anon_sym_u_DQUOTE] = ACTIONS(1386), + [anon_sym_U_DQUOTE] = ACTIONS(1386), + [anon_sym_u8_DQUOTE] = ACTIONS(1386), + [anon_sym_DQUOTE] = ACTIONS(1386), + [sym_true] = ACTIONS(1384), + [sym_false] = ACTIONS(1384), + [anon_sym_NULL] = ACTIONS(1384), + [anon_sym_nullptr] = ACTIONS(1384), [sym_comment] = ACTIONS(3), }, [188] = { - [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), - [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_LBRACK_LBRACK] = ACTIONS(1327), - [anon_sym___declspec] = 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), - [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_else] = 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_identifier] = ACTIONS(1388), + [aux_sym_preproc_include_token1] = ACTIONS(1388), + [aux_sym_preproc_def_token1] = ACTIONS(1388), + [aux_sym_preproc_if_token1] = ACTIONS(1388), + [aux_sym_preproc_if_token2] = ACTIONS(1388), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1388), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1388), + [aux_sym_preproc_else_token1] = ACTIONS(1388), + [aux_sym_preproc_elif_token1] = ACTIONS(1388), + [sym_preproc_directive] = ACTIONS(1388), + [anon_sym_LPAREN2] = ACTIONS(1390), + [anon_sym_BANG] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1390), + [anon_sym_DASH] = ACTIONS(1388), + [anon_sym_PLUS] = ACTIONS(1388), + [anon_sym_STAR] = ACTIONS(1390), + [anon_sym_AMP] = ACTIONS(1390), + [anon_sym_SEMI] = ACTIONS(1390), + [anon_sym___extension__] = ACTIONS(1388), + [anon_sym_typedef] = ACTIONS(1388), + [anon_sym_extern] = ACTIONS(1388), + [anon_sym___attribute__] = ACTIONS(1388), + [anon_sym___scanf] = ACTIONS(1388), + [anon_sym___printf] = ACTIONS(1388), + [anon_sym___read_mostly] = ACTIONS(1388), + [anon_sym___must_hold] = ACTIONS(1388), + [anon_sym___ro_after_init] = ACTIONS(1388), + [anon_sym___init] = ACTIONS(1388), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1390), + [anon_sym___declspec] = ACTIONS(1388), + [anon_sym___cdecl] = ACTIONS(1388), + [anon_sym___clrcall] = ACTIONS(1388), + [anon_sym___stdcall] = ACTIONS(1388), + [anon_sym___fastcall] = ACTIONS(1388), + [anon_sym___thiscall] = ACTIONS(1388), + [anon_sym___vectorcall] = ACTIONS(1388), + [anon_sym_LBRACE] = ACTIONS(1390), + [anon_sym_signed] = ACTIONS(1388), + [anon_sym_unsigned] = ACTIONS(1388), + [anon_sym_long] = ACTIONS(1388), + [anon_sym_short] = ACTIONS(1388), + [anon_sym_static] = ACTIONS(1388), + [anon_sym_auto] = ACTIONS(1388), + [anon_sym_register] = ACTIONS(1388), + [anon_sym_inline] = ACTIONS(1388), + [anon_sym___inline] = ACTIONS(1388), + [anon_sym___inline__] = ACTIONS(1388), + [anon_sym___forceinline] = ACTIONS(1388), + [anon_sym_thread_local] = ACTIONS(1388), + [anon_sym___thread] = ACTIONS(1388), + [anon_sym_const] = ACTIONS(1388), + [anon_sym_constexpr] = ACTIONS(1388), + [anon_sym_volatile] = ACTIONS(1388), + [anon_sym_restrict] = ACTIONS(1388), + [anon_sym___restrict__] = ACTIONS(1388), + [anon_sym__Atomic] = ACTIONS(1388), + [anon_sym__Noreturn] = ACTIONS(1388), + [anon_sym_noreturn] = ACTIONS(1388), + [sym_primitive_type] = ACTIONS(1388), + [anon_sym_enum] = ACTIONS(1388), + [anon_sym_struct] = ACTIONS(1388), + [anon_sym_union] = ACTIONS(1388), + [anon_sym_if] = ACTIONS(1388), + [anon_sym_else] = ACTIONS(1388), + [anon_sym_switch] = ACTIONS(1388), + [anon_sym_case] = ACTIONS(1388), + [anon_sym_default] = ACTIONS(1388), + [anon_sym_while] = ACTIONS(1388), + [anon_sym_do] = ACTIONS(1388), + [anon_sym_for] = ACTIONS(1388), + [anon_sym_return] = ACTIONS(1388), + [anon_sym_break] = ACTIONS(1388), + [anon_sym_continue] = ACTIONS(1388), + [anon_sym_goto] = ACTIONS(1388), + [anon_sym___try] = ACTIONS(1388), + [anon_sym___leave] = ACTIONS(1388), + [anon_sym_DASH_DASH] = ACTIONS(1390), + [anon_sym_PLUS_PLUS] = ACTIONS(1390), + [anon_sym_sizeof] = ACTIONS(1388), + [anon_sym___alignof__] = ACTIONS(1388), + [anon_sym___alignof] = ACTIONS(1388), + [anon_sym__alignof] = ACTIONS(1388), + [anon_sym_alignof] = ACTIONS(1388), + [anon_sym__Alignof] = ACTIONS(1388), + [anon_sym_offsetof] = ACTIONS(1388), + [anon_sym__Generic] = ACTIONS(1388), + [anon_sym_asm] = ACTIONS(1388), + [anon_sym___asm__] = ACTIONS(1388), + [sym_number_literal] = ACTIONS(1390), + [anon_sym_L_SQUOTE] = ACTIONS(1390), + [anon_sym_u_SQUOTE] = ACTIONS(1390), + [anon_sym_U_SQUOTE] = ACTIONS(1390), + [anon_sym_u8_SQUOTE] = ACTIONS(1390), + [anon_sym_SQUOTE] = ACTIONS(1390), + [anon_sym_L_DQUOTE] = ACTIONS(1390), + [anon_sym_u_DQUOTE] = ACTIONS(1390), + [anon_sym_U_DQUOTE] = ACTIONS(1390), + [anon_sym_u8_DQUOTE] = ACTIONS(1390), + [anon_sym_DQUOTE] = ACTIONS(1390), + [sym_true] = ACTIONS(1388), + [sym_false] = ACTIONS(1388), + [anon_sym_NULL] = ACTIONS(1388), + [anon_sym_nullptr] = ACTIONS(1388), [sym_comment] = ACTIONS(3), }, [189] = { - [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), - [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_LBRACK_LBRACK] = ACTIONS(1315), - [anon_sym___declspec] = 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), - [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_else] = 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_identifier] = ACTIONS(1392), + [aux_sym_preproc_include_token1] = ACTIONS(1392), + [aux_sym_preproc_def_token1] = ACTIONS(1392), + [aux_sym_preproc_if_token1] = ACTIONS(1392), + [aux_sym_preproc_if_token2] = ACTIONS(1392), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1392), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1392), + [aux_sym_preproc_else_token1] = ACTIONS(1392), + [aux_sym_preproc_elif_token1] = ACTIONS(1392), + [sym_preproc_directive] = ACTIONS(1392), + [anon_sym_LPAREN2] = ACTIONS(1394), + [anon_sym_BANG] = ACTIONS(1394), + [anon_sym_TILDE] = ACTIONS(1394), + [anon_sym_DASH] = ACTIONS(1392), + [anon_sym_PLUS] = ACTIONS(1392), + [anon_sym_STAR] = ACTIONS(1394), + [anon_sym_AMP] = ACTIONS(1394), + [anon_sym_SEMI] = ACTIONS(1394), + [anon_sym___extension__] = ACTIONS(1392), + [anon_sym_typedef] = ACTIONS(1392), + [anon_sym_extern] = ACTIONS(1392), + [anon_sym___attribute__] = ACTIONS(1392), + [anon_sym___scanf] = ACTIONS(1392), + [anon_sym___printf] = ACTIONS(1392), + [anon_sym___read_mostly] = ACTIONS(1392), + [anon_sym___must_hold] = ACTIONS(1392), + [anon_sym___ro_after_init] = ACTIONS(1392), + [anon_sym___init] = ACTIONS(1392), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1394), + [anon_sym___declspec] = ACTIONS(1392), + [anon_sym___cdecl] = ACTIONS(1392), + [anon_sym___clrcall] = ACTIONS(1392), + [anon_sym___stdcall] = ACTIONS(1392), + [anon_sym___fastcall] = ACTIONS(1392), + [anon_sym___thiscall] = ACTIONS(1392), + [anon_sym___vectorcall] = ACTIONS(1392), + [anon_sym_LBRACE] = ACTIONS(1394), + [anon_sym_signed] = ACTIONS(1392), + [anon_sym_unsigned] = ACTIONS(1392), + [anon_sym_long] = ACTIONS(1392), + [anon_sym_short] = ACTIONS(1392), + [anon_sym_static] = ACTIONS(1392), + [anon_sym_auto] = ACTIONS(1392), + [anon_sym_register] = ACTIONS(1392), + [anon_sym_inline] = ACTIONS(1392), + [anon_sym___inline] = ACTIONS(1392), + [anon_sym___inline__] = ACTIONS(1392), + [anon_sym___forceinline] = ACTIONS(1392), + [anon_sym_thread_local] = ACTIONS(1392), + [anon_sym___thread] = ACTIONS(1392), + [anon_sym_const] = ACTIONS(1392), + [anon_sym_constexpr] = ACTIONS(1392), + [anon_sym_volatile] = ACTIONS(1392), + [anon_sym_restrict] = ACTIONS(1392), + [anon_sym___restrict__] = ACTIONS(1392), + [anon_sym__Atomic] = ACTIONS(1392), + [anon_sym__Noreturn] = ACTIONS(1392), + [anon_sym_noreturn] = ACTIONS(1392), + [sym_primitive_type] = ACTIONS(1392), + [anon_sym_enum] = ACTIONS(1392), + [anon_sym_struct] = ACTIONS(1392), + [anon_sym_union] = ACTIONS(1392), + [anon_sym_if] = ACTIONS(1392), + [anon_sym_else] = ACTIONS(1392), + [anon_sym_switch] = ACTIONS(1392), + [anon_sym_case] = ACTIONS(1392), + [anon_sym_default] = ACTIONS(1392), + [anon_sym_while] = ACTIONS(1392), + [anon_sym_do] = ACTIONS(1392), + [anon_sym_for] = ACTIONS(1392), + [anon_sym_return] = ACTIONS(1392), + [anon_sym_break] = ACTIONS(1392), + [anon_sym_continue] = ACTIONS(1392), + [anon_sym_goto] = ACTIONS(1392), + [anon_sym___try] = ACTIONS(1392), + [anon_sym___leave] = ACTIONS(1392), + [anon_sym_DASH_DASH] = ACTIONS(1394), + [anon_sym_PLUS_PLUS] = ACTIONS(1394), + [anon_sym_sizeof] = ACTIONS(1392), + [anon_sym___alignof__] = ACTIONS(1392), + [anon_sym___alignof] = ACTIONS(1392), + [anon_sym__alignof] = ACTIONS(1392), + [anon_sym_alignof] = ACTIONS(1392), + [anon_sym__Alignof] = ACTIONS(1392), + [anon_sym_offsetof] = ACTIONS(1392), + [anon_sym__Generic] = ACTIONS(1392), + [anon_sym_asm] = ACTIONS(1392), + [anon_sym___asm__] = ACTIONS(1392), + [sym_number_literal] = ACTIONS(1394), + [anon_sym_L_SQUOTE] = ACTIONS(1394), + [anon_sym_u_SQUOTE] = ACTIONS(1394), + [anon_sym_U_SQUOTE] = ACTIONS(1394), + [anon_sym_u8_SQUOTE] = ACTIONS(1394), + [anon_sym_SQUOTE] = ACTIONS(1394), + [anon_sym_L_DQUOTE] = ACTIONS(1394), + [anon_sym_u_DQUOTE] = ACTIONS(1394), + [anon_sym_U_DQUOTE] = ACTIONS(1394), + [anon_sym_u8_DQUOTE] = ACTIONS(1394), + [anon_sym_DQUOTE] = ACTIONS(1394), + [sym_true] = ACTIONS(1392), + [sym_false] = ACTIONS(1392), + [anon_sym_NULL] = ACTIONS(1392), + [anon_sym_nullptr] = ACTIONS(1392), [sym_comment] = ACTIONS(3), }, [190] = { - [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), - [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_LBRACK_LBRACK] = ACTIONS(1315), - [anon_sym___declspec] = 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), - [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_else] = 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_identifier] = ACTIONS(1320), + [aux_sym_preproc_include_token1] = ACTIONS(1320), + [aux_sym_preproc_def_token1] = ACTIONS(1320), + [aux_sym_preproc_if_token1] = ACTIONS(1320), + [aux_sym_preproc_if_token2] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1320), + [aux_sym_preproc_else_token1] = ACTIONS(1320), + [aux_sym_preproc_elif_token1] = ACTIONS(1320), + [sym_preproc_directive] = ACTIONS(1320), + [anon_sym_LPAREN2] = ACTIONS(1322), + [anon_sym_BANG] = ACTIONS(1322), + [anon_sym_TILDE] = ACTIONS(1322), + [anon_sym_DASH] = ACTIONS(1320), + [anon_sym_PLUS] = ACTIONS(1320), + [anon_sym_STAR] = ACTIONS(1322), + [anon_sym_AMP] = ACTIONS(1322), + [anon_sym_SEMI] = ACTIONS(1322), + [anon_sym___extension__] = ACTIONS(1320), + [anon_sym_typedef] = ACTIONS(1320), + [anon_sym_extern] = ACTIONS(1320), + [anon_sym___attribute__] = ACTIONS(1320), + [anon_sym___scanf] = ACTIONS(1320), + [anon_sym___printf] = ACTIONS(1320), + [anon_sym___read_mostly] = ACTIONS(1320), + [anon_sym___must_hold] = ACTIONS(1320), + [anon_sym___ro_after_init] = ACTIONS(1320), + [anon_sym___init] = ACTIONS(1320), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1322), + [anon_sym___declspec] = ACTIONS(1320), + [anon_sym___cdecl] = ACTIONS(1320), + [anon_sym___clrcall] = ACTIONS(1320), + [anon_sym___stdcall] = ACTIONS(1320), + [anon_sym___fastcall] = ACTIONS(1320), + [anon_sym___thiscall] = ACTIONS(1320), + [anon_sym___vectorcall] = ACTIONS(1320), + [anon_sym_LBRACE] = ACTIONS(1322), + [anon_sym_signed] = ACTIONS(1320), + [anon_sym_unsigned] = ACTIONS(1320), + [anon_sym_long] = ACTIONS(1320), + [anon_sym_short] = ACTIONS(1320), + [anon_sym_static] = ACTIONS(1320), + [anon_sym_auto] = ACTIONS(1320), + [anon_sym_register] = ACTIONS(1320), + [anon_sym_inline] = ACTIONS(1320), + [anon_sym___inline] = ACTIONS(1320), + [anon_sym___inline__] = ACTIONS(1320), + [anon_sym___forceinline] = ACTIONS(1320), + [anon_sym_thread_local] = ACTIONS(1320), + [anon_sym___thread] = ACTIONS(1320), + [anon_sym_const] = ACTIONS(1320), + [anon_sym_constexpr] = ACTIONS(1320), + [anon_sym_volatile] = ACTIONS(1320), + [anon_sym_restrict] = ACTIONS(1320), + [anon_sym___restrict__] = ACTIONS(1320), + [anon_sym__Atomic] = ACTIONS(1320), + [anon_sym__Noreturn] = ACTIONS(1320), + [anon_sym_noreturn] = ACTIONS(1320), + [sym_primitive_type] = ACTIONS(1320), + [anon_sym_enum] = ACTIONS(1320), + [anon_sym_struct] = ACTIONS(1320), + [anon_sym_union] = ACTIONS(1320), + [anon_sym_if] = ACTIONS(1320), + [anon_sym_else] = ACTIONS(1320), + [anon_sym_switch] = ACTIONS(1320), + [anon_sym_case] = ACTIONS(1320), + [anon_sym_default] = ACTIONS(1320), + [anon_sym_while] = ACTIONS(1320), + [anon_sym_do] = ACTIONS(1320), + [anon_sym_for] = ACTIONS(1320), + [anon_sym_return] = ACTIONS(1320), + [anon_sym_break] = ACTIONS(1320), + [anon_sym_continue] = ACTIONS(1320), + [anon_sym_goto] = ACTIONS(1320), + [anon_sym___try] = ACTIONS(1320), + [anon_sym___leave] = ACTIONS(1320), + [anon_sym_DASH_DASH] = ACTIONS(1322), + [anon_sym_PLUS_PLUS] = ACTIONS(1322), + [anon_sym_sizeof] = ACTIONS(1320), + [anon_sym___alignof__] = ACTIONS(1320), + [anon_sym___alignof] = ACTIONS(1320), + [anon_sym__alignof] = ACTIONS(1320), + [anon_sym_alignof] = ACTIONS(1320), + [anon_sym__Alignof] = ACTIONS(1320), + [anon_sym_offsetof] = ACTIONS(1320), + [anon_sym__Generic] = ACTIONS(1320), + [anon_sym_asm] = ACTIONS(1320), + [anon_sym___asm__] = ACTIONS(1320), + [sym_number_literal] = ACTIONS(1322), + [anon_sym_L_SQUOTE] = ACTIONS(1322), + [anon_sym_u_SQUOTE] = ACTIONS(1322), + [anon_sym_U_SQUOTE] = ACTIONS(1322), + [anon_sym_u8_SQUOTE] = ACTIONS(1322), + [anon_sym_SQUOTE] = ACTIONS(1322), + [anon_sym_L_DQUOTE] = ACTIONS(1322), + [anon_sym_u_DQUOTE] = ACTIONS(1322), + [anon_sym_U_DQUOTE] = ACTIONS(1322), + [anon_sym_u8_DQUOTE] = ACTIONS(1322), + [anon_sym_DQUOTE] = ACTIONS(1322), + [sym_true] = ACTIONS(1320), + [sym_false] = ACTIONS(1320), + [anon_sym_NULL] = ACTIONS(1320), + [anon_sym_nullptr] = ACTIONS(1320), [sym_comment] = ACTIONS(3), }, [191] = { - [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), - [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_LBRACK_LBRACK] = ACTIONS(1323), - [anon_sym___declspec] = 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), - [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_else] = 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_identifier] = ACTIONS(1396), + [aux_sym_preproc_include_token1] = ACTIONS(1396), + [aux_sym_preproc_def_token1] = ACTIONS(1396), + [aux_sym_preproc_if_token1] = ACTIONS(1396), + [aux_sym_preproc_if_token2] = ACTIONS(1396), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1396), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1396), + [aux_sym_preproc_else_token1] = ACTIONS(1396), + [aux_sym_preproc_elif_token1] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1396), + [anon_sym_LPAREN2] = ACTIONS(1398), + [anon_sym_BANG] = ACTIONS(1398), + [anon_sym_TILDE] = ACTIONS(1398), + [anon_sym_DASH] = ACTIONS(1396), + [anon_sym_PLUS] = ACTIONS(1396), + [anon_sym_STAR] = ACTIONS(1398), + [anon_sym_AMP] = ACTIONS(1398), + [anon_sym_SEMI] = ACTIONS(1398), + [anon_sym___extension__] = ACTIONS(1396), + [anon_sym_typedef] = ACTIONS(1396), + [anon_sym_extern] = ACTIONS(1396), + [anon_sym___attribute__] = ACTIONS(1396), + [anon_sym___scanf] = ACTIONS(1396), + [anon_sym___printf] = ACTIONS(1396), + [anon_sym___read_mostly] = ACTIONS(1396), + [anon_sym___must_hold] = ACTIONS(1396), + [anon_sym___ro_after_init] = ACTIONS(1396), + [anon_sym___init] = ACTIONS(1396), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1398), + [anon_sym___declspec] = ACTIONS(1396), + [anon_sym___cdecl] = ACTIONS(1396), + [anon_sym___clrcall] = ACTIONS(1396), + [anon_sym___stdcall] = ACTIONS(1396), + [anon_sym___fastcall] = ACTIONS(1396), + [anon_sym___thiscall] = ACTIONS(1396), + [anon_sym___vectorcall] = ACTIONS(1396), + [anon_sym_LBRACE] = ACTIONS(1398), + [anon_sym_signed] = ACTIONS(1396), + [anon_sym_unsigned] = ACTIONS(1396), + [anon_sym_long] = ACTIONS(1396), + [anon_sym_short] = ACTIONS(1396), + [anon_sym_static] = ACTIONS(1396), + [anon_sym_auto] = ACTIONS(1396), + [anon_sym_register] = ACTIONS(1396), + [anon_sym_inline] = ACTIONS(1396), + [anon_sym___inline] = ACTIONS(1396), + [anon_sym___inline__] = ACTIONS(1396), + [anon_sym___forceinline] = ACTIONS(1396), + [anon_sym_thread_local] = ACTIONS(1396), + [anon_sym___thread] = ACTIONS(1396), + [anon_sym_const] = ACTIONS(1396), + [anon_sym_constexpr] = ACTIONS(1396), + [anon_sym_volatile] = ACTIONS(1396), + [anon_sym_restrict] = ACTIONS(1396), + [anon_sym___restrict__] = ACTIONS(1396), + [anon_sym__Atomic] = ACTIONS(1396), + [anon_sym__Noreturn] = ACTIONS(1396), + [anon_sym_noreturn] = ACTIONS(1396), + [sym_primitive_type] = ACTIONS(1396), + [anon_sym_enum] = ACTIONS(1396), + [anon_sym_struct] = ACTIONS(1396), + [anon_sym_union] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1396), + [anon_sym_else] = ACTIONS(1396), + [anon_sym_switch] = ACTIONS(1396), + [anon_sym_case] = ACTIONS(1396), + [anon_sym_default] = ACTIONS(1396), + [anon_sym_while] = ACTIONS(1396), + [anon_sym_do] = ACTIONS(1396), + [anon_sym_for] = ACTIONS(1396), + [anon_sym_return] = ACTIONS(1396), + [anon_sym_break] = ACTIONS(1396), + [anon_sym_continue] = ACTIONS(1396), + [anon_sym_goto] = ACTIONS(1396), + [anon_sym___try] = ACTIONS(1396), + [anon_sym___leave] = ACTIONS(1396), + [anon_sym_DASH_DASH] = ACTIONS(1398), + [anon_sym_PLUS_PLUS] = ACTIONS(1398), + [anon_sym_sizeof] = ACTIONS(1396), + [anon_sym___alignof__] = ACTIONS(1396), + [anon_sym___alignof] = ACTIONS(1396), + [anon_sym__alignof] = ACTIONS(1396), + [anon_sym_alignof] = ACTIONS(1396), + [anon_sym__Alignof] = ACTIONS(1396), + [anon_sym_offsetof] = ACTIONS(1396), + [anon_sym__Generic] = ACTIONS(1396), + [anon_sym_asm] = ACTIONS(1396), + [anon_sym___asm__] = ACTIONS(1396), + [sym_number_literal] = ACTIONS(1398), + [anon_sym_L_SQUOTE] = ACTIONS(1398), + [anon_sym_u_SQUOTE] = ACTIONS(1398), + [anon_sym_U_SQUOTE] = ACTIONS(1398), + [anon_sym_u8_SQUOTE] = ACTIONS(1398), + [anon_sym_SQUOTE] = ACTIONS(1398), + [anon_sym_L_DQUOTE] = ACTIONS(1398), + [anon_sym_u_DQUOTE] = ACTIONS(1398), + [anon_sym_U_DQUOTE] = ACTIONS(1398), + [anon_sym_u8_DQUOTE] = ACTIONS(1398), + [anon_sym_DQUOTE] = ACTIONS(1398), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [anon_sym_NULL] = ACTIONS(1396), + [anon_sym_nullptr] = ACTIONS(1396), [sym_comment] = ACTIONS(3), }, [192] = { - [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), - [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_LBRACK_LBRACK] = ACTIONS(1319), - [anon_sym___declspec] = 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), - [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_else] = 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_identifier] = ACTIONS(1400), + [aux_sym_preproc_include_token1] = ACTIONS(1400), + [aux_sym_preproc_def_token1] = ACTIONS(1400), + [aux_sym_preproc_if_token1] = ACTIONS(1400), + [aux_sym_preproc_if_token2] = ACTIONS(1400), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1400), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1400), + [aux_sym_preproc_else_token1] = ACTIONS(1400), + [aux_sym_preproc_elif_token1] = ACTIONS(1400), + [sym_preproc_directive] = ACTIONS(1400), + [anon_sym_LPAREN2] = ACTIONS(1402), + [anon_sym_BANG] = ACTIONS(1402), + [anon_sym_TILDE] = ACTIONS(1402), + [anon_sym_DASH] = ACTIONS(1400), + [anon_sym_PLUS] = ACTIONS(1400), + [anon_sym_STAR] = ACTIONS(1402), + [anon_sym_AMP] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(1402), + [anon_sym___extension__] = ACTIONS(1400), + [anon_sym_typedef] = ACTIONS(1400), + [anon_sym_extern] = ACTIONS(1400), + [anon_sym___attribute__] = ACTIONS(1400), + [anon_sym___scanf] = ACTIONS(1400), + [anon_sym___printf] = ACTIONS(1400), + [anon_sym___read_mostly] = ACTIONS(1400), + [anon_sym___must_hold] = ACTIONS(1400), + [anon_sym___ro_after_init] = ACTIONS(1400), + [anon_sym___init] = ACTIONS(1400), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1402), + [anon_sym___declspec] = ACTIONS(1400), + [anon_sym___cdecl] = ACTIONS(1400), + [anon_sym___clrcall] = ACTIONS(1400), + [anon_sym___stdcall] = ACTIONS(1400), + [anon_sym___fastcall] = ACTIONS(1400), + [anon_sym___thiscall] = ACTIONS(1400), + [anon_sym___vectorcall] = ACTIONS(1400), + [anon_sym_LBRACE] = ACTIONS(1402), + [anon_sym_signed] = ACTIONS(1400), + [anon_sym_unsigned] = ACTIONS(1400), + [anon_sym_long] = ACTIONS(1400), + [anon_sym_short] = ACTIONS(1400), + [anon_sym_static] = ACTIONS(1400), + [anon_sym_auto] = ACTIONS(1400), + [anon_sym_register] = ACTIONS(1400), + [anon_sym_inline] = ACTIONS(1400), + [anon_sym___inline] = ACTIONS(1400), + [anon_sym___inline__] = ACTIONS(1400), + [anon_sym___forceinline] = ACTIONS(1400), + [anon_sym_thread_local] = ACTIONS(1400), + [anon_sym___thread] = ACTIONS(1400), + [anon_sym_const] = ACTIONS(1400), + [anon_sym_constexpr] = ACTIONS(1400), + [anon_sym_volatile] = ACTIONS(1400), + [anon_sym_restrict] = ACTIONS(1400), + [anon_sym___restrict__] = ACTIONS(1400), + [anon_sym__Atomic] = ACTIONS(1400), + [anon_sym__Noreturn] = ACTIONS(1400), + [anon_sym_noreturn] = ACTIONS(1400), + [sym_primitive_type] = ACTIONS(1400), + [anon_sym_enum] = ACTIONS(1400), + [anon_sym_struct] = ACTIONS(1400), + [anon_sym_union] = ACTIONS(1400), + [anon_sym_if] = ACTIONS(1400), + [anon_sym_else] = ACTIONS(1400), + [anon_sym_switch] = ACTIONS(1400), + [anon_sym_case] = ACTIONS(1400), + [anon_sym_default] = ACTIONS(1400), + [anon_sym_while] = ACTIONS(1400), + [anon_sym_do] = ACTIONS(1400), + [anon_sym_for] = ACTIONS(1400), + [anon_sym_return] = ACTIONS(1400), + [anon_sym_break] = ACTIONS(1400), + [anon_sym_continue] = ACTIONS(1400), + [anon_sym_goto] = ACTIONS(1400), + [anon_sym___try] = ACTIONS(1400), + [anon_sym___leave] = ACTIONS(1400), + [anon_sym_DASH_DASH] = ACTIONS(1402), + [anon_sym_PLUS_PLUS] = ACTIONS(1402), + [anon_sym_sizeof] = ACTIONS(1400), + [anon_sym___alignof__] = ACTIONS(1400), + [anon_sym___alignof] = ACTIONS(1400), + [anon_sym__alignof] = ACTIONS(1400), + [anon_sym_alignof] = ACTIONS(1400), + [anon_sym__Alignof] = ACTIONS(1400), + [anon_sym_offsetof] = ACTIONS(1400), + [anon_sym__Generic] = ACTIONS(1400), + [anon_sym_asm] = ACTIONS(1400), + [anon_sym___asm__] = ACTIONS(1400), + [sym_number_literal] = ACTIONS(1402), + [anon_sym_L_SQUOTE] = ACTIONS(1402), + [anon_sym_u_SQUOTE] = ACTIONS(1402), + [anon_sym_U_SQUOTE] = ACTIONS(1402), + [anon_sym_u8_SQUOTE] = ACTIONS(1402), + [anon_sym_SQUOTE] = ACTIONS(1402), + [anon_sym_L_DQUOTE] = ACTIONS(1402), + [anon_sym_u_DQUOTE] = ACTIONS(1402), + [anon_sym_U_DQUOTE] = ACTIONS(1402), + [anon_sym_u8_DQUOTE] = ACTIONS(1402), + [anon_sym_DQUOTE] = ACTIONS(1402), + [sym_true] = ACTIONS(1400), + [sym_false] = ACTIONS(1400), + [anon_sym_NULL] = ACTIONS(1400), + [anon_sym_nullptr] = ACTIONS(1400), [sym_comment] = ACTIONS(3), }, [193] = { - [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), - [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_LBRACK_LBRACK] = ACTIONS(1359), - [anon_sym___declspec] = 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), - [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_else] = 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_identifier] = ACTIONS(1404), + [aux_sym_preproc_include_token1] = ACTIONS(1404), + [aux_sym_preproc_def_token1] = ACTIONS(1404), + [aux_sym_preproc_if_token1] = ACTIONS(1404), + [aux_sym_preproc_if_token2] = ACTIONS(1404), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1404), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1404), + [aux_sym_preproc_else_token1] = ACTIONS(1404), + [aux_sym_preproc_elif_token1] = ACTIONS(1404), + [sym_preproc_directive] = ACTIONS(1404), + [anon_sym_LPAREN2] = ACTIONS(1406), + [anon_sym_BANG] = ACTIONS(1406), + [anon_sym_TILDE] = ACTIONS(1406), + [anon_sym_DASH] = ACTIONS(1404), + [anon_sym_PLUS] = ACTIONS(1404), + [anon_sym_STAR] = ACTIONS(1406), + [anon_sym_AMP] = ACTIONS(1406), + [anon_sym_SEMI] = ACTIONS(1406), + [anon_sym___extension__] = ACTIONS(1404), + [anon_sym_typedef] = ACTIONS(1404), + [anon_sym_extern] = ACTIONS(1404), + [anon_sym___attribute__] = ACTIONS(1404), + [anon_sym___scanf] = ACTIONS(1404), + [anon_sym___printf] = ACTIONS(1404), + [anon_sym___read_mostly] = ACTIONS(1404), + [anon_sym___must_hold] = ACTIONS(1404), + [anon_sym___ro_after_init] = ACTIONS(1404), + [anon_sym___init] = ACTIONS(1404), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1406), + [anon_sym___declspec] = ACTIONS(1404), + [anon_sym___cdecl] = ACTIONS(1404), + [anon_sym___clrcall] = ACTIONS(1404), + [anon_sym___stdcall] = ACTIONS(1404), + [anon_sym___fastcall] = ACTIONS(1404), + [anon_sym___thiscall] = ACTIONS(1404), + [anon_sym___vectorcall] = ACTIONS(1404), + [anon_sym_LBRACE] = ACTIONS(1406), + [anon_sym_signed] = ACTIONS(1404), + [anon_sym_unsigned] = ACTIONS(1404), + [anon_sym_long] = ACTIONS(1404), + [anon_sym_short] = ACTIONS(1404), + [anon_sym_static] = ACTIONS(1404), + [anon_sym_auto] = ACTIONS(1404), + [anon_sym_register] = ACTIONS(1404), + [anon_sym_inline] = ACTIONS(1404), + [anon_sym___inline] = ACTIONS(1404), + [anon_sym___inline__] = ACTIONS(1404), + [anon_sym___forceinline] = ACTIONS(1404), + [anon_sym_thread_local] = ACTIONS(1404), + [anon_sym___thread] = ACTIONS(1404), + [anon_sym_const] = ACTIONS(1404), + [anon_sym_constexpr] = ACTIONS(1404), + [anon_sym_volatile] = ACTIONS(1404), + [anon_sym_restrict] = ACTIONS(1404), + [anon_sym___restrict__] = ACTIONS(1404), + [anon_sym__Atomic] = ACTIONS(1404), + [anon_sym__Noreturn] = ACTIONS(1404), + [anon_sym_noreturn] = ACTIONS(1404), + [sym_primitive_type] = ACTIONS(1404), + [anon_sym_enum] = ACTIONS(1404), + [anon_sym_struct] = ACTIONS(1404), + [anon_sym_union] = ACTIONS(1404), + [anon_sym_if] = ACTIONS(1404), + [anon_sym_else] = ACTIONS(1404), + [anon_sym_switch] = ACTIONS(1404), + [anon_sym_case] = ACTIONS(1404), + [anon_sym_default] = ACTIONS(1404), + [anon_sym_while] = ACTIONS(1404), + [anon_sym_do] = ACTIONS(1404), + [anon_sym_for] = ACTIONS(1404), + [anon_sym_return] = ACTIONS(1404), + [anon_sym_break] = ACTIONS(1404), + [anon_sym_continue] = ACTIONS(1404), + [anon_sym_goto] = ACTIONS(1404), + [anon_sym___try] = ACTIONS(1404), + [anon_sym___leave] = ACTIONS(1404), + [anon_sym_DASH_DASH] = ACTIONS(1406), + [anon_sym_PLUS_PLUS] = ACTIONS(1406), + [anon_sym_sizeof] = ACTIONS(1404), + [anon_sym___alignof__] = ACTIONS(1404), + [anon_sym___alignof] = ACTIONS(1404), + [anon_sym__alignof] = ACTIONS(1404), + [anon_sym_alignof] = ACTIONS(1404), + [anon_sym__Alignof] = ACTIONS(1404), + [anon_sym_offsetof] = ACTIONS(1404), + [anon_sym__Generic] = ACTIONS(1404), + [anon_sym_asm] = ACTIONS(1404), + [anon_sym___asm__] = ACTIONS(1404), + [sym_number_literal] = ACTIONS(1406), + [anon_sym_L_SQUOTE] = ACTIONS(1406), + [anon_sym_u_SQUOTE] = ACTIONS(1406), + [anon_sym_U_SQUOTE] = ACTIONS(1406), + [anon_sym_u8_SQUOTE] = ACTIONS(1406), + [anon_sym_SQUOTE] = ACTIONS(1406), + [anon_sym_L_DQUOTE] = ACTIONS(1406), + [anon_sym_u_DQUOTE] = ACTIONS(1406), + [anon_sym_U_DQUOTE] = ACTIONS(1406), + [anon_sym_u8_DQUOTE] = ACTIONS(1406), + [anon_sym_DQUOTE] = ACTIONS(1406), + [sym_true] = ACTIONS(1404), + [sym_false] = ACTIONS(1404), + [anon_sym_NULL] = ACTIONS(1404), + [anon_sym_nullptr] = ACTIONS(1404), [sym_comment] = ACTIONS(3), }, [194] = { - [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), - [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_LBRACK_LBRACK] = ACTIONS(1315), - [anon_sym___declspec] = 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), - [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_else] = 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_identifier] = ACTIONS(1320), + [aux_sym_preproc_include_token1] = ACTIONS(1320), + [aux_sym_preproc_def_token1] = ACTIONS(1320), + [aux_sym_preproc_if_token1] = ACTIONS(1320), + [aux_sym_preproc_if_token2] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1320), + [aux_sym_preproc_else_token1] = ACTIONS(1320), + [aux_sym_preproc_elif_token1] = ACTIONS(1320), + [sym_preproc_directive] = ACTIONS(1320), + [anon_sym_LPAREN2] = ACTIONS(1322), + [anon_sym_BANG] = ACTIONS(1322), + [anon_sym_TILDE] = ACTIONS(1322), + [anon_sym_DASH] = ACTIONS(1320), + [anon_sym_PLUS] = ACTIONS(1320), + [anon_sym_STAR] = ACTIONS(1322), + [anon_sym_AMP] = ACTIONS(1322), + [anon_sym_SEMI] = ACTIONS(1322), + [anon_sym___extension__] = ACTIONS(1320), + [anon_sym_typedef] = ACTIONS(1320), + [anon_sym_extern] = ACTIONS(1320), + [anon_sym___attribute__] = ACTIONS(1320), + [anon_sym___scanf] = ACTIONS(1320), + [anon_sym___printf] = ACTIONS(1320), + [anon_sym___read_mostly] = ACTIONS(1320), + [anon_sym___must_hold] = ACTIONS(1320), + [anon_sym___ro_after_init] = ACTIONS(1320), + [anon_sym___init] = ACTIONS(1320), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1322), + [anon_sym___declspec] = ACTIONS(1320), + [anon_sym___cdecl] = ACTIONS(1320), + [anon_sym___clrcall] = ACTIONS(1320), + [anon_sym___stdcall] = ACTIONS(1320), + [anon_sym___fastcall] = ACTIONS(1320), + [anon_sym___thiscall] = ACTIONS(1320), + [anon_sym___vectorcall] = ACTIONS(1320), + [anon_sym_LBRACE] = ACTIONS(1322), + [anon_sym_signed] = ACTIONS(1320), + [anon_sym_unsigned] = ACTIONS(1320), + [anon_sym_long] = ACTIONS(1320), + [anon_sym_short] = ACTIONS(1320), + [anon_sym_static] = ACTIONS(1320), + [anon_sym_auto] = ACTIONS(1320), + [anon_sym_register] = ACTIONS(1320), + [anon_sym_inline] = ACTIONS(1320), + [anon_sym___inline] = ACTIONS(1320), + [anon_sym___inline__] = ACTIONS(1320), + [anon_sym___forceinline] = ACTIONS(1320), + [anon_sym_thread_local] = ACTIONS(1320), + [anon_sym___thread] = ACTIONS(1320), + [anon_sym_const] = ACTIONS(1320), + [anon_sym_constexpr] = ACTIONS(1320), + [anon_sym_volatile] = ACTIONS(1320), + [anon_sym_restrict] = ACTIONS(1320), + [anon_sym___restrict__] = ACTIONS(1320), + [anon_sym__Atomic] = ACTIONS(1320), + [anon_sym__Noreturn] = ACTIONS(1320), + [anon_sym_noreturn] = ACTIONS(1320), + [sym_primitive_type] = ACTIONS(1320), + [anon_sym_enum] = ACTIONS(1320), + [anon_sym_struct] = ACTIONS(1320), + [anon_sym_union] = ACTIONS(1320), + [anon_sym_if] = ACTIONS(1320), + [anon_sym_else] = ACTIONS(1320), + [anon_sym_switch] = ACTIONS(1320), + [anon_sym_case] = ACTIONS(1320), + [anon_sym_default] = ACTIONS(1320), + [anon_sym_while] = ACTIONS(1320), + [anon_sym_do] = ACTIONS(1320), + [anon_sym_for] = ACTIONS(1320), + [anon_sym_return] = ACTIONS(1320), + [anon_sym_break] = ACTIONS(1320), + [anon_sym_continue] = ACTIONS(1320), + [anon_sym_goto] = ACTIONS(1320), + [anon_sym___try] = ACTIONS(1320), + [anon_sym___leave] = ACTIONS(1320), + [anon_sym_DASH_DASH] = ACTIONS(1322), + [anon_sym_PLUS_PLUS] = ACTIONS(1322), + [anon_sym_sizeof] = ACTIONS(1320), + [anon_sym___alignof__] = ACTIONS(1320), + [anon_sym___alignof] = ACTIONS(1320), + [anon_sym__alignof] = ACTIONS(1320), + [anon_sym_alignof] = ACTIONS(1320), + [anon_sym__Alignof] = ACTIONS(1320), + [anon_sym_offsetof] = ACTIONS(1320), + [anon_sym__Generic] = ACTIONS(1320), + [anon_sym_asm] = ACTIONS(1320), + [anon_sym___asm__] = ACTIONS(1320), + [sym_number_literal] = ACTIONS(1322), + [anon_sym_L_SQUOTE] = ACTIONS(1322), + [anon_sym_u_SQUOTE] = ACTIONS(1322), + [anon_sym_U_SQUOTE] = ACTIONS(1322), + [anon_sym_u8_SQUOTE] = ACTIONS(1322), + [anon_sym_SQUOTE] = ACTIONS(1322), + [anon_sym_L_DQUOTE] = ACTIONS(1322), + [anon_sym_u_DQUOTE] = ACTIONS(1322), + [anon_sym_U_DQUOTE] = ACTIONS(1322), + [anon_sym_u8_DQUOTE] = ACTIONS(1322), + [anon_sym_DQUOTE] = ACTIONS(1322), + [sym_true] = ACTIONS(1320), + [sym_false] = ACTIONS(1320), + [anon_sym_NULL] = ACTIONS(1320), + [anon_sym_nullptr] = ACTIONS(1320), [sym_comment] = ACTIONS(3), }, [195] = { - [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), - [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_LBRACK_LBRACK] = ACTIONS(1315), - [anon_sym___declspec] = 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), - [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_else] = 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_identifier] = ACTIONS(1320), + [aux_sym_preproc_include_token1] = ACTIONS(1320), + [aux_sym_preproc_def_token1] = ACTIONS(1320), + [aux_sym_preproc_if_token1] = ACTIONS(1320), + [aux_sym_preproc_if_token2] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1320), + [aux_sym_preproc_else_token1] = ACTIONS(1320), + [aux_sym_preproc_elif_token1] = ACTIONS(1320), + [sym_preproc_directive] = ACTIONS(1320), + [anon_sym_LPAREN2] = ACTIONS(1322), + [anon_sym_BANG] = ACTIONS(1322), + [anon_sym_TILDE] = ACTIONS(1322), + [anon_sym_DASH] = ACTIONS(1320), + [anon_sym_PLUS] = ACTIONS(1320), + [anon_sym_STAR] = ACTIONS(1322), + [anon_sym_AMP] = ACTIONS(1322), + [anon_sym_SEMI] = ACTIONS(1322), + [anon_sym___extension__] = ACTIONS(1320), + [anon_sym_typedef] = ACTIONS(1320), + [anon_sym_extern] = ACTIONS(1320), + [anon_sym___attribute__] = ACTIONS(1320), + [anon_sym___scanf] = ACTIONS(1320), + [anon_sym___printf] = ACTIONS(1320), + [anon_sym___read_mostly] = ACTIONS(1320), + [anon_sym___must_hold] = ACTIONS(1320), + [anon_sym___ro_after_init] = ACTIONS(1320), + [anon_sym___init] = ACTIONS(1320), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1322), + [anon_sym___declspec] = ACTIONS(1320), + [anon_sym___cdecl] = ACTIONS(1320), + [anon_sym___clrcall] = ACTIONS(1320), + [anon_sym___stdcall] = ACTIONS(1320), + [anon_sym___fastcall] = ACTIONS(1320), + [anon_sym___thiscall] = ACTIONS(1320), + [anon_sym___vectorcall] = ACTIONS(1320), + [anon_sym_LBRACE] = ACTIONS(1322), + [anon_sym_signed] = ACTIONS(1320), + [anon_sym_unsigned] = ACTIONS(1320), + [anon_sym_long] = ACTIONS(1320), + [anon_sym_short] = ACTIONS(1320), + [anon_sym_static] = ACTIONS(1320), + [anon_sym_auto] = ACTIONS(1320), + [anon_sym_register] = ACTIONS(1320), + [anon_sym_inline] = ACTIONS(1320), + [anon_sym___inline] = ACTIONS(1320), + [anon_sym___inline__] = ACTIONS(1320), + [anon_sym___forceinline] = ACTIONS(1320), + [anon_sym_thread_local] = ACTIONS(1320), + [anon_sym___thread] = ACTIONS(1320), + [anon_sym_const] = ACTIONS(1320), + [anon_sym_constexpr] = ACTIONS(1320), + [anon_sym_volatile] = ACTIONS(1320), + [anon_sym_restrict] = ACTIONS(1320), + [anon_sym___restrict__] = ACTIONS(1320), + [anon_sym__Atomic] = ACTIONS(1320), + [anon_sym__Noreturn] = ACTIONS(1320), + [anon_sym_noreturn] = ACTIONS(1320), + [sym_primitive_type] = ACTIONS(1320), + [anon_sym_enum] = ACTIONS(1320), + [anon_sym_struct] = ACTIONS(1320), + [anon_sym_union] = ACTIONS(1320), + [anon_sym_if] = ACTIONS(1320), + [anon_sym_else] = ACTIONS(1320), + [anon_sym_switch] = ACTIONS(1320), + [anon_sym_case] = ACTIONS(1320), + [anon_sym_default] = ACTIONS(1320), + [anon_sym_while] = ACTIONS(1320), + [anon_sym_do] = ACTIONS(1320), + [anon_sym_for] = ACTIONS(1320), + [anon_sym_return] = ACTIONS(1320), + [anon_sym_break] = ACTIONS(1320), + [anon_sym_continue] = ACTIONS(1320), + [anon_sym_goto] = ACTIONS(1320), + [anon_sym___try] = ACTIONS(1320), + [anon_sym___leave] = ACTIONS(1320), + [anon_sym_DASH_DASH] = ACTIONS(1322), + [anon_sym_PLUS_PLUS] = ACTIONS(1322), + [anon_sym_sizeof] = ACTIONS(1320), + [anon_sym___alignof__] = ACTIONS(1320), + [anon_sym___alignof] = ACTIONS(1320), + [anon_sym__alignof] = ACTIONS(1320), + [anon_sym_alignof] = ACTIONS(1320), + [anon_sym__Alignof] = ACTIONS(1320), + [anon_sym_offsetof] = ACTIONS(1320), + [anon_sym__Generic] = ACTIONS(1320), + [anon_sym_asm] = ACTIONS(1320), + [anon_sym___asm__] = ACTIONS(1320), + [sym_number_literal] = ACTIONS(1322), + [anon_sym_L_SQUOTE] = ACTIONS(1322), + [anon_sym_u_SQUOTE] = ACTIONS(1322), + [anon_sym_U_SQUOTE] = ACTIONS(1322), + [anon_sym_u8_SQUOTE] = ACTIONS(1322), + [anon_sym_SQUOTE] = ACTIONS(1322), + [anon_sym_L_DQUOTE] = ACTIONS(1322), + [anon_sym_u_DQUOTE] = ACTIONS(1322), + [anon_sym_U_DQUOTE] = ACTIONS(1322), + [anon_sym_u8_DQUOTE] = ACTIONS(1322), + [anon_sym_DQUOTE] = ACTIONS(1322), + [sym_true] = ACTIONS(1320), + [sym_false] = ACTIONS(1320), + [anon_sym_NULL] = ACTIONS(1320), + [anon_sym_nullptr] = ACTIONS(1320), [sym_comment] = ACTIONS(3), }, [196] = { - [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), - [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_LBRACK_LBRACK] = ACTIONS(1315), - [anon_sym___declspec] = 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), - [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_else] = 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_identifier] = ACTIONS(1320), + [aux_sym_preproc_include_token1] = ACTIONS(1320), + [aux_sym_preproc_def_token1] = ACTIONS(1320), + [aux_sym_preproc_if_token1] = ACTIONS(1320), + [aux_sym_preproc_if_token2] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1320), + [aux_sym_preproc_else_token1] = ACTIONS(1320), + [aux_sym_preproc_elif_token1] = ACTIONS(1320), + [sym_preproc_directive] = ACTIONS(1320), + [anon_sym_LPAREN2] = ACTIONS(1322), + [anon_sym_BANG] = ACTIONS(1322), + [anon_sym_TILDE] = ACTIONS(1322), + [anon_sym_DASH] = ACTIONS(1320), + [anon_sym_PLUS] = ACTIONS(1320), + [anon_sym_STAR] = ACTIONS(1322), + [anon_sym_AMP] = ACTIONS(1322), + [anon_sym_SEMI] = ACTIONS(1322), + [anon_sym___extension__] = ACTIONS(1320), + [anon_sym_typedef] = ACTIONS(1320), + [anon_sym_extern] = ACTIONS(1320), + [anon_sym___attribute__] = ACTIONS(1320), + [anon_sym___scanf] = ACTIONS(1320), + [anon_sym___printf] = ACTIONS(1320), + [anon_sym___read_mostly] = ACTIONS(1320), + [anon_sym___must_hold] = ACTIONS(1320), + [anon_sym___ro_after_init] = ACTIONS(1320), + [anon_sym___init] = ACTIONS(1320), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1322), + [anon_sym___declspec] = ACTIONS(1320), + [anon_sym___cdecl] = ACTIONS(1320), + [anon_sym___clrcall] = ACTIONS(1320), + [anon_sym___stdcall] = ACTIONS(1320), + [anon_sym___fastcall] = ACTIONS(1320), + [anon_sym___thiscall] = ACTIONS(1320), + [anon_sym___vectorcall] = ACTIONS(1320), + [anon_sym_LBRACE] = ACTIONS(1322), + [anon_sym_signed] = ACTIONS(1320), + [anon_sym_unsigned] = ACTIONS(1320), + [anon_sym_long] = ACTIONS(1320), + [anon_sym_short] = ACTIONS(1320), + [anon_sym_static] = ACTIONS(1320), + [anon_sym_auto] = ACTIONS(1320), + [anon_sym_register] = ACTIONS(1320), + [anon_sym_inline] = ACTIONS(1320), + [anon_sym___inline] = ACTIONS(1320), + [anon_sym___inline__] = ACTIONS(1320), + [anon_sym___forceinline] = ACTIONS(1320), + [anon_sym_thread_local] = ACTIONS(1320), + [anon_sym___thread] = ACTIONS(1320), + [anon_sym_const] = ACTIONS(1320), + [anon_sym_constexpr] = ACTIONS(1320), + [anon_sym_volatile] = ACTIONS(1320), + [anon_sym_restrict] = ACTIONS(1320), + [anon_sym___restrict__] = ACTIONS(1320), + [anon_sym__Atomic] = ACTIONS(1320), + [anon_sym__Noreturn] = ACTIONS(1320), + [anon_sym_noreturn] = ACTIONS(1320), + [sym_primitive_type] = ACTIONS(1320), + [anon_sym_enum] = ACTIONS(1320), + [anon_sym_struct] = ACTIONS(1320), + [anon_sym_union] = ACTIONS(1320), + [anon_sym_if] = ACTIONS(1320), + [anon_sym_else] = ACTIONS(1320), + [anon_sym_switch] = ACTIONS(1320), + [anon_sym_case] = ACTIONS(1320), + [anon_sym_default] = ACTIONS(1320), + [anon_sym_while] = ACTIONS(1320), + [anon_sym_do] = ACTIONS(1320), + [anon_sym_for] = ACTIONS(1320), + [anon_sym_return] = ACTIONS(1320), + [anon_sym_break] = ACTIONS(1320), + [anon_sym_continue] = ACTIONS(1320), + [anon_sym_goto] = ACTIONS(1320), + [anon_sym___try] = ACTIONS(1320), + [anon_sym___leave] = ACTIONS(1320), + [anon_sym_DASH_DASH] = ACTIONS(1322), + [anon_sym_PLUS_PLUS] = ACTIONS(1322), + [anon_sym_sizeof] = ACTIONS(1320), + [anon_sym___alignof__] = ACTIONS(1320), + [anon_sym___alignof] = ACTIONS(1320), + [anon_sym__alignof] = ACTIONS(1320), + [anon_sym_alignof] = ACTIONS(1320), + [anon_sym__Alignof] = ACTIONS(1320), + [anon_sym_offsetof] = ACTIONS(1320), + [anon_sym__Generic] = ACTIONS(1320), + [anon_sym_asm] = ACTIONS(1320), + [anon_sym___asm__] = ACTIONS(1320), + [sym_number_literal] = ACTIONS(1322), + [anon_sym_L_SQUOTE] = ACTIONS(1322), + [anon_sym_u_SQUOTE] = ACTIONS(1322), + [anon_sym_U_SQUOTE] = ACTIONS(1322), + [anon_sym_u8_SQUOTE] = ACTIONS(1322), + [anon_sym_SQUOTE] = ACTIONS(1322), + [anon_sym_L_DQUOTE] = ACTIONS(1322), + [anon_sym_u_DQUOTE] = ACTIONS(1322), + [anon_sym_U_DQUOTE] = ACTIONS(1322), + [anon_sym_u8_DQUOTE] = ACTIONS(1322), + [anon_sym_DQUOTE] = ACTIONS(1322), + [sym_true] = ACTIONS(1320), + [sym_false] = ACTIONS(1320), + [anon_sym_NULL] = ACTIONS(1320), + [anon_sym_nullptr] = ACTIONS(1320), [sym_comment] = ACTIONS(3), }, [197] = { - [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), - [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_LBRACK_LBRACK] = ACTIONS(1371), - [anon_sym___declspec] = 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), - [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_else] = 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_identifier] = ACTIONS(1408), + [aux_sym_preproc_include_token1] = ACTIONS(1408), + [aux_sym_preproc_def_token1] = ACTIONS(1408), + [aux_sym_preproc_if_token1] = ACTIONS(1408), + [aux_sym_preproc_if_token2] = ACTIONS(1408), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1408), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1408), + [aux_sym_preproc_else_token1] = ACTIONS(1408), + [aux_sym_preproc_elif_token1] = ACTIONS(1408), + [sym_preproc_directive] = ACTIONS(1408), + [anon_sym_LPAREN2] = ACTIONS(1410), + [anon_sym_BANG] = ACTIONS(1410), + [anon_sym_TILDE] = ACTIONS(1410), + [anon_sym_DASH] = ACTIONS(1408), + [anon_sym_PLUS] = ACTIONS(1408), + [anon_sym_STAR] = ACTIONS(1410), + [anon_sym_AMP] = ACTIONS(1410), + [anon_sym_SEMI] = ACTIONS(1410), + [anon_sym___extension__] = ACTIONS(1408), + [anon_sym_typedef] = ACTIONS(1408), + [anon_sym_extern] = ACTIONS(1408), + [anon_sym___attribute__] = ACTIONS(1408), + [anon_sym___scanf] = ACTIONS(1408), + [anon_sym___printf] = ACTIONS(1408), + [anon_sym___read_mostly] = ACTIONS(1408), + [anon_sym___must_hold] = ACTIONS(1408), + [anon_sym___ro_after_init] = ACTIONS(1408), + [anon_sym___init] = ACTIONS(1408), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1410), + [anon_sym___declspec] = ACTIONS(1408), + [anon_sym___cdecl] = ACTIONS(1408), + [anon_sym___clrcall] = ACTIONS(1408), + [anon_sym___stdcall] = ACTIONS(1408), + [anon_sym___fastcall] = ACTIONS(1408), + [anon_sym___thiscall] = ACTIONS(1408), + [anon_sym___vectorcall] = ACTIONS(1408), + [anon_sym_LBRACE] = ACTIONS(1410), + [anon_sym_signed] = ACTIONS(1408), + [anon_sym_unsigned] = ACTIONS(1408), + [anon_sym_long] = ACTIONS(1408), + [anon_sym_short] = ACTIONS(1408), + [anon_sym_static] = ACTIONS(1408), + [anon_sym_auto] = ACTIONS(1408), + [anon_sym_register] = ACTIONS(1408), + [anon_sym_inline] = ACTIONS(1408), + [anon_sym___inline] = ACTIONS(1408), + [anon_sym___inline__] = ACTIONS(1408), + [anon_sym___forceinline] = ACTIONS(1408), + [anon_sym_thread_local] = ACTIONS(1408), + [anon_sym___thread] = ACTIONS(1408), + [anon_sym_const] = ACTIONS(1408), + [anon_sym_constexpr] = ACTIONS(1408), + [anon_sym_volatile] = ACTIONS(1408), + [anon_sym_restrict] = ACTIONS(1408), + [anon_sym___restrict__] = ACTIONS(1408), + [anon_sym__Atomic] = ACTIONS(1408), + [anon_sym__Noreturn] = ACTIONS(1408), + [anon_sym_noreturn] = ACTIONS(1408), + [sym_primitive_type] = ACTIONS(1408), + [anon_sym_enum] = ACTIONS(1408), + [anon_sym_struct] = ACTIONS(1408), + [anon_sym_union] = ACTIONS(1408), + [anon_sym_if] = ACTIONS(1408), + [anon_sym_else] = ACTIONS(1408), + [anon_sym_switch] = ACTIONS(1408), + [anon_sym_case] = ACTIONS(1408), + [anon_sym_default] = ACTIONS(1408), + [anon_sym_while] = ACTIONS(1408), + [anon_sym_do] = ACTIONS(1408), + [anon_sym_for] = ACTIONS(1408), + [anon_sym_return] = ACTIONS(1408), + [anon_sym_break] = ACTIONS(1408), + [anon_sym_continue] = ACTIONS(1408), + [anon_sym_goto] = ACTIONS(1408), + [anon_sym___try] = ACTIONS(1408), + [anon_sym___leave] = ACTIONS(1408), + [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_PLUS_PLUS] = ACTIONS(1410), + [anon_sym_sizeof] = ACTIONS(1408), + [anon_sym___alignof__] = ACTIONS(1408), + [anon_sym___alignof] = ACTIONS(1408), + [anon_sym__alignof] = ACTIONS(1408), + [anon_sym_alignof] = ACTIONS(1408), + [anon_sym__Alignof] = ACTIONS(1408), + [anon_sym_offsetof] = ACTIONS(1408), + [anon_sym__Generic] = ACTIONS(1408), + [anon_sym_asm] = ACTIONS(1408), + [anon_sym___asm__] = ACTIONS(1408), + [sym_number_literal] = ACTIONS(1410), + [anon_sym_L_SQUOTE] = ACTIONS(1410), + [anon_sym_u_SQUOTE] = ACTIONS(1410), + [anon_sym_U_SQUOTE] = ACTIONS(1410), + [anon_sym_u8_SQUOTE] = ACTIONS(1410), + [anon_sym_SQUOTE] = ACTIONS(1410), + [anon_sym_L_DQUOTE] = ACTIONS(1410), + [anon_sym_u_DQUOTE] = ACTIONS(1410), + [anon_sym_U_DQUOTE] = ACTIONS(1410), + [anon_sym_u8_DQUOTE] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(1410), + [sym_true] = ACTIONS(1408), + [sym_false] = ACTIONS(1408), + [anon_sym_NULL] = ACTIONS(1408), + [anon_sym_nullptr] = ACTIONS(1408), [sym_comment] = ACTIONS(3), }, [198] = { - [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), - [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_LBRACK_LBRACK] = ACTIONS(1383), - [anon_sym___declspec] = 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), - [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_else] = 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_identifier] = ACTIONS(1412), + [aux_sym_preproc_include_token1] = ACTIONS(1412), + [aux_sym_preproc_def_token1] = ACTIONS(1412), + [aux_sym_preproc_if_token1] = ACTIONS(1412), + [aux_sym_preproc_if_token2] = ACTIONS(1412), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1412), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1412), + [aux_sym_preproc_else_token1] = ACTIONS(1412), + [aux_sym_preproc_elif_token1] = ACTIONS(1412), + [sym_preproc_directive] = ACTIONS(1412), + [anon_sym_LPAREN2] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(1414), + [anon_sym_TILDE] = ACTIONS(1414), + [anon_sym_DASH] = ACTIONS(1412), + [anon_sym_PLUS] = ACTIONS(1412), + [anon_sym_STAR] = ACTIONS(1414), + [anon_sym_AMP] = ACTIONS(1414), + [anon_sym_SEMI] = ACTIONS(1414), + [anon_sym___extension__] = ACTIONS(1412), + [anon_sym_typedef] = ACTIONS(1412), + [anon_sym_extern] = ACTIONS(1412), + [anon_sym___attribute__] = ACTIONS(1412), + [anon_sym___scanf] = ACTIONS(1412), + [anon_sym___printf] = ACTIONS(1412), + [anon_sym___read_mostly] = ACTIONS(1412), + [anon_sym___must_hold] = ACTIONS(1412), + [anon_sym___ro_after_init] = ACTIONS(1412), + [anon_sym___init] = ACTIONS(1412), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1414), + [anon_sym___declspec] = ACTIONS(1412), + [anon_sym___cdecl] = ACTIONS(1412), + [anon_sym___clrcall] = ACTIONS(1412), + [anon_sym___stdcall] = ACTIONS(1412), + [anon_sym___fastcall] = ACTIONS(1412), + [anon_sym___thiscall] = ACTIONS(1412), + [anon_sym___vectorcall] = ACTIONS(1412), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_signed] = ACTIONS(1412), + [anon_sym_unsigned] = ACTIONS(1412), + [anon_sym_long] = ACTIONS(1412), + [anon_sym_short] = ACTIONS(1412), + [anon_sym_static] = ACTIONS(1412), + [anon_sym_auto] = ACTIONS(1412), + [anon_sym_register] = ACTIONS(1412), + [anon_sym_inline] = ACTIONS(1412), + [anon_sym___inline] = ACTIONS(1412), + [anon_sym___inline__] = ACTIONS(1412), + [anon_sym___forceinline] = ACTIONS(1412), + [anon_sym_thread_local] = ACTIONS(1412), + [anon_sym___thread] = ACTIONS(1412), + [anon_sym_const] = ACTIONS(1412), + [anon_sym_constexpr] = ACTIONS(1412), + [anon_sym_volatile] = ACTIONS(1412), + [anon_sym_restrict] = ACTIONS(1412), + [anon_sym___restrict__] = ACTIONS(1412), + [anon_sym__Atomic] = ACTIONS(1412), + [anon_sym__Noreturn] = ACTIONS(1412), + [anon_sym_noreturn] = ACTIONS(1412), + [sym_primitive_type] = ACTIONS(1412), + [anon_sym_enum] = ACTIONS(1412), + [anon_sym_struct] = ACTIONS(1412), + [anon_sym_union] = ACTIONS(1412), + [anon_sym_if] = ACTIONS(1412), + [anon_sym_else] = ACTIONS(1412), + [anon_sym_switch] = ACTIONS(1412), + [anon_sym_case] = ACTIONS(1412), + [anon_sym_default] = ACTIONS(1412), + [anon_sym_while] = ACTIONS(1412), + [anon_sym_do] = ACTIONS(1412), + [anon_sym_for] = ACTIONS(1412), + [anon_sym_return] = ACTIONS(1412), + [anon_sym_break] = ACTIONS(1412), + [anon_sym_continue] = ACTIONS(1412), + [anon_sym_goto] = ACTIONS(1412), + [anon_sym___try] = ACTIONS(1412), + [anon_sym___leave] = ACTIONS(1412), + [anon_sym_DASH_DASH] = ACTIONS(1414), + [anon_sym_PLUS_PLUS] = ACTIONS(1414), + [anon_sym_sizeof] = ACTIONS(1412), + [anon_sym___alignof__] = ACTIONS(1412), + [anon_sym___alignof] = ACTIONS(1412), + [anon_sym__alignof] = ACTIONS(1412), + [anon_sym_alignof] = ACTIONS(1412), + [anon_sym__Alignof] = ACTIONS(1412), + [anon_sym_offsetof] = ACTIONS(1412), + [anon_sym__Generic] = ACTIONS(1412), + [anon_sym_asm] = ACTIONS(1412), + [anon_sym___asm__] = ACTIONS(1412), + [sym_number_literal] = ACTIONS(1414), + [anon_sym_L_SQUOTE] = ACTIONS(1414), + [anon_sym_u_SQUOTE] = ACTIONS(1414), + [anon_sym_U_SQUOTE] = ACTIONS(1414), + [anon_sym_u8_SQUOTE] = ACTIONS(1414), + [anon_sym_SQUOTE] = ACTIONS(1414), + [anon_sym_L_DQUOTE] = ACTIONS(1414), + [anon_sym_u_DQUOTE] = ACTIONS(1414), + [anon_sym_U_DQUOTE] = ACTIONS(1414), + [anon_sym_u8_DQUOTE] = ACTIONS(1414), + [anon_sym_DQUOTE] = ACTIONS(1414), + [sym_true] = ACTIONS(1412), + [sym_false] = ACTIONS(1412), + [anon_sym_NULL] = ACTIONS(1412), + [anon_sym_nullptr] = ACTIONS(1412), [sym_comment] = ACTIONS(3), }, [199] = { - [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), - [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_LBRACK_LBRACK] = ACTIONS(1387), - [anon_sym___declspec] = 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), - [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_else] = 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_identifier] = ACTIONS(1416), + [aux_sym_preproc_include_token1] = ACTIONS(1416), + [aux_sym_preproc_def_token1] = ACTIONS(1416), + [aux_sym_preproc_if_token1] = ACTIONS(1416), + [aux_sym_preproc_if_token2] = ACTIONS(1416), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1416), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1416), + [aux_sym_preproc_else_token1] = ACTIONS(1416), + [aux_sym_preproc_elif_token1] = ACTIONS(1416), + [sym_preproc_directive] = ACTIONS(1416), + [anon_sym_LPAREN2] = ACTIONS(1418), + [anon_sym_BANG] = ACTIONS(1418), + [anon_sym_TILDE] = ACTIONS(1418), + [anon_sym_DASH] = ACTIONS(1416), + [anon_sym_PLUS] = ACTIONS(1416), + [anon_sym_STAR] = ACTIONS(1418), + [anon_sym_AMP] = ACTIONS(1418), + [anon_sym_SEMI] = ACTIONS(1418), + [anon_sym___extension__] = ACTIONS(1416), + [anon_sym_typedef] = ACTIONS(1416), + [anon_sym_extern] = ACTIONS(1416), + [anon_sym___attribute__] = ACTIONS(1416), + [anon_sym___scanf] = ACTIONS(1416), + [anon_sym___printf] = ACTIONS(1416), + [anon_sym___read_mostly] = ACTIONS(1416), + [anon_sym___must_hold] = ACTIONS(1416), + [anon_sym___ro_after_init] = ACTIONS(1416), + [anon_sym___init] = ACTIONS(1416), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1418), + [anon_sym___declspec] = ACTIONS(1416), + [anon_sym___cdecl] = ACTIONS(1416), + [anon_sym___clrcall] = ACTIONS(1416), + [anon_sym___stdcall] = ACTIONS(1416), + [anon_sym___fastcall] = ACTIONS(1416), + [anon_sym___thiscall] = ACTIONS(1416), + [anon_sym___vectorcall] = ACTIONS(1416), + [anon_sym_LBRACE] = ACTIONS(1418), + [anon_sym_signed] = ACTIONS(1416), + [anon_sym_unsigned] = ACTIONS(1416), + [anon_sym_long] = ACTIONS(1416), + [anon_sym_short] = ACTIONS(1416), + [anon_sym_static] = ACTIONS(1416), + [anon_sym_auto] = ACTIONS(1416), + [anon_sym_register] = ACTIONS(1416), + [anon_sym_inline] = ACTIONS(1416), + [anon_sym___inline] = ACTIONS(1416), + [anon_sym___inline__] = ACTIONS(1416), + [anon_sym___forceinline] = ACTIONS(1416), + [anon_sym_thread_local] = ACTIONS(1416), + [anon_sym___thread] = ACTIONS(1416), + [anon_sym_const] = ACTIONS(1416), + [anon_sym_constexpr] = ACTIONS(1416), + [anon_sym_volatile] = ACTIONS(1416), + [anon_sym_restrict] = ACTIONS(1416), + [anon_sym___restrict__] = ACTIONS(1416), + [anon_sym__Atomic] = ACTIONS(1416), + [anon_sym__Noreturn] = ACTIONS(1416), + [anon_sym_noreturn] = ACTIONS(1416), + [sym_primitive_type] = ACTIONS(1416), + [anon_sym_enum] = ACTIONS(1416), + [anon_sym_struct] = ACTIONS(1416), + [anon_sym_union] = ACTIONS(1416), + [anon_sym_if] = ACTIONS(1416), + [anon_sym_else] = ACTIONS(1416), + [anon_sym_switch] = ACTIONS(1416), + [anon_sym_case] = ACTIONS(1416), + [anon_sym_default] = ACTIONS(1416), + [anon_sym_while] = ACTIONS(1416), + [anon_sym_do] = ACTIONS(1416), + [anon_sym_for] = ACTIONS(1416), + [anon_sym_return] = ACTIONS(1416), + [anon_sym_break] = ACTIONS(1416), + [anon_sym_continue] = ACTIONS(1416), + [anon_sym_goto] = ACTIONS(1416), + [anon_sym___try] = ACTIONS(1416), + [anon_sym___leave] = ACTIONS(1416), + [anon_sym_DASH_DASH] = ACTIONS(1418), + [anon_sym_PLUS_PLUS] = ACTIONS(1418), + [anon_sym_sizeof] = ACTIONS(1416), + [anon_sym___alignof__] = ACTIONS(1416), + [anon_sym___alignof] = ACTIONS(1416), + [anon_sym__alignof] = ACTIONS(1416), + [anon_sym_alignof] = ACTIONS(1416), + [anon_sym__Alignof] = ACTIONS(1416), + [anon_sym_offsetof] = ACTIONS(1416), + [anon_sym__Generic] = ACTIONS(1416), + [anon_sym_asm] = ACTIONS(1416), + [anon_sym___asm__] = ACTIONS(1416), + [sym_number_literal] = ACTIONS(1418), + [anon_sym_L_SQUOTE] = ACTIONS(1418), + [anon_sym_u_SQUOTE] = ACTIONS(1418), + [anon_sym_U_SQUOTE] = ACTIONS(1418), + [anon_sym_u8_SQUOTE] = ACTIONS(1418), + [anon_sym_SQUOTE] = ACTIONS(1418), + [anon_sym_L_DQUOTE] = ACTIONS(1418), + [anon_sym_u_DQUOTE] = ACTIONS(1418), + [anon_sym_U_DQUOTE] = ACTIONS(1418), + [anon_sym_u8_DQUOTE] = ACTIONS(1418), + [anon_sym_DQUOTE] = ACTIONS(1418), + [sym_true] = ACTIONS(1416), + [sym_false] = ACTIONS(1416), + [anon_sym_NULL] = ACTIONS(1416), + [anon_sym_nullptr] = ACTIONS(1416), [sym_comment] = ACTIONS(3), }, [200] = { - [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), - [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_LBRACK_LBRACK] = ACTIONS(1391), - [anon_sym___declspec] = 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), - [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_else] = 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_identifier] = ACTIONS(1420), + [aux_sym_preproc_include_token1] = ACTIONS(1420), + [aux_sym_preproc_def_token1] = ACTIONS(1420), + [aux_sym_preproc_if_token1] = ACTIONS(1420), + [aux_sym_preproc_if_token2] = ACTIONS(1420), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1420), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1420), + [aux_sym_preproc_else_token1] = ACTIONS(1420), + [aux_sym_preproc_elif_token1] = ACTIONS(1420), + [sym_preproc_directive] = ACTIONS(1420), + [anon_sym_LPAREN2] = ACTIONS(1422), + [anon_sym_BANG] = ACTIONS(1422), + [anon_sym_TILDE] = ACTIONS(1422), + [anon_sym_DASH] = ACTIONS(1420), + [anon_sym_PLUS] = ACTIONS(1420), + [anon_sym_STAR] = ACTIONS(1422), + [anon_sym_AMP] = ACTIONS(1422), + [anon_sym_SEMI] = ACTIONS(1422), + [anon_sym___extension__] = ACTIONS(1420), + [anon_sym_typedef] = ACTIONS(1420), + [anon_sym_extern] = ACTIONS(1420), + [anon_sym___attribute__] = ACTIONS(1420), + [anon_sym___scanf] = ACTIONS(1420), + [anon_sym___printf] = ACTIONS(1420), + [anon_sym___read_mostly] = ACTIONS(1420), + [anon_sym___must_hold] = ACTIONS(1420), + [anon_sym___ro_after_init] = ACTIONS(1420), + [anon_sym___init] = ACTIONS(1420), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1422), + [anon_sym___declspec] = ACTIONS(1420), + [anon_sym___cdecl] = ACTIONS(1420), + [anon_sym___clrcall] = ACTIONS(1420), + [anon_sym___stdcall] = ACTIONS(1420), + [anon_sym___fastcall] = ACTIONS(1420), + [anon_sym___thiscall] = ACTIONS(1420), + [anon_sym___vectorcall] = ACTIONS(1420), + [anon_sym_LBRACE] = ACTIONS(1422), + [anon_sym_signed] = ACTIONS(1420), + [anon_sym_unsigned] = ACTIONS(1420), + [anon_sym_long] = ACTIONS(1420), + [anon_sym_short] = ACTIONS(1420), + [anon_sym_static] = ACTIONS(1420), + [anon_sym_auto] = ACTIONS(1420), + [anon_sym_register] = ACTIONS(1420), + [anon_sym_inline] = ACTIONS(1420), + [anon_sym___inline] = ACTIONS(1420), + [anon_sym___inline__] = ACTIONS(1420), + [anon_sym___forceinline] = ACTIONS(1420), + [anon_sym_thread_local] = ACTIONS(1420), + [anon_sym___thread] = ACTIONS(1420), + [anon_sym_const] = ACTIONS(1420), + [anon_sym_constexpr] = ACTIONS(1420), + [anon_sym_volatile] = ACTIONS(1420), + [anon_sym_restrict] = ACTIONS(1420), + [anon_sym___restrict__] = ACTIONS(1420), + [anon_sym__Atomic] = ACTIONS(1420), + [anon_sym__Noreturn] = ACTIONS(1420), + [anon_sym_noreturn] = ACTIONS(1420), + [sym_primitive_type] = ACTIONS(1420), + [anon_sym_enum] = ACTIONS(1420), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_union] = ACTIONS(1420), + [anon_sym_if] = ACTIONS(1420), + [anon_sym_else] = ACTIONS(1420), + [anon_sym_switch] = ACTIONS(1420), + [anon_sym_case] = ACTIONS(1420), + [anon_sym_default] = ACTIONS(1420), + [anon_sym_while] = ACTIONS(1420), + [anon_sym_do] = ACTIONS(1420), + [anon_sym_for] = ACTIONS(1420), + [anon_sym_return] = ACTIONS(1420), + [anon_sym_break] = ACTIONS(1420), + [anon_sym_continue] = ACTIONS(1420), + [anon_sym_goto] = ACTIONS(1420), + [anon_sym___try] = ACTIONS(1420), + [anon_sym___leave] = ACTIONS(1420), + [anon_sym_DASH_DASH] = ACTIONS(1422), + [anon_sym_PLUS_PLUS] = ACTIONS(1422), + [anon_sym_sizeof] = ACTIONS(1420), + [anon_sym___alignof__] = ACTIONS(1420), + [anon_sym___alignof] = ACTIONS(1420), + [anon_sym__alignof] = ACTIONS(1420), + [anon_sym_alignof] = ACTIONS(1420), + [anon_sym__Alignof] = ACTIONS(1420), + [anon_sym_offsetof] = ACTIONS(1420), + [anon_sym__Generic] = ACTIONS(1420), + [anon_sym_asm] = ACTIONS(1420), + [anon_sym___asm__] = ACTIONS(1420), + [sym_number_literal] = ACTIONS(1422), + [anon_sym_L_SQUOTE] = ACTIONS(1422), + [anon_sym_u_SQUOTE] = ACTIONS(1422), + [anon_sym_U_SQUOTE] = ACTIONS(1422), + [anon_sym_u8_SQUOTE] = ACTIONS(1422), + [anon_sym_SQUOTE] = ACTIONS(1422), + [anon_sym_L_DQUOTE] = ACTIONS(1422), + [anon_sym_u_DQUOTE] = ACTIONS(1422), + [anon_sym_U_DQUOTE] = ACTIONS(1422), + [anon_sym_u8_DQUOTE] = ACTIONS(1422), + [anon_sym_DQUOTE] = ACTIONS(1422), + [sym_true] = ACTIONS(1420), + [sym_false] = ACTIONS(1420), + [anon_sym_NULL] = ACTIONS(1420), + [anon_sym_nullptr] = ACTIONS(1420), [sym_comment] = ACTIONS(3), }, [201] = { - [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), - [sym_preproc_directive] = ACTIONS(1311), - [anon_sym_LPAREN2] = ACTIONS(1309), - [anon_sym_BANG] = ACTIONS(1309), - [anon_sym_TILDE] = ACTIONS(1309), - [anon_sym_DASH] = ACTIONS(1311), - [anon_sym_PLUS] = ACTIONS(1311), - [anon_sym_STAR] = ACTIONS(1309), - [anon_sym_AMP] = ACTIONS(1309), - [anon_sym_SEMI] = ACTIONS(1309), - [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_LBRACK_LBRACK] = ACTIONS(1309), - [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(1309), - [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), - [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_else] = 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(1309), - [anon_sym_PLUS_PLUS] = ACTIONS(1309), - [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(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(1311), - [sym_false] = ACTIONS(1311), - [anon_sym_NULL] = ACTIONS(1311), - [anon_sym_nullptr] = ACTIONS(1311), + [sym_identifier] = ACTIONS(1334), + [aux_sym_preproc_include_token1] = ACTIONS(1334), + [aux_sym_preproc_def_token1] = ACTIONS(1334), + [aux_sym_preproc_if_token1] = ACTIONS(1334), + [aux_sym_preproc_if_token2] = ACTIONS(1334), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1334), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1334), + [aux_sym_preproc_else_token1] = ACTIONS(1334), + [aux_sym_preproc_elif_token1] = ACTIONS(1334), + [sym_preproc_directive] = ACTIONS(1334), + [anon_sym_LPAREN2] = ACTIONS(1332), + [anon_sym_BANG] = ACTIONS(1332), + [anon_sym_TILDE] = ACTIONS(1332), + [anon_sym_DASH] = ACTIONS(1334), + [anon_sym_PLUS] = ACTIONS(1334), + [anon_sym_STAR] = ACTIONS(1332), + [anon_sym_AMP] = ACTIONS(1332), + [anon_sym_SEMI] = ACTIONS(1332), + [anon_sym___extension__] = ACTIONS(1334), + [anon_sym_typedef] = ACTIONS(1334), + [anon_sym_extern] = ACTIONS(1334), + [anon_sym___attribute__] = ACTIONS(1334), + [anon_sym___scanf] = ACTIONS(1334), + [anon_sym___printf] = ACTIONS(1334), + [anon_sym___read_mostly] = ACTIONS(1334), + [anon_sym___must_hold] = ACTIONS(1334), + [anon_sym___ro_after_init] = ACTIONS(1334), + [anon_sym___init] = ACTIONS(1334), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1332), + [anon_sym___declspec] = ACTIONS(1334), + [anon_sym___cdecl] = ACTIONS(1334), + [anon_sym___clrcall] = ACTIONS(1334), + [anon_sym___stdcall] = ACTIONS(1334), + [anon_sym___fastcall] = ACTIONS(1334), + [anon_sym___thiscall] = ACTIONS(1334), + [anon_sym___vectorcall] = ACTIONS(1334), + [anon_sym_LBRACE] = ACTIONS(1332), + [anon_sym_signed] = ACTIONS(1334), + [anon_sym_unsigned] = ACTIONS(1334), + [anon_sym_long] = ACTIONS(1334), + [anon_sym_short] = ACTIONS(1334), + [anon_sym_static] = ACTIONS(1334), + [anon_sym_auto] = ACTIONS(1334), + [anon_sym_register] = ACTIONS(1334), + [anon_sym_inline] = ACTIONS(1334), + [anon_sym___inline] = ACTIONS(1334), + [anon_sym___inline__] = ACTIONS(1334), + [anon_sym___forceinline] = ACTIONS(1334), + [anon_sym_thread_local] = ACTIONS(1334), + [anon_sym___thread] = ACTIONS(1334), + [anon_sym_const] = ACTIONS(1334), + [anon_sym_constexpr] = ACTIONS(1334), + [anon_sym_volatile] = ACTIONS(1334), + [anon_sym_restrict] = ACTIONS(1334), + [anon_sym___restrict__] = ACTIONS(1334), + [anon_sym__Atomic] = ACTIONS(1334), + [anon_sym__Noreturn] = ACTIONS(1334), + [anon_sym_noreturn] = ACTIONS(1334), + [sym_primitive_type] = ACTIONS(1334), + [anon_sym_enum] = ACTIONS(1334), + [anon_sym_struct] = ACTIONS(1334), + [anon_sym_union] = ACTIONS(1334), + [anon_sym_if] = ACTIONS(1334), + [anon_sym_else] = ACTIONS(1334), + [anon_sym_switch] = ACTIONS(1334), + [anon_sym_case] = ACTIONS(1334), + [anon_sym_default] = ACTIONS(1334), + [anon_sym_while] = ACTIONS(1334), + [anon_sym_do] = ACTIONS(1334), + [anon_sym_for] = ACTIONS(1334), + [anon_sym_return] = ACTIONS(1334), + [anon_sym_break] = ACTIONS(1334), + [anon_sym_continue] = ACTIONS(1334), + [anon_sym_goto] = ACTIONS(1334), + [anon_sym___try] = ACTIONS(1334), + [anon_sym___leave] = ACTIONS(1334), + [anon_sym_DASH_DASH] = ACTIONS(1332), + [anon_sym_PLUS_PLUS] = ACTIONS(1332), + [anon_sym_sizeof] = ACTIONS(1334), + [anon_sym___alignof__] = ACTIONS(1334), + [anon_sym___alignof] = ACTIONS(1334), + [anon_sym__alignof] = ACTIONS(1334), + [anon_sym_alignof] = ACTIONS(1334), + [anon_sym__Alignof] = ACTIONS(1334), + [anon_sym_offsetof] = ACTIONS(1334), + [anon_sym__Generic] = ACTIONS(1334), + [anon_sym_asm] = ACTIONS(1334), + [anon_sym___asm__] = ACTIONS(1334), + [sym_number_literal] = ACTIONS(1332), + [anon_sym_L_SQUOTE] = ACTIONS(1332), + [anon_sym_u_SQUOTE] = ACTIONS(1332), + [anon_sym_U_SQUOTE] = ACTIONS(1332), + [anon_sym_u8_SQUOTE] = ACTIONS(1332), + [anon_sym_SQUOTE] = ACTIONS(1332), + [anon_sym_L_DQUOTE] = ACTIONS(1332), + [anon_sym_u_DQUOTE] = ACTIONS(1332), + [anon_sym_U_DQUOTE] = ACTIONS(1332), + [anon_sym_u8_DQUOTE] = ACTIONS(1332), + [anon_sym_DQUOTE] = ACTIONS(1332), + [sym_true] = ACTIONS(1334), + [sym_false] = ACTIONS(1334), + [anon_sym_NULL] = ACTIONS(1334), + [anon_sym_nullptr] = ACTIONS(1334), [sym_comment] = ACTIONS(3), }, [202] = { - [sym_identifier] = ACTIONS(1473), - [aux_sym_preproc_include_token1] = ACTIONS(1473), - [aux_sym_preproc_def_token1] = ACTIONS(1473), - [aux_sym_preproc_if_token1] = ACTIONS(1473), - [aux_sym_preproc_if_token2] = ACTIONS(1473), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1473), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1473), - [aux_sym_preproc_else_token1] = ACTIONS(1473), - [aux_sym_preproc_elif_token1] = ACTIONS(1473), - [sym_preproc_directive] = ACTIONS(1473), - [anon_sym_LPAREN2] = ACTIONS(1475), - [anon_sym_BANG] = ACTIONS(1475), - [anon_sym_TILDE] = ACTIONS(1475), - [anon_sym_DASH] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(1473), - [anon_sym_STAR] = ACTIONS(1475), - [anon_sym_AMP] = ACTIONS(1475), - [anon_sym_SEMI] = ACTIONS(1475), - [anon_sym___extension__] = ACTIONS(1473), - [anon_sym_typedef] = ACTIONS(1473), - [anon_sym_extern] = ACTIONS(1473), - [anon_sym___attribute__] = ACTIONS(1473), - [anon_sym___scanf] = ACTIONS(1473), - [anon_sym___printf] = ACTIONS(1473), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1475), - [anon_sym___declspec] = ACTIONS(1473), - [anon_sym___cdecl] = ACTIONS(1473), - [anon_sym___clrcall] = ACTIONS(1473), - [anon_sym___stdcall] = ACTIONS(1473), - [anon_sym___fastcall] = ACTIONS(1473), - [anon_sym___thiscall] = ACTIONS(1473), - [anon_sym___vectorcall] = ACTIONS(1473), - [anon_sym_LBRACE] = ACTIONS(1475), - [anon_sym_signed] = ACTIONS(1473), - [anon_sym_unsigned] = ACTIONS(1473), - [anon_sym_long] = ACTIONS(1473), - [anon_sym_short] = ACTIONS(1473), - [anon_sym_static] = ACTIONS(1473), - [anon_sym_auto] = ACTIONS(1473), - [anon_sym_register] = ACTIONS(1473), - [anon_sym_inline] = ACTIONS(1473), - [anon_sym___inline] = ACTIONS(1473), - [anon_sym___inline__] = ACTIONS(1473), - [anon_sym___forceinline] = ACTIONS(1473), - [anon_sym_thread_local] = ACTIONS(1473), - [anon_sym___thread] = ACTIONS(1473), - [anon_sym_const] = ACTIONS(1473), - [anon_sym_constexpr] = ACTIONS(1473), - [anon_sym_volatile] = ACTIONS(1473), - [anon_sym_restrict] = ACTIONS(1473), - [anon_sym___restrict__] = ACTIONS(1473), - [anon_sym__Atomic] = ACTIONS(1473), - [anon_sym__Noreturn] = ACTIONS(1473), - [anon_sym_noreturn] = ACTIONS(1473), - [sym_primitive_type] = ACTIONS(1473), - [anon_sym_enum] = ACTIONS(1473), - [anon_sym_struct] = ACTIONS(1473), - [anon_sym_union] = ACTIONS(1473), - [anon_sym_if] = ACTIONS(1473), - [anon_sym_switch] = ACTIONS(1473), - [anon_sym_case] = ACTIONS(1473), - [anon_sym_default] = ACTIONS(1473), - [anon_sym_while] = ACTIONS(1473), - [anon_sym_do] = ACTIONS(1473), - [anon_sym_for] = ACTIONS(1473), - [anon_sym_return] = ACTIONS(1473), - [anon_sym_break] = ACTIONS(1473), - [anon_sym_continue] = ACTIONS(1473), - [anon_sym_goto] = ACTIONS(1473), - [anon_sym___try] = ACTIONS(1473), - [anon_sym___leave] = ACTIONS(1473), - [anon_sym_DASH_DASH] = ACTIONS(1475), - [anon_sym_PLUS_PLUS] = ACTIONS(1475), - [anon_sym_sizeof] = ACTIONS(1473), - [anon_sym___alignof__] = ACTIONS(1473), - [anon_sym___alignof] = ACTIONS(1473), - [anon_sym__alignof] = ACTIONS(1473), - [anon_sym_alignof] = ACTIONS(1473), - [anon_sym__Alignof] = ACTIONS(1473), - [anon_sym_offsetof] = ACTIONS(1473), - [anon_sym__Generic] = ACTIONS(1473), - [anon_sym_asm] = ACTIONS(1473), - [anon_sym___asm__] = ACTIONS(1473), - [sym_number_literal] = ACTIONS(1475), - [anon_sym_L_SQUOTE] = ACTIONS(1475), - [anon_sym_u_SQUOTE] = ACTIONS(1475), - [anon_sym_U_SQUOTE] = ACTIONS(1475), - [anon_sym_u8_SQUOTE] = ACTIONS(1475), - [anon_sym_SQUOTE] = ACTIONS(1475), - [anon_sym_L_DQUOTE] = ACTIONS(1475), - [anon_sym_u_DQUOTE] = ACTIONS(1475), - [anon_sym_U_DQUOTE] = ACTIONS(1475), - [anon_sym_u8_DQUOTE] = ACTIONS(1475), - [anon_sym_DQUOTE] = ACTIONS(1475), - [sym_true] = ACTIONS(1473), - [sym_false] = ACTIONS(1473), - [anon_sym_NULL] = ACTIONS(1473), - [anon_sym_nullptr] = ACTIONS(1473), + [sym_identifier] = ACTIONS(1492), + [aux_sym_preproc_include_token1] = ACTIONS(1492), + [aux_sym_preproc_def_token1] = ACTIONS(1492), + [aux_sym_preproc_if_token1] = ACTIONS(1492), + [aux_sym_preproc_if_token2] = ACTIONS(1492), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1492), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1492), + [aux_sym_preproc_else_token1] = ACTIONS(1492), + [aux_sym_preproc_elif_token1] = ACTIONS(1492), + [sym_preproc_directive] = ACTIONS(1492), + [anon_sym_LPAREN2] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(1494), + [anon_sym_TILDE] = ACTIONS(1494), + [anon_sym_DASH] = ACTIONS(1492), + [anon_sym_PLUS] = ACTIONS(1492), + [anon_sym_STAR] = ACTIONS(1494), + [anon_sym_AMP] = ACTIONS(1494), + [anon_sym_SEMI] = ACTIONS(1494), + [anon_sym___extension__] = ACTIONS(1492), + [anon_sym_typedef] = ACTIONS(1492), + [anon_sym_extern] = ACTIONS(1492), + [anon_sym___attribute__] = ACTIONS(1492), + [anon_sym___scanf] = ACTIONS(1492), + [anon_sym___printf] = ACTIONS(1492), + [anon_sym___read_mostly] = ACTIONS(1492), + [anon_sym___must_hold] = ACTIONS(1492), + [anon_sym___ro_after_init] = ACTIONS(1492), + [anon_sym___init] = ACTIONS(1492), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1494), + [anon_sym___declspec] = ACTIONS(1492), + [anon_sym___cdecl] = ACTIONS(1492), + [anon_sym___clrcall] = ACTIONS(1492), + [anon_sym___stdcall] = ACTIONS(1492), + [anon_sym___fastcall] = ACTIONS(1492), + [anon_sym___thiscall] = ACTIONS(1492), + [anon_sym___vectorcall] = ACTIONS(1492), + [anon_sym_LBRACE] = ACTIONS(1494), + [anon_sym_signed] = ACTIONS(1492), + [anon_sym_unsigned] = ACTIONS(1492), + [anon_sym_long] = ACTIONS(1492), + [anon_sym_short] = ACTIONS(1492), + [anon_sym_static] = ACTIONS(1492), + [anon_sym_auto] = ACTIONS(1492), + [anon_sym_register] = ACTIONS(1492), + [anon_sym_inline] = ACTIONS(1492), + [anon_sym___inline] = ACTIONS(1492), + [anon_sym___inline__] = ACTIONS(1492), + [anon_sym___forceinline] = ACTIONS(1492), + [anon_sym_thread_local] = ACTIONS(1492), + [anon_sym___thread] = ACTIONS(1492), + [anon_sym_const] = ACTIONS(1492), + [anon_sym_constexpr] = ACTIONS(1492), + [anon_sym_volatile] = ACTIONS(1492), + [anon_sym_restrict] = ACTIONS(1492), + [anon_sym___restrict__] = ACTIONS(1492), + [anon_sym__Atomic] = ACTIONS(1492), + [anon_sym__Noreturn] = ACTIONS(1492), + [anon_sym_noreturn] = ACTIONS(1492), + [sym_primitive_type] = ACTIONS(1492), + [anon_sym_enum] = ACTIONS(1492), + [anon_sym_struct] = ACTIONS(1492), + [anon_sym_union] = ACTIONS(1492), + [anon_sym_if] = ACTIONS(1492), + [anon_sym_switch] = ACTIONS(1492), + [anon_sym_case] = ACTIONS(1492), + [anon_sym_default] = ACTIONS(1492), + [anon_sym_while] = ACTIONS(1492), + [anon_sym_do] = ACTIONS(1492), + [anon_sym_for] = ACTIONS(1492), + [anon_sym_return] = ACTIONS(1492), + [anon_sym_break] = ACTIONS(1492), + [anon_sym_continue] = ACTIONS(1492), + [anon_sym_goto] = ACTIONS(1492), + [anon_sym___try] = ACTIONS(1492), + [anon_sym___leave] = ACTIONS(1492), + [anon_sym_DASH_DASH] = ACTIONS(1494), + [anon_sym_PLUS_PLUS] = ACTIONS(1494), + [anon_sym_sizeof] = ACTIONS(1492), + [anon_sym___alignof__] = ACTIONS(1492), + [anon_sym___alignof] = ACTIONS(1492), + [anon_sym__alignof] = ACTIONS(1492), + [anon_sym_alignof] = ACTIONS(1492), + [anon_sym__Alignof] = ACTIONS(1492), + [anon_sym_offsetof] = ACTIONS(1492), + [anon_sym__Generic] = ACTIONS(1492), + [anon_sym_asm] = ACTIONS(1492), + [anon_sym___asm__] = ACTIONS(1492), + [sym_number_literal] = ACTIONS(1494), + [anon_sym_L_SQUOTE] = ACTIONS(1494), + [anon_sym_u_SQUOTE] = ACTIONS(1494), + [anon_sym_U_SQUOTE] = ACTIONS(1494), + [anon_sym_u8_SQUOTE] = ACTIONS(1494), + [anon_sym_SQUOTE] = ACTIONS(1494), + [anon_sym_L_DQUOTE] = ACTIONS(1494), + [anon_sym_u_DQUOTE] = ACTIONS(1494), + [anon_sym_U_DQUOTE] = ACTIONS(1494), + [anon_sym_u8_DQUOTE] = ACTIONS(1494), + [anon_sym_DQUOTE] = ACTIONS(1494), + [sym_true] = ACTIONS(1492), + [sym_false] = ACTIONS(1492), + [anon_sym_NULL] = ACTIONS(1492), + [anon_sym_nullptr] = ACTIONS(1492), [sym_comment] = ACTIONS(3), }, [203] = { - [sym_identifier] = ACTIONS(1441), - [aux_sym_preproc_include_token1] = ACTIONS(1441), - [aux_sym_preproc_def_token1] = ACTIONS(1441), - [aux_sym_preproc_if_token1] = ACTIONS(1441), - [aux_sym_preproc_if_token2] = ACTIONS(1441), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1441), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1441), - [aux_sym_preproc_else_token1] = ACTIONS(1441), - [aux_sym_preproc_elif_token1] = ACTIONS(1441), - [sym_preproc_directive] = ACTIONS(1441), - [anon_sym_LPAREN2] = ACTIONS(1443), - [anon_sym_BANG] = ACTIONS(1443), - [anon_sym_TILDE] = ACTIONS(1443), - [anon_sym_DASH] = ACTIONS(1441), - [anon_sym_PLUS] = ACTIONS(1441), - [anon_sym_STAR] = ACTIONS(1443), - [anon_sym_AMP] = ACTIONS(1443), - [anon_sym_SEMI] = ACTIONS(1443), - [anon_sym___extension__] = ACTIONS(1441), - [anon_sym_typedef] = ACTIONS(1441), - [anon_sym_extern] = ACTIONS(1441), - [anon_sym___attribute__] = ACTIONS(1441), - [anon_sym___scanf] = ACTIONS(1441), - [anon_sym___printf] = ACTIONS(1441), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1443), - [anon_sym___declspec] = ACTIONS(1441), - [anon_sym___cdecl] = ACTIONS(1441), - [anon_sym___clrcall] = ACTIONS(1441), - [anon_sym___stdcall] = ACTIONS(1441), - [anon_sym___fastcall] = ACTIONS(1441), - [anon_sym___thiscall] = ACTIONS(1441), - [anon_sym___vectorcall] = ACTIONS(1441), - [anon_sym_LBRACE] = ACTIONS(1443), - [anon_sym_signed] = ACTIONS(1441), - [anon_sym_unsigned] = ACTIONS(1441), - [anon_sym_long] = ACTIONS(1441), - [anon_sym_short] = ACTIONS(1441), - [anon_sym_static] = ACTIONS(1441), - [anon_sym_auto] = ACTIONS(1441), - [anon_sym_register] = ACTIONS(1441), - [anon_sym_inline] = ACTIONS(1441), - [anon_sym___inline] = ACTIONS(1441), - [anon_sym___inline__] = ACTIONS(1441), - [anon_sym___forceinline] = ACTIONS(1441), - [anon_sym_thread_local] = ACTIONS(1441), - [anon_sym___thread] = ACTIONS(1441), - [anon_sym_const] = ACTIONS(1441), - [anon_sym_constexpr] = ACTIONS(1441), - [anon_sym_volatile] = ACTIONS(1441), - [anon_sym_restrict] = ACTIONS(1441), - [anon_sym___restrict__] = ACTIONS(1441), - [anon_sym__Atomic] = ACTIONS(1441), - [anon_sym__Noreturn] = ACTIONS(1441), - [anon_sym_noreturn] = ACTIONS(1441), - [sym_primitive_type] = ACTIONS(1441), - [anon_sym_enum] = ACTIONS(1441), - [anon_sym_struct] = ACTIONS(1441), - [anon_sym_union] = ACTIONS(1441), - [anon_sym_if] = ACTIONS(1441), - [anon_sym_switch] = ACTIONS(1441), - [anon_sym_case] = ACTIONS(1441), - [anon_sym_default] = ACTIONS(1441), - [anon_sym_while] = ACTIONS(1441), - [anon_sym_do] = ACTIONS(1441), - [anon_sym_for] = ACTIONS(1441), - [anon_sym_return] = ACTIONS(1441), - [anon_sym_break] = ACTIONS(1441), - [anon_sym_continue] = ACTIONS(1441), - [anon_sym_goto] = ACTIONS(1441), - [anon_sym___try] = ACTIONS(1441), - [anon_sym___leave] = ACTIONS(1441), - [anon_sym_DASH_DASH] = ACTIONS(1443), - [anon_sym_PLUS_PLUS] = ACTIONS(1443), - [anon_sym_sizeof] = ACTIONS(1441), - [anon_sym___alignof__] = ACTIONS(1441), - [anon_sym___alignof] = ACTIONS(1441), - [anon_sym__alignof] = ACTIONS(1441), - [anon_sym_alignof] = ACTIONS(1441), - [anon_sym__Alignof] = ACTIONS(1441), - [anon_sym_offsetof] = ACTIONS(1441), - [anon_sym__Generic] = ACTIONS(1441), - [anon_sym_asm] = ACTIONS(1441), - [anon_sym___asm__] = ACTIONS(1441), - [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(1441), - [sym_false] = ACTIONS(1441), - [anon_sym_NULL] = ACTIONS(1441), - [anon_sym_nullptr] = ACTIONS(1441), + [sym_identifier] = ACTIONS(1436), + [aux_sym_preproc_include_token1] = ACTIONS(1436), + [aux_sym_preproc_def_token1] = ACTIONS(1436), + [aux_sym_preproc_if_token1] = ACTIONS(1436), + [aux_sym_preproc_if_token2] = ACTIONS(1436), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1436), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1436), + [aux_sym_preproc_else_token1] = ACTIONS(1436), + [aux_sym_preproc_elif_token1] = ACTIONS(1436), + [sym_preproc_directive] = ACTIONS(1436), + [anon_sym_LPAREN2] = ACTIONS(1438), + [anon_sym_BANG] = ACTIONS(1438), + [anon_sym_TILDE] = ACTIONS(1438), + [anon_sym_DASH] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1436), + [anon_sym_STAR] = ACTIONS(1438), + [anon_sym_AMP] = ACTIONS(1438), + [anon_sym_SEMI] = ACTIONS(1438), + [anon_sym___extension__] = ACTIONS(1436), + [anon_sym_typedef] = ACTIONS(1436), + [anon_sym_extern] = ACTIONS(1436), + [anon_sym___attribute__] = ACTIONS(1436), + [anon_sym___scanf] = ACTIONS(1436), + [anon_sym___printf] = ACTIONS(1436), + [anon_sym___read_mostly] = ACTIONS(1436), + [anon_sym___must_hold] = ACTIONS(1436), + [anon_sym___ro_after_init] = ACTIONS(1436), + [anon_sym___init] = ACTIONS(1436), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1438), + [anon_sym___declspec] = ACTIONS(1436), + [anon_sym___cdecl] = ACTIONS(1436), + [anon_sym___clrcall] = ACTIONS(1436), + [anon_sym___stdcall] = ACTIONS(1436), + [anon_sym___fastcall] = ACTIONS(1436), + [anon_sym___thiscall] = ACTIONS(1436), + [anon_sym___vectorcall] = ACTIONS(1436), + [anon_sym_LBRACE] = ACTIONS(1438), + [anon_sym_signed] = ACTIONS(1436), + [anon_sym_unsigned] = ACTIONS(1436), + [anon_sym_long] = ACTIONS(1436), + [anon_sym_short] = ACTIONS(1436), + [anon_sym_static] = ACTIONS(1436), + [anon_sym_auto] = ACTIONS(1436), + [anon_sym_register] = ACTIONS(1436), + [anon_sym_inline] = ACTIONS(1436), + [anon_sym___inline] = ACTIONS(1436), + [anon_sym___inline__] = ACTIONS(1436), + [anon_sym___forceinline] = ACTIONS(1436), + [anon_sym_thread_local] = ACTIONS(1436), + [anon_sym___thread] = ACTIONS(1436), + [anon_sym_const] = ACTIONS(1436), + [anon_sym_constexpr] = ACTIONS(1436), + [anon_sym_volatile] = ACTIONS(1436), + [anon_sym_restrict] = ACTIONS(1436), + [anon_sym___restrict__] = ACTIONS(1436), + [anon_sym__Atomic] = ACTIONS(1436), + [anon_sym__Noreturn] = ACTIONS(1436), + [anon_sym_noreturn] = ACTIONS(1436), + [sym_primitive_type] = ACTIONS(1436), + [anon_sym_enum] = ACTIONS(1436), + [anon_sym_struct] = ACTIONS(1436), + [anon_sym_union] = ACTIONS(1436), + [anon_sym_if] = ACTIONS(1436), + [anon_sym_switch] = ACTIONS(1436), + [anon_sym_case] = ACTIONS(1436), + [anon_sym_default] = ACTIONS(1436), + [anon_sym_while] = ACTIONS(1436), + [anon_sym_do] = ACTIONS(1436), + [anon_sym_for] = ACTIONS(1436), + [anon_sym_return] = ACTIONS(1436), + [anon_sym_break] = ACTIONS(1436), + [anon_sym_continue] = ACTIONS(1436), + [anon_sym_goto] = ACTIONS(1436), + [anon_sym___try] = ACTIONS(1436), + [anon_sym___leave] = ACTIONS(1436), + [anon_sym_DASH_DASH] = ACTIONS(1438), + [anon_sym_PLUS_PLUS] = ACTIONS(1438), + [anon_sym_sizeof] = ACTIONS(1436), + [anon_sym___alignof__] = ACTIONS(1436), + [anon_sym___alignof] = ACTIONS(1436), + [anon_sym__alignof] = ACTIONS(1436), + [anon_sym_alignof] = ACTIONS(1436), + [anon_sym__Alignof] = ACTIONS(1436), + [anon_sym_offsetof] = ACTIONS(1436), + [anon_sym__Generic] = ACTIONS(1436), + [anon_sym_asm] = ACTIONS(1436), + [anon_sym___asm__] = ACTIONS(1436), + [sym_number_literal] = ACTIONS(1438), + [anon_sym_L_SQUOTE] = ACTIONS(1438), + [anon_sym_u_SQUOTE] = ACTIONS(1438), + [anon_sym_U_SQUOTE] = ACTIONS(1438), + [anon_sym_u8_SQUOTE] = ACTIONS(1438), + [anon_sym_SQUOTE] = ACTIONS(1438), + [anon_sym_L_DQUOTE] = ACTIONS(1438), + [anon_sym_u_DQUOTE] = ACTIONS(1438), + [anon_sym_U_DQUOTE] = ACTIONS(1438), + [anon_sym_u8_DQUOTE] = ACTIONS(1438), + [anon_sym_DQUOTE] = ACTIONS(1438), + [sym_true] = ACTIONS(1436), + [sym_false] = ACTIONS(1436), + [anon_sym_NULL] = ACTIONS(1436), + [anon_sym_nullptr] = ACTIONS(1436), [sym_comment] = ACTIONS(3), }, [204] = { - [sym_identifier] = ACTIONS(1433), - [aux_sym_preproc_include_token1] = ACTIONS(1433), - [aux_sym_preproc_def_token1] = ACTIONS(1433), - [aux_sym_preproc_if_token1] = ACTIONS(1433), - [aux_sym_preproc_if_token2] = ACTIONS(1433), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1433), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1433), - [aux_sym_preproc_else_token1] = ACTIONS(1433), - [aux_sym_preproc_elif_token1] = ACTIONS(1433), - [sym_preproc_directive] = ACTIONS(1433), - [anon_sym_LPAREN2] = ACTIONS(1435), - [anon_sym_BANG] = ACTIONS(1435), - [anon_sym_TILDE] = ACTIONS(1435), - [anon_sym_DASH] = ACTIONS(1433), - [anon_sym_PLUS] = ACTIONS(1433), - [anon_sym_STAR] = ACTIONS(1435), - [anon_sym_AMP] = ACTIONS(1435), - [anon_sym_SEMI] = ACTIONS(1435), - [anon_sym___extension__] = ACTIONS(1433), - [anon_sym_typedef] = ACTIONS(1433), - [anon_sym_extern] = ACTIONS(1433), - [anon_sym___attribute__] = ACTIONS(1433), - [anon_sym___scanf] = ACTIONS(1433), - [anon_sym___printf] = ACTIONS(1433), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1435), - [anon_sym___declspec] = ACTIONS(1433), - [anon_sym___cdecl] = ACTIONS(1433), - [anon_sym___clrcall] = ACTIONS(1433), - [anon_sym___stdcall] = ACTIONS(1433), - [anon_sym___fastcall] = ACTIONS(1433), - [anon_sym___thiscall] = ACTIONS(1433), - [anon_sym___vectorcall] = ACTIONS(1433), - [anon_sym_LBRACE] = ACTIONS(1435), - [anon_sym_signed] = ACTIONS(1433), - [anon_sym_unsigned] = ACTIONS(1433), - [anon_sym_long] = ACTIONS(1433), - [anon_sym_short] = ACTIONS(1433), - [anon_sym_static] = ACTIONS(1433), - [anon_sym_auto] = ACTIONS(1433), - [anon_sym_register] = ACTIONS(1433), - [anon_sym_inline] = ACTIONS(1433), - [anon_sym___inline] = ACTIONS(1433), - [anon_sym___inline__] = ACTIONS(1433), - [anon_sym___forceinline] = ACTIONS(1433), - [anon_sym_thread_local] = ACTIONS(1433), - [anon_sym___thread] = ACTIONS(1433), - [anon_sym_const] = ACTIONS(1433), - [anon_sym_constexpr] = ACTIONS(1433), - [anon_sym_volatile] = ACTIONS(1433), - [anon_sym_restrict] = ACTIONS(1433), - [anon_sym___restrict__] = ACTIONS(1433), - [anon_sym__Atomic] = ACTIONS(1433), - [anon_sym__Noreturn] = ACTIONS(1433), - [anon_sym_noreturn] = ACTIONS(1433), - [sym_primitive_type] = ACTIONS(1433), - [anon_sym_enum] = ACTIONS(1433), - [anon_sym_struct] = ACTIONS(1433), - [anon_sym_union] = ACTIONS(1433), - [anon_sym_if] = ACTIONS(1433), - [anon_sym_switch] = ACTIONS(1433), - [anon_sym_case] = ACTIONS(1433), - [anon_sym_default] = ACTIONS(1433), - [anon_sym_while] = ACTIONS(1433), - [anon_sym_do] = ACTIONS(1433), - [anon_sym_for] = ACTIONS(1433), - [anon_sym_return] = ACTIONS(1433), - [anon_sym_break] = ACTIONS(1433), - [anon_sym_continue] = ACTIONS(1433), - [anon_sym_goto] = ACTIONS(1433), - [anon_sym___try] = ACTIONS(1433), - [anon_sym___leave] = ACTIONS(1433), - [anon_sym_DASH_DASH] = ACTIONS(1435), - [anon_sym_PLUS_PLUS] = ACTIONS(1435), - [anon_sym_sizeof] = ACTIONS(1433), - [anon_sym___alignof__] = ACTIONS(1433), - [anon_sym___alignof] = ACTIONS(1433), - [anon_sym__alignof] = ACTIONS(1433), - [anon_sym_alignof] = ACTIONS(1433), - [anon_sym__Alignof] = ACTIONS(1433), - [anon_sym_offsetof] = ACTIONS(1433), - [anon_sym__Generic] = ACTIONS(1433), - [anon_sym_asm] = ACTIONS(1433), - [anon_sym___asm__] = ACTIONS(1433), - [sym_number_literal] = ACTIONS(1435), - [anon_sym_L_SQUOTE] = ACTIONS(1435), - [anon_sym_u_SQUOTE] = ACTIONS(1435), - [anon_sym_U_SQUOTE] = ACTIONS(1435), - [anon_sym_u8_SQUOTE] = ACTIONS(1435), - [anon_sym_SQUOTE] = ACTIONS(1435), - [anon_sym_L_DQUOTE] = ACTIONS(1435), - [anon_sym_u_DQUOTE] = ACTIONS(1435), - [anon_sym_U_DQUOTE] = ACTIONS(1435), - [anon_sym_u8_DQUOTE] = ACTIONS(1435), - [anon_sym_DQUOTE] = ACTIONS(1435), - [sym_true] = ACTIONS(1433), - [sym_false] = ACTIONS(1433), - [anon_sym_NULL] = ACTIONS(1433), - [anon_sym_nullptr] = ACTIONS(1433), + [sym_identifier] = ACTIONS(1432), + [aux_sym_preproc_include_token1] = ACTIONS(1432), + [aux_sym_preproc_def_token1] = ACTIONS(1432), + [aux_sym_preproc_if_token1] = ACTIONS(1432), + [aux_sym_preproc_if_token2] = ACTIONS(1432), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1432), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1432), + [aux_sym_preproc_else_token1] = ACTIONS(1432), + [aux_sym_preproc_elif_token1] = ACTIONS(1432), + [sym_preproc_directive] = ACTIONS(1432), + [anon_sym_LPAREN2] = ACTIONS(1434), + [anon_sym_BANG] = ACTIONS(1434), + [anon_sym_TILDE] = ACTIONS(1434), + [anon_sym_DASH] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1432), + [anon_sym_STAR] = ACTIONS(1434), + [anon_sym_AMP] = ACTIONS(1434), + [anon_sym_SEMI] = ACTIONS(1434), + [anon_sym___extension__] = ACTIONS(1432), + [anon_sym_typedef] = ACTIONS(1432), + [anon_sym_extern] = ACTIONS(1432), + [anon_sym___attribute__] = ACTIONS(1432), + [anon_sym___scanf] = ACTIONS(1432), + [anon_sym___printf] = ACTIONS(1432), + [anon_sym___read_mostly] = ACTIONS(1432), + [anon_sym___must_hold] = ACTIONS(1432), + [anon_sym___ro_after_init] = ACTIONS(1432), + [anon_sym___init] = ACTIONS(1432), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1434), + [anon_sym___declspec] = ACTIONS(1432), + [anon_sym___cdecl] = ACTIONS(1432), + [anon_sym___clrcall] = ACTIONS(1432), + [anon_sym___stdcall] = ACTIONS(1432), + [anon_sym___fastcall] = ACTIONS(1432), + [anon_sym___thiscall] = ACTIONS(1432), + [anon_sym___vectorcall] = ACTIONS(1432), + [anon_sym_LBRACE] = ACTIONS(1434), + [anon_sym_signed] = ACTIONS(1432), + [anon_sym_unsigned] = ACTIONS(1432), + [anon_sym_long] = ACTIONS(1432), + [anon_sym_short] = ACTIONS(1432), + [anon_sym_static] = ACTIONS(1432), + [anon_sym_auto] = ACTIONS(1432), + [anon_sym_register] = ACTIONS(1432), + [anon_sym_inline] = ACTIONS(1432), + [anon_sym___inline] = ACTIONS(1432), + [anon_sym___inline__] = ACTIONS(1432), + [anon_sym___forceinline] = ACTIONS(1432), + [anon_sym_thread_local] = ACTIONS(1432), + [anon_sym___thread] = ACTIONS(1432), + [anon_sym_const] = ACTIONS(1432), + [anon_sym_constexpr] = ACTIONS(1432), + [anon_sym_volatile] = ACTIONS(1432), + [anon_sym_restrict] = ACTIONS(1432), + [anon_sym___restrict__] = ACTIONS(1432), + [anon_sym__Atomic] = ACTIONS(1432), + [anon_sym__Noreturn] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [sym_primitive_type] = ACTIONS(1432), + [anon_sym_enum] = ACTIONS(1432), + [anon_sym_struct] = ACTIONS(1432), + [anon_sym_union] = ACTIONS(1432), + [anon_sym_if] = ACTIONS(1432), + [anon_sym_switch] = ACTIONS(1432), + [anon_sym_case] = ACTIONS(1432), + [anon_sym_default] = ACTIONS(1432), + [anon_sym_while] = ACTIONS(1432), + [anon_sym_do] = ACTIONS(1432), + [anon_sym_for] = ACTIONS(1432), + [anon_sym_return] = ACTIONS(1432), + [anon_sym_break] = ACTIONS(1432), + [anon_sym_continue] = ACTIONS(1432), + [anon_sym_goto] = ACTIONS(1432), + [anon_sym___try] = ACTIONS(1432), + [anon_sym___leave] = ACTIONS(1432), + [anon_sym_DASH_DASH] = ACTIONS(1434), + [anon_sym_PLUS_PLUS] = ACTIONS(1434), + [anon_sym_sizeof] = ACTIONS(1432), + [anon_sym___alignof__] = ACTIONS(1432), + [anon_sym___alignof] = ACTIONS(1432), + [anon_sym__alignof] = ACTIONS(1432), + [anon_sym_alignof] = ACTIONS(1432), + [anon_sym__Alignof] = ACTIONS(1432), + [anon_sym_offsetof] = ACTIONS(1432), + [anon_sym__Generic] = ACTIONS(1432), + [anon_sym_asm] = ACTIONS(1432), + [anon_sym___asm__] = ACTIONS(1432), + [sym_number_literal] = ACTIONS(1434), + [anon_sym_L_SQUOTE] = ACTIONS(1434), + [anon_sym_u_SQUOTE] = ACTIONS(1434), + [anon_sym_U_SQUOTE] = ACTIONS(1434), + [anon_sym_u8_SQUOTE] = ACTIONS(1434), + [anon_sym_SQUOTE] = ACTIONS(1434), + [anon_sym_L_DQUOTE] = ACTIONS(1434), + [anon_sym_u_DQUOTE] = ACTIONS(1434), + [anon_sym_U_DQUOTE] = ACTIONS(1434), + [anon_sym_u8_DQUOTE] = ACTIONS(1434), + [anon_sym_DQUOTE] = ACTIONS(1434), + [sym_true] = ACTIONS(1432), + [sym_false] = ACTIONS(1432), + [anon_sym_NULL] = ACTIONS(1432), + [anon_sym_nullptr] = ACTIONS(1432), [sym_comment] = ACTIONS(3), }, [205] = { - [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_if_token2] = ACTIONS(1449), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1449), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1449), - [aux_sym_preproc_else_token1] = ACTIONS(1449), - [aux_sym_preproc_elif_token1] = ACTIONS(1449), - [sym_preproc_directive] = ACTIONS(1449), - [anon_sym_LPAREN2] = ACTIONS(1451), - [anon_sym_BANG] = ACTIONS(1451), - [anon_sym_TILDE] = ACTIONS(1451), - [anon_sym_DASH] = ACTIONS(1449), - [anon_sym_PLUS] = ACTIONS(1449), - [anon_sym_STAR] = ACTIONS(1451), - [anon_sym_AMP] = ACTIONS(1451), - [anon_sym_SEMI] = ACTIONS(1451), - [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_LBRACK_LBRACK] = ACTIONS(1451), - [anon_sym___declspec] = 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(1451), - [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), - [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___try] = ACTIONS(1449), - [anon_sym___leave] = ACTIONS(1449), - [anon_sym_DASH_DASH] = ACTIONS(1451), - [anon_sym_PLUS_PLUS] = ACTIONS(1451), - [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(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(1449), - [sym_false] = ACTIONS(1449), - [anon_sym_NULL] = ACTIONS(1449), - [anon_sym_nullptr] = ACTIONS(1449), + [sym_identifier] = ACTIONS(1512), + [aux_sym_preproc_include_token1] = ACTIONS(1512), + [aux_sym_preproc_def_token1] = ACTIONS(1512), + [aux_sym_preproc_if_token1] = ACTIONS(1512), + [aux_sym_preproc_if_token2] = ACTIONS(1512), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1512), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1512), + [aux_sym_preproc_else_token1] = ACTIONS(1512), + [aux_sym_preproc_elif_token1] = ACTIONS(1512), + [sym_preproc_directive] = ACTIONS(1512), + [anon_sym_LPAREN2] = ACTIONS(1514), + [anon_sym_BANG] = ACTIONS(1514), + [anon_sym_TILDE] = ACTIONS(1514), + [anon_sym_DASH] = ACTIONS(1512), + [anon_sym_PLUS] = ACTIONS(1512), + [anon_sym_STAR] = ACTIONS(1514), + [anon_sym_AMP] = ACTIONS(1514), + [anon_sym_SEMI] = ACTIONS(1514), + [anon_sym___extension__] = ACTIONS(1512), + [anon_sym_typedef] = ACTIONS(1512), + [anon_sym_extern] = ACTIONS(1512), + [anon_sym___attribute__] = ACTIONS(1512), + [anon_sym___scanf] = ACTIONS(1512), + [anon_sym___printf] = ACTIONS(1512), + [anon_sym___read_mostly] = ACTIONS(1512), + [anon_sym___must_hold] = ACTIONS(1512), + [anon_sym___ro_after_init] = ACTIONS(1512), + [anon_sym___init] = ACTIONS(1512), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1514), + [anon_sym___declspec] = ACTIONS(1512), + [anon_sym___cdecl] = ACTIONS(1512), + [anon_sym___clrcall] = ACTIONS(1512), + [anon_sym___stdcall] = ACTIONS(1512), + [anon_sym___fastcall] = ACTIONS(1512), + [anon_sym___thiscall] = ACTIONS(1512), + [anon_sym___vectorcall] = ACTIONS(1512), + [anon_sym_LBRACE] = ACTIONS(1514), + [anon_sym_signed] = ACTIONS(1512), + [anon_sym_unsigned] = ACTIONS(1512), + [anon_sym_long] = ACTIONS(1512), + [anon_sym_short] = ACTIONS(1512), + [anon_sym_static] = ACTIONS(1512), + [anon_sym_auto] = ACTIONS(1512), + [anon_sym_register] = ACTIONS(1512), + [anon_sym_inline] = ACTIONS(1512), + [anon_sym___inline] = ACTIONS(1512), + [anon_sym___inline__] = ACTIONS(1512), + [anon_sym___forceinline] = ACTIONS(1512), + [anon_sym_thread_local] = ACTIONS(1512), + [anon_sym___thread] = ACTIONS(1512), + [anon_sym_const] = ACTIONS(1512), + [anon_sym_constexpr] = ACTIONS(1512), + [anon_sym_volatile] = ACTIONS(1512), + [anon_sym_restrict] = ACTIONS(1512), + [anon_sym___restrict__] = ACTIONS(1512), + [anon_sym__Atomic] = ACTIONS(1512), + [anon_sym__Noreturn] = ACTIONS(1512), + [anon_sym_noreturn] = ACTIONS(1512), + [sym_primitive_type] = ACTIONS(1512), + [anon_sym_enum] = ACTIONS(1512), + [anon_sym_struct] = ACTIONS(1512), + [anon_sym_union] = ACTIONS(1512), + [anon_sym_if] = ACTIONS(1512), + [anon_sym_switch] = ACTIONS(1512), + [anon_sym_case] = ACTIONS(1512), + [anon_sym_default] = ACTIONS(1512), + [anon_sym_while] = ACTIONS(1512), + [anon_sym_do] = ACTIONS(1512), + [anon_sym_for] = ACTIONS(1512), + [anon_sym_return] = ACTIONS(1512), + [anon_sym_break] = ACTIONS(1512), + [anon_sym_continue] = ACTIONS(1512), + [anon_sym_goto] = ACTIONS(1512), + [anon_sym___try] = ACTIONS(1512), + [anon_sym___leave] = ACTIONS(1512), + [anon_sym_DASH_DASH] = ACTIONS(1514), + [anon_sym_PLUS_PLUS] = ACTIONS(1514), + [anon_sym_sizeof] = ACTIONS(1512), + [anon_sym___alignof__] = ACTIONS(1512), + [anon_sym___alignof] = ACTIONS(1512), + [anon_sym__alignof] = ACTIONS(1512), + [anon_sym_alignof] = ACTIONS(1512), + [anon_sym__Alignof] = ACTIONS(1512), + [anon_sym_offsetof] = ACTIONS(1512), + [anon_sym__Generic] = ACTIONS(1512), + [anon_sym_asm] = ACTIONS(1512), + [anon_sym___asm__] = ACTIONS(1512), + [sym_number_literal] = ACTIONS(1514), + [anon_sym_L_SQUOTE] = ACTIONS(1514), + [anon_sym_u_SQUOTE] = ACTIONS(1514), + [anon_sym_U_SQUOTE] = ACTIONS(1514), + [anon_sym_u8_SQUOTE] = ACTIONS(1514), + [anon_sym_SQUOTE] = ACTIONS(1514), + [anon_sym_L_DQUOTE] = ACTIONS(1514), + [anon_sym_u_DQUOTE] = ACTIONS(1514), + [anon_sym_U_DQUOTE] = ACTIONS(1514), + [anon_sym_u8_DQUOTE] = ACTIONS(1514), + [anon_sym_DQUOTE] = ACTIONS(1514), + [sym_true] = ACTIONS(1512), + [sym_false] = ACTIONS(1512), + [anon_sym_NULL] = ACTIONS(1512), + [anon_sym_nullptr] = ACTIONS(1512), [sym_comment] = ACTIONS(3), }, [206] = { - [sym_identifier] = ACTIONS(1437), - [aux_sym_preproc_include_token1] = ACTIONS(1437), - [aux_sym_preproc_def_token1] = ACTIONS(1437), - [aux_sym_preproc_if_token1] = ACTIONS(1437), - [aux_sym_preproc_if_token2] = ACTIONS(1437), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1437), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1437), - [aux_sym_preproc_else_token1] = ACTIONS(1437), - [aux_sym_preproc_elif_token1] = ACTIONS(1437), - [sym_preproc_directive] = ACTIONS(1437), - [anon_sym_LPAREN2] = ACTIONS(1439), - [anon_sym_BANG] = ACTIONS(1439), - [anon_sym_TILDE] = ACTIONS(1439), - [anon_sym_DASH] = ACTIONS(1437), - [anon_sym_PLUS] = ACTIONS(1437), - [anon_sym_STAR] = ACTIONS(1439), - [anon_sym_AMP] = ACTIONS(1439), - [anon_sym_SEMI] = ACTIONS(1439), - [anon_sym___extension__] = ACTIONS(1437), - [anon_sym_typedef] = ACTIONS(1437), - [anon_sym_extern] = ACTIONS(1437), - [anon_sym___attribute__] = ACTIONS(1437), - [anon_sym___scanf] = ACTIONS(1437), - [anon_sym___printf] = ACTIONS(1437), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1439), - [anon_sym___declspec] = ACTIONS(1437), - [anon_sym___cdecl] = ACTIONS(1437), - [anon_sym___clrcall] = ACTIONS(1437), - [anon_sym___stdcall] = ACTIONS(1437), - [anon_sym___fastcall] = ACTIONS(1437), - [anon_sym___thiscall] = ACTIONS(1437), - [anon_sym___vectorcall] = ACTIONS(1437), - [anon_sym_LBRACE] = ACTIONS(1439), - [anon_sym_signed] = ACTIONS(1437), - [anon_sym_unsigned] = ACTIONS(1437), - [anon_sym_long] = ACTIONS(1437), - [anon_sym_short] = ACTIONS(1437), - [anon_sym_static] = ACTIONS(1437), - [anon_sym_auto] = ACTIONS(1437), - [anon_sym_register] = ACTIONS(1437), - [anon_sym_inline] = ACTIONS(1437), - [anon_sym___inline] = ACTIONS(1437), - [anon_sym___inline__] = ACTIONS(1437), - [anon_sym___forceinline] = ACTIONS(1437), - [anon_sym_thread_local] = ACTIONS(1437), - [anon_sym___thread] = ACTIONS(1437), - [anon_sym_const] = ACTIONS(1437), - [anon_sym_constexpr] = ACTIONS(1437), - [anon_sym_volatile] = ACTIONS(1437), - [anon_sym_restrict] = ACTIONS(1437), - [anon_sym___restrict__] = ACTIONS(1437), - [anon_sym__Atomic] = ACTIONS(1437), - [anon_sym__Noreturn] = ACTIONS(1437), - [anon_sym_noreturn] = ACTIONS(1437), - [sym_primitive_type] = ACTIONS(1437), - [anon_sym_enum] = ACTIONS(1437), - [anon_sym_struct] = ACTIONS(1437), - [anon_sym_union] = ACTIONS(1437), - [anon_sym_if] = ACTIONS(1437), - [anon_sym_switch] = ACTIONS(1437), - [anon_sym_case] = ACTIONS(1437), - [anon_sym_default] = ACTIONS(1437), - [anon_sym_while] = ACTIONS(1437), - [anon_sym_do] = ACTIONS(1437), - [anon_sym_for] = ACTIONS(1437), - [anon_sym_return] = ACTIONS(1437), - [anon_sym_break] = ACTIONS(1437), - [anon_sym_continue] = ACTIONS(1437), - [anon_sym_goto] = ACTIONS(1437), - [anon_sym___try] = ACTIONS(1437), - [anon_sym___leave] = ACTIONS(1437), - [anon_sym_DASH_DASH] = ACTIONS(1439), - [anon_sym_PLUS_PLUS] = ACTIONS(1439), - [anon_sym_sizeof] = ACTIONS(1437), - [anon_sym___alignof__] = ACTIONS(1437), - [anon_sym___alignof] = ACTIONS(1437), - [anon_sym__alignof] = ACTIONS(1437), - [anon_sym_alignof] = ACTIONS(1437), - [anon_sym__Alignof] = ACTIONS(1437), - [anon_sym_offsetof] = ACTIONS(1437), - [anon_sym__Generic] = ACTIONS(1437), - [anon_sym_asm] = ACTIONS(1437), - [anon_sym___asm__] = ACTIONS(1437), - [sym_number_literal] = ACTIONS(1439), - [anon_sym_L_SQUOTE] = ACTIONS(1439), - [anon_sym_u_SQUOTE] = ACTIONS(1439), - [anon_sym_U_SQUOTE] = ACTIONS(1439), - [anon_sym_u8_SQUOTE] = ACTIONS(1439), - [anon_sym_SQUOTE] = ACTIONS(1439), - [anon_sym_L_DQUOTE] = ACTIONS(1439), - [anon_sym_u_DQUOTE] = ACTIONS(1439), - [anon_sym_U_DQUOTE] = ACTIONS(1439), - [anon_sym_u8_DQUOTE] = ACTIONS(1439), - [anon_sym_DQUOTE] = ACTIONS(1439), - [sym_true] = ACTIONS(1437), - [sym_false] = ACTIONS(1437), - [anon_sym_NULL] = ACTIONS(1437), - [anon_sym_nullptr] = ACTIONS(1437), + [sym_identifier] = ACTIONS(1440), + [aux_sym_preproc_include_token1] = ACTIONS(1440), + [aux_sym_preproc_def_token1] = ACTIONS(1440), + [aux_sym_preproc_if_token1] = ACTIONS(1440), + [aux_sym_preproc_if_token2] = ACTIONS(1440), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1440), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1440), + [aux_sym_preproc_else_token1] = ACTIONS(1440), + [aux_sym_preproc_elif_token1] = ACTIONS(1440), + [sym_preproc_directive] = ACTIONS(1440), + [anon_sym_LPAREN2] = ACTIONS(1442), + [anon_sym_BANG] = ACTIONS(1442), + [anon_sym_TILDE] = ACTIONS(1442), + [anon_sym_DASH] = ACTIONS(1440), + [anon_sym_PLUS] = ACTIONS(1440), + [anon_sym_STAR] = ACTIONS(1442), + [anon_sym_AMP] = ACTIONS(1442), + [anon_sym_SEMI] = ACTIONS(1442), + [anon_sym___extension__] = ACTIONS(1440), + [anon_sym_typedef] = ACTIONS(1440), + [anon_sym_extern] = ACTIONS(1440), + [anon_sym___attribute__] = ACTIONS(1440), + [anon_sym___scanf] = ACTIONS(1440), + [anon_sym___printf] = ACTIONS(1440), + [anon_sym___read_mostly] = ACTIONS(1440), + [anon_sym___must_hold] = ACTIONS(1440), + [anon_sym___ro_after_init] = ACTIONS(1440), + [anon_sym___init] = ACTIONS(1440), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1442), + [anon_sym___declspec] = ACTIONS(1440), + [anon_sym___cdecl] = ACTIONS(1440), + [anon_sym___clrcall] = ACTIONS(1440), + [anon_sym___stdcall] = ACTIONS(1440), + [anon_sym___fastcall] = ACTIONS(1440), + [anon_sym___thiscall] = ACTIONS(1440), + [anon_sym___vectorcall] = ACTIONS(1440), + [anon_sym_LBRACE] = ACTIONS(1442), + [anon_sym_signed] = ACTIONS(1440), + [anon_sym_unsigned] = ACTIONS(1440), + [anon_sym_long] = ACTIONS(1440), + [anon_sym_short] = ACTIONS(1440), + [anon_sym_static] = ACTIONS(1440), + [anon_sym_auto] = ACTIONS(1440), + [anon_sym_register] = ACTIONS(1440), + [anon_sym_inline] = ACTIONS(1440), + [anon_sym___inline] = ACTIONS(1440), + [anon_sym___inline__] = ACTIONS(1440), + [anon_sym___forceinline] = ACTIONS(1440), + [anon_sym_thread_local] = ACTIONS(1440), + [anon_sym___thread] = ACTIONS(1440), + [anon_sym_const] = ACTIONS(1440), + [anon_sym_constexpr] = ACTIONS(1440), + [anon_sym_volatile] = ACTIONS(1440), + [anon_sym_restrict] = ACTIONS(1440), + [anon_sym___restrict__] = ACTIONS(1440), + [anon_sym__Atomic] = ACTIONS(1440), + [anon_sym__Noreturn] = ACTIONS(1440), + [anon_sym_noreturn] = ACTIONS(1440), + [sym_primitive_type] = ACTIONS(1440), + [anon_sym_enum] = ACTIONS(1440), + [anon_sym_struct] = ACTIONS(1440), + [anon_sym_union] = ACTIONS(1440), + [anon_sym_if] = ACTIONS(1440), + [anon_sym_switch] = ACTIONS(1440), + [anon_sym_case] = ACTIONS(1440), + [anon_sym_default] = ACTIONS(1440), + [anon_sym_while] = ACTIONS(1440), + [anon_sym_do] = ACTIONS(1440), + [anon_sym_for] = ACTIONS(1440), + [anon_sym_return] = ACTIONS(1440), + [anon_sym_break] = ACTIONS(1440), + [anon_sym_continue] = ACTIONS(1440), + [anon_sym_goto] = ACTIONS(1440), + [anon_sym___try] = ACTIONS(1440), + [anon_sym___leave] = ACTIONS(1440), + [anon_sym_DASH_DASH] = ACTIONS(1442), + [anon_sym_PLUS_PLUS] = ACTIONS(1442), + [anon_sym_sizeof] = ACTIONS(1440), + [anon_sym___alignof__] = ACTIONS(1440), + [anon_sym___alignof] = ACTIONS(1440), + [anon_sym__alignof] = ACTIONS(1440), + [anon_sym_alignof] = ACTIONS(1440), + [anon_sym__Alignof] = ACTIONS(1440), + [anon_sym_offsetof] = ACTIONS(1440), + [anon_sym__Generic] = ACTIONS(1440), + [anon_sym_asm] = ACTIONS(1440), + [anon_sym___asm__] = ACTIONS(1440), + [sym_number_literal] = ACTIONS(1442), + [anon_sym_L_SQUOTE] = ACTIONS(1442), + [anon_sym_u_SQUOTE] = ACTIONS(1442), + [anon_sym_U_SQUOTE] = ACTIONS(1442), + [anon_sym_u8_SQUOTE] = ACTIONS(1442), + [anon_sym_SQUOTE] = ACTIONS(1442), + [anon_sym_L_DQUOTE] = ACTIONS(1442), + [anon_sym_u_DQUOTE] = ACTIONS(1442), + [anon_sym_U_DQUOTE] = ACTIONS(1442), + [anon_sym_u8_DQUOTE] = ACTIONS(1442), + [anon_sym_DQUOTE] = ACTIONS(1442), + [sym_true] = ACTIONS(1440), + [sym_false] = ACTIONS(1440), + [anon_sym_NULL] = ACTIONS(1440), + [anon_sym_nullptr] = ACTIONS(1440), [sym_comment] = ACTIONS(3), }, [207] = { - [sym_identifier] = ACTIONS(1511), - [aux_sym_preproc_include_token1] = ACTIONS(1511), - [aux_sym_preproc_def_token1] = ACTIONS(1511), - [aux_sym_preproc_if_token1] = ACTIONS(1511), - [aux_sym_preproc_if_token2] = ACTIONS(1511), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1511), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1511), - [aux_sym_preproc_else_token1] = ACTIONS(1511), - [aux_sym_preproc_elif_token1] = ACTIONS(1511), - [sym_preproc_directive] = ACTIONS(1511), - [anon_sym_LPAREN2] = ACTIONS(1513), - [anon_sym_BANG] = ACTIONS(1513), - [anon_sym_TILDE] = ACTIONS(1513), - [anon_sym_DASH] = ACTIONS(1511), - [anon_sym_PLUS] = ACTIONS(1511), - [anon_sym_STAR] = ACTIONS(1513), - [anon_sym_AMP] = ACTIONS(1513), - [anon_sym_SEMI] = ACTIONS(1513), - [anon_sym___extension__] = ACTIONS(1511), - [anon_sym_typedef] = ACTIONS(1511), - [anon_sym_extern] = ACTIONS(1511), - [anon_sym___attribute__] = ACTIONS(1511), - [anon_sym___scanf] = ACTIONS(1511), - [anon_sym___printf] = ACTIONS(1511), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1513), - [anon_sym___declspec] = ACTIONS(1511), - [anon_sym___cdecl] = ACTIONS(1511), - [anon_sym___clrcall] = ACTIONS(1511), - [anon_sym___stdcall] = ACTIONS(1511), - [anon_sym___fastcall] = ACTIONS(1511), - [anon_sym___thiscall] = ACTIONS(1511), - [anon_sym___vectorcall] = ACTIONS(1511), - [anon_sym_LBRACE] = ACTIONS(1513), - [anon_sym_signed] = ACTIONS(1511), - [anon_sym_unsigned] = ACTIONS(1511), - [anon_sym_long] = ACTIONS(1511), - [anon_sym_short] = ACTIONS(1511), - [anon_sym_static] = ACTIONS(1511), - [anon_sym_auto] = ACTIONS(1511), - [anon_sym_register] = ACTIONS(1511), - [anon_sym_inline] = ACTIONS(1511), - [anon_sym___inline] = ACTIONS(1511), - [anon_sym___inline__] = ACTIONS(1511), - [anon_sym___forceinline] = ACTIONS(1511), - [anon_sym_thread_local] = ACTIONS(1511), - [anon_sym___thread] = ACTIONS(1511), - [anon_sym_const] = ACTIONS(1511), - [anon_sym_constexpr] = ACTIONS(1511), - [anon_sym_volatile] = ACTIONS(1511), - [anon_sym_restrict] = ACTIONS(1511), - [anon_sym___restrict__] = ACTIONS(1511), - [anon_sym__Atomic] = ACTIONS(1511), - [anon_sym__Noreturn] = ACTIONS(1511), - [anon_sym_noreturn] = ACTIONS(1511), - [sym_primitive_type] = ACTIONS(1511), - [anon_sym_enum] = ACTIONS(1511), - [anon_sym_struct] = ACTIONS(1511), - [anon_sym_union] = ACTIONS(1511), - [anon_sym_if] = ACTIONS(1511), - [anon_sym_switch] = ACTIONS(1511), - [anon_sym_case] = ACTIONS(1511), - [anon_sym_default] = ACTIONS(1511), - [anon_sym_while] = ACTIONS(1511), - [anon_sym_do] = ACTIONS(1511), - [anon_sym_for] = ACTIONS(1511), - [anon_sym_return] = ACTIONS(1511), - [anon_sym_break] = ACTIONS(1511), - [anon_sym_continue] = ACTIONS(1511), - [anon_sym_goto] = ACTIONS(1511), - [anon_sym___try] = ACTIONS(1511), - [anon_sym___leave] = ACTIONS(1511), - [anon_sym_DASH_DASH] = ACTIONS(1513), - [anon_sym_PLUS_PLUS] = ACTIONS(1513), - [anon_sym_sizeof] = ACTIONS(1511), - [anon_sym___alignof__] = ACTIONS(1511), - [anon_sym___alignof] = ACTIONS(1511), - [anon_sym__alignof] = ACTIONS(1511), - [anon_sym_alignof] = ACTIONS(1511), - [anon_sym__Alignof] = ACTIONS(1511), - [anon_sym_offsetof] = ACTIONS(1511), - [anon_sym__Generic] = ACTIONS(1511), - [anon_sym_asm] = ACTIONS(1511), - [anon_sym___asm__] = ACTIONS(1511), - [sym_number_literal] = ACTIONS(1513), - [anon_sym_L_SQUOTE] = ACTIONS(1513), - [anon_sym_u_SQUOTE] = ACTIONS(1513), - [anon_sym_U_SQUOTE] = ACTIONS(1513), - [anon_sym_u8_SQUOTE] = ACTIONS(1513), - [anon_sym_SQUOTE] = ACTIONS(1513), - [anon_sym_L_DQUOTE] = ACTIONS(1513), - [anon_sym_u_DQUOTE] = ACTIONS(1513), - [anon_sym_U_DQUOTE] = ACTIONS(1513), - [anon_sym_u8_DQUOTE] = ACTIONS(1513), - [anon_sym_DQUOTE] = ACTIONS(1513), - [sym_true] = ACTIONS(1511), - [sym_false] = ACTIONS(1511), - [anon_sym_NULL] = ACTIONS(1511), - [anon_sym_nullptr] = ACTIONS(1511), + [sym_identifier] = ACTIONS(1448), + [aux_sym_preproc_include_token1] = ACTIONS(1448), + [aux_sym_preproc_def_token1] = ACTIONS(1448), + [aux_sym_preproc_if_token1] = ACTIONS(1448), + [aux_sym_preproc_if_token2] = ACTIONS(1448), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1448), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1448), + [aux_sym_preproc_else_token1] = ACTIONS(1448), + [aux_sym_preproc_elif_token1] = ACTIONS(1448), + [sym_preproc_directive] = ACTIONS(1448), + [anon_sym_LPAREN2] = ACTIONS(1450), + [anon_sym_BANG] = ACTIONS(1450), + [anon_sym_TILDE] = ACTIONS(1450), + [anon_sym_DASH] = ACTIONS(1448), + [anon_sym_PLUS] = ACTIONS(1448), + [anon_sym_STAR] = ACTIONS(1450), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_SEMI] = ACTIONS(1450), + [anon_sym___extension__] = ACTIONS(1448), + [anon_sym_typedef] = ACTIONS(1448), + [anon_sym_extern] = ACTIONS(1448), + [anon_sym___attribute__] = ACTIONS(1448), + [anon_sym___scanf] = ACTIONS(1448), + [anon_sym___printf] = ACTIONS(1448), + [anon_sym___read_mostly] = ACTIONS(1448), + [anon_sym___must_hold] = ACTIONS(1448), + [anon_sym___ro_after_init] = ACTIONS(1448), + [anon_sym___init] = ACTIONS(1448), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1450), + [anon_sym___declspec] = ACTIONS(1448), + [anon_sym___cdecl] = ACTIONS(1448), + [anon_sym___clrcall] = ACTIONS(1448), + [anon_sym___stdcall] = ACTIONS(1448), + [anon_sym___fastcall] = ACTIONS(1448), + [anon_sym___thiscall] = ACTIONS(1448), + [anon_sym___vectorcall] = ACTIONS(1448), + [anon_sym_LBRACE] = ACTIONS(1450), + [anon_sym_signed] = ACTIONS(1448), + [anon_sym_unsigned] = ACTIONS(1448), + [anon_sym_long] = ACTIONS(1448), + [anon_sym_short] = ACTIONS(1448), + [anon_sym_static] = ACTIONS(1448), + [anon_sym_auto] = ACTIONS(1448), + [anon_sym_register] = ACTIONS(1448), + [anon_sym_inline] = ACTIONS(1448), + [anon_sym___inline] = ACTIONS(1448), + [anon_sym___inline__] = ACTIONS(1448), + [anon_sym___forceinline] = ACTIONS(1448), + [anon_sym_thread_local] = ACTIONS(1448), + [anon_sym___thread] = ACTIONS(1448), + [anon_sym_const] = ACTIONS(1448), + [anon_sym_constexpr] = ACTIONS(1448), + [anon_sym_volatile] = ACTIONS(1448), + [anon_sym_restrict] = ACTIONS(1448), + [anon_sym___restrict__] = ACTIONS(1448), + [anon_sym__Atomic] = ACTIONS(1448), + [anon_sym__Noreturn] = ACTIONS(1448), + [anon_sym_noreturn] = ACTIONS(1448), + [sym_primitive_type] = ACTIONS(1448), + [anon_sym_enum] = ACTIONS(1448), + [anon_sym_struct] = ACTIONS(1448), + [anon_sym_union] = ACTIONS(1448), + [anon_sym_if] = ACTIONS(1448), + [anon_sym_switch] = ACTIONS(1448), + [anon_sym_case] = ACTIONS(1448), + [anon_sym_default] = ACTIONS(1448), + [anon_sym_while] = ACTIONS(1448), + [anon_sym_do] = ACTIONS(1448), + [anon_sym_for] = ACTIONS(1448), + [anon_sym_return] = ACTIONS(1448), + [anon_sym_break] = ACTIONS(1448), + [anon_sym_continue] = ACTIONS(1448), + [anon_sym_goto] = ACTIONS(1448), + [anon_sym___try] = ACTIONS(1448), + [anon_sym___leave] = ACTIONS(1448), + [anon_sym_DASH_DASH] = ACTIONS(1450), + [anon_sym_PLUS_PLUS] = ACTIONS(1450), + [anon_sym_sizeof] = ACTIONS(1448), + [anon_sym___alignof__] = ACTIONS(1448), + [anon_sym___alignof] = ACTIONS(1448), + [anon_sym__alignof] = ACTIONS(1448), + [anon_sym_alignof] = ACTIONS(1448), + [anon_sym__Alignof] = ACTIONS(1448), + [anon_sym_offsetof] = ACTIONS(1448), + [anon_sym__Generic] = ACTIONS(1448), + [anon_sym_asm] = ACTIONS(1448), + [anon_sym___asm__] = ACTIONS(1448), + [sym_number_literal] = ACTIONS(1450), + [anon_sym_L_SQUOTE] = ACTIONS(1450), + [anon_sym_u_SQUOTE] = ACTIONS(1450), + [anon_sym_U_SQUOTE] = ACTIONS(1450), + [anon_sym_u8_SQUOTE] = ACTIONS(1450), + [anon_sym_SQUOTE] = ACTIONS(1450), + [anon_sym_L_DQUOTE] = ACTIONS(1450), + [anon_sym_u_DQUOTE] = ACTIONS(1450), + [anon_sym_U_DQUOTE] = ACTIONS(1450), + [anon_sym_u8_DQUOTE] = ACTIONS(1450), + [anon_sym_DQUOTE] = ACTIONS(1450), + [sym_true] = ACTIONS(1448), + [sym_false] = ACTIONS(1448), + [anon_sym_NULL] = ACTIONS(1448), + [anon_sym_nullptr] = ACTIONS(1448), [sym_comment] = ACTIONS(3), }, [208] = { - [sym_else_clause] = STATE(269), - [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_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), - [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_else] = ACTIONS(1519), - [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_identifier] = ACTIONS(1484), + [aux_sym_preproc_include_token1] = ACTIONS(1484), + [aux_sym_preproc_def_token1] = ACTIONS(1484), + [aux_sym_preproc_if_token1] = ACTIONS(1484), + [aux_sym_preproc_if_token2] = ACTIONS(1484), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1484), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1484), + [aux_sym_preproc_else_token1] = ACTIONS(1484), + [aux_sym_preproc_elif_token1] = ACTIONS(1484), + [sym_preproc_directive] = ACTIONS(1484), + [anon_sym_LPAREN2] = ACTIONS(1486), + [anon_sym_BANG] = ACTIONS(1486), + [anon_sym_TILDE] = ACTIONS(1486), + [anon_sym_DASH] = ACTIONS(1484), + [anon_sym_PLUS] = ACTIONS(1484), + [anon_sym_STAR] = ACTIONS(1486), + [anon_sym_AMP] = ACTIONS(1486), + [anon_sym_SEMI] = ACTIONS(1486), + [anon_sym___extension__] = ACTIONS(1484), + [anon_sym_typedef] = ACTIONS(1484), + [anon_sym_extern] = ACTIONS(1484), + [anon_sym___attribute__] = ACTIONS(1484), + [anon_sym___scanf] = ACTIONS(1484), + [anon_sym___printf] = ACTIONS(1484), + [anon_sym___read_mostly] = ACTIONS(1484), + [anon_sym___must_hold] = ACTIONS(1484), + [anon_sym___ro_after_init] = ACTIONS(1484), + [anon_sym___init] = ACTIONS(1484), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1486), + [anon_sym___declspec] = ACTIONS(1484), + [anon_sym___cdecl] = ACTIONS(1484), + [anon_sym___clrcall] = ACTIONS(1484), + [anon_sym___stdcall] = ACTIONS(1484), + [anon_sym___fastcall] = ACTIONS(1484), + [anon_sym___thiscall] = ACTIONS(1484), + [anon_sym___vectorcall] = ACTIONS(1484), + [anon_sym_LBRACE] = ACTIONS(1486), + [anon_sym_signed] = ACTIONS(1484), + [anon_sym_unsigned] = ACTIONS(1484), + [anon_sym_long] = ACTIONS(1484), + [anon_sym_short] = ACTIONS(1484), + [anon_sym_static] = ACTIONS(1484), + [anon_sym_auto] = ACTIONS(1484), + [anon_sym_register] = ACTIONS(1484), + [anon_sym_inline] = ACTIONS(1484), + [anon_sym___inline] = ACTIONS(1484), + [anon_sym___inline__] = ACTIONS(1484), + [anon_sym___forceinline] = ACTIONS(1484), + [anon_sym_thread_local] = ACTIONS(1484), + [anon_sym___thread] = ACTIONS(1484), + [anon_sym_const] = ACTIONS(1484), + [anon_sym_constexpr] = ACTIONS(1484), + [anon_sym_volatile] = ACTIONS(1484), + [anon_sym_restrict] = ACTIONS(1484), + [anon_sym___restrict__] = ACTIONS(1484), + [anon_sym__Atomic] = ACTIONS(1484), + [anon_sym__Noreturn] = ACTIONS(1484), + [anon_sym_noreturn] = ACTIONS(1484), + [sym_primitive_type] = ACTIONS(1484), + [anon_sym_enum] = ACTIONS(1484), + [anon_sym_struct] = ACTIONS(1484), + [anon_sym_union] = ACTIONS(1484), + [anon_sym_if] = ACTIONS(1484), + [anon_sym_switch] = ACTIONS(1484), + [anon_sym_case] = ACTIONS(1484), + [anon_sym_default] = ACTIONS(1484), + [anon_sym_while] = ACTIONS(1484), + [anon_sym_do] = ACTIONS(1484), + [anon_sym_for] = ACTIONS(1484), + [anon_sym_return] = ACTIONS(1484), + [anon_sym_break] = ACTIONS(1484), + [anon_sym_continue] = ACTIONS(1484), + [anon_sym_goto] = ACTIONS(1484), + [anon_sym___try] = ACTIONS(1484), + [anon_sym___leave] = ACTIONS(1484), + [anon_sym_DASH_DASH] = ACTIONS(1486), + [anon_sym_PLUS_PLUS] = ACTIONS(1486), + [anon_sym_sizeof] = ACTIONS(1484), + [anon_sym___alignof__] = ACTIONS(1484), + [anon_sym___alignof] = ACTIONS(1484), + [anon_sym__alignof] = ACTIONS(1484), + [anon_sym_alignof] = ACTIONS(1484), + [anon_sym__Alignof] = ACTIONS(1484), + [anon_sym_offsetof] = ACTIONS(1484), + [anon_sym__Generic] = ACTIONS(1484), + [anon_sym_asm] = ACTIONS(1484), + [anon_sym___asm__] = ACTIONS(1484), + [sym_number_literal] = ACTIONS(1486), + [anon_sym_L_SQUOTE] = ACTIONS(1486), + [anon_sym_u_SQUOTE] = ACTIONS(1486), + [anon_sym_U_SQUOTE] = ACTIONS(1486), + [anon_sym_u8_SQUOTE] = ACTIONS(1486), + [anon_sym_SQUOTE] = ACTIONS(1486), + [anon_sym_L_DQUOTE] = ACTIONS(1486), + [anon_sym_u_DQUOTE] = ACTIONS(1486), + [anon_sym_U_DQUOTE] = ACTIONS(1486), + [anon_sym_u8_DQUOTE] = ACTIONS(1486), + [anon_sym_DQUOTE] = ACTIONS(1486), + [sym_true] = ACTIONS(1484), + [sym_false] = ACTIONS(1484), + [anon_sym_NULL] = ACTIONS(1484), + [anon_sym_nullptr] = ACTIONS(1484), [sym_comment] = ACTIONS(3), }, [209] = { - [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_if_token2] = ACTIONS(1445), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1445), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1445), - [aux_sym_preproc_else_token1] = ACTIONS(1445), - [aux_sym_preproc_elif_token1] = ACTIONS(1445), - [sym_preproc_directive] = ACTIONS(1445), - [anon_sym_LPAREN2] = ACTIONS(1447), - [anon_sym_BANG] = ACTIONS(1447), - [anon_sym_TILDE] = ACTIONS(1447), - [anon_sym_DASH] = ACTIONS(1445), - [anon_sym_PLUS] = ACTIONS(1445), - [anon_sym_STAR] = ACTIONS(1447), - [anon_sym_AMP] = ACTIONS(1447), - [anon_sym_SEMI] = ACTIONS(1447), - [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_LBRACK_LBRACK] = ACTIONS(1447), - [anon_sym___declspec] = 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(1447), - [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), - [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___try] = ACTIONS(1445), - [anon_sym___leave] = ACTIONS(1445), - [anon_sym_DASH_DASH] = ACTIONS(1447), - [anon_sym_PLUS_PLUS] = ACTIONS(1447), - [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(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(1445), - [sym_false] = ACTIONS(1445), - [anon_sym_NULL] = ACTIONS(1445), - [anon_sym_nullptr] = ACTIONS(1445), + [sym_identifier] = ACTIONS(1456), + [aux_sym_preproc_include_token1] = ACTIONS(1456), + [aux_sym_preproc_def_token1] = ACTIONS(1456), + [aux_sym_preproc_if_token1] = ACTIONS(1456), + [aux_sym_preproc_if_token2] = ACTIONS(1456), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1456), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1456), + [aux_sym_preproc_else_token1] = ACTIONS(1456), + [aux_sym_preproc_elif_token1] = ACTIONS(1456), + [sym_preproc_directive] = ACTIONS(1456), + [anon_sym_LPAREN2] = ACTIONS(1458), + [anon_sym_BANG] = ACTIONS(1458), + [anon_sym_TILDE] = ACTIONS(1458), + [anon_sym_DASH] = ACTIONS(1456), + [anon_sym_PLUS] = ACTIONS(1456), + [anon_sym_STAR] = ACTIONS(1458), + [anon_sym_AMP] = ACTIONS(1458), + [anon_sym_SEMI] = ACTIONS(1458), + [anon_sym___extension__] = ACTIONS(1456), + [anon_sym_typedef] = ACTIONS(1456), + [anon_sym_extern] = ACTIONS(1456), + [anon_sym___attribute__] = ACTIONS(1456), + [anon_sym___scanf] = ACTIONS(1456), + [anon_sym___printf] = ACTIONS(1456), + [anon_sym___read_mostly] = ACTIONS(1456), + [anon_sym___must_hold] = ACTIONS(1456), + [anon_sym___ro_after_init] = ACTIONS(1456), + [anon_sym___init] = ACTIONS(1456), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1458), + [anon_sym___declspec] = ACTIONS(1456), + [anon_sym___cdecl] = ACTIONS(1456), + [anon_sym___clrcall] = ACTIONS(1456), + [anon_sym___stdcall] = ACTIONS(1456), + [anon_sym___fastcall] = ACTIONS(1456), + [anon_sym___thiscall] = ACTIONS(1456), + [anon_sym___vectorcall] = ACTIONS(1456), + [anon_sym_LBRACE] = ACTIONS(1458), + [anon_sym_signed] = ACTIONS(1456), + [anon_sym_unsigned] = ACTIONS(1456), + [anon_sym_long] = ACTIONS(1456), + [anon_sym_short] = ACTIONS(1456), + [anon_sym_static] = ACTIONS(1456), + [anon_sym_auto] = ACTIONS(1456), + [anon_sym_register] = ACTIONS(1456), + [anon_sym_inline] = ACTIONS(1456), + [anon_sym___inline] = ACTIONS(1456), + [anon_sym___inline__] = ACTIONS(1456), + [anon_sym___forceinline] = ACTIONS(1456), + [anon_sym_thread_local] = ACTIONS(1456), + [anon_sym___thread] = ACTIONS(1456), + [anon_sym_const] = ACTIONS(1456), + [anon_sym_constexpr] = ACTIONS(1456), + [anon_sym_volatile] = ACTIONS(1456), + [anon_sym_restrict] = ACTIONS(1456), + [anon_sym___restrict__] = ACTIONS(1456), + [anon_sym__Atomic] = ACTIONS(1456), + [anon_sym__Noreturn] = ACTIONS(1456), + [anon_sym_noreturn] = ACTIONS(1456), + [sym_primitive_type] = ACTIONS(1456), + [anon_sym_enum] = ACTIONS(1456), + [anon_sym_struct] = ACTIONS(1456), + [anon_sym_union] = ACTIONS(1456), + [anon_sym_if] = ACTIONS(1456), + [anon_sym_switch] = ACTIONS(1456), + [anon_sym_case] = ACTIONS(1456), + [anon_sym_default] = ACTIONS(1456), + [anon_sym_while] = ACTIONS(1456), + [anon_sym_do] = ACTIONS(1456), + [anon_sym_for] = ACTIONS(1456), + [anon_sym_return] = ACTIONS(1456), + [anon_sym_break] = ACTIONS(1456), + [anon_sym_continue] = ACTIONS(1456), + [anon_sym_goto] = ACTIONS(1456), + [anon_sym___try] = ACTIONS(1456), + [anon_sym___leave] = ACTIONS(1456), + [anon_sym_DASH_DASH] = ACTIONS(1458), + [anon_sym_PLUS_PLUS] = ACTIONS(1458), + [anon_sym_sizeof] = ACTIONS(1456), + [anon_sym___alignof__] = ACTIONS(1456), + [anon_sym___alignof] = ACTIONS(1456), + [anon_sym__alignof] = ACTIONS(1456), + [anon_sym_alignof] = ACTIONS(1456), + [anon_sym__Alignof] = ACTIONS(1456), + [anon_sym_offsetof] = ACTIONS(1456), + [anon_sym__Generic] = ACTIONS(1456), + [anon_sym_asm] = ACTIONS(1456), + [anon_sym___asm__] = ACTIONS(1456), + [sym_number_literal] = ACTIONS(1458), + [anon_sym_L_SQUOTE] = ACTIONS(1458), + [anon_sym_u_SQUOTE] = ACTIONS(1458), + [anon_sym_U_SQUOTE] = ACTIONS(1458), + [anon_sym_u8_SQUOTE] = ACTIONS(1458), + [anon_sym_SQUOTE] = ACTIONS(1458), + [anon_sym_L_DQUOTE] = ACTIONS(1458), + [anon_sym_u_DQUOTE] = ACTIONS(1458), + [anon_sym_U_DQUOTE] = ACTIONS(1458), + [anon_sym_u8_DQUOTE] = ACTIONS(1458), + [anon_sym_DQUOTE] = ACTIONS(1458), + [sym_true] = ACTIONS(1456), + [sym_false] = ACTIONS(1456), + [anon_sym_NULL] = ACTIONS(1456), + [anon_sym_nullptr] = ACTIONS(1456), [sym_comment] = ACTIONS(3), }, [210] = { - [sym_identifier] = ACTIONS(1453), - [aux_sym_preproc_include_token1] = ACTIONS(1453), - [aux_sym_preproc_def_token1] = ACTIONS(1453), - [aux_sym_preproc_if_token1] = ACTIONS(1453), - [aux_sym_preproc_if_token2] = ACTIONS(1453), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1453), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1453), - [aux_sym_preproc_else_token1] = ACTIONS(1453), - [aux_sym_preproc_elif_token1] = ACTIONS(1453), - [sym_preproc_directive] = ACTIONS(1453), - [anon_sym_LPAREN2] = ACTIONS(1455), - [anon_sym_BANG] = ACTIONS(1455), - [anon_sym_TILDE] = ACTIONS(1455), - [anon_sym_DASH] = ACTIONS(1453), - [anon_sym_PLUS] = ACTIONS(1453), - [anon_sym_STAR] = ACTIONS(1455), - [anon_sym_AMP] = ACTIONS(1455), - [anon_sym_SEMI] = ACTIONS(1455), - [anon_sym___extension__] = ACTIONS(1453), - [anon_sym_typedef] = ACTIONS(1453), - [anon_sym_extern] = ACTIONS(1453), - [anon_sym___attribute__] = ACTIONS(1453), - [anon_sym___scanf] = ACTIONS(1453), - [anon_sym___printf] = ACTIONS(1453), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1455), - [anon_sym___declspec] = ACTIONS(1453), - [anon_sym___cdecl] = ACTIONS(1453), - [anon_sym___clrcall] = ACTIONS(1453), - [anon_sym___stdcall] = ACTIONS(1453), - [anon_sym___fastcall] = ACTIONS(1453), - [anon_sym___thiscall] = ACTIONS(1453), - [anon_sym___vectorcall] = ACTIONS(1453), - [anon_sym_LBRACE] = ACTIONS(1455), - [anon_sym_signed] = ACTIONS(1453), - [anon_sym_unsigned] = ACTIONS(1453), - [anon_sym_long] = ACTIONS(1453), - [anon_sym_short] = ACTIONS(1453), - [anon_sym_static] = ACTIONS(1453), - [anon_sym_auto] = ACTIONS(1453), - [anon_sym_register] = ACTIONS(1453), - [anon_sym_inline] = ACTIONS(1453), - [anon_sym___inline] = ACTIONS(1453), - [anon_sym___inline__] = ACTIONS(1453), - [anon_sym___forceinline] = ACTIONS(1453), - [anon_sym_thread_local] = ACTIONS(1453), - [anon_sym___thread] = ACTIONS(1453), - [anon_sym_const] = ACTIONS(1453), - [anon_sym_constexpr] = ACTIONS(1453), - [anon_sym_volatile] = ACTIONS(1453), - [anon_sym_restrict] = ACTIONS(1453), - [anon_sym___restrict__] = ACTIONS(1453), - [anon_sym__Atomic] = ACTIONS(1453), - [anon_sym__Noreturn] = ACTIONS(1453), - [anon_sym_noreturn] = ACTIONS(1453), - [sym_primitive_type] = ACTIONS(1453), - [anon_sym_enum] = ACTIONS(1453), - [anon_sym_struct] = ACTIONS(1453), - [anon_sym_union] = ACTIONS(1453), - [anon_sym_if] = ACTIONS(1453), - [anon_sym_switch] = ACTIONS(1453), - [anon_sym_case] = ACTIONS(1453), - [anon_sym_default] = ACTIONS(1453), - [anon_sym_while] = ACTIONS(1453), - [anon_sym_do] = ACTIONS(1453), - [anon_sym_for] = ACTIONS(1453), - [anon_sym_return] = ACTIONS(1453), - [anon_sym_break] = ACTIONS(1453), - [anon_sym_continue] = ACTIONS(1453), - [anon_sym_goto] = ACTIONS(1453), - [anon_sym___try] = ACTIONS(1453), - [anon_sym___leave] = ACTIONS(1453), - [anon_sym_DASH_DASH] = ACTIONS(1455), - [anon_sym_PLUS_PLUS] = ACTIONS(1455), - [anon_sym_sizeof] = ACTIONS(1453), - [anon_sym___alignof__] = ACTIONS(1453), - [anon_sym___alignof] = ACTIONS(1453), - [anon_sym__alignof] = ACTIONS(1453), - [anon_sym_alignof] = ACTIONS(1453), - [anon_sym__Alignof] = ACTIONS(1453), - [anon_sym_offsetof] = ACTIONS(1453), - [anon_sym__Generic] = ACTIONS(1453), - [anon_sym_asm] = ACTIONS(1453), - [anon_sym___asm__] = ACTIONS(1453), - [sym_number_literal] = ACTIONS(1455), - [anon_sym_L_SQUOTE] = ACTIONS(1455), - [anon_sym_u_SQUOTE] = ACTIONS(1455), - [anon_sym_U_SQUOTE] = ACTIONS(1455), - [anon_sym_u8_SQUOTE] = ACTIONS(1455), - [anon_sym_SQUOTE] = ACTIONS(1455), - [anon_sym_L_DQUOTE] = ACTIONS(1455), - [anon_sym_u_DQUOTE] = ACTIONS(1455), - [anon_sym_U_DQUOTE] = ACTIONS(1455), - [anon_sym_u8_DQUOTE] = ACTIONS(1455), - [anon_sym_DQUOTE] = ACTIONS(1455), - [sym_true] = ACTIONS(1453), - [sym_false] = ACTIONS(1453), - [anon_sym_NULL] = ACTIONS(1453), - [anon_sym_nullptr] = ACTIONS(1453), + [sym_identifier] = ACTIONS(1480), + [aux_sym_preproc_include_token1] = ACTIONS(1480), + [aux_sym_preproc_def_token1] = ACTIONS(1480), + [aux_sym_preproc_if_token1] = ACTIONS(1480), + [aux_sym_preproc_if_token2] = ACTIONS(1480), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1480), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1480), + [aux_sym_preproc_else_token1] = ACTIONS(1480), + [aux_sym_preproc_elif_token1] = ACTIONS(1480), + [sym_preproc_directive] = ACTIONS(1480), + [anon_sym_LPAREN2] = ACTIONS(1482), + [anon_sym_BANG] = ACTIONS(1482), + [anon_sym_TILDE] = ACTIONS(1482), + [anon_sym_DASH] = ACTIONS(1480), + [anon_sym_PLUS] = ACTIONS(1480), + [anon_sym_STAR] = ACTIONS(1482), + [anon_sym_AMP] = ACTIONS(1482), + [anon_sym_SEMI] = ACTIONS(1482), + [anon_sym___extension__] = ACTIONS(1480), + [anon_sym_typedef] = ACTIONS(1480), + [anon_sym_extern] = ACTIONS(1480), + [anon_sym___attribute__] = ACTIONS(1480), + [anon_sym___scanf] = ACTIONS(1480), + [anon_sym___printf] = ACTIONS(1480), + [anon_sym___read_mostly] = ACTIONS(1480), + [anon_sym___must_hold] = ACTIONS(1480), + [anon_sym___ro_after_init] = ACTIONS(1480), + [anon_sym___init] = ACTIONS(1480), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1482), + [anon_sym___declspec] = ACTIONS(1480), + [anon_sym___cdecl] = ACTIONS(1480), + [anon_sym___clrcall] = ACTIONS(1480), + [anon_sym___stdcall] = ACTIONS(1480), + [anon_sym___fastcall] = ACTIONS(1480), + [anon_sym___thiscall] = ACTIONS(1480), + [anon_sym___vectorcall] = ACTIONS(1480), + [anon_sym_LBRACE] = ACTIONS(1482), + [anon_sym_signed] = ACTIONS(1480), + [anon_sym_unsigned] = ACTIONS(1480), + [anon_sym_long] = ACTIONS(1480), + [anon_sym_short] = ACTIONS(1480), + [anon_sym_static] = ACTIONS(1480), + [anon_sym_auto] = ACTIONS(1480), + [anon_sym_register] = ACTIONS(1480), + [anon_sym_inline] = ACTIONS(1480), + [anon_sym___inline] = ACTIONS(1480), + [anon_sym___inline__] = ACTIONS(1480), + [anon_sym___forceinline] = ACTIONS(1480), + [anon_sym_thread_local] = ACTIONS(1480), + [anon_sym___thread] = ACTIONS(1480), + [anon_sym_const] = ACTIONS(1480), + [anon_sym_constexpr] = ACTIONS(1480), + [anon_sym_volatile] = ACTIONS(1480), + [anon_sym_restrict] = ACTIONS(1480), + [anon_sym___restrict__] = ACTIONS(1480), + [anon_sym__Atomic] = ACTIONS(1480), + [anon_sym__Noreturn] = ACTIONS(1480), + [anon_sym_noreturn] = ACTIONS(1480), + [sym_primitive_type] = ACTIONS(1480), + [anon_sym_enum] = ACTIONS(1480), + [anon_sym_struct] = ACTIONS(1480), + [anon_sym_union] = ACTIONS(1480), + [anon_sym_if] = ACTIONS(1480), + [anon_sym_switch] = ACTIONS(1480), + [anon_sym_case] = ACTIONS(1480), + [anon_sym_default] = ACTIONS(1480), + [anon_sym_while] = ACTIONS(1480), + [anon_sym_do] = ACTIONS(1480), + [anon_sym_for] = ACTIONS(1480), + [anon_sym_return] = ACTIONS(1480), + [anon_sym_break] = ACTIONS(1480), + [anon_sym_continue] = ACTIONS(1480), + [anon_sym_goto] = ACTIONS(1480), + [anon_sym___try] = ACTIONS(1480), + [anon_sym___leave] = ACTIONS(1480), + [anon_sym_DASH_DASH] = ACTIONS(1482), + [anon_sym_PLUS_PLUS] = ACTIONS(1482), + [anon_sym_sizeof] = ACTIONS(1480), + [anon_sym___alignof__] = ACTIONS(1480), + [anon_sym___alignof] = ACTIONS(1480), + [anon_sym__alignof] = ACTIONS(1480), + [anon_sym_alignof] = ACTIONS(1480), + [anon_sym__Alignof] = ACTIONS(1480), + [anon_sym_offsetof] = ACTIONS(1480), + [anon_sym__Generic] = ACTIONS(1480), + [anon_sym_asm] = ACTIONS(1480), + [anon_sym___asm__] = ACTIONS(1480), + [sym_number_literal] = ACTIONS(1482), + [anon_sym_L_SQUOTE] = ACTIONS(1482), + [anon_sym_u_SQUOTE] = ACTIONS(1482), + [anon_sym_U_SQUOTE] = ACTIONS(1482), + [anon_sym_u8_SQUOTE] = ACTIONS(1482), + [anon_sym_SQUOTE] = ACTIONS(1482), + [anon_sym_L_DQUOTE] = ACTIONS(1482), + [anon_sym_u_DQUOTE] = ACTIONS(1482), + [anon_sym_U_DQUOTE] = ACTIONS(1482), + [anon_sym_u8_DQUOTE] = ACTIONS(1482), + [anon_sym_DQUOTE] = ACTIONS(1482), + [sym_true] = ACTIONS(1480), + [sym_false] = ACTIONS(1480), + [anon_sym_NULL] = ACTIONS(1480), + [anon_sym_nullptr] = ACTIONS(1480), [sym_comment] = ACTIONS(3), }, [211] = { - [sym_identifier] = ACTIONS(1429), - [aux_sym_preproc_include_token1] = ACTIONS(1429), - [aux_sym_preproc_def_token1] = ACTIONS(1429), - [aux_sym_preproc_if_token1] = ACTIONS(1429), - [aux_sym_preproc_if_token2] = ACTIONS(1429), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1429), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1429), - [aux_sym_preproc_else_token1] = ACTIONS(1429), - [aux_sym_preproc_elif_token1] = ACTIONS(1429), - [sym_preproc_directive] = ACTIONS(1429), - [anon_sym_LPAREN2] = ACTIONS(1431), - [anon_sym_BANG] = ACTIONS(1431), - [anon_sym_TILDE] = ACTIONS(1431), - [anon_sym_DASH] = ACTIONS(1429), - [anon_sym_PLUS] = ACTIONS(1429), - [anon_sym_STAR] = ACTIONS(1431), - [anon_sym_AMP] = ACTIONS(1431), - [anon_sym_SEMI] = ACTIONS(1431), - [anon_sym___extension__] = ACTIONS(1429), - [anon_sym_typedef] = ACTIONS(1429), - [anon_sym_extern] = ACTIONS(1429), - [anon_sym___attribute__] = ACTIONS(1429), - [anon_sym___scanf] = ACTIONS(1429), - [anon_sym___printf] = ACTIONS(1429), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1431), - [anon_sym___declspec] = ACTIONS(1429), - [anon_sym___cdecl] = ACTIONS(1429), - [anon_sym___clrcall] = ACTIONS(1429), - [anon_sym___stdcall] = ACTIONS(1429), - [anon_sym___fastcall] = ACTIONS(1429), - [anon_sym___thiscall] = ACTIONS(1429), - [anon_sym___vectorcall] = ACTIONS(1429), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_signed] = ACTIONS(1429), - [anon_sym_unsigned] = ACTIONS(1429), - [anon_sym_long] = ACTIONS(1429), - [anon_sym_short] = ACTIONS(1429), - [anon_sym_static] = ACTIONS(1429), - [anon_sym_auto] = ACTIONS(1429), - [anon_sym_register] = ACTIONS(1429), - [anon_sym_inline] = ACTIONS(1429), - [anon_sym___inline] = ACTIONS(1429), - [anon_sym___inline__] = ACTIONS(1429), - [anon_sym___forceinline] = ACTIONS(1429), - [anon_sym_thread_local] = ACTIONS(1429), - [anon_sym___thread] = ACTIONS(1429), - [anon_sym_const] = ACTIONS(1429), - [anon_sym_constexpr] = ACTIONS(1429), - [anon_sym_volatile] = ACTIONS(1429), - [anon_sym_restrict] = ACTIONS(1429), - [anon_sym___restrict__] = ACTIONS(1429), - [anon_sym__Atomic] = ACTIONS(1429), - [anon_sym__Noreturn] = ACTIONS(1429), - [anon_sym_noreturn] = ACTIONS(1429), - [sym_primitive_type] = ACTIONS(1429), - [anon_sym_enum] = ACTIONS(1429), - [anon_sym_struct] = ACTIONS(1429), - [anon_sym_union] = ACTIONS(1429), - [anon_sym_if] = ACTIONS(1429), - [anon_sym_switch] = ACTIONS(1429), - [anon_sym_case] = ACTIONS(1429), - [anon_sym_default] = ACTIONS(1429), - [anon_sym_while] = ACTIONS(1429), - [anon_sym_do] = ACTIONS(1429), - [anon_sym_for] = ACTIONS(1429), - [anon_sym_return] = ACTIONS(1429), - [anon_sym_break] = ACTIONS(1429), - [anon_sym_continue] = ACTIONS(1429), - [anon_sym_goto] = ACTIONS(1429), - [anon_sym___try] = ACTIONS(1429), - [anon_sym___leave] = ACTIONS(1429), - [anon_sym_DASH_DASH] = ACTIONS(1431), - [anon_sym_PLUS_PLUS] = ACTIONS(1431), - [anon_sym_sizeof] = ACTIONS(1429), - [anon_sym___alignof__] = ACTIONS(1429), - [anon_sym___alignof] = ACTIONS(1429), - [anon_sym__alignof] = ACTIONS(1429), - [anon_sym_alignof] = ACTIONS(1429), - [anon_sym__Alignof] = ACTIONS(1429), - [anon_sym_offsetof] = ACTIONS(1429), - [anon_sym__Generic] = ACTIONS(1429), - [anon_sym_asm] = ACTIONS(1429), - [anon_sym___asm__] = ACTIONS(1429), - [sym_number_literal] = ACTIONS(1431), - [anon_sym_L_SQUOTE] = ACTIONS(1431), - [anon_sym_u_SQUOTE] = ACTIONS(1431), - [anon_sym_U_SQUOTE] = ACTIONS(1431), - [anon_sym_u8_SQUOTE] = ACTIONS(1431), - [anon_sym_SQUOTE] = ACTIONS(1431), - [anon_sym_L_DQUOTE] = ACTIONS(1431), - [anon_sym_u_DQUOTE] = ACTIONS(1431), - [anon_sym_U_DQUOTE] = ACTIONS(1431), - [anon_sym_u8_DQUOTE] = ACTIONS(1431), - [anon_sym_DQUOTE] = ACTIONS(1431), - [sym_true] = ACTIONS(1429), - [sym_false] = ACTIONS(1429), - [anon_sym_NULL] = ACTIONS(1429), - [anon_sym_nullptr] = ACTIONS(1429), + [sym_else_clause] = STATE(302), + [ts_builtin_sym_end] = ACTIONS(1316), + [sym_identifier] = ACTIONS(1314), + [aux_sym_preproc_include_token1] = ACTIONS(1314), + [aux_sym_preproc_def_token1] = ACTIONS(1314), + [aux_sym_preproc_if_token1] = ACTIONS(1314), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1314), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1314), + [sym_preproc_directive] = ACTIONS(1314), + [anon_sym_LPAREN2] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(1316), + [anon_sym_TILDE] = ACTIONS(1316), + [anon_sym_DASH] = ACTIONS(1314), + [anon_sym_PLUS] = ACTIONS(1314), + [anon_sym_STAR] = ACTIONS(1316), + [anon_sym_AMP] = ACTIONS(1316), + [anon_sym_SEMI] = ACTIONS(1316), + [anon_sym___extension__] = ACTIONS(1314), + [anon_sym_typedef] = ACTIONS(1314), + [anon_sym_extern] = ACTIONS(1314), + [anon_sym___attribute__] = ACTIONS(1314), + [anon_sym___scanf] = ACTIONS(1314), + [anon_sym___printf] = ACTIONS(1314), + [anon_sym___read_mostly] = ACTIONS(1314), + [anon_sym___must_hold] = ACTIONS(1314), + [anon_sym___ro_after_init] = ACTIONS(1314), + [anon_sym___init] = ACTIONS(1314), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1316), + [anon_sym___declspec] = ACTIONS(1314), + [anon_sym___cdecl] = ACTIONS(1314), + [anon_sym___clrcall] = ACTIONS(1314), + [anon_sym___stdcall] = ACTIONS(1314), + [anon_sym___fastcall] = ACTIONS(1314), + [anon_sym___thiscall] = ACTIONS(1314), + [anon_sym___vectorcall] = ACTIONS(1314), + [anon_sym_LBRACE] = ACTIONS(1316), + [anon_sym_signed] = ACTIONS(1314), + [anon_sym_unsigned] = ACTIONS(1314), + [anon_sym_long] = ACTIONS(1314), + [anon_sym_short] = ACTIONS(1314), + [anon_sym_static] = ACTIONS(1314), + [anon_sym_auto] = ACTIONS(1314), + [anon_sym_register] = ACTIONS(1314), + [anon_sym_inline] = ACTIONS(1314), + [anon_sym___inline] = ACTIONS(1314), + [anon_sym___inline__] = ACTIONS(1314), + [anon_sym___forceinline] = ACTIONS(1314), + [anon_sym_thread_local] = ACTIONS(1314), + [anon_sym___thread] = ACTIONS(1314), + [anon_sym_const] = ACTIONS(1314), + [anon_sym_constexpr] = ACTIONS(1314), + [anon_sym_volatile] = ACTIONS(1314), + [anon_sym_restrict] = ACTIONS(1314), + [anon_sym___restrict__] = ACTIONS(1314), + [anon_sym__Atomic] = ACTIONS(1314), + [anon_sym__Noreturn] = ACTIONS(1314), + [anon_sym_noreturn] = ACTIONS(1314), + [sym_primitive_type] = ACTIONS(1314), + [anon_sym_enum] = ACTIONS(1314), + [anon_sym_struct] = ACTIONS(1314), + [anon_sym_union] = ACTIONS(1314), + [anon_sym_if] = ACTIONS(1314), + [anon_sym_else] = ACTIONS(1530), + [anon_sym_switch] = ACTIONS(1314), + [anon_sym_case] = ACTIONS(1314), + [anon_sym_default] = ACTIONS(1314), + [anon_sym_while] = ACTIONS(1314), + [anon_sym_do] = ACTIONS(1314), + [anon_sym_for] = ACTIONS(1314), + [anon_sym_return] = ACTIONS(1314), + [anon_sym_break] = ACTIONS(1314), + [anon_sym_continue] = ACTIONS(1314), + [anon_sym_goto] = ACTIONS(1314), + [anon_sym___try] = ACTIONS(1314), + [anon_sym___leave] = ACTIONS(1314), + [anon_sym_DASH_DASH] = ACTIONS(1316), + [anon_sym_PLUS_PLUS] = ACTIONS(1316), + [anon_sym_sizeof] = ACTIONS(1314), + [anon_sym___alignof__] = ACTIONS(1314), + [anon_sym___alignof] = ACTIONS(1314), + [anon_sym__alignof] = ACTIONS(1314), + [anon_sym_alignof] = ACTIONS(1314), + [anon_sym__Alignof] = ACTIONS(1314), + [anon_sym_offsetof] = ACTIONS(1314), + [anon_sym__Generic] = ACTIONS(1314), + [anon_sym_asm] = ACTIONS(1314), + [anon_sym___asm__] = ACTIONS(1314), + [sym_number_literal] = ACTIONS(1316), + [anon_sym_L_SQUOTE] = ACTIONS(1316), + [anon_sym_u_SQUOTE] = ACTIONS(1316), + [anon_sym_U_SQUOTE] = ACTIONS(1316), + [anon_sym_u8_SQUOTE] = ACTIONS(1316), + [anon_sym_SQUOTE] = ACTIONS(1316), + [anon_sym_L_DQUOTE] = ACTIONS(1316), + [anon_sym_u_DQUOTE] = ACTIONS(1316), + [anon_sym_U_DQUOTE] = ACTIONS(1316), + [anon_sym_u8_DQUOTE] = ACTIONS(1316), + [anon_sym_DQUOTE] = ACTIONS(1316), + [sym_true] = ACTIONS(1314), + [sym_false] = ACTIONS(1314), + [anon_sym_NULL] = ACTIONS(1314), + [anon_sym_nullptr] = ACTIONS(1314), [sym_comment] = ACTIONS(3), }, [212] = { - [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_if_token2] = ACTIONS(1413), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1413), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1413), - [aux_sym_preproc_else_token1] = ACTIONS(1413), - [aux_sym_preproc_elif_token1] = ACTIONS(1413), - [sym_preproc_directive] = ACTIONS(1413), - [anon_sym_LPAREN2] = ACTIONS(1415), - [anon_sym_BANG] = ACTIONS(1415), - [anon_sym_TILDE] = ACTIONS(1415), - [anon_sym_DASH] = ACTIONS(1413), - [anon_sym_PLUS] = ACTIONS(1413), - [anon_sym_STAR] = ACTIONS(1415), - [anon_sym_AMP] = ACTIONS(1415), - [anon_sym_SEMI] = ACTIONS(1415), - [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_LBRACK_LBRACK] = ACTIONS(1415), - [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(1415), - [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), - [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___try] = ACTIONS(1413), - [anon_sym___leave] = ACTIONS(1413), - [anon_sym_DASH_DASH] = ACTIONS(1415), - [anon_sym_PLUS_PLUS] = ACTIONS(1415), - [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(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(1413), - [sym_false] = ACTIONS(1413), - [anon_sym_NULL] = ACTIONS(1413), - [anon_sym_nullptr] = ACTIONS(1413), + [sym_identifier] = ACTIONS(1520), + [aux_sym_preproc_include_token1] = ACTIONS(1520), + [aux_sym_preproc_def_token1] = ACTIONS(1520), + [aux_sym_preproc_if_token1] = ACTIONS(1520), + [aux_sym_preproc_if_token2] = ACTIONS(1520), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1520), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1520), + [aux_sym_preproc_else_token1] = ACTIONS(1520), + [aux_sym_preproc_elif_token1] = ACTIONS(1520), + [sym_preproc_directive] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), + [anon_sym_BANG] = ACTIONS(1522), + [anon_sym_TILDE] = ACTIONS(1522), + [anon_sym_DASH] = ACTIONS(1520), + [anon_sym_PLUS] = ACTIONS(1520), + [anon_sym_STAR] = ACTIONS(1522), + [anon_sym_AMP] = ACTIONS(1522), + [anon_sym_SEMI] = ACTIONS(1522), + [anon_sym___extension__] = ACTIONS(1520), + [anon_sym_typedef] = ACTIONS(1520), + [anon_sym_extern] = ACTIONS(1520), + [anon_sym___attribute__] = ACTIONS(1520), + [anon_sym___scanf] = ACTIONS(1520), + [anon_sym___printf] = ACTIONS(1520), + [anon_sym___read_mostly] = ACTIONS(1520), + [anon_sym___must_hold] = ACTIONS(1520), + [anon_sym___ro_after_init] = ACTIONS(1520), + [anon_sym___init] = ACTIONS(1520), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1522), + [anon_sym___declspec] = ACTIONS(1520), + [anon_sym___cdecl] = ACTIONS(1520), + [anon_sym___clrcall] = ACTIONS(1520), + [anon_sym___stdcall] = ACTIONS(1520), + [anon_sym___fastcall] = ACTIONS(1520), + [anon_sym___thiscall] = ACTIONS(1520), + [anon_sym___vectorcall] = ACTIONS(1520), + [anon_sym_LBRACE] = ACTIONS(1522), + [anon_sym_signed] = ACTIONS(1520), + [anon_sym_unsigned] = ACTIONS(1520), + [anon_sym_long] = ACTIONS(1520), + [anon_sym_short] = ACTIONS(1520), + [anon_sym_static] = ACTIONS(1520), + [anon_sym_auto] = ACTIONS(1520), + [anon_sym_register] = ACTIONS(1520), + [anon_sym_inline] = ACTIONS(1520), + [anon_sym___inline] = ACTIONS(1520), + [anon_sym___inline__] = ACTIONS(1520), + [anon_sym___forceinline] = ACTIONS(1520), + [anon_sym_thread_local] = ACTIONS(1520), + [anon_sym___thread] = ACTIONS(1520), + [anon_sym_const] = ACTIONS(1520), + [anon_sym_constexpr] = ACTIONS(1520), + [anon_sym_volatile] = ACTIONS(1520), + [anon_sym_restrict] = ACTIONS(1520), + [anon_sym___restrict__] = ACTIONS(1520), + [anon_sym__Atomic] = ACTIONS(1520), + [anon_sym__Noreturn] = ACTIONS(1520), + [anon_sym_noreturn] = ACTIONS(1520), + [sym_primitive_type] = ACTIONS(1520), + [anon_sym_enum] = ACTIONS(1520), + [anon_sym_struct] = ACTIONS(1520), + [anon_sym_union] = ACTIONS(1520), + [anon_sym_if] = ACTIONS(1520), + [anon_sym_switch] = ACTIONS(1520), + [anon_sym_case] = ACTIONS(1520), + [anon_sym_default] = ACTIONS(1520), + [anon_sym_while] = ACTIONS(1520), + [anon_sym_do] = ACTIONS(1520), + [anon_sym_for] = ACTIONS(1520), + [anon_sym_return] = ACTIONS(1520), + [anon_sym_break] = ACTIONS(1520), + [anon_sym_continue] = ACTIONS(1520), + [anon_sym_goto] = ACTIONS(1520), + [anon_sym___try] = ACTIONS(1520), + [anon_sym___leave] = ACTIONS(1520), + [anon_sym_DASH_DASH] = ACTIONS(1522), + [anon_sym_PLUS_PLUS] = ACTIONS(1522), + [anon_sym_sizeof] = ACTIONS(1520), + [anon_sym___alignof__] = ACTIONS(1520), + [anon_sym___alignof] = ACTIONS(1520), + [anon_sym__alignof] = ACTIONS(1520), + [anon_sym_alignof] = ACTIONS(1520), + [anon_sym__Alignof] = ACTIONS(1520), + [anon_sym_offsetof] = ACTIONS(1520), + [anon_sym__Generic] = ACTIONS(1520), + [anon_sym_asm] = ACTIONS(1520), + [anon_sym___asm__] = ACTIONS(1520), + [sym_number_literal] = ACTIONS(1522), + [anon_sym_L_SQUOTE] = ACTIONS(1522), + [anon_sym_u_SQUOTE] = ACTIONS(1522), + [anon_sym_U_SQUOTE] = ACTIONS(1522), + [anon_sym_u8_SQUOTE] = ACTIONS(1522), + [anon_sym_SQUOTE] = ACTIONS(1522), + [anon_sym_L_DQUOTE] = ACTIONS(1522), + [anon_sym_u_DQUOTE] = ACTIONS(1522), + [anon_sym_U_DQUOTE] = ACTIONS(1522), + [anon_sym_u8_DQUOTE] = ACTIONS(1522), + [anon_sym_DQUOTE] = ACTIONS(1522), + [sym_true] = ACTIONS(1520), + [sym_false] = ACTIONS(1520), + [anon_sym_NULL] = ACTIONS(1520), + [anon_sym_nullptr] = ACTIONS(1520), [sym_comment] = ACTIONS(3), }, [213] = { - [sym_identifier] = ACTIONS(1457), - [aux_sym_preproc_include_token1] = ACTIONS(1457), - [aux_sym_preproc_def_token1] = ACTIONS(1457), - [aux_sym_preproc_if_token1] = ACTIONS(1457), - [aux_sym_preproc_if_token2] = ACTIONS(1457), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1457), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1457), - [aux_sym_preproc_else_token1] = ACTIONS(1457), - [aux_sym_preproc_elif_token1] = ACTIONS(1457), - [sym_preproc_directive] = ACTIONS(1457), - [anon_sym_LPAREN2] = ACTIONS(1459), - [anon_sym_BANG] = ACTIONS(1459), - [anon_sym_TILDE] = ACTIONS(1459), - [anon_sym_DASH] = ACTIONS(1457), - [anon_sym_PLUS] = ACTIONS(1457), - [anon_sym_STAR] = ACTIONS(1459), - [anon_sym_AMP] = ACTIONS(1459), - [anon_sym_SEMI] = ACTIONS(1459), - [anon_sym___extension__] = ACTIONS(1457), - [anon_sym_typedef] = ACTIONS(1457), - [anon_sym_extern] = ACTIONS(1457), - [anon_sym___attribute__] = ACTIONS(1457), - [anon_sym___scanf] = ACTIONS(1457), - [anon_sym___printf] = ACTIONS(1457), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1459), - [anon_sym___declspec] = ACTIONS(1457), - [anon_sym___cdecl] = ACTIONS(1457), - [anon_sym___clrcall] = ACTIONS(1457), - [anon_sym___stdcall] = ACTIONS(1457), - [anon_sym___fastcall] = ACTIONS(1457), - [anon_sym___thiscall] = ACTIONS(1457), - [anon_sym___vectorcall] = ACTIONS(1457), - [anon_sym_LBRACE] = ACTIONS(1459), - [anon_sym_signed] = ACTIONS(1457), - [anon_sym_unsigned] = ACTIONS(1457), - [anon_sym_long] = ACTIONS(1457), - [anon_sym_short] = ACTIONS(1457), - [anon_sym_static] = ACTIONS(1457), - [anon_sym_auto] = ACTIONS(1457), - [anon_sym_register] = ACTIONS(1457), - [anon_sym_inline] = ACTIONS(1457), - [anon_sym___inline] = ACTIONS(1457), - [anon_sym___inline__] = ACTIONS(1457), - [anon_sym___forceinline] = ACTIONS(1457), - [anon_sym_thread_local] = ACTIONS(1457), - [anon_sym___thread] = ACTIONS(1457), - [anon_sym_const] = ACTIONS(1457), - [anon_sym_constexpr] = ACTIONS(1457), - [anon_sym_volatile] = ACTIONS(1457), - [anon_sym_restrict] = ACTIONS(1457), - [anon_sym___restrict__] = ACTIONS(1457), - [anon_sym__Atomic] = ACTIONS(1457), - [anon_sym__Noreturn] = ACTIONS(1457), - [anon_sym_noreturn] = ACTIONS(1457), - [sym_primitive_type] = ACTIONS(1457), - [anon_sym_enum] = ACTIONS(1457), - [anon_sym_struct] = ACTIONS(1457), - [anon_sym_union] = ACTIONS(1457), - [anon_sym_if] = ACTIONS(1457), - [anon_sym_switch] = ACTIONS(1457), - [anon_sym_case] = ACTIONS(1457), - [anon_sym_default] = ACTIONS(1457), - [anon_sym_while] = ACTIONS(1457), - [anon_sym_do] = ACTIONS(1457), - [anon_sym_for] = ACTIONS(1457), - [anon_sym_return] = ACTIONS(1457), - [anon_sym_break] = ACTIONS(1457), - [anon_sym_continue] = ACTIONS(1457), - [anon_sym_goto] = ACTIONS(1457), - [anon_sym___try] = ACTIONS(1457), - [anon_sym___leave] = ACTIONS(1457), - [anon_sym_DASH_DASH] = ACTIONS(1459), - [anon_sym_PLUS_PLUS] = ACTIONS(1459), - [anon_sym_sizeof] = ACTIONS(1457), - [anon_sym___alignof__] = ACTIONS(1457), - [anon_sym___alignof] = ACTIONS(1457), - [anon_sym__alignof] = ACTIONS(1457), - [anon_sym_alignof] = ACTIONS(1457), - [anon_sym__Alignof] = ACTIONS(1457), - [anon_sym_offsetof] = ACTIONS(1457), - [anon_sym__Generic] = ACTIONS(1457), - [anon_sym_asm] = ACTIONS(1457), - [anon_sym___asm__] = ACTIONS(1457), - [sym_number_literal] = ACTIONS(1459), - [anon_sym_L_SQUOTE] = ACTIONS(1459), - [anon_sym_u_SQUOTE] = ACTIONS(1459), - [anon_sym_U_SQUOTE] = ACTIONS(1459), - [anon_sym_u8_SQUOTE] = ACTIONS(1459), - [anon_sym_SQUOTE] = ACTIONS(1459), - [anon_sym_L_DQUOTE] = ACTIONS(1459), - [anon_sym_u_DQUOTE] = ACTIONS(1459), - [anon_sym_U_DQUOTE] = ACTIONS(1459), - [anon_sym_u8_DQUOTE] = ACTIONS(1459), - [anon_sym_DQUOTE] = ACTIONS(1459), - [sym_true] = ACTIONS(1457), - [sym_false] = ACTIONS(1457), - [anon_sym_NULL] = ACTIONS(1457), - [anon_sym_nullptr] = ACTIONS(1457), + [sym_identifier] = ACTIONS(1508), + [aux_sym_preproc_include_token1] = ACTIONS(1508), + [aux_sym_preproc_def_token1] = ACTIONS(1508), + [aux_sym_preproc_if_token1] = ACTIONS(1508), + [aux_sym_preproc_if_token2] = ACTIONS(1508), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1508), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1508), + [aux_sym_preproc_else_token1] = ACTIONS(1508), + [aux_sym_preproc_elif_token1] = ACTIONS(1508), + [sym_preproc_directive] = ACTIONS(1508), + [anon_sym_LPAREN2] = ACTIONS(1510), + [anon_sym_BANG] = ACTIONS(1510), + [anon_sym_TILDE] = ACTIONS(1510), + [anon_sym_DASH] = ACTIONS(1508), + [anon_sym_PLUS] = ACTIONS(1508), + [anon_sym_STAR] = ACTIONS(1510), + [anon_sym_AMP] = ACTIONS(1510), + [anon_sym_SEMI] = ACTIONS(1510), + [anon_sym___extension__] = ACTIONS(1508), + [anon_sym_typedef] = ACTIONS(1508), + [anon_sym_extern] = ACTIONS(1508), + [anon_sym___attribute__] = ACTIONS(1508), + [anon_sym___scanf] = ACTIONS(1508), + [anon_sym___printf] = ACTIONS(1508), + [anon_sym___read_mostly] = ACTIONS(1508), + [anon_sym___must_hold] = ACTIONS(1508), + [anon_sym___ro_after_init] = ACTIONS(1508), + [anon_sym___init] = ACTIONS(1508), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1510), + [anon_sym___declspec] = ACTIONS(1508), + [anon_sym___cdecl] = ACTIONS(1508), + [anon_sym___clrcall] = ACTIONS(1508), + [anon_sym___stdcall] = ACTIONS(1508), + [anon_sym___fastcall] = ACTIONS(1508), + [anon_sym___thiscall] = ACTIONS(1508), + [anon_sym___vectorcall] = ACTIONS(1508), + [anon_sym_LBRACE] = ACTIONS(1510), + [anon_sym_signed] = ACTIONS(1508), + [anon_sym_unsigned] = ACTIONS(1508), + [anon_sym_long] = ACTIONS(1508), + [anon_sym_short] = ACTIONS(1508), + [anon_sym_static] = ACTIONS(1508), + [anon_sym_auto] = ACTIONS(1508), + [anon_sym_register] = ACTIONS(1508), + [anon_sym_inline] = ACTIONS(1508), + [anon_sym___inline] = ACTIONS(1508), + [anon_sym___inline__] = ACTIONS(1508), + [anon_sym___forceinline] = ACTIONS(1508), + [anon_sym_thread_local] = ACTIONS(1508), + [anon_sym___thread] = ACTIONS(1508), + [anon_sym_const] = ACTIONS(1508), + [anon_sym_constexpr] = ACTIONS(1508), + [anon_sym_volatile] = ACTIONS(1508), + [anon_sym_restrict] = ACTIONS(1508), + [anon_sym___restrict__] = ACTIONS(1508), + [anon_sym__Atomic] = ACTIONS(1508), + [anon_sym__Noreturn] = ACTIONS(1508), + [anon_sym_noreturn] = ACTIONS(1508), + [sym_primitive_type] = ACTIONS(1508), + [anon_sym_enum] = ACTIONS(1508), + [anon_sym_struct] = ACTIONS(1508), + [anon_sym_union] = ACTIONS(1508), + [anon_sym_if] = ACTIONS(1508), + [anon_sym_switch] = ACTIONS(1508), + [anon_sym_case] = ACTIONS(1508), + [anon_sym_default] = ACTIONS(1508), + [anon_sym_while] = ACTIONS(1508), + [anon_sym_do] = ACTIONS(1508), + [anon_sym_for] = ACTIONS(1508), + [anon_sym_return] = ACTIONS(1508), + [anon_sym_break] = ACTIONS(1508), + [anon_sym_continue] = ACTIONS(1508), + [anon_sym_goto] = ACTIONS(1508), + [anon_sym___try] = ACTIONS(1508), + [anon_sym___leave] = ACTIONS(1508), + [anon_sym_DASH_DASH] = ACTIONS(1510), + [anon_sym_PLUS_PLUS] = ACTIONS(1510), + [anon_sym_sizeof] = ACTIONS(1508), + [anon_sym___alignof__] = ACTIONS(1508), + [anon_sym___alignof] = ACTIONS(1508), + [anon_sym__alignof] = ACTIONS(1508), + [anon_sym_alignof] = ACTIONS(1508), + [anon_sym__Alignof] = ACTIONS(1508), + [anon_sym_offsetof] = ACTIONS(1508), + [anon_sym__Generic] = ACTIONS(1508), + [anon_sym_asm] = ACTIONS(1508), + [anon_sym___asm__] = ACTIONS(1508), + [sym_number_literal] = ACTIONS(1510), + [anon_sym_L_SQUOTE] = ACTIONS(1510), + [anon_sym_u_SQUOTE] = ACTIONS(1510), + [anon_sym_U_SQUOTE] = ACTIONS(1510), + [anon_sym_u8_SQUOTE] = ACTIONS(1510), + [anon_sym_SQUOTE] = ACTIONS(1510), + [anon_sym_L_DQUOTE] = ACTIONS(1510), + [anon_sym_u_DQUOTE] = ACTIONS(1510), + [anon_sym_U_DQUOTE] = ACTIONS(1510), + [anon_sym_u8_DQUOTE] = ACTIONS(1510), + [anon_sym_DQUOTE] = ACTIONS(1510), + [sym_true] = ACTIONS(1508), + [sym_false] = ACTIONS(1508), + [anon_sym_NULL] = ACTIONS(1508), + [anon_sym_nullptr] = ACTIONS(1508), [sym_comment] = ACTIONS(3), }, [214] = { - [sym_identifier] = ACTIONS(1469), - [aux_sym_preproc_include_token1] = ACTIONS(1469), - [aux_sym_preproc_def_token1] = ACTIONS(1469), - [aux_sym_preproc_if_token1] = ACTIONS(1469), - [aux_sym_preproc_if_token2] = ACTIONS(1469), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1469), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1469), - [aux_sym_preproc_else_token1] = ACTIONS(1469), - [aux_sym_preproc_elif_token1] = ACTIONS(1469), - [sym_preproc_directive] = ACTIONS(1469), - [anon_sym_LPAREN2] = ACTIONS(1471), - [anon_sym_BANG] = ACTIONS(1471), - [anon_sym_TILDE] = ACTIONS(1471), - [anon_sym_DASH] = ACTIONS(1469), - [anon_sym_PLUS] = ACTIONS(1469), - [anon_sym_STAR] = ACTIONS(1471), - [anon_sym_AMP] = ACTIONS(1471), - [anon_sym_SEMI] = ACTIONS(1471), - [anon_sym___extension__] = ACTIONS(1469), - [anon_sym_typedef] = ACTIONS(1469), - [anon_sym_extern] = ACTIONS(1469), - [anon_sym___attribute__] = ACTIONS(1469), - [anon_sym___scanf] = ACTIONS(1469), - [anon_sym___printf] = ACTIONS(1469), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1471), - [anon_sym___declspec] = ACTIONS(1469), - [anon_sym___cdecl] = ACTIONS(1469), - [anon_sym___clrcall] = ACTIONS(1469), - [anon_sym___stdcall] = ACTIONS(1469), - [anon_sym___fastcall] = ACTIONS(1469), - [anon_sym___thiscall] = ACTIONS(1469), - [anon_sym___vectorcall] = ACTIONS(1469), - [anon_sym_LBRACE] = ACTIONS(1471), - [anon_sym_signed] = ACTIONS(1469), - [anon_sym_unsigned] = ACTIONS(1469), - [anon_sym_long] = ACTIONS(1469), - [anon_sym_short] = ACTIONS(1469), - [anon_sym_static] = ACTIONS(1469), - [anon_sym_auto] = ACTIONS(1469), - [anon_sym_register] = ACTIONS(1469), - [anon_sym_inline] = ACTIONS(1469), - [anon_sym___inline] = ACTIONS(1469), - [anon_sym___inline__] = ACTIONS(1469), - [anon_sym___forceinline] = ACTIONS(1469), - [anon_sym_thread_local] = ACTIONS(1469), - [anon_sym___thread] = ACTIONS(1469), - [anon_sym_const] = ACTIONS(1469), - [anon_sym_constexpr] = ACTIONS(1469), - [anon_sym_volatile] = ACTIONS(1469), - [anon_sym_restrict] = ACTIONS(1469), - [anon_sym___restrict__] = ACTIONS(1469), - [anon_sym__Atomic] = ACTIONS(1469), - [anon_sym__Noreturn] = ACTIONS(1469), - [anon_sym_noreturn] = ACTIONS(1469), - [sym_primitive_type] = ACTIONS(1469), - [anon_sym_enum] = ACTIONS(1469), - [anon_sym_struct] = ACTIONS(1469), - [anon_sym_union] = ACTIONS(1469), - [anon_sym_if] = ACTIONS(1469), - [anon_sym_switch] = ACTIONS(1469), - [anon_sym_case] = ACTIONS(1469), - [anon_sym_default] = ACTIONS(1469), - [anon_sym_while] = ACTIONS(1469), - [anon_sym_do] = ACTIONS(1469), - [anon_sym_for] = ACTIONS(1469), - [anon_sym_return] = ACTIONS(1469), - [anon_sym_break] = ACTIONS(1469), - [anon_sym_continue] = ACTIONS(1469), - [anon_sym_goto] = ACTIONS(1469), - [anon_sym___try] = ACTIONS(1469), - [anon_sym___leave] = ACTIONS(1469), - [anon_sym_DASH_DASH] = ACTIONS(1471), - [anon_sym_PLUS_PLUS] = ACTIONS(1471), - [anon_sym_sizeof] = ACTIONS(1469), - [anon_sym___alignof__] = ACTIONS(1469), - [anon_sym___alignof] = ACTIONS(1469), - [anon_sym__alignof] = ACTIONS(1469), - [anon_sym_alignof] = ACTIONS(1469), - [anon_sym__Alignof] = ACTIONS(1469), - [anon_sym_offsetof] = ACTIONS(1469), - [anon_sym__Generic] = ACTIONS(1469), - [anon_sym_asm] = ACTIONS(1469), - [anon_sym___asm__] = ACTIONS(1469), - [sym_number_literal] = ACTIONS(1471), - [anon_sym_L_SQUOTE] = ACTIONS(1471), - [anon_sym_u_SQUOTE] = ACTIONS(1471), - [anon_sym_U_SQUOTE] = ACTIONS(1471), - [anon_sym_u8_SQUOTE] = ACTIONS(1471), - [anon_sym_SQUOTE] = ACTIONS(1471), - [anon_sym_L_DQUOTE] = ACTIONS(1471), - [anon_sym_u_DQUOTE] = ACTIONS(1471), - [anon_sym_U_DQUOTE] = ACTIONS(1471), - [anon_sym_u8_DQUOTE] = ACTIONS(1471), - [anon_sym_DQUOTE] = ACTIONS(1471), - [sym_true] = ACTIONS(1469), - [sym_false] = ACTIONS(1469), - [anon_sym_NULL] = ACTIONS(1469), - [anon_sym_nullptr] = ACTIONS(1469), + [sym_identifier] = ACTIONS(1504), + [aux_sym_preproc_include_token1] = ACTIONS(1504), + [aux_sym_preproc_def_token1] = ACTIONS(1504), + [aux_sym_preproc_if_token1] = ACTIONS(1504), + [aux_sym_preproc_if_token2] = ACTIONS(1504), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1504), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1504), + [aux_sym_preproc_else_token1] = ACTIONS(1504), + [aux_sym_preproc_elif_token1] = ACTIONS(1504), + [sym_preproc_directive] = ACTIONS(1504), + [anon_sym_LPAREN2] = ACTIONS(1506), + [anon_sym_BANG] = ACTIONS(1506), + [anon_sym_TILDE] = ACTIONS(1506), + [anon_sym_DASH] = ACTIONS(1504), + [anon_sym_PLUS] = ACTIONS(1504), + [anon_sym_STAR] = ACTIONS(1506), + [anon_sym_AMP] = ACTIONS(1506), + [anon_sym_SEMI] = ACTIONS(1506), + [anon_sym___extension__] = ACTIONS(1504), + [anon_sym_typedef] = ACTIONS(1504), + [anon_sym_extern] = ACTIONS(1504), + [anon_sym___attribute__] = ACTIONS(1504), + [anon_sym___scanf] = ACTIONS(1504), + [anon_sym___printf] = ACTIONS(1504), + [anon_sym___read_mostly] = ACTIONS(1504), + [anon_sym___must_hold] = ACTIONS(1504), + [anon_sym___ro_after_init] = ACTIONS(1504), + [anon_sym___init] = ACTIONS(1504), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1506), + [anon_sym___declspec] = ACTIONS(1504), + [anon_sym___cdecl] = ACTIONS(1504), + [anon_sym___clrcall] = ACTIONS(1504), + [anon_sym___stdcall] = ACTIONS(1504), + [anon_sym___fastcall] = ACTIONS(1504), + [anon_sym___thiscall] = ACTIONS(1504), + [anon_sym___vectorcall] = ACTIONS(1504), + [anon_sym_LBRACE] = ACTIONS(1506), + [anon_sym_signed] = ACTIONS(1504), + [anon_sym_unsigned] = ACTIONS(1504), + [anon_sym_long] = ACTIONS(1504), + [anon_sym_short] = ACTIONS(1504), + [anon_sym_static] = ACTIONS(1504), + [anon_sym_auto] = ACTIONS(1504), + [anon_sym_register] = ACTIONS(1504), + [anon_sym_inline] = ACTIONS(1504), + [anon_sym___inline] = ACTIONS(1504), + [anon_sym___inline__] = ACTIONS(1504), + [anon_sym___forceinline] = ACTIONS(1504), + [anon_sym_thread_local] = ACTIONS(1504), + [anon_sym___thread] = ACTIONS(1504), + [anon_sym_const] = ACTIONS(1504), + [anon_sym_constexpr] = ACTIONS(1504), + [anon_sym_volatile] = ACTIONS(1504), + [anon_sym_restrict] = ACTIONS(1504), + [anon_sym___restrict__] = ACTIONS(1504), + [anon_sym__Atomic] = ACTIONS(1504), + [anon_sym__Noreturn] = ACTIONS(1504), + [anon_sym_noreturn] = ACTIONS(1504), + [sym_primitive_type] = ACTIONS(1504), + [anon_sym_enum] = ACTIONS(1504), + [anon_sym_struct] = ACTIONS(1504), + [anon_sym_union] = ACTIONS(1504), + [anon_sym_if] = ACTIONS(1504), + [anon_sym_switch] = ACTIONS(1504), + [anon_sym_case] = ACTIONS(1504), + [anon_sym_default] = ACTIONS(1504), + [anon_sym_while] = ACTIONS(1504), + [anon_sym_do] = ACTIONS(1504), + [anon_sym_for] = ACTIONS(1504), + [anon_sym_return] = ACTIONS(1504), + [anon_sym_break] = ACTIONS(1504), + [anon_sym_continue] = ACTIONS(1504), + [anon_sym_goto] = ACTIONS(1504), + [anon_sym___try] = ACTIONS(1504), + [anon_sym___leave] = ACTIONS(1504), + [anon_sym_DASH_DASH] = ACTIONS(1506), + [anon_sym_PLUS_PLUS] = ACTIONS(1506), + [anon_sym_sizeof] = ACTIONS(1504), + [anon_sym___alignof__] = ACTIONS(1504), + [anon_sym___alignof] = ACTIONS(1504), + [anon_sym__alignof] = ACTIONS(1504), + [anon_sym_alignof] = ACTIONS(1504), + [anon_sym__Alignof] = ACTIONS(1504), + [anon_sym_offsetof] = ACTIONS(1504), + [anon_sym__Generic] = ACTIONS(1504), + [anon_sym_asm] = ACTIONS(1504), + [anon_sym___asm__] = ACTIONS(1504), + [sym_number_literal] = ACTIONS(1506), + [anon_sym_L_SQUOTE] = ACTIONS(1506), + [anon_sym_u_SQUOTE] = ACTIONS(1506), + [anon_sym_U_SQUOTE] = ACTIONS(1506), + [anon_sym_u8_SQUOTE] = ACTIONS(1506), + [anon_sym_SQUOTE] = ACTIONS(1506), + [anon_sym_L_DQUOTE] = ACTIONS(1506), + [anon_sym_u_DQUOTE] = ACTIONS(1506), + [anon_sym_U_DQUOTE] = ACTIONS(1506), + [anon_sym_u8_DQUOTE] = ACTIONS(1506), + [anon_sym_DQUOTE] = ACTIONS(1506), + [sym_true] = ACTIONS(1504), + [sym_false] = ACTIONS(1504), + [anon_sym_NULL] = ACTIONS(1504), + [anon_sym_nullptr] = ACTIONS(1504), [sym_comment] = ACTIONS(3), }, [215] = { - [sym_identifier] = ACTIONS(1485), - [aux_sym_preproc_include_token1] = ACTIONS(1485), - [aux_sym_preproc_def_token1] = ACTIONS(1485), - [aux_sym_preproc_if_token1] = ACTIONS(1485), - [aux_sym_preproc_if_token2] = ACTIONS(1485), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1485), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1485), - [aux_sym_preproc_else_token1] = ACTIONS(1485), - [aux_sym_preproc_elif_token1] = ACTIONS(1485), - [sym_preproc_directive] = ACTIONS(1485), - [anon_sym_LPAREN2] = ACTIONS(1487), - [anon_sym_BANG] = ACTIONS(1487), - [anon_sym_TILDE] = ACTIONS(1487), - [anon_sym_DASH] = ACTIONS(1485), - [anon_sym_PLUS] = ACTIONS(1485), - [anon_sym_STAR] = ACTIONS(1487), - [anon_sym_AMP] = ACTIONS(1487), - [anon_sym_SEMI] = ACTIONS(1487), - [anon_sym___extension__] = ACTIONS(1485), - [anon_sym_typedef] = ACTIONS(1485), - [anon_sym_extern] = ACTIONS(1485), - [anon_sym___attribute__] = ACTIONS(1485), - [anon_sym___scanf] = ACTIONS(1485), - [anon_sym___printf] = ACTIONS(1485), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1487), - [anon_sym___declspec] = ACTIONS(1485), - [anon_sym___cdecl] = ACTIONS(1485), - [anon_sym___clrcall] = ACTIONS(1485), - [anon_sym___stdcall] = ACTIONS(1485), - [anon_sym___fastcall] = ACTIONS(1485), - [anon_sym___thiscall] = ACTIONS(1485), - [anon_sym___vectorcall] = ACTIONS(1485), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_signed] = ACTIONS(1485), - [anon_sym_unsigned] = ACTIONS(1485), - [anon_sym_long] = ACTIONS(1485), - [anon_sym_short] = ACTIONS(1485), - [anon_sym_static] = ACTIONS(1485), - [anon_sym_auto] = ACTIONS(1485), - [anon_sym_register] = ACTIONS(1485), - [anon_sym_inline] = ACTIONS(1485), - [anon_sym___inline] = ACTIONS(1485), - [anon_sym___inline__] = ACTIONS(1485), - [anon_sym___forceinline] = ACTIONS(1485), - [anon_sym_thread_local] = ACTIONS(1485), - [anon_sym___thread] = ACTIONS(1485), - [anon_sym_const] = ACTIONS(1485), - [anon_sym_constexpr] = ACTIONS(1485), - [anon_sym_volatile] = ACTIONS(1485), - [anon_sym_restrict] = ACTIONS(1485), - [anon_sym___restrict__] = ACTIONS(1485), - [anon_sym__Atomic] = ACTIONS(1485), - [anon_sym__Noreturn] = ACTIONS(1485), - [anon_sym_noreturn] = ACTIONS(1485), - [sym_primitive_type] = ACTIONS(1485), - [anon_sym_enum] = ACTIONS(1485), - [anon_sym_struct] = ACTIONS(1485), - [anon_sym_union] = ACTIONS(1485), - [anon_sym_if] = ACTIONS(1485), - [anon_sym_switch] = ACTIONS(1485), - [anon_sym_case] = ACTIONS(1485), - [anon_sym_default] = ACTIONS(1485), - [anon_sym_while] = ACTIONS(1485), - [anon_sym_do] = ACTIONS(1485), - [anon_sym_for] = ACTIONS(1485), - [anon_sym_return] = ACTIONS(1485), - [anon_sym_break] = ACTIONS(1485), - [anon_sym_continue] = ACTIONS(1485), - [anon_sym_goto] = ACTIONS(1485), - [anon_sym___try] = ACTIONS(1485), - [anon_sym___leave] = ACTIONS(1485), - [anon_sym_DASH_DASH] = ACTIONS(1487), - [anon_sym_PLUS_PLUS] = ACTIONS(1487), - [anon_sym_sizeof] = ACTIONS(1485), - [anon_sym___alignof__] = ACTIONS(1485), - [anon_sym___alignof] = ACTIONS(1485), - [anon_sym__alignof] = ACTIONS(1485), - [anon_sym_alignof] = ACTIONS(1485), - [anon_sym__Alignof] = ACTIONS(1485), - [anon_sym_offsetof] = ACTIONS(1485), - [anon_sym__Generic] = ACTIONS(1485), - [anon_sym_asm] = ACTIONS(1485), - [anon_sym___asm__] = ACTIONS(1485), - [sym_number_literal] = ACTIONS(1487), - [anon_sym_L_SQUOTE] = ACTIONS(1487), - [anon_sym_u_SQUOTE] = ACTIONS(1487), - [anon_sym_U_SQUOTE] = ACTIONS(1487), - [anon_sym_u8_SQUOTE] = ACTIONS(1487), - [anon_sym_SQUOTE] = ACTIONS(1487), - [anon_sym_L_DQUOTE] = ACTIONS(1487), - [anon_sym_u_DQUOTE] = ACTIONS(1487), - [anon_sym_U_DQUOTE] = ACTIONS(1487), - [anon_sym_u8_DQUOTE] = ACTIONS(1487), - [anon_sym_DQUOTE] = ACTIONS(1487), - [sym_true] = ACTIONS(1485), - [sym_false] = ACTIONS(1485), - [anon_sym_NULL] = ACTIONS(1485), - [anon_sym_nullptr] = ACTIONS(1485), + [sym_identifier] = ACTIONS(1500), + [aux_sym_preproc_include_token1] = ACTIONS(1500), + [aux_sym_preproc_def_token1] = ACTIONS(1500), + [aux_sym_preproc_if_token1] = ACTIONS(1500), + [aux_sym_preproc_if_token2] = ACTIONS(1500), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1500), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1500), + [aux_sym_preproc_else_token1] = ACTIONS(1500), + [aux_sym_preproc_elif_token1] = ACTIONS(1500), + [sym_preproc_directive] = ACTIONS(1500), + [anon_sym_LPAREN2] = ACTIONS(1502), + [anon_sym_BANG] = ACTIONS(1502), + [anon_sym_TILDE] = ACTIONS(1502), + [anon_sym_DASH] = ACTIONS(1500), + [anon_sym_PLUS] = ACTIONS(1500), + [anon_sym_STAR] = ACTIONS(1502), + [anon_sym_AMP] = ACTIONS(1502), + [anon_sym_SEMI] = ACTIONS(1502), + [anon_sym___extension__] = ACTIONS(1500), + [anon_sym_typedef] = ACTIONS(1500), + [anon_sym_extern] = ACTIONS(1500), + [anon_sym___attribute__] = ACTIONS(1500), + [anon_sym___scanf] = ACTIONS(1500), + [anon_sym___printf] = ACTIONS(1500), + [anon_sym___read_mostly] = ACTIONS(1500), + [anon_sym___must_hold] = ACTIONS(1500), + [anon_sym___ro_after_init] = ACTIONS(1500), + [anon_sym___init] = ACTIONS(1500), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1502), + [anon_sym___declspec] = ACTIONS(1500), + [anon_sym___cdecl] = ACTIONS(1500), + [anon_sym___clrcall] = ACTIONS(1500), + [anon_sym___stdcall] = ACTIONS(1500), + [anon_sym___fastcall] = ACTIONS(1500), + [anon_sym___thiscall] = ACTIONS(1500), + [anon_sym___vectorcall] = ACTIONS(1500), + [anon_sym_LBRACE] = ACTIONS(1502), + [anon_sym_signed] = ACTIONS(1500), + [anon_sym_unsigned] = ACTIONS(1500), + [anon_sym_long] = ACTIONS(1500), + [anon_sym_short] = ACTIONS(1500), + [anon_sym_static] = ACTIONS(1500), + [anon_sym_auto] = ACTIONS(1500), + [anon_sym_register] = ACTIONS(1500), + [anon_sym_inline] = ACTIONS(1500), + [anon_sym___inline] = ACTIONS(1500), + [anon_sym___inline__] = ACTIONS(1500), + [anon_sym___forceinline] = ACTIONS(1500), + [anon_sym_thread_local] = ACTIONS(1500), + [anon_sym___thread] = ACTIONS(1500), + [anon_sym_const] = ACTIONS(1500), + [anon_sym_constexpr] = ACTIONS(1500), + [anon_sym_volatile] = ACTIONS(1500), + [anon_sym_restrict] = ACTIONS(1500), + [anon_sym___restrict__] = ACTIONS(1500), + [anon_sym__Atomic] = ACTIONS(1500), + [anon_sym__Noreturn] = ACTIONS(1500), + [anon_sym_noreturn] = ACTIONS(1500), + [sym_primitive_type] = ACTIONS(1500), + [anon_sym_enum] = ACTIONS(1500), + [anon_sym_struct] = ACTIONS(1500), + [anon_sym_union] = ACTIONS(1500), + [anon_sym_if] = ACTIONS(1500), + [anon_sym_switch] = ACTIONS(1500), + [anon_sym_case] = ACTIONS(1500), + [anon_sym_default] = ACTIONS(1500), + [anon_sym_while] = ACTIONS(1500), + [anon_sym_do] = ACTIONS(1500), + [anon_sym_for] = ACTIONS(1500), + [anon_sym_return] = ACTIONS(1500), + [anon_sym_break] = ACTIONS(1500), + [anon_sym_continue] = ACTIONS(1500), + [anon_sym_goto] = ACTIONS(1500), + [anon_sym___try] = ACTIONS(1500), + [anon_sym___leave] = ACTIONS(1500), + [anon_sym_DASH_DASH] = ACTIONS(1502), + [anon_sym_PLUS_PLUS] = ACTIONS(1502), + [anon_sym_sizeof] = ACTIONS(1500), + [anon_sym___alignof__] = ACTIONS(1500), + [anon_sym___alignof] = ACTIONS(1500), + [anon_sym__alignof] = ACTIONS(1500), + [anon_sym_alignof] = ACTIONS(1500), + [anon_sym__Alignof] = ACTIONS(1500), + [anon_sym_offsetof] = ACTIONS(1500), + [anon_sym__Generic] = ACTIONS(1500), + [anon_sym_asm] = ACTIONS(1500), + [anon_sym___asm__] = ACTIONS(1500), + [sym_number_literal] = ACTIONS(1502), + [anon_sym_L_SQUOTE] = ACTIONS(1502), + [anon_sym_u_SQUOTE] = ACTIONS(1502), + [anon_sym_U_SQUOTE] = ACTIONS(1502), + [anon_sym_u8_SQUOTE] = ACTIONS(1502), + [anon_sym_SQUOTE] = ACTIONS(1502), + [anon_sym_L_DQUOTE] = ACTIONS(1502), + [anon_sym_u_DQUOTE] = ACTIONS(1502), + [anon_sym_U_DQUOTE] = ACTIONS(1502), + [anon_sym_u8_DQUOTE] = ACTIONS(1502), + [anon_sym_DQUOTE] = ACTIONS(1502), + [sym_true] = ACTIONS(1500), + [sym_false] = ACTIONS(1500), + [anon_sym_NULL] = ACTIONS(1500), + [anon_sym_nullptr] = ACTIONS(1500), [sym_comment] = ACTIONS(3), }, [216] = { - [sym_identifier] = ACTIONS(1461), - [aux_sym_preproc_include_token1] = ACTIONS(1461), - [aux_sym_preproc_def_token1] = ACTIONS(1461), - [aux_sym_preproc_if_token1] = ACTIONS(1461), - [aux_sym_preproc_if_token2] = ACTIONS(1461), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1461), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1461), - [aux_sym_preproc_else_token1] = ACTIONS(1461), - [aux_sym_preproc_elif_token1] = ACTIONS(1461), - [sym_preproc_directive] = ACTIONS(1461), - [anon_sym_LPAREN2] = ACTIONS(1463), - [anon_sym_BANG] = ACTIONS(1463), - [anon_sym_TILDE] = ACTIONS(1463), - [anon_sym_DASH] = ACTIONS(1461), - [anon_sym_PLUS] = ACTIONS(1461), - [anon_sym_STAR] = ACTIONS(1463), - [anon_sym_AMP] = ACTIONS(1463), - [anon_sym_SEMI] = ACTIONS(1463), - [anon_sym___extension__] = ACTIONS(1461), - [anon_sym_typedef] = ACTIONS(1461), - [anon_sym_extern] = ACTIONS(1461), - [anon_sym___attribute__] = ACTIONS(1461), - [anon_sym___scanf] = ACTIONS(1461), - [anon_sym___printf] = ACTIONS(1461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1463), - [anon_sym___declspec] = ACTIONS(1461), - [anon_sym___cdecl] = ACTIONS(1461), - [anon_sym___clrcall] = ACTIONS(1461), - [anon_sym___stdcall] = ACTIONS(1461), - [anon_sym___fastcall] = ACTIONS(1461), - [anon_sym___thiscall] = ACTIONS(1461), - [anon_sym___vectorcall] = ACTIONS(1461), - [anon_sym_LBRACE] = ACTIONS(1463), - [anon_sym_signed] = ACTIONS(1461), - [anon_sym_unsigned] = ACTIONS(1461), - [anon_sym_long] = ACTIONS(1461), - [anon_sym_short] = ACTIONS(1461), - [anon_sym_static] = ACTIONS(1461), - [anon_sym_auto] = ACTIONS(1461), - [anon_sym_register] = ACTIONS(1461), - [anon_sym_inline] = ACTIONS(1461), - [anon_sym___inline] = ACTIONS(1461), - [anon_sym___inline__] = ACTIONS(1461), - [anon_sym___forceinline] = ACTIONS(1461), - [anon_sym_thread_local] = ACTIONS(1461), - [anon_sym___thread] = ACTIONS(1461), - [anon_sym_const] = ACTIONS(1461), - [anon_sym_constexpr] = ACTIONS(1461), - [anon_sym_volatile] = ACTIONS(1461), - [anon_sym_restrict] = ACTIONS(1461), - [anon_sym___restrict__] = ACTIONS(1461), - [anon_sym__Atomic] = ACTIONS(1461), - [anon_sym__Noreturn] = ACTIONS(1461), - [anon_sym_noreturn] = ACTIONS(1461), - [sym_primitive_type] = ACTIONS(1461), - [anon_sym_enum] = ACTIONS(1461), - [anon_sym_struct] = ACTIONS(1461), - [anon_sym_union] = ACTIONS(1461), - [anon_sym_if] = ACTIONS(1461), - [anon_sym_switch] = ACTIONS(1461), - [anon_sym_case] = ACTIONS(1461), - [anon_sym_default] = ACTIONS(1461), - [anon_sym_while] = ACTIONS(1461), - [anon_sym_do] = ACTIONS(1461), - [anon_sym_for] = ACTIONS(1461), - [anon_sym_return] = ACTIONS(1461), - [anon_sym_break] = ACTIONS(1461), - [anon_sym_continue] = ACTIONS(1461), - [anon_sym_goto] = ACTIONS(1461), - [anon_sym___try] = ACTIONS(1461), - [anon_sym___leave] = ACTIONS(1461), - [anon_sym_DASH_DASH] = ACTIONS(1463), - [anon_sym_PLUS_PLUS] = ACTIONS(1463), - [anon_sym_sizeof] = ACTIONS(1461), - [anon_sym___alignof__] = ACTIONS(1461), - [anon_sym___alignof] = ACTIONS(1461), - [anon_sym__alignof] = ACTIONS(1461), - [anon_sym_alignof] = ACTIONS(1461), - [anon_sym__Alignof] = ACTIONS(1461), - [anon_sym_offsetof] = ACTIONS(1461), - [anon_sym__Generic] = ACTIONS(1461), - [anon_sym_asm] = ACTIONS(1461), - [anon_sym___asm__] = ACTIONS(1461), - [sym_number_literal] = ACTIONS(1463), - [anon_sym_L_SQUOTE] = ACTIONS(1463), - [anon_sym_u_SQUOTE] = ACTIONS(1463), - [anon_sym_U_SQUOTE] = ACTIONS(1463), - [anon_sym_u8_SQUOTE] = ACTIONS(1463), - [anon_sym_SQUOTE] = ACTIONS(1463), - [anon_sym_L_DQUOTE] = ACTIONS(1463), - [anon_sym_u_DQUOTE] = ACTIONS(1463), - [anon_sym_U_DQUOTE] = ACTIONS(1463), - [anon_sym_u8_DQUOTE] = ACTIONS(1463), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_true] = ACTIONS(1461), - [sym_false] = ACTIONS(1461), - [anon_sym_NULL] = ACTIONS(1461), - [anon_sym_nullptr] = ACTIONS(1461), + [sym_identifier] = ACTIONS(1496), + [aux_sym_preproc_include_token1] = ACTIONS(1496), + [aux_sym_preproc_def_token1] = ACTIONS(1496), + [aux_sym_preproc_if_token1] = ACTIONS(1496), + [aux_sym_preproc_if_token2] = ACTIONS(1496), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1496), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1496), + [aux_sym_preproc_else_token1] = ACTIONS(1496), + [aux_sym_preproc_elif_token1] = ACTIONS(1496), + [sym_preproc_directive] = ACTIONS(1496), + [anon_sym_LPAREN2] = ACTIONS(1498), + [anon_sym_BANG] = ACTIONS(1498), + [anon_sym_TILDE] = ACTIONS(1498), + [anon_sym_DASH] = ACTIONS(1496), + [anon_sym_PLUS] = ACTIONS(1496), + [anon_sym_STAR] = ACTIONS(1498), + [anon_sym_AMP] = ACTIONS(1498), + [anon_sym_SEMI] = ACTIONS(1498), + [anon_sym___extension__] = ACTIONS(1496), + [anon_sym_typedef] = ACTIONS(1496), + [anon_sym_extern] = ACTIONS(1496), + [anon_sym___attribute__] = ACTIONS(1496), + [anon_sym___scanf] = ACTIONS(1496), + [anon_sym___printf] = ACTIONS(1496), + [anon_sym___read_mostly] = ACTIONS(1496), + [anon_sym___must_hold] = ACTIONS(1496), + [anon_sym___ro_after_init] = ACTIONS(1496), + [anon_sym___init] = ACTIONS(1496), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1498), + [anon_sym___declspec] = ACTIONS(1496), + [anon_sym___cdecl] = ACTIONS(1496), + [anon_sym___clrcall] = ACTIONS(1496), + [anon_sym___stdcall] = ACTIONS(1496), + [anon_sym___fastcall] = ACTIONS(1496), + [anon_sym___thiscall] = ACTIONS(1496), + [anon_sym___vectorcall] = ACTIONS(1496), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_signed] = ACTIONS(1496), + [anon_sym_unsigned] = ACTIONS(1496), + [anon_sym_long] = ACTIONS(1496), + [anon_sym_short] = ACTIONS(1496), + [anon_sym_static] = ACTIONS(1496), + [anon_sym_auto] = ACTIONS(1496), + [anon_sym_register] = ACTIONS(1496), + [anon_sym_inline] = ACTIONS(1496), + [anon_sym___inline] = ACTIONS(1496), + [anon_sym___inline__] = ACTIONS(1496), + [anon_sym___forceinline] = ACTIONS(1496), + [anon_sym_thread_local] = ACTIONS(1496), + [anon_sym___thread] = ACTIONS(1496), + [anon_sym_const] = ACTIONS(1496), + [anon_sym_constexpr] = ACTIONS(1496), + [anon_sym_volatile] = ACTIONS(1496), + [anon_sym_restrict] = ACTIONS(1496), + [anon_sym___restrict__] = ACTIONS(1496), + [anon_sym__Atomic] = ACTIONS(1496), + [anon_sym__Noreturn] = ACTIONS(1496), + [anon_sym_noreturn] = ACTIONS(1496), + [sym_primitive_type] = ACTIONS(1496), + [anon_sym_enum] = ACTIONS(1496), + [anon_sym_struct] = ACTIONS(1496), + [anon_sym_union] = ACTIONS(1496), + [anon_sym_if] = ACTIONS(1496), + [anon_sym_switch] = ACTIONS(1496), + [anon_sym_case] = ACTIONS(1496), + [anon_sym_default] = ACTIONS(1496), + [anon_sym_while] = ACTIONS(1496), + [anon_sym_do] = ACTIONS(1496), + [anon_sym_for] = ACTIONS(1496), + [anon_sym_return] = ACTIONS(1496), + [anon_sym_break] = ACTIONS(1496), + [anon_sym_continue] = ACTIONS(1496), + [anon_sym_goto] = ACTIONS(1496), + [anon_sym___try] = ACTIONS(1496), + [anon_sym___leave] = ACTIONS(1496), + [anon_sym_DASH_DASH] = ACTIONS(1498), + [anon_sym_PLUS_PLUS] = ACTIONS(1498), + [anon_sym_sizeof] = ACTIONS(1496), + [anon_sym___alignof__] = ACTIONS(1496), + [anon_sym___alignof] = ACTIONS(1496), + [anon_sym__alignof] = ACTIONS(1496), + [anon_sym_alignof] = ACTIONS(1496), + [anon_sym__Alignof] = ACTIONS(1496), + [anon_sym_offsetof] = ACTIONS(1496), + [anon_sym__Generic] = ACTIONS(1496), + [anon_sym_asm] = ACTIONS(1496), + [anon_sym___asm__] = ACTIONS(1496), + [sym_number_literal] = ACTIONS(1498), + [anon_sym_L_SQUOTE] = ACTIONS(1498), + [anon_sym_u_SQUOTE] = ACTIONS(1498), + [anon_sym_U_SQUOTE] = ACTIONS(1498), + [anon_sym_u8_SQUOTE] = ACTIONS(1498), + [anon_sym_SQUOTE] = ACTIONS(1498), + [anon_sym_L_DQUOTE] = ACTIONS(1498), + [anon_sym_u_DQUOTE] = ACTIONS(1498), + [anon_sym_U_DQUOTE] = ACTIONS(1498), + [anon_sym_u8_DQUOTE] = ACTIONS(1498), + [anon_sym_DQUOTE] = ACTIONS(1498), + [sym_true] = ACTIONS(1496), + [sym_false] = ACTIONS(1496), + [anon_sym_NULL] = ACTIONS(1496), + [anon_sym_nullptr] = ACTIONS(1496), [sym_comment] = ACTIONS(3), }, [217] = { - [sym_identifier] = ACTIONS(1465), - [aux_sym_preproc_include_token1] = ACTIONS(1465), - [aux_sym_preproc_def_token1] = ACTIONS(1465), - [aux_sym_preproc_if_token1] = ACTIONS(1465), - [aux_sym_preproc_if_token2] = ACTIONS(1465), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1465), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1465), - [aux_sym_preproc_else_token1] = ACTIONS(1465), - [aux_sym_preproc_elif_token1] = ACTIONS(1465), - [sym_preproc_directive] = ACTIONS(1465), - [anon_sym_LPAREN2] = ACTIONS(1467), - [anon_sym_BANG] = ACTIONS(1467), - [anon_sym_TILDE] = ACTIONS(1467), - [anon_sym_DASH] = ACTIONS(1465), - [anon_sym_PLUS] = ACTIONS(1465), - [anon_sym_STAR] = ACTIONS(1467), - [anon_sym_AMP] = ACTIONS(1467), - [anon_sym_SEMI] = ACTIONS(1467), - [anon_sym___extension__] = ACTIONS(1465), - [anon_sym_typedef] = ACTIONS(1465), - [anon_sym_extern] = ACTIONS(1465), - [anon_sym___attribute__] = ACTIONS(1465), - [anon_sym___scanf] = ACTIONS(1465), - [anon_sym___printf] = ACTIONS(1465), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1467), - [anon_sym___declspec] = ACTIONS(1465), - [anon_sym___cdecl] = ACTIONS(1465), - [anon_sym___clrcall] = ACTIONS(1465), - [anon_sym___stdcall] = ACTIONS(1465), - [anon_sym___fastcall] = ACTIONS(1465), - [anon_sym___thiscall] = ACTIONS(1465), - [anon_sym___vectorcall] = ACTIONS(1465), - [anon_sym_LBRACE] = ACTIONS(1467), - [anon_sym_signed] = ACTIONS(1465), - [anon_sym_unsigned] = ACTIONS(1465), - [anon_sym_long] = ACTIONS(1465), - [anon_sym_short] = ACTIONS(1465), - [anon_sym_static] = ACTIONS(1465), - [anon_sym_auto] = ACTIONS(1465), - [anon_sym_register] = ACTIONS(1465), - [anon_sym_inline] = ACTIONS(1465), - [anon_sym___inline] = ACTIONS(1465), - [anon_sym___inline__] = ACTIONS(1465), - [anon_sym___forceinline] = ACTIONS(1465), - [anon_sym_thread_local] = ACTIONS(1465), - [anon_sym___thread] = ACTIONS(1465), - [anon_sym_const] = ACTIONS(1465), - [anon_sym_constexpr] = ACTIONS(1465), - [anon_sym_volatile] = ACTIONS(1465), - [anon_sym_restrict] = ACTIONS(1465), - [anon_sym___restrict__] = ACTIONS(1465), - [anon_sym__Atomic] = ACTIONS(1465), - [anon_sym__Noreturn] = ACTIONS(1465), - [anon_sym_noreturn] = ACTIONS(1465), - [sym_primitive_type] = ACTIONS(1465), - [anon_sym_enum] = ACTIONS(1465), - [anon_sym_struct] = ACTIONS(1465), - [anon_sym_union] = ACTIONS(1465), - [anon_sym_if] = ACTIONS(1465), - [anon_sym_switch] = ACTIONS(1465), - [anon_sym_case] = ACTIONS(1465), - [anon_sym_default] = ACTIONS(1465), - [anon_sym_while] = ACTIONS(1465), - [anon_sym_do] = ACTIONS(1465), - [anon_sym_for] = ACTIONS(1465), - [anon_sym_return] = ACTIONS(1465), - [anon_sym_break] = ACTIONS(1465), - [anon_sym_continue] = ACTIONS(1465), - [anon_sym_goto] = ACTIONS(1465), - [anon_sym___try] = ACTIONS(1465), - [anon_sym___leave] = ACTIONS(1465), - [anon_sym_DASH_DASH] = ACTIONS(1467), - [anon_sym_PLUS_PLUS] = ACTIONS(1467), - [anon_sym_sizeof] = ACTIONS(1465), - [anon_sym___alignof__] = ACTIONS(1465), - [anon_sym___alignof] = ACTIONS(1465), - [anon_sym__alignof] = ACTIONS(1465), - [anon_sym_alignof] = ACTIONS(1465), - [anon_sym__Alignof] = ACTIONS(1465), - [anon_sym_offsetof] = ACTIONS(1465), - [anon_sym__Generic] = ACTIONS(1465), - [anon_sym_asm] = ACTIONS(1465), - [anon_sym___asm__] = ACTIONS(1465), - [sym_number_literal] = ACTIONS(1467), - [anon_sym_L_SQUOTE] = ACTIONS(1467), - [anon_sym_u_SQUOTE] = ACTIONS(1467), - [anon_sym_U_SQUOTE] = ACTIONS(1467), - [anon_sym_u8_SQUOTE] = ACTIONS(1467), - [anon_sym_SQUOTE] = ACTIONS(1467), - [anon_sym_L_DQUOTE] = ACTIONS(1467), - [anon_sym_u_DQUOTE] = ACTIONS(1467), - [anon_sym_U_DQUOTE] = ACTIONS(1467), - [anon_sym_u8_DQUOTE] = ACTIONS(1467), - [anon_sym_DQUOTE] = ACTIONS(1467), - [sym_true] = ACTIONS(1465), - [sym_false] = ACTIONS(1465), - [anon_sym_NULL] = ACTIONS(1465), - [anon_sym_nullptr] = ACTIONS(1465), + [sym_identifier] = ACTIONS(1424), + [aux_sym_preproc_include_token1] = ACTIONS(1424), + [aux_sym_preproc_def_token1] = ACTIONS(1424), + [aux_sym_preproc_if_token1] = ACTIONS(1424), + [aux_sym_preproc_if_token2] = ACTIONS(1424), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1424), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1424), + [aux_sym_preproc_else_token1] = ACTIONS(1424), + [aux_sym_preproc_elif_token1] = ACTIONS(1424), + [sym_preproc_directive] = ACTIONS(1424), + [anon_sym_LPAREN2] = ACTIONS(1426), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_DASH] = ACTIONS(1424), + [anon_sym_PLUS] = ACTIONS(1424), + [anon_sym_STAR] = ACTIONS(1426), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_SEMI] = ACTIONS(1426), + [anon_sym___extension__] = ACTIONS(1424), + [anon_sym_typedef] = ACTIONS(1424), + [anon_sym_extern] = ACTIONS(1424), + [anon_sym___attribute__] = ACTIONS(1424), + [anon_sym___scanf] = ACTIONS(1424), + [anon_sym___printf] = ACTIONS(1424), + [anon_sym___read_mostly] = ACTIONS(1424), + [anon_sym___must_hold] = ACTIONS(1424), + [anon_sym___ro_after_init] = ACTIONS(1424), + [anon_sym___init] = ACTIONS(1424), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1426), + [anon_sym___declspec] = ACTIONS(1424), + [anon_sym___cdecl] = ACTIONS(1424), + [anon_sym___clrcall] = ACTIONS(1424), + [anon_sym___stdcall] = ACTIONS(1424), + [anon_sym___fastcall] = ACTIONS(1424), + [anon_sym___thiscall] = ACTIONS(1424), + [anon_sym___vectorcall] = ACTIONS(1424), + [anon_sym_LBRACE] = ACTIONS(1426), + [anon_sym_signed] = ACTIONS(1424), + [anon_sym_unsigned] = ACTIONS(1424), + [anon_sym_long] = ACTIONS(1424), + [anon_sym_short] = ACTIONS(1424), + [anon_sym_static] = ACTIONS(1424), + [anon_sym_auto] = ACTIONS(1424), + [anon_sym_register] = ACTIONS(1424), + [anon_sym_inline] = ACTIONS(1424), + [anon_sym___inline] = ACTIONS(1424), + [anon_sym___inline__] = ACTIONS(1424), + [anon_sym___forceinline] = ACTIONS(1424), + [anon_sym_thread_local] = ACTIONS(1424), + [anon_sym___thread] = ACTIONS(1424), + [anon_sym_const] = ACTIONS(1424), + [anon_sym_constexpr] = ACTIONS(1424), + [anon_sym_volatile] = ACTIONS(1424), + [anon_sym_restrict] = ACTIONS(1424), + [anon_sym___restrict__] = ACTIONS(1424), + [anon_sym__Atomic] = ACTIONS(1424), + [anon_sym__Noreturn] = ACTIONS(1424), + [anon_sym_noreturn] = ACTIONS(1424), + [sym_primitive_type] = ACTIONS(1424), + [anon_sym_enum] = ACTIONS(1424), + [anon_sym_struct] = ACTIONS(1424), + [anon_sym_union] = ACTIONS(1424), + [anon_sym_if] = ACTIONS(1424), + [anon_sym_switch] = ACTIONS(1424), + [anon_sym_case] = ACTIONS(1424), + [anon_sym_default] = ACTIONS(1424), + [anon_sym_while] = ACTIONS(1424), + [anon_sym_do] = ACTIONS(1424), + [anon_sym_for] = ACTIONS(1424), + [anon_sym_return] = ACTIONS(1424), + [anon_sym_break] = ACTIONS(1424), + [anon_sym_continue] = ACTIONS(1424), + [anon_sym_goto] = ACTIONS(1424), + [anon_sym___try] = ACTIONS(1424), + [anon_sym___leave] = ACTIONS(1424), + [anon_sym_DASH_DASH] = ACTIONS(1426), + [anon_sym_PLUS_PLUS] = ACTIONS(1426), + [anon_sym_sizeof] = ACTIONS(1424), + [anon_sym___alignof__] = ACTIONS(1424), + [anon_sym___alignof] = ACTIONS(1424), + [anon_sym__alignof] = ACTIONS(1424), + [anon_sym_alignof] = ACTIONS(1424), + [anon_sym__Alignof] = ACTIONS(1424), + [anon_sym_offsetof] = ACTIONS(1424), + [anon_sym__Generic] = ACTIONS(1424), + [anon_sym_asm] = ACTIONS(1424), + [anon_sym___asm__] = ACTIONS(1424), + [sym_number_literal] = ACTIONS(1426), + [anon_sym_L_SQUOTE] = ACTIONS(1426), + [anon_sym_u_SQUOTE] = ACTIONS(1426), + [anon_sym_U_SQUOTE] = ACTIONS(1426), + [anon_sym_u8_SQUOTE] = ACTIONS(1426), + [anon_sym_SQUOTE] = ACTIONS(1426), + [anon_sym_L_DQUOTE] = ACTIONS(1426), + [anon_sym_u_DQUOTE] = ACTIONS(1426), + [anon_sym_U_DQUOTE] = ACTIONS(1426), + [anon_sym_u8_DQUOTE] = ACTIONS(1426), + [anon_sym_DQUOTE] = ACTIONS(1426), + [sym_true] = ACTIONS(1424), + [sym_false] = ACTIONS(1424), + [anon_sym_NULL] = ACTIONS(1424), + [anon_sym_nullptr] = ACTIONS(1424), [sym_comment] = ACTIONS(3), }, [218] = { - [sym_identifier] = ACTIONS(1489), - [aux_sym_preproc_include_token1] = ACTIONS(1489), - [aux_sym_preproc_def_token1] = ACTIONS(1489), - [aux_sym_preproc_if_token1] = ACTIONS(1489), - [aux_sym_preproc_if_token2] = ACTIONS(1489), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1489), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1489), - [aux_sym_preproc_else_token1] = ACTIONS(1489), - [aux_sym_preproc_elif_token1] = ACTIONS(1489), - [sym_preproc_directive] = ACTIONS(1489), - [anon_sym_LPAREN2] = ACTIONS(1491), - [anon_sym_BANG] = ACTIONS(1491), - [anon_sym_TILDE] = ACTIONS(1491), - [anon_sym_DASH] = ACTIONS(1489), - [anon_sym_PLUS] = ACTIONS(1489), - [anon_sym_STAR] = ACTIONS(1491), - [anon_sym_AMP] = ACTIONS(1491), - [anon_sym_SEMI] = ACTIONS(1491), - [anon_sym___extension__] = ACTIONS(1489), - [anon_sym_typedef] = ACTIONS(1489), - [anon_sym_extern] = ACTIONS(1489), - [anon_sym___attribute__] = ACTIONS(1489), - [anon_sym___scanf] = ACTIONS(1489), - [anon_sym___printf] = ACTIONS(1489), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1491), - [anon_sym___declspec] = ACTIONS(1489), - [anon_sym___cdecl] = ACTIONS(1489), - [anon_sym___clrcall] = ACTIONS(1489), - [anon_sym___stdcall] = ACTIONS(1489), - [anon_sym___fastcall] = ACTIONS(1489), - [anon_sym___thiscall] = ACTIONS(1489), - [anon_sym___vectorcall] = ACTIONS(1489), - [anon_sym_LBRACE] = ACTIONS(1491), - [anon_sym_signed] = ACTIONS(1489), - [anon_sym_unsigned] = ACTIONS(1489), - [anon_sym_long] = ACTIONS(1489), - [anon_sym_short] = ACTIONS(1489), - [anon_sym_static] = ACTIONS(1489), - [anon_sym_auto] = ACTIONS(1489), - [anon_sym_register] = ACTIONS(1489), - [anon_sym_inline] = ACTIONS(1489), - [anon_sym___inline] = ACTIONS(1489), - [anon_sym___inline__] = ACTIONS(1489), - [anon_sym___forceinline] = ACTIONS(1489), - [anon_sym_thread_local] = ACTIONS(1489), - [anon_sym___thread] = ACTIONS(1489), - [anon_sym_const] = ACTIONS(1489), - [anon_sym_constexpr] = ACTIONS(1489), - [anon_sym_volatile] = ACTIONS(1489), - [anon_sym_restrict] = ACTIONS(1489), - [anon_sym___restrict__] = ACTIONS(1489), - [anon_sym__Atomic] = ACTIONS(1489), - [anon_sym__Noreturn] = ACTIONS(1489), - [anon_sym_noreturn] = ACTIONS(1489), - [sym_primitive_type] = ACTIONS(1489), - [anon_sym_enum] = ACTIONS(1489), - [anon_sym_struct] = ACTIONS(1489), - [anon_sym_union] = ACTIONS(1489), - [anon_sym_if] = ACTIONS(1489), - [anon_sym_switch] = ACTIONS(1489), - [anon_sym_case] = ACTIONS(1489), - [anon_sym_default] = ACTIONS(1489), - [anon_sym_while] = ACTIONS(1489), - [anon_sym_do] = ACTIONS(1489), - [anon_sym_for] = ACTIONS(1489), - [anon_sym_return] = ACTIONS(1489), - [anon_sym_break] = ACTIONS(1489), - [anon_sym_continue] = ACTIONS(1489), - [anon_sym_goto] = ACTIONS(1489), - [anon_sym___try] = ACTIONS(1489), - [anon_sym___leave] = ACTIONS(1489), - [anon_sym_DASH_DASH] = ACTIONS(1491), - [anon_sym_PLUS_PLUS] = ACTIONS(1491), - [anon_sym_sizeof] = ACTIONS(1489), - [anon_sym___alignof__] = ACTIONS(1489), - [anon_sym___alignof] = ACTIONS(1489), - [anon_sym__alignof] = ACTIONS(1489), - [anon_sym_alignof] = ACTIONS(1489), - [anon_sym__Alignof] = ACTIONS(1489), - [anon_sym_offsetof] = ACTIONS(1489), - [anon_sym__Generic] = ACTIONS(1489), - [anon_sym_asm] = ACTIONS(1489), - [anon_sym___asm__] = ACTIONS(1489), - [sym_number_literal] = ACTIONS(1491), - [anon_sym_L_SQUOTE] = ACTIONS(1491), - [anon_sym_u_SQUOTE] = ACTIONS(1491), - [anon_sym_U_SQUOTE] = ACTIONS(1491), - [anon_sym_u8_SQUOTE] = ACTIONS(1491), - [anon_sym_SQUOTE] = ACTIONS(1491), - [anon_sym_L_DQUOTE] = ACTIONS(1491), - [anon_sym_u_DQUOTE] = ACTIONS(1491), - [anon_sym_U_DQUOTE] = ACTIONS(1491), - [anon_sym_u8_DQUOTE] = ACTIONS(1491), - [anon_sym_DQUOTE] = ACTIONS(1491), - [sym_true] = ACTIONS(1489), - [sym_false] = ACTIONS(1489), - [anon_sym_NULL] = ACTIONS(1489), - [anon_sym_nullptr] = ACTIONS(1489), + [sym_identifier] = ACTIONS(1524), + [aux_sym_preproc_include_token1] = ACTIONS(1524), + [aux_sym_preproc_def_token1] = ACTIONS(1524), + [aux_sym_preproc_if_token1] = ACTIONS(1524), + [aux_sym_preproc_if_token2] = ACTIONS(1524), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1524), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1524), + [aux_sym_preproc_else_token1] = ACTIONS(1524), + [aux_sym_preproc_elif_token1] = ACTIONS(1524), + [sym_preproc_directive] = ACTIONS(1524), + [anon_sym_LPAREN2] = ACTIONS(1526), + [anon_sym_BANG] = ACTIONS(1526), + [anon_sym_TILDE] = ACTIONS(1526), + [anon_sym_DASH] = ACTIONS(1524), + [anon_sym_PLUS] = ACTIONS(1524), + [anon_sym_STAR] = ACTIONS(1526), + [anon_sym_AMP] = ACTIONS(1526), + [anon_sym_SEMI] = ACTIONS(1526), + [anon_sym___extension__] = ACTIONS(1524), + [anon_sym_typedef] = ACTIONS(1524), + [anon_sym_extern] = ACTIONS(1524), + [anon_sym___attribute__] = ACTIONS(1524), + [anon_sym___scanf] = ACTIONS(1524), + [anon_sym___printf] = ACTIONS(1524), + [anon_sym___read_mostly] = ACTIONS(1524), + [anon_sym___must_hold] = ACTIONS(1524), + [anon_sym___ro_after_init] = ACTIONS(1524), + [anon_sym___init] = ACTIONS(1524), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1526), + [anon_sym___declspec] = ACTIONS(1524), + [anon_sym___cdecl] = ACTIONS(1524), + [anon_sym___clrcall] = ACTIONS(1524), + [anon_sym___stdcall] = ACTIONS(1524), + [anon_sym___fastcall] = ACTIONS(1524), + [anon_sym___thiscall] = ACTIONS(1524), + [anon_sym___vectorcall] = ACTIONS(1524), + [anon_sym_LBRACE] = ACTIONS(1526), + [anon_sym_signed] = ACTIONS(1524), + [anon_sym_unsigned] = ACTIONS(1524), + [anon_sym_long] = ACTIONS(1524), + [anon_sym_short] = ACTIONS(1524), + [anon_sym_static] = ACTIONS(1524), + [anon_sym_auto] = ACTIONS(1524), + [anon_sym_register] = ACTIONS(1524), + [anon_sym_inline] = ACTIONS(1524), + [anon_sym___inline] = ACTIONS(1524), + [anon_sym___inline__] = ACTIONS(1524), + [anon_sym___forceinline] = ACTIONS(1524), + [anon_sym_thread_local] = ACTIONS(1524), + [anon_sym___thread] = ACTIONS(1524), + [anon_sym_const] = ACTIONS(1524), + [anon_sym_constexpr] = ACTIONS(1524), + [anon_sym_volatile] = ACTIONS(1524), + [anon_sym_restrict] = ACTIONS(1524), + [anon_sym___restrict__] = ACTIONS(1524), + [anon_sym__Atomic] = ACTIONS(1524), + [anon_sym__Noreturn] = ACTIONS(1524), + [anon_sym_noreturn] = ACTIONS(1524), + [sym_primitive_type] = ACTIONS(1524), + [anon_sym_enum] = ACTIONS(1524), + [anon_sym_struct] = ACTIONS(1524), + [anon_sym_union] = ACTIONS(1524), + [anon_sym_if] = ACTIONS(1524), + [anon_sym_switch] = ACTIONS(1524), + [anon_sym_case] = ACTIONS(1524), + [anon_sym_default] = ACTIONS(1524), + [anon_sym_while] = ACTIONS(1524), + [anon_sym_do] = ACTIONS(1524), + [anon_sym_for] = ACTIONS(1524), + [anon_sym_return] = ACTIONS(1524), + [anon_sym_break] = ACTIONS(1524), + [anon_sym_continue] = ACTIONS(1524), + [anon_sym_goto] = ACTIONS(1524), + [anon_sym___try] = ACTIONS(1524), + [anon_sym___leave] = ACTIONS(1524), + [anon_sym_DASH_DASH] = ACTIONS(1526), + [anon_sym_PLUS_PLUS] = ACTIONS(1526), + [anon_sym_sizeof] = ACTIONS(1524), + [anon_sym___alignof__] = ACTIONS(1524), + [anon_sym___alignof] = ACTIONS(1524), + [anon_sym__alignof] = ACTIONS(1524), + [anon_sym_alignof] = ACTIONS(1524), + [anon_sym__Alignof] = ACTIONS(1524), + [anon_sym_offsetof] = ACTIONS(1524), + [anon_sym__Generic] = ACTIONS(1524), + [anon_sym_asm] = ACTIONS(1524), + [anon_sym___asm__] = ACTIONS(1524), + [sym_number_literal] = ACTIONS(1526), + [anon_sym_L_SQUOTE] = ACTIONS(1526), + [anon_sym_u_SQUOTE] = ACTIONS(1526), + [anon_sym_U_SQUOTE] = ACTIONS(1526), + [anon_sym_u8_SQUOTE] = ACTIONS(1526), + [anon_sym_SQUOTE] = ACTIONS(1526), + [anon_sym_L_DQUOTE] = ACTIONS(1526), + [anon_sym_u_DQUOTE] = ACTIONS(1526), + [anon_sym_U_DQUOTE] = ACTIONS(1526), + [anon_sym_u8_DQUOTE] = ACTIONS(1526), + [anon_sym_DQUOTE] = ACTIONS(1526), + [sym_true] = ACTIONS(1524), + [sym_false] = ACTIONS(1524), + [anon_sym_NULL] = ACTIONS(1524), + [anon_sym_nullptr] = ACTIONS(1524), [sym_comment] = ACTIONS(3), }, [219] = { - [sym_identifier] = ACTIONS(1507), - [aux_sym_preproc_include_token1] = ACTIONS(1507), - [aux_sym_preproc_def_token1] = ACTIONS(1507), - [aux_sym_preproc_if_token1] = ACTIONS(1507), - [aux_sym_preproc_if_token2] = ACTIONS(1507), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1507), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1507), - [aux_sym_preproc_else_token1] = ACTIONS(1507), - [aux_sym_preproc_elif_token1] = ACTIONS(1507), - [sym_preproc_directive] = ACTIONS(1507), - [anon_sym_LPAREN2] = ACTIONS(1509), - [anon_sym_BANG] = ACTIONS(1509), - [anon_sym_TILDE] = ACTIONS(1509), - [anon_sym_DASH] = ACTIONS(1507), - [anon_sym_PLUS] = ACTIONS(1507), - [anon_sym_STAR] = ACTIONS(1509), - [anon_sym_AMP] = ACTIONS(1509), - [anon_sym_SEMI] = ACTIONS(1509), - [anon_sym___extension__] = ACTIONS(1507), - [anon_sym_typedef] = ACTIONS(1507), - [anon_sym_extern] = ACTIONS(1507), - [anon_sym___attribute__] = ACTIONS(1507), - [anon_sym___scanf] = ACTIONS(1507), - [anon_sym___printf] = ACTIONS(1507), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1509), - [anon_sym___declspec] = ACTIONS(1507), - [anon_sym___cdecl] = ACTIONS(1507), - [anon_sym___clrcall] = ACTIONS(1507), - [anon_sym___stdcall] = ACTIONS(1507), - [anon_sym___fastcall] = ACTIONS(1507), - [anon_sym___thiscall] = ACTIONS(1507), - [anon_sym___vectorcall] = ACTIONS(1507), - [anon_sym_LBRACE] = ACTIONS(1509), - [anon_sym_signed] = ACTIONS(1507), - [anon_sym_unsigned] = ACTIONS(1507), - [anon_sym_long] = ACTIONS(1507), - [anon_sym_short] = ACTIONS(1507), - [anon_sym_static] = ACTIONS(1507), - [anon_sym_auto] = ACTIONS(1507), - [anon_sym_register] = ACTIONS(1507), - [anon_sym_inline] = ACTIONS(1507), - [anon_sym___inline] = ACTIONS(1507), - [anon_sym___inline__] = ACTIONS(1507), - [anon_sym___forceinline] = ACTIONS(1507), - [anon_sym_thread_local] = ACTIONS(1507), - [anon_sym___thread] = ACTIONS(1507), - [anon_sym_const] = ACTIONS(1507), - [anon_sym_constexpr] = ACTIONS(1507), - [anon_sym_volatile] = ACTIONS(1507), - [anon_sym_restrict] = ACTIONS(1507), - [anon_sym___restrict__] = ACTIONS(1507), - [anon_sym__Atomic] = ACTIONS(1507), - [anon_sym__Noreturn] = ACTIONS(1507), - [anon_sym_noreturn] = ACTIONS(1507), - [sym_primitive_type] = ACTIONS(1507), - [anon_sym_enum] = ACTIONS(1507), - [anon_sym_struct] = ACTIONS(1507), - [anon_sym_union] = ACTIONS(1507), - [anon_sym_if] = ACTIONS(1507), - [anon_sym_switch] = ACTIONS(1507), - [anon_sym_case] = ACTIONS(1507), - [anon_sym_default] = ACTIONS(1507), - [anon_sym_while] = ACTIONS(1507), - [anon_sym_do] = ACTIONS(1507), - [anon_sym_for] = ACTIONS(1507), - [anon_sym_return] = ACTIONS(1507), - [anon_sym_break] = ACTIONS(1507), - [anon_sym_continue] = ACTIONS(1507), - [anon_sym_goto] = ACTIONS(1507), - [anon_sym___try] = ACTIONS(1507), - [anon_sym___leave] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1509), - [anon_sym_PLUS_PLUS] = ACTIONS(1509), - [anon_sym_sizeof] = ACTIONS(1507), - [anon_sym___alignof__] = ACTIONS(1507), - [anon_sym___alignof] = ACTIONS(1507), - [anon_sym__alignof] = ACTIONS(1507), - [anon_sym_alignof] = ACTIONS(1507), - [anon_sym__Alignof] = ACTIONS(1507), - [anon_sym_offsetof] = ACTIONS(1507), - [anon_sym__Generic] = ACTIONS(1507), - [anon_sym_asm] = ACTIONS(1507), - [anon_sym___asm__] = ACTIONS(1507), - [sym_number_literal] = ACTIONS(1509), - [anon_sym_L_SQUOTE] = ACTIONS(1509), - [anon_sym_u_SQUOTE] = ACTIONS(1509), - [anon_sym_U_SQUOTE] = ACTIONS(1509), - [anon_sym_u8_SQUOTE] = ACTIONS(1509), - [anon_sym_SQUOTE] = ACTIONS(1509), - [anon_sym_L_DQUOTE] = ACTIONS(1509), - [anon_sym_u_DQUOTE] = ACTIONS(1509), - [anon_sym_U_DQUOTE] = ACTIONS(1509), - [anon_sym_u8_DQUOTE] = ACTIONS(1509), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_true] = ACTIONS(1507), - [sym_false] = ACTIONS(1507), - [anon_sym_NULL] = ACTIONS(1507), - [anon_sym_nullptr] = ACTIONS(1507), + [sym_identifier] = ACTIONS(1464), + [aux_sym_preproc_include_token1] = ACTIONS(1464), + [aux_sym_preproc_def_token1] = ACTIONS(1464), + [aux_sym_preproc_if_token1] = ACTIONS(1464), + [aux_sym_preproc_if_token2] = ACTIONS(1464), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1464), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1464), + [aux_sym_preproc_else_token1] = ACTIONS(1464), + [aux_sym_preproc_elif_token1] = ACTIONS(1464), + [sym_preproc_directive] = ACTIONS(1464), + [anon_sym_LPAREN2] = ACTIONS(1466), + [anon_sym_BANG] = ACTIONS(1466), + [anon_sym_TILDE] = ACTIONS(1466), + [anon_sym_DASH] = ACTIONS(1464), + [anon_sym_PLUS] = ACTIONS(1464), + [anon_sym_STAR] = ACTIONS(1466), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_SEMI] = ACTIONS(1466), + [anon_sym___extension__] = ACTIONS(1464), + [anon_sym_typedef] = ACTIONS(1464), + [anon_sym_extern] = ACTIONS(1464), + [anon_sym___attribute__] = ACTIONS(1464), + [anon_sym___scanf] = ACTIONS(1464), + [anon_sym___printf] = ACTIONS(1464), + [anon_sym___read_mostly] = ACTIONS(1464), + [anon_sym___must_hold] = ACTIONS(1464), + [anon_sym___ro_after_init] = ACTIONS(1464), + [anon_sym___init] = ACTIONS(1464), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1466), + [anon_sym___declspec] = ACTIONS(1464), + [anon_sym___cdecl] = ACTIONS(1464), + [anon_sym___clrcall] = ACTIONS(1464), + [anon_sym___stdcall] = ACTIONS(1464), + [anon_sym___fastcall] = ACTIONS(1464), + [anon_sym___thiscall] = ACTIONS(1464), + [anon_sym___vectorcall] = ACTIONS(1464), + [anon_sym_LBRACE] = ACTIONS(1466), + [anon_sym_signed] = ACTIONS(1464), + [anon_sym_unsigned] = ACTIONS(1464), + [anon_sym_long] = ACTIONS(1464), + [anon_sym_short] = ACTIONS(1464), + [anon_sym_static] = ACTIONS(1464), + [anon_sym_auto] = ACTIONS(1464), + [anon_sym_register] = ACTIONS(1464), + [anon_sym_inline] = ACTIONS(1464), + [anon_sym___inline] = ACTIONS(1464), + [anon_sym___inline__] = ACTIONS(1464), + [anon_sym___forceinline] = ACTIONS(1464), + [anon_sym_thread_local] = ACTIONS(1464), + [anon_sym___thread] = ACTIONS(1464), + [anon_sym_const] = ACTIONS(1464), + [anon_sym_constexpr] = ACTIONS(1464), + [anon_sym_volatile] = ACTIONS(1464), + [anon_sym_restrict] = ACTIONS(1464), + [anon_sym___restrict__] = ACTIONS(1464), + [anon_sym__Atomic] = ACTIONS(1464), + [anon_sym__Noreturn] = ACTIONS(1464), + [anon_sym_noreturn] = ACTIONS(1464), + [sym_primitive_type] = ACTIONS(1464), + [anon_sym_enum] = ACTIONS(1464), + [anon_sym_struct] = ACTIONS(1464), + [anon_sym_union] = ACTIONS(1464), + [anon_sym_if] = ACTIONS(1464), + [anon_sym_switch] = ACTIONS(1464), + [anon_sym_case] = ACTIONS(1464), + [anon_sym_default] = ACTIONS(1464), + [anon_sym_while] = ACTIONS(1464), + [anon_sym_do] = ACTIONS(1464), + [anon_sym_for] = ACTIONS(1464), + [anon_sym_return] = ACTIONS(1464), + [anon_sym_break] = ACTIONS(1464), + [anon_sym_continue] = ACTIONS(1464), + [anon_sym_goto] = ACTIONS(1464), + [anon_sym___try] = ACTIONS(1464), + [anon_sym___leave] = ACTIONS(1464), + [anon_sym_DASH_DASH] = ACTIONS(1466), + [anon_sym_PLUS_PLUS] = ACTIONS(1466), + [anon_sym_sizeof] = ACTIONS(1464), + [anon_sym___alignof__] = ACTIONS(1464), + [anon_sym___alignof] = ACTIONS(1464), + [anon_sym__alignof] = ACTIONS(1464), + [anon_sym_alignof] = ACTIONS(1464), + [anon_sym__Alignof] = ACTIONS(1464), + [anon_sym_offsetof] = ACTIONS(1464), + [anon_sym__Generic] = ACTIONS(1464), + [anon_sym_asm] = ACTIONS(1464), + [anon_sym___asm__] = ACTIONS(1464), + [sym_number_literal] = ACTIONS(1466), + [anon_sym_L_SQUOTE] = ACTIONS(1466), + [anon_sym_u_SQUOTE] = ACTIONS(1466), + [anon_sym_U_SQUOTE] = ACTIONS(1466), + [anon_sym_u8_SQUOTE] = ACTIONS(1466), + [anon_sym_SQUOTE] = ACTIONS(1466), + [anon_sym_L_DQUOTE] = ACTIONS(1466), + [anon_sym_u_DQUOTE] = ACTIONS(1466), + [anon_sym_U_DQUOTE] = ACTIONS(1466), + [anon_sym_u8_DQUOTE] = ACTIONS(1466), + [anon_sym_DQUOTE] = ACTIONS(1466), + [sym_true] = ACTIONS(1464), + [sym_false] = ACTIONS(1464), + [anon_sym_NULL] = ACTIONS(1464), + [anon_sym_nullptr] = ACTIONS(1464), [sym_comment] = ACTIONS(3), }, [220] = { - [sym_identifier] = ACTIONS(1493), - [aux_sym_preproc_include_token1] = ACTIONS(1493), - [aux_sym_preproc_def_token1] = ACTIONS(1493), - [aux_sym_preproc_if_token1] = ACTIONS(1493), - [aux_sym_preproc_if_token2] = ACTIONS(1493), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1493), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1493), - [aux_sym_preproc_else_token1] = ACTIONS(1493), - [aux_sym_preproc_elif_token1] = ACTIONS(1493), - [sym_preproc_directive] = ACTIONS(1493), - [anon_sym_LPAREN2] = ACTIONS(1495), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), - [anon_sym_SEMI] = ACTIONS(1495), - [anon_sym___extension__] = ACTIONS(1493), - [anon_sym_typedef] = ACTIONS(1493), - [anon_sym_extern] = ACTIONS(1493), - [anon_sym___attribute__] = ACTIONS(1493), - [anon_sym___scanf] = ACTIONS(1493), - [anon_sym___printf] = ACTIONS(1493), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1495), - [anon_sym___declspec] = ACTIONS(1493), - [anon_sym___cdecl] = ACTIONS(1493), - [anon_sym___clrcall] = ACTIONS(1493), - [anon_sym___stdcall] = ACTIONS(1493), - [anon_sym___fastcall] = ACTIONS(1493), - [anon_sym___thiscall] = ACTIONS(1493), - [anon_sym___vectorcall] = ACTIONS(1493), - [anon_sym_LBRACE] = ACTIONS(1495), - [anon_sym_signed] = ACTIONS(1493), - [anon_sym_unsigned] = ACTIONS(1493), - [anon_sym_long] = ACTIONS(1493), - [anon_sym_short] = ACTIONS(1493), - [anon_sym_static] = ACTIONS(1493), - [anon_sym_auto] = ACTIONS(1493), - [anon_sym_register] = ACTIONS(1493), - [anon_sym_inline] = ACTIONS(1493), - [anon_sym___inline] = ACTIONS(1493), - [anon_sym___inline__] = ACTIONS(1493), - [anon_sym___forceinline] = ACTIONS(1493), - [anon_sym_thread_local] = ACTIONS(1493), - [anon_sym___thread] = ACTIONS(1493), - [anon_sym_const] = ACTIONS(1493), - [anon_sym_constexpr] = ACTIONS(1493), - [anon_sym_volatile] = ACTIONS(1493), - [anon_sym_restrict] = ACTIONS(1493), - [anon_sym___restrict__] = ACTIONS(1493), - [anon_sym__Atomic] = ACTIONS(1493), - [anon_sym__Noreturn] = ACTIONS(1493), - [anon_sym_noreturn] = ACTIONS(1493), - [sym_primitive_type] = ACTIONS(1493), - [anon_sym_enum] = ACTIONS(1493), - [anon_sym_struct] = ACTIONS(1493), - [anon_sym_union] = ACTIONS(1493), - [anon_sym_if] = ACTIONS(1493), - [anon_sym_switch] = ACTIONS(1493), - [anon_sym_case] = ACTIONS(1493), - [anon_sym_default] = ACTIONS(1493), - [anon_sym_while] = ACTIONS(1493), - [anon_sym_do] = ACTIONS(1493), - [anon_sym_for] = ACTIONS(1493), - [anon_sym_return] = ACTIONS(1493), - [anon_sym_break] = ACTIONS(1493), - [anon_sym_continue] = ACTIONS(1493), - [anon_sym_goto] = ACTIONS(1493), - [anon_sym___try] = ACTIONS(1493), - [anon_sym___leave] = ACTIONS(1493), - [anon_sym_DASH_DASH] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym___alignof__] = ACTIONS(1493), - [anon_sym___alignof] = ACTIONS(1493), - [anon_sym__alignof] = ACTIONS(1493), - [anon_sym_alignof] = ACTIONS(1493), - [anon_sym__Alignof] = ACTIONS(1493), - [anon_sym_offsetof] = ACTIONS(1493), - [anon_sym__Generic] = ACTIONS(1493), - [anon_sym_asm] = ACTIONS(1493), - [anon_sym___asm__] = ACTIONS(1493), - [sym_number_literal] = ACTIONS(1495), - [anon_sym_L_SQUOTE] = ACTIONS(1495), - [anon_sym_u_SQUOTE] = ACTIONS(1495), - [anon_sym_U_SQUOTE] = ACTIONS(1495), - [anon_sym_u8_SQUOTE] = ACTIONS(1495), - [anon_sym_SQUOTE] = ACTIONS(1495), - [anon_sym_L_DQUOTE] = ACTIONS(1495), - [anon_sym_u_DQUOTE] = ACTIONS(1495), - [anon_sym_U_DQUOTE] = ACTIONS(1495), - [anon_sym_u8_DQUOTE] = ACTIONS(1495), - [anon_sym_DQUOTE] = ACTIONS(1495), - [sym_true] = ACTIONS(1493), - [sym_false] = ACTIONS(1493), - [anon_sym_NULL] = ACTIONS(1493), - [anon_sym_nullptr] = ACTIONS(1493), + [sym_identifier] = ACTIONS(1472), + [aux_sym_preproc_include_token1] = ACTIONS(1472), + [aux_sym_preproc_def_token1] = ACTIONS(1472), + [aux_sym_preproc_if_token1] = ACTIONS(1472), + [aux_sym_preproc_if_token2] = ACTIONS(1472), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1472), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1472), + [aux_sym_preproc_else_token1] = ACTIONS(1472), + [aux_sym_preproc_elif_token1] = ACTIONS(1472), + [sym_preproc_directive] = ACTIONS(1472), + [anon_sym_LPAREN2] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1474), + [anon_sym_TILDE] = ACTIONS(1474), + [anon_sym_DASH] = ACTIONS(1472), + [anon_sym_PLUS] = ACTIONS(1472), + [anon_sym_STAR] = ACTIONS(1474), + [anon_sym_AMP] = ACTIONS(1474), + [anon_sym_SEMI] = ACTIONS(1474), + [anon_sym___extension__] = ACTIONS(1472), + [anon_sym_typedef] = ACTIONS(1472), + [anon_sym_extern] = ACTIONS(1472), + [anon_sym___attribute__] = ACTIONS(1472), + [anon_sym___scanf] = ACTIONS(1472), + [anon_sym___printf] = ACTIONS(1472), + [anon_sym___read_mostly] = ACTIONS(1472), + [anon_sym___must_hold] = ACTIONS(1472), + [anon_sym___ro_after_init] = ACTIONS(1472), + [anon_sym___init] = ACTIONS(1472), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1474), + [anon_sym___declspec] = ACTIONS(1472), + [anon_sym___cdecl] = ACTIONS(1472), + [anon_sym___clrcall] = ACTIONS(1472), + [anon_sym___stdcall] = ACTIONS(1472), + [anon_sym___fastcall] = ACTIONS(1472), + [anon_sym___thiscall] = ACTIONS(1472), + [anon_sym___vectorcall] = ACTIONS(1472), + [anon_sym_LBRACE] = ACTIONS(1474), + [anon_sym_signed] = ACTIONS(1472), + [anon_sym_unsigned] = ACTIONS(1472), + [anon_sym_long] = ACTIONS(1472), + [anon_sym_short] = ACTIONS(1472), + [anon_sym_static] = ACTIONS(1472), + [anon_sym_auto] = ACTIONS(1472), + [anon_sym_register] = ACTIONS(1472), + [anon_sym_inline] = ACTIONS(1472), + [anon_sym___inline] = ACTIONS(1472), + [anon_sym___inline__] = ACTIONS(1472), + [anon_sym___forceinline] = ACTIONS(1472), + [anon_sym_thread_local] = ACTIONS(1472), + [anon_sym___thread] = ACTIONS(1472), + [anon_sym_const] = ACTIONS(1472), + [anon_sym_constexpr] = ACTIONS(1472), + [anon_sym_volatile] = ACTIONS(1472), + [anon_sym_restrict] = ACTIONS(1472), + [anon_sym___restrict__] = ACTIONS(1472), + [anon_sym__Atomic] = ACTIONS(1472), + [anon_sym__Noreturn] = ACTIONS(1472), + [anon_sym_noreturn] = ACTIONS(1472), + [sym_primitive_type] = ACTIONS(1472), + [anon_sym_enum] = ACTIONS(1472), + [anon_sym_struct] = ACTIONS(1472), + [anon_sym_union] = ACTIONS(1472), + [anon_sym_if] = ACTIONS(1472), + [anon_sym_switch] = ACTIONS(1472), + [anon_sym_case] = ACTIONS(1472), + [anon_sym_default] = ACTIONS(1472), + [anon_sym_while] = ACTIONS(1472), + [anon_sym_do] = ACTIONS(1472), + [anon_sym_for] = ACTIONS(1472), + [anon_sym_return] = ACTIONS(1472), + [anon_sym_break] = ACTIONS(1472), + [anon_sym_continue] = ACTIONS(1472), + [anon_sym_goto] = ACTIONS(1472), + [anon_sym___try] = ACTIONS(1472), + [anon_sym___leave] = ACTIONS(1472), + [anon_sym_DASH_DASH] = ACTIONS(1474), + [anon_sym_PLUS_PLUS] = ACTIONS(1474), + [anon_sym_sizeof] = ACTIONS(1472), + [anon_sym___alignof__] = ACTIONS(1472), + [anon_sym___alignof] = ACTIONS(1472), + [anon_sym__alignof] = ACTIONS(1472), + [anon_sym_alignof] = ACTIONS(1472), + [anon_sym__Alignof] = ACTIONS(1472), + [anon_sym_offsetof] = ACTIONS(1472), + [anon_sym__Generic] = ACTIONS(1472), + [anon_sym_asm] = ACTIONS(1472), + [anon_sym___asm__] = ACTIONS(1472), + [sym_number_literal] = ACTIONS(1474), + [anon_sym_L_SQUOTE] = ACTIONS(1474), + [anon_sym_u_SQUOTE] = ACTIONS(1474), + [anon_sym_U_SQUOTE] = ACTIONS(1474), + [anon_sym_u8_SQUOTE] = ACTIONS(1474), + [anon_sym_SQUOTE] = ACTIONS(1474), + [anon_sym_L_DQUOTE] = ACTIONS(1474), + [anon_sym_u_DQUOTE] = ACTIONS(1474), + [anon_sym_U_DQUOTE] = ACTIONS(1474), + [anon_sym_u8_DQUOTE] = ACTIONS(1474), + [anon_sym_DQUOTE] = ACTIONS(1474), + [sym_true] = ACTIONS(1472), + [sym_false] = ACTIONS(1472), + [anon_sym_NULL] = ACTIONS(1472), + [anon_sym_nullptr] = ACTIONS(1472), [sym_comment] = ACTIONS(3), }, [221] = { - [sym_identifier] = ACTIONS(1497), - [aux_sym_preproc_include_token1] = ACTIONS(1497), - [aux_sym_preproc_def_token1] = ACTIONS(1497), - [aux_sym_preproc_if_token1] = ACTIONS(1497), - [aux_sym_preproc_if_token2] = ACTIONS(1497), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1497), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1497), - [aux_sym_preproc_else_token1] = ACTIONS(1497), - [aux_sym_preproc_elif_token1] = ACTIONS(1497), - [sym_preproc_directive] = ACTIONS(1497), - [anon_sym_LPAREN2] = ACTIONS(1499), - [anon_sym_BANG] = ACTIONS(1499), - [anon_sym_TILDE] = ACTIONS(1499), - [anon_sym_DASH] = ACTIONS(1497), - [anon_sym_PLUS] = ACTIONS(1497), - [anon_sym_STAR] = ACTIONS(1499), - [anon_sym_AMP] = ACTIONS(1499), - [anon_sym_SEMI] = ACTIONS(1499), - [anon_sym___extension__] = ACTIONS(1497), - [anon_sym_typedef] = ACTIONS(1497), - [anon_sym_extern] = ACTIONS(1497), - [anon_sym___attribute__] = ACTIONS(1497), - [anon_sym___scanf] = ACTIONS(1497), - [anon_sym___printf] = ACTIONS(1497), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1499), - [anon_sym___declspec] = ACTIONS(1497), - [anon_sym___cdecl] = ACTIONS(1497), - [anon_sym___clrcall] = ACTIONS(1497), - [anon_sym___stdcall] = ACTIONS(1497), - [anon_sym___fastcall] = ACTIONS(1497), - [anon_sym___thiscall] = ACTIONS(1497), - [anon_sym___vectorcall] = ACTIONS(1497), - [anon_sym_LBRACE] = ACTIONS(1499), - [anon_sym_signed] = ACTIONS(1497), - [anon_sym_unsigned] = ACTIONS(1497), - [anon_sym_long] = ACTIONS(1497), - [anon_sym_short] = ACTIONS(1497), - [anon_sym_static] = ACTIONS(1497), - [anon_sym_auto] = ACTIONS(1497), - [anon_sym_register] = ACTIONS(1497), - [anon_sym_inline] = ACTIONS(1497), - [anon_sym___inline] = ACTIONS(1497), - [anon_sym___inline__] = ACTIONS(1497), - [anon_sym___forceinline] = ACTIONS(1497), - [anon_sym_thread_local] = ACTIONS(1497), - [anon_sym___thread] = ACTIONS(1497), - [anon_sym_const] = ACTIONS(1497), - [anon_sym_constexpr] = ACTIONS(1497), - [anon_sym_volatile] = ACTIONS(1497), - [anon_sym_restrict] = ACTIONS(1497), - [anon_sym___restrict__] = ACTIONS(1497), - [anon_sym__Atomic] = ACTIONS(1497), - [anon_sym__Noreturn] = ACTIONS(1497), - [anon_sym_noreturn] = ACTIONS(1497), - [sym_primitive_type] = ACTIONS(1497), - [anon_sym_enum] = ACTIONS(1497), - [anon_sym_struct] = ACTIONS(1497), - [anon_sym_union] = ACTIONS(1497), - [anon_sym_if] = ACTIONS(1497), - [anon_sym_switch] = ACTIONS(1497), - [anon_sym_case] = ACTIONS(1497), - [anon_sym_default] = ACTIONS(1497), - [anon_sym_while] = ACTIONS(1497), - [anon_sym_do] = ACTIONS(1497), - [anon_sym_for] = ACTIONS(1497), - [anon_sym_return] = ACTIONS(1497), - [anon_sym_break] = ACTIONS(1497), - [anon_sym_continue] = ACTIONS(1497), - [anon_sym_goto] = ACTIONS(1497), - [anon_sym___try] = ACTIONS(1497), - [anon_sym___leave] = ACTIONS(1497), - [anon_sym_DASH_DASH] = ACTIONS(1499), - [anon_sym_PLUS_PLUS] = ACTIONS(1499), - [anon_sym_sizeof] = ACTIONS(1497), - [anon_sym___alignof__] = ACTIONS(1497), - [anon_sym___alignof] = ACTIONS(1497), - [anon_sym__alignof] = ACTIONS(1497), - [anon_sym_alignof] = ACTIONS(1497), - [anon_sym__Alignof] = ACTIONS(1497), - [anon_sym_offsetof] = ACTIONS(1497), - [anon_sym__Generic] = ACTIONS(1497), - [anon_sym_asm] = ACTIONS(1497), - [anon_sym___asm__] = ACTIONS(1497), - [sym_number_literal] = ACTIONS(1499), - [anon_sym_L_SQUOTE] = ACTIONS(1499), - [anon_sym_u_SQUOTE] = ACTIONS(1499), - [anon_sym_U_SQUOTE] = ACTIONS(1499), - [anon_sym_u8_SQUOTE] = ACTIONS(1499), - [anon_sym_SQUOTE] = ACTIONS(1499), - [anon_sym_L_DQUOTE] = ACTIONS(1499), - [anon_sym_u_DQUOTE] = ACTIONS(1499), - [anon_sym_U_DQUOTE] = ACTIONS(1499), - [anon_sym_u8_DQUOTE] = ACTIONS(1499), - [anon_sym_DQUOTE] = ACTIONS(1499), - [sym_true] = ACTIONS(1497), - [sym_false] = ACTIONS(1497), - [anon_sym_NULL] = ACTIONS(1497), - [anon_sym_nullptr] = ACTIONS(1497), + [sym_identifier] = ACTIONS(1468), + [aux_sym_preproc_include_token1] = ACTIONS(1468), + [aux_sym_preproc_def_token1] = ACTIONS(1468), + [aux_sym_preproc_if_token1] = ACTIONS(1468), + [aux_sym_preproc_if_token2] = ACTIONS(1468), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1468), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1468), + [aux_sym_preproc_else_token1] = ACTIONS(1468), + [aux_sym_preproc_elif_token1] = ACTIONS(1468), + [sym_preproc_directive] = ACTIONS(1468), + [anon_sym_LPAREN2] = ACTIONS(1470), + [anon_sym_BANG] = ACTIONS(1470), + [anon_sym_TILDE] = ACTIONS(1470), + [anon_sym_DASH] = ACTIONS(1468), + [anon_sym_PLUS] = ACTIONS(1468), + [anon_sym_STAR] = ACTIONS(1470), + [anon_sym_AMP] = ACTIONS(1470), + [anon_sym_SEMI] = ACTIONS(1470), + [anon_sym___extension__] = ACTIONS(1468), + [anon_sym_typedef] = ACTIONS(1468), + [anon_sym_extern] = ACTIONS(1468), + [anon_sym___attribute__] = ACTIONS(1468), + [anon_sym___scanf] = ACTIONS(1468), + [anon_sym___printf] = ACTIONS(1468), + [anon_sym___read_mostly] = ACTIONS(1468), + [anon_sym___must_hold] = ACTIONS(1468), + [anon_sym___ro_after_init] = ACTIONS(1468), + [anon_sym___init] = ACTIONS(1468), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1470), + [anon_sym___declspec] = ACTIONS(1468), + [anon_sym___cdecl] = ACTIONS(1468), + [anon_sym___clrcall] = ACTIONS(1468), + [anon_sym___stdcall] = ACTIONS(1468), + [anon_sym___fastcall] = ACTIONS(1468), + [anon_sym___thiscall] = ACTIONS(1468), + [anon_sym___vectorcall] = ACTIONS(1468), + [anon_sym_LBRACE] = ACTIONS(1470), + [anon_sym_signed] = ACTIONS(1468), + [anon_sym_unsigned] = ACTIONS(1468), + [anon_sym_long] = ACTIONS(1468), + [anon_sym_short] = ACTIONS(1468), + [anon_sym_static] = ACTIONS(1468), + [anon_sym_auto] = ACTIONS(1468), + [anon_sym_register] = ACTIONS(1468), + [anon_sym_inline] = ACTIONS(1468), + [anon_sym___inline] = ACTIONS(1468), + [anon_sym___inline__] = ACTIONS(1468), + [anon_sym___forceinline] = ACTIONS(1468), + [anon_sym_thread_local] = ACTIONS(1468), + [anon_sym___thread] = ACTIONS(1468), + [anon_sym_const] = ACTIONS(1468), + [anon_sym_constexpr] = ACTIONS(1468), + [anon_sym_volatile] = ACTIONS(1468), + [anon_sym_restrict] = ACTIONS(1468), + [anon_sym___restrict__] = ACTIONS(1468), + [anon_sym__Atomic] = ACTIONS(1468), + [anon_sym__Noreturn] = ACTIONS(1468), + [anon_sym_noreturn] = ACTIONS(1468), + [sym_primitive_type] = ACTIONS(1468), + [anon_sym_enum] = ACTIONS(1468), + [anon_sym_struct] = ACTIONS(1468), + [anon_sym_union] = ACTIONS(1468), + [anon_sym_if] = ACTIONS(1468), + [anon_sym_switch] = ACTIONS(1468), + [anon_sym_case] = ACTIONS(1468), + [anon_sym_default] = ACTIONS(1468), + [anon_sym_while] = ACTIONS(1468), + [anon_sym_do] = ACTIONS(1468), + [anon_sym_for] = ACTIONS(1468), + [anon_sym_return] = ACTIONS(1468), + [anon_sym_break] = ACTIONS(1468), + [anon_sym_continue] = ACTIONS(1468), + [anon_sym_goto] = ACTIONS(1468), + [anon_sym___try] = ACTIONS(1468), + [anon_sym___leave] = ACTIONS(1468), + [anon_sym_DASH_DASH] = ACTIONS(1470), + [anon_sym_PLUS_PLUS] = ACTIONS(1470), + [anon_sym_sizeof] = ACTIONS(1468), + [anon_sym___alignof__] = ACTIONS(1468), + [anon_sym___alignof] = ACTIONS(1468), + [anon_sym__alignof] = ACTIONS(1468), + [anon_sym_alignof] = ACTIONS(1468), + [anon_sym__Alignof] = ACTIONS(1468), + [anon_sym_offsetof] = ACTIONS(1468), + [anon_sym__Generic] = ACTIONS(1468), + [anon_sym_asm] = ACTIONS(1468), + [anon_sym___asm__] = ACTIONS(1468), + [sym_number_literal] = ACTIONS(1470), + [anon_sym_L_SQUOTE] = ACTIONS(1470), + [anon_sym_u_SQUOTE] = ACTIONS(1470), + [anon_sym_U_SQUOTE] = ACTIONS(1470), + [anon_sym_u8_SQUOTE] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1470), + [anon_sym_L_DQUOTE] = ACTIONS(1470), + [anon_sym_u_DQUOTE] = ACTIONS(1470), + [anon_sym_U_DQUOTE] = ACTIONS(1470), + [anon_sym_u8_DQUOTE] = ACTIONS(1470), + [anon_sym_DQUOTE] = ACTIONS(1470), + [sym_true] = ACTIONS(1468), + [sym_false] = ACTIONS(1468), + [anon_sym_NULL] = ACTIONS(1468), + [anon_sym_nullptr] = ACTIONS(1468), [sym_comment] = ACTIONS(3), }, [222] = { - [sym_identifier] = ACTIONS(1503), - [aux_sym_preproc_include_token1] = ACTIONS(1503), - [aux_sym_preproc_def_token1] = ACTIONS(1503), - [aux_sym_preproc_if_token1] = ACTIONS(1503), - [aux_sym_preproc_if_token2] = ACTIONS(1503), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1503), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1503), - [aux_sym_preproc_else_token1] = ACTIONS(1503), - [aux_sym_preproc_elif_token1] = ACTIONS(1503), - [sym_preproc_directive] = ACTIONS(1503), - [anon_sym_LPAREN2] = ACTIONS(1505), - [anon_sym_BANG] = ACTIONS(1505), - [anon_sym_TILDE] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1503), - [anon_sym_PLUS] = ACTIONS(1503), - [anon_sym_STAR] = ACTIONS(1505), - [anon_sym_AMP] = ACTIONS(1505), - [anon_sym_SEMI] = ACTIONS(1505), - [anon_sym___extension__] = ACTIONS(1503), - [anon_sym_typedef] = ACTIONS(1503), - [anon_sym_extern] = ACTIONS(1503), - [anon_sym___attribute__] = ACTIONS(1503), - [anon_sym___scanf] = ACTIONS(1503), - [anon_sym___printf] = ACTIONS(1503), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1505), - [anon_sym___declspec] = ACTIONS(1503), - [anon_sym___cdecl] = ACTIONS(1503), - [anon_sym___clrcall] = ACTIONS(1503), - [anon_sym___stdcall] = ACTIONS(1503), - [anon_sym___fastcall] = ACTIONS(1503), - [anon_sym___thiscall] = ACTIONS(1503), - [anon_sym___vectorcall] = ACTIONS(1503), - [anon_sym_LBRACE] = ACTIONS(1505), - [anon_sym_signed] = ACTIONS(1503), - [anon_sym_unsigned] = ACTIONS(1503), - [anon_sym_long] = ACTIONS(1503), - [anon_sym_short] = ACTIONS(1503), - [anon_sym_static] = ACTIONS(1503), - [anon_sym_auto] = ACTIONS(1503), - [anon_sym_register] = ACTIONS(1503), - [anon_sym_inline] = ACTIONS(1503), - [anon_sym___inline] = ACTIONS(1503), - [anon_sym___inline__] = ACTIONS(1503), - [anon_sym___forceinline] = ACTIONS(1503), - [anon_sym_thread_local] = ACTIONS(1503), - [anon_sym___thread] = ACTIONS(1503), - [anon_sym_const] = ACTIONS(1503), - [anon_sym_constexpr] = ACTIONS(1503), - [anon_sym_volatile] = ACTIONS(1503), - [anon_sym_restrict] = ACTIONS(1503), - [anon_sym___restrict__] = ACTIONS(1503), - [anon_sym__Atomic] = ACTIONS(1503), - [anon_sym__Noreturn] = ACTIONS(1503), - [anon_sym_noreturn] = ACTIONS(1503), - [sym_primitive_type] = ACTIONS(1503), - [anon_sym_enum] = ACTIONS(1503), - [anon_sym_struct] = ACTIONS(1503), - [anon_sym_union] = ACTIONS(1503), - [anon_sym_if] = ACTIONS(1503), - [anon_sym_switch] = ACTIONS(1503), - [anon_sym_case] = ACTIONS(1503), - [anon_sym_default] = ACTIONS(1503), - [anon_sym_while] = ACTIONS(1503), - [anon_sym_do] = ACTIONS(1503), - [anon_sym_for] = ACTIONS(1503), - [anon_sym_return] = ACTIONS(1503), - [anon_sym_break] = ACTIONS(1503), - [anon_sym_continue] = ACTIONS(1503), - [anon_sym_goto] = ACTIONS(1503), - [anon_sym___try] = ACTIONS(1503), - [anon_sym___leave] = ACTIONS(1503), - [anon_sym_DASH_DASH] = ACTIONS(1505), - [anon_sym_PLUS_PLUS] = ACTIONS(1505), - [anon_sym_sizeof] = ACTIONS(1503), - [anon_sym___alignof__] = ACTIONS(1503), - [anon_sym___alignof] = ACTIONS(1503), - [anon_sym__alignof] = ACTIONS(1503), - [anon_sym_alignof] = ACTIONS(1503), - [anon_sym__Alignof] = ACTIONS(1503), - [anon_sym_offsetof] = ACTIONS(1503), - [anon_sym__Generic] = ACTIONS(1503), - [anon_sym_asm] = ACTIONS(1503), - [anon_sym___asm__] = ACTIONS(1503), - [sym_number_literal] = ACTIONS(1505), - [anon_sym_L_SQUOTE] = ACTIONS(1505), - [anon_sym_u_SQUOTE] = ACTIONS(1505), - [anon_sym_U_SQUOTE] = ACTIONS(1505), - [anon_sym_u8_SQUOTE] = ACTIONS(1505), - [anon_sym_SQUOTE] = ACTIONS(1505), - [anon_sym_L_DQUOTE] = ACTIONS(1505), - [anon_sym_u_DQUOTE] = ACTIONS(1505), - [anon_sym_U_DQUOTE] = ACTIONS(1505), - [anon_sym_u8_DQUOTE] = ACTIONS(1505), - [anon_sym_DQUOTE] = ACTIONS(1505), - [sym_true] = ACTIONS(1503), - [sym_false] = ACTIONS(1503), - [anon_sym_NULL] = ACTIONS(1503), - [anon_sym_nullptr] = ACTIONS(1503), + [sym_identifier] = ACTIONS(1488), + [aux_sym_preproc_include_token1] = ACTIONS(1488), + [aux_sym_preproc_def_token1] = ACTIONS(1488), + [aux_sym_preproc_if_token1] = ACTIONS(1488), + [aux_sym_preproc_if_token2] = ACTIONS(1488), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1488), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1488), + [aux_sym_preproc_else_token1] = ACTIONS(1488), + [aux_sym_preproc_elif_token1] = ACTIONS(1488), + [sym_preproc_directive] = ACTIONS(1488), + [anon_sym_LPAREN2] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(1490), + [anon_sym_TILDE] = ACTIONS(1490), + [anon_sym_DASH] = ACTIONS(1488), + [anon_sym_PLUS] = ACTIONS(1488), + [anon_sym_STAR] = ACTIONS(1490), + [anon_sym_AMP] = ACTIONS(1490), + [anon_sym_SEMI] = ACTIONS(1490), + [anon_sym___extension__] = ACTIONS(1488), + [anon_sym_typedef] = ACTIONS(1488), + [anon_sym_extern] = ACTIONS(1488), + [anon_sym___attribute__] = ACTIONS(1488), + [anon_sym___scanf] = ACTIONS(1488), + [anon_sym___printf] = ACTIONS(1488), + [anon_sym___read_mostly] = ACTIONS(1488), + [anon_sym___must_hold] = ACTIONS(1488), + [anon_sym___ro_after_init] = ACTIONS(1488), + [anon_sym___init] = ACTIONS(1488), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1490), + [anon_sym___declspec] = ACTIONS(1488), + [anon_sym___cdecl] = ACTIONS(1488), + [anon_sym___clrcall] = ACTIONS(1488), + [anon_sym___stdcall] = ACTIONS(1488), + [anon_sym___fastcall] = ACTIONS(1488), + [anon_sym___thiscall] = ACTIONS(1488), + [anon_sym___vectorcall] = ACTIONS(1488), + [anon_sym_LBRACE] = ACTIONS(1490), + [anon_sym_signed] = ACTIONS(1488), + [anon_sym_unsigned] = ACTIONS(1488), + [anon_sym_long] = ACTIONS(1488), + [anon_sym_short] = ACTIONS(1488), + [anon_sym_static] = ACTIONS(1488), + [anon_sym_auto] = ACTIONS(1488), + [anon_sym_register] = ACTIONS(1488), + [anon_sym_inline] = ACTIONS(1488), + [anon_sym___inline] = ACTIONS(1488), + [anon_sym___inline__] = ACTIONS(1488), + [anon_sym___forceinline] = ACTIONS(1488), + [anon_sym_thread_local] = ACTIONS(1488), + [anon_sym___thread] = ACTIONS(1488), + [anon_sym_const] = ACTIONS(1488), + [anon_sym_constexpr] = ACTIONS(1488), + [anon_sym_volatile] = ACTIONS(1488), + [anon_sym_restrict] = ACTIONS(1488), + [anon_sym___restrict__] = ACTIONS(1488), + [anon_sym__Atomic] = ACTIONS(1488), + [anon_sym__Noreturn] = ACTIONS(1488), + [anon_sym_noreturn] = ACTIONS(1488), + [sym_primitive_type] = ACTIONS(1488), + [anon_sym_enum] = ACTIONS(1488), + [anon_sym_struct] = ACTIONS(1488), + [anon_sym_union] = ACTIONS(1488), + [anon_sym_if] = ACTIONS(1488), + [anon_sym_switch] = ACTIONS(1488), + [anon_sym_case] = ACTIONS(1488), + [anon_sym_default] = ACTIONS(1488), + [anon_sym_while] = ACTIONS(1488), + [anon_sym_do] = ACTIONS(1488), + [anon_sym_for] = ACTIONS(1488), + [anon_sym_return] = ACTIONS(1488), + [anon_sym_break] = ACTIONS(1488), + [anon_sym_continue] = ACTIONS(1488), + [anon_sym_goto] = ACTIONS(1488), + [anon_sym___try] = ACTIONS(1488), + [anon_sym___leave] = ACTIONS(1488), + [anon_sym_DASH_DASH] = ACTIONS(1490), + [anon_sym_PLUS_PLUS] = ACTIONS(1490), + [anon_sym_sizeof] = ACTIONS(1488), + [anon_sym___alignof__] = ACTIONS(1488), + [anon_sym___alignof] = ACTIONS(1488), + [anon_sym__alignof] = ACTIONS(1488), + [anon_sym_alignof] = ACTIONS(1488), + [anon_sym__Alignof] = ACTIONS(1488), + [anon_sym_offsetof] = ACTIONS(1488), + [anon_sym__Generic] = ACTIONS(1488), + [anon_sym_asm] = ACTIONS(1488), + [anon_sym___asm__] = ACTIONS(1488), + [sym_number_literal] = ACTIONS(1490), + [anon_sym_L_SQUOTE] = ACTIONS(1490), + [anon_sym_u_SQUOTE] = ACTIONS(1490), + [anon_sym_U_SQUOTE] = ACTIONS(1490), + [anon_sym_u8_SQUOTE] = ACTIONS(1490), + [anon_sym_SQUOTE] = ACTIONS(1490), + [anon_sym_L_DQUOTE] = ACTIONS(1490), + [anon_sym_u_DQUOTE] = ACTIONS(1490), + [anon_sym_U_DQUOTE] = ACTIONS(1490), + [anon_sym_u8_DQUOTE] = ACTIONS(1490), + [anon_sym_DQUOTE] = ACTIONS(1490), + [sym_true] = ACTIONS(1488), + [sym_false] = ACTIONS(1488), + [anon_sym_NULL] = ACTIONS(1488), + [anon_sym_nullptr] = ACTIONS(1488), [sym_comment] = ACTIONS(3), }, [223] = { - [sym_identifier] = ACTIONS(1515), - [aux_sym_preproc_include_token1] = ACTIONS(1515), - [aux_sym_preproc_def_token1] = ACTIONS(1515), - [aux_sym_preproc_if_token1] = ACTIONS(1515), - [aux_sym_preproc_if_token2] = ACTIONS(1515), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1515), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1515), - [aux_sym_preproc_else_token1] = ACTIONS(1515), - [aux_sym_preproc_elif_token1] = ACTIONS(1515), - [sym_preproc_directive] = ACTIONS(1515), - [anon_sym_LPAREN2] = ACTIONS(1517), - [anon_sym_BANG] = ACTIONS(1517), - [anon_sym_TILDE] = ACTIONS(1517), - [anon_sym_DASH] = ACTIONS(1515), - [anon_sym_PLUS] = ACTIONS(1515), - [anon_sym_STAR] = ACTIONS(1517), - [anon_sym_AMP] = ACTIONS(1517), - [anon_sym_SEMI] = ACTIONS(1517), - [anon_sym___extension__] = ACTIONS(1515), - [anon_sym_typedef] = ACTIONS(1515), - [anon_sym_extern] = ACTIONS(1515), - [anon_sym___attribute__] = ACTIONS(1515), - [anon_sym___scanf] = ACTIONS(1515), - [anon_sym___printf] = ACTIONS(1515), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1517), - [anon_sym___declspec] = ACTIONS(1515), - [anon_sym___cdecl] = ACTIONS(1515), - [anon_sym___clrcall] = ACTIONS(1515), - [anon_sym___stdcall] = ACTIONS(1515), - [anon_sym___fastcall] = ACTIONS(1515), - [anon_sym___thiscall] = ACTIONS(1515), - [anon_sym___vectorcall] = ACTIONS(1515), - [anon_sym_LBRACE] = ACTIONS(1517), - [anon_sym_signed] = ACTIONS(1515), - [anon_sym_unsigned] = ACTIONS(1515), - [anon_sym_long] = ACTIONS(1515), - [anon_sym_short] = ACTIONS(1515), - [anon_sym_static] = ACTIONS(1515), - [anon_sym_auto] = ACTIONS(1515), - [anon_sym_register] = ACTIONS(1515), - [anon_sym_inline] = ACTIONS(1515), - [anon_sym___inline] = ACTIONS(1515), - [anon_sym___inline__] = ACTIONS(1515), - [anon_sym___forceinline] = ACTIONS(1515), - [anon_sym_thread_local] = ACTIONS(1515), - [anon_sym___thread] = ACTIONS(1515), - [anon_sym_const] = ACTIONS(1515), - [anon_sym_constexpr] = ACTIONS(1515), - [anon_sym_volatile] = ACTIONS(1515), - [anon_sym_restrict] = ACTIONS(1515), - [anon_sym___restrict__] = ACTIONS(1515), - [anon_sym__Atomic] = ACTIONS(1515), - [anon_sym__Noreturn] = ACTIONS(1515), - [anon_sym_noreturn] = ACTIONS(1515), - [sym_primitive_type] = ACTIONS(1515), - [anon_sym_enum] = ACTIONS(1515), - [anon_sym_struct] = ACTIONS(1515), - [anon_sym_union] = ACTIONS(1515), - [anon_sym_if] = ACTIONS(1515), - [anon_sym_switch] = ACTIONS(1515), - [anon_sym_case] = ACTIONS(1515), - [anon_sym_default] = ACTIONS(1515), - [anon_sym_while] = ACTIONS(1515), - [anon_sym_do] = ACTIONS(1515), - [anon_sym_for] = ACTIONS(1515), - [anon_sym_return] = ACTIONS(1515), - [anon_sym_break] = ACTIONS(1515), - [anon_sym_continue] = ACTIONS(1515), - [anon_sym_goto] = ACTIONS(1515), - [anon_sym___try] = ACTIONS(1515), - [anon_sym___leave] = ACTIONS(1515), - [anon_sym_DASH_DASH] = ACTIONS(1517), - [anon_sym_PLUS_PLUS] = ACTIONS(1517), - [anon_sym_sizeof] = ACTIONS(1515), - [anon_sym___alignof__] = ACTIONS(1515), - [anon_sym___alignof] = ACTIONS(1515), - [anon_sym__alignof] = ACTIONS(1515), - [anon_sym_alignof] = ACTIONS(1515), - [anon_sym__Alignof] = ACTIONS(1515), - [anon_sym_offsetof] = ACTIONS(1515), - [anon_sym__Generic] = ACTIONS(1515), - [anon_sym_asm] = ACTIONS(1515), - [anon_sym___asm__] = ACTIONS(1515), - [sym_number_literal] = ACTIONS(1517), - [anon_sym_L_SQUOTE] = ACTIONS(1517), - [anon_sym_u_SQUOTE] = ACTIONS(1517), - [anon_sym_U_SQUOTE] = ACTIONS(1517), - [anon_sym_u8_SQUOTE] = ACTIONS(1517), - [anon_sym_SQUOTE] = ACTIONS(1517), - [anon_sym_L_DQUOTE] = ACTIONS(1517), - [anon_sym_u_DQUOTE] = ACTIONS(1517), - [anon_sym_U_DQUOTE] = ACTIONS(1517), - [anon_sym_u8_DQUOTE] = ACTIONS(1517), - [anon_sym_DQUOTE] = ACTIONS(1517), - [sym_true] = ACTIONS(1515), - [sym_false] = ACTIONS(1515), - [anon_sym_NULL] = ACTIONS(1515), - [anon_sym_nullptr] = ACTIONS(1515), + [sym_else_clause] = STATE(231), + [sym_identifier] = ACTIONS(1314), + [aux_sym_preproc_include_token1] = ACTIONS(1314), + [aux_sym_preproc_def_token1] = ACTIONS(1314), + [aux_sym_preproc_if_token1] = ACTIONS(1314), + [aux_sym_preproc_if_token2] = ACTIONS(1314), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1314), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1314), + [sym_preproc_directive] = ACTIONS(1314), + [anon_sym_LPAREN2] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(1316), + [anon_sym_TILDE] = ACTIONS(1316), + [anon_sym_DASH] = ACTIONS(1314), + [anon_sym_PLUS] = ACTIONS(1314), + [anon_sym_STAR] = ACTIONS(1316), + [anon_sym_AMP] = ACTIONS(1316), + [anon_sym_SEMI] = ACTIONS(1316), + [anon_sym___extension__] = ACTIONS(1314), + [anon_sym_typedef] = ACTIONS(1314), + [anon_sym_extern] = ACTIONS(1314), + [anon_sym___attribute__] = ACTIONS(1314), + [anon_sym___scanf] = ACTIONS(1314), + [anon_sym___printf] = ACTIONS(1314), + [anon_sym___read_mostly] = ACTIONS(1314), + [anon_sym___must_hold] = ACTIONS(1314), + [anon_sym___ro_after_init] = ACTIONS(1314), + [anon_sym___init] = ACTIONS(1314), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1316), + [anon_sym___declspec] = ACTIONS(1314), + [anon_sym___cdecl] = ACTIONS(1314), + [anon_sym___clrcall] = ACTIONS(1314), + [anon_sym___stdcall] = ACTIONS(1314), + [anon_sym___fastcall] = ACTIONS(1314), + [anon_sym___thiscall] = ACTIONS(1314), + [anon_sym___vectorcall] = ACTIONS(1314), + [anon_sym_LBRACE] = ACTIONS(1316), + [anon_sym_signed] = ACTIONS(1314), + [anon_sym_unsigned] = ACTIONS(1314), + [anon_sym_long] = ACTIONS(1314), + [anon_sym_short] = ACTIONS(1314), + [anon_sym_static] = ACTIONS(1314), + [anon_sym_auto] = ACTIONS(1314), + [anon_sym_register] = ACTIONS(1314), + [anon_sym_inline] = ACTIONS(1314), + [anon_sym___inline] = ACTIONS(1314), + [anon_sym___inline__] = ACTIONS(1314), + [anon_sym___forceinline] = ACTIONS(1314), + [anon_sym_thread_local] = ACTIONS(1314), + [anon_sym___thread] = ACTIONS(1314), + [anon_sym_const] = ACTIONS(1314), + [anon_sym_constexpr] = ACTIONS(1314), + [anon_sym_volatile] = ACTIONS(1314), + [anon_sym_restrict] = ACTIONS(1314), + [anon_sym___restrict__] = ACTIONS(1314), + [anon_sym__Atomic] = ACTIONS(1314), + [anon_sym__Noreturn] = ACTIONS(1314), + [anon_sym_noreturn] = ACTIONS(1314), + [sym_primitive_type] = ACTIONS(1314), + [anon_sym_enum] = ACTIONS(1314), + [anon_sym_struct] = ACTIONS(1314), + [anon_sym_union] = ACTIONS(1314), + [anon_sym_if] = ACTIONS(1314), + [anon_sym_else] = ACTIONS(1532), + [anon_sym_switch] = ACTIONS(1314), + [anon_sym_case] = ACTIONS(1314), + [anon_sym_default] = ACTIONS(1314), + [anon_sym_while] = ACTIONS(1314), + [anon_sym_do] = ACTIONS(1314), + [anon_sym_for] = ACTIONS(1314), + [anon_sym_return] = ACTIONS(1314), + [anon_sym_break] = ACTIONS(1314), + [anon_sym_continue] = ACTIONS(1314), + [anon_sym_goto] = ACTIONS(1314), + [anon_sym___try] = ACTIONS(1314), + [anon_sym___leave] = ACTIONS(1314), + [anon_sym_DASH_DASH] = ACTIONS(1316), + [anon_sym_PLUS_PLUS] = ACTIONS(1316), + [anon_sym_sizeof] = ACTIONS(1314), + [anon_sym___alignof__] = ACTIONS(1314), + [anon_sym___alignof] = ACTIONS(1314), + [anon_sym__alignof] = ACTIONS(1314), + [anon_sym_alignof] = ACTIONS(1314), + [anon_sym__Alignof] = ACTIONS(1314), + [anon_sym_offsetof] = ACTIONS(1314), + [anon_sym__Generic] = ACTIONS(1314), + [anon_sym_asm] = ACTIONS(1314), + [anon_sym___asm__] = ACTIONS(1314), + [sym_number_literal] = ACTIONS(1316), + [anon_sym_L_SQUOTE] = ACTIONS(1316), + [anon_sym_u_SQUOTE] = ACTIONS(1316), + [anon_sym_U_SQUOTE] = ACTIONS(1316), + [anon_sym_u8_SQUOTE] = ACTIONS(1316), + [anon_sym_SQUOTE] = ACTIONS(1316), + [anon_sym_L_DQUOTE] = ACTIONS(1316), + [anon_sym_u_DQUOTE] = ACTIONS(1316), + [anon_sym_U_DQUOTE] = ACTIONS(1316), + [anon_sym_u8_DQUOTE] = ACTIONS(1316), + [anon_sym_DQUOTE] = ACTIONS(1316), + [sym_true] = ACTIONS(1314), + [sym_false] = ACTIONS(1314), + [anon_sym_NULL] = ACTIONS(1314), + [anon_sym_nullptr] = ACTIONS(1314), [sym_comment] = ACTIONS(3), }, [224] = { - [sym_identifier] = ACTIONS(1477), - [aux_sym_preproc_include_token1] = ACTIONS(1477), - [aux_sym_preproc_def_token1] = ACTIONS(1477), - [aux_sym_preproc_if_token1] = ACTIONS(1477), - [aux_sym_preproc_if_token2] = ACTIONS(1477), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1477), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1477), - [aux_sym_preproc_else_token1] = ACTIONS(1477), - [aux_sym_preproc_elif_token1] = ACTIONS(1477), - [sym_preproc_directive] = ACTIONS(1477), - [anon_sym_LPAREN2] = ACTIONS(1479), - [anon_sym_BANG] = ACTIONS(1479), - [anon_sym_TILDE] = ACTIONS(1479), - [anon_sym_DASH] = ACTIONS(1477), - [anon_sym_PLUS] = ACTIONS(1477), - [anon_sym_STAR] = ACTIONS(1479), - [anon_sym_AMP] = ACTIONS(1479), - [anon_sym_SEMI] = ACTIONS(1479), - [anon_sym___extension__] = ACTIONS(1477), - [anon_sym_typedef] = ACTIONS(1477), - [anon_sym_extern] = ACTIONS(1477), - [anon_sym___attribute__] = ACTIONS(1477), - [anon_sym___scanf] = ACTIONS(1477), - [anon_sym___printf] = ACTIONS(1477), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1479), - [anon_sym___declspec] = ACTIONS(1477), - [anon_sym___cdecl] = ACTIONS(1477), - [anon_sym___clrcall] = ACTIONS(1477), - [anon_sym___stdcall] = ACTIONS(1477), - [anon_sym___fastcall] = ACTIONS(1477), - [anon_sym___thiscall] = ACTIONS(1477), - [anon_sym___vectorcall] = ACTIONS(1477), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_signed] = ACTIONS(1477), - [anon_sym_unsigned] = ACTIONS(1477), - [anon_sym_long] = ACTIONS(1477), - [anon_sym_short] = ACTIONS(1477), - [anon_sym_static] = ACTIONS(1477), - [anon_sym_auto] = ACTIONS(1477), - [anon_sym_register] = ACTIONS(1477), - [anon_sym_inline] = ACTIONS(1477), - [anon_sym___inline] = ACTIONS(1477), - [anon_sym___inline__] = ACTIONS(1477), - [anon_sym___forceinline] = ACTIONS(1477), - [anon_sym_thread_local] = ACTIONS(1477), - [anon_sym___thread] = ACTIONS(1477), - [anon_sym_const] = ACTIONS(1477), - [anon_sym_constexpr] = ACTIONS(1477), - [anon_sym_volatile] = ACTIONS(1477), - [anon_sym_restrict] = ACTIONS(1477), - [anon_sym___restrict__] = ACTIONS(1477), - [anon_sym__Atomic] = ACTIONS(1477), - [anon_sym__Noreturn] = ACTIONS(1477), - [anon_sym_noreturn] = ACTIONS(1477), - [sym_primitive_type] = ACTIONS(1477), - [anon_sym_enum] = ACTIONS(1477), - [anon_sym_struct] = ACTIONS(1477), - [anon_sym_union] = ACTIONS(1477), - [anon_sym_if] = ACTIONS(1477), - [anon_sym_switch] = ACTIONS(1477), - [anon_sym_case] = ACTIONS(1477), - [anon_sym_default] = ACTIONS(1477), - [anon_sym_while] = ACTIONS(1477), - [anon_sym_do] = ACTIONS(1477), - [anon_sym_for] = ACTIONS(1477), - [anon_sym_return] = ACTIONS(1477), - [anon_sym_break] = ACTIONS(1477), - [anon_sym_continue] = ACTIONS(1477), - [anon_sym_goto] = ACTIONS(1477), - [anon_sym___try] = ACTIONS(1477), - [anon_sym___leave] = ACTIONS(1477), - [anon_sym_DASH_DASH] = ACTIONS(1479), - [anon_sym_PLUS_PLUS] = ACTIONS(1479), - [anon_sym_sizeof] = ACTIONS(1477), - [anon_sym___alignof__] = ACTIONS(1477), - [anon_sym___alignof] = ACTIONS(1477), - [anon_sym__alignof] = ACTIONS(1477), - [anon_sym_alignof] = ACTIONS(1477), - [anon_sym__Alignof] = ACTIONS(1477), - [anon_sym_offsetof] = ACTIONS(1477), - [anon_sym__Generic] = ACTIONS(1477), - [anon_sym_asm] = ACTIONS(1477), - [anon_sym___asm__] = ACTIONS(1477), - [sym_number_literal] = ACTIONS(1479), - [anon_sym_L_SQUOTE] = ACTIONS(1479), - [anon_sym_u_SQUOTE] = ACTIONS(1479), - [anon_sym_U_SQUOTE] = ACTIONS(1479), - [anon_sym_u8_SQUOTE] = ACTIONS(1479), - [anon_sym_SQUOTE] = ACTIONS(1479), - [anon_sym_L_DQUOTE] = ACTIONS(1479), - [anon_sym_u_DQUOTE] = ACTIONS(1479), - [anon_sym_U_DQUOTE] = ACTIONS(1479), - [anon_sym_u8_DQUOTE] = ACTIONS(1479), - [anon_sym_DQUOTE] = ACTIONS(1479), - [sym_true] = ACTIONS(1477), - [sym_false] = ACTIONS(1477), - [anon_sym_NULL] = ACTIONS(1477), - [anon_sym_nullptr] = ACTIONS(1477), + [sym_identifier] = ACTIONS(1452), + [aux_sym_preproc_include_token1] = ACTIONS(1452), + [aux_sym_preproc_def_token1] = ACTIONS(1452), + [aux_sym_preproc_if_token1] = ACTIONS(1452), + [aux_sym_preproc_if_token2] = ACTIONS(1452), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1452), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1452), + [aux_sym_preproc_else_token1] = ACTIONS(1452), + [aux_sym_preproc_elif_token1] = ACTIONS(1452), + [sym_preproc_directive] = ACTIONS(1452), + [anon_sym_LPAREN2] = ACTIONS(1454), + [anon_sym_BANG] = ACTIONS(1454), + [anon_sym_TILDE] = ACTIONS(1454), + [anon_sym_DASH] = ACTIONS(1452), + [anon_sym_PLUS] = ACTIONS(1452), + [anon_sym_STAR] = ACTIONS(1454), + [anon_sym_AMP] = ACTIONS(1454), + [anon_sym_SEMI] = ACTIONS(1454), + [anon_sym___extension__] = ACTIONS(1452), + [anon_sym_typedef] = ACTIONS(1452), + [anon_sym_extern] = ACTIONS(1452), + [anon_sym___attribute__] = ACTIONS(1452), + [anon_sym___scanf] = ACTIONS(1452), + [anon_sym___printf] = ACTIONS(1452), + [anon_sym___read_mostly] = ACTIONS(1452), + [anon_sym___must_hold] = ACTIONS(1452), + [anon_sym___ro_after_init] = ACTIONS(1452), + [anon_sym___init] = ACTIONS(1452), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), + [anon_sym___declspec] = ACTIONS(1452), + [anon_sym___cdecl] = ACTIONS(1452), + [anon_sym___clrcall] = ACTIONS(1452), + [anon_sym___stdcall] = ACTIONS(1452), + [anon_sym___fastcall] = ACTIONS(1452), + [anon_sym___thiscall] = ACTIONS(1452), + [anon_sym___vectorcall] = ACTIONS(1452), + [anon_sym_LBRACE] = ACTIONS(1454), + [anon_sym_signed] = ACTIONS(1452), + [anon_sym_unsigned] = ACTIONS(1452), + [anon_sym_long] = ACTIONS(1452), + [anon_sym_short] = ACTIONS(1452), + [anon_sym_static] = ACTIONS(1452), + [anon_sym_auto] = ACTIONS(1452), + [anon_sym_register] = ACTIONS(1452), + [anon_sym_inline] = ACTIONS(1452), + [anon_sym___inline] = ACTIONS(1452), + [anon_sym___inline__] = ACTIONS(1452), + [anon_sym___forceinline] = ACTIONS(1452), + [anon_sym_thread_local] = ACTIONS(1452), + [anon_sym___thread] = ACTIONS(1452), + [anon_sym_const] = ACTIONS(1452), + [anon_sym_constexpr] = ACTIONS(1452), + [anon_sym_volatile] = ACTIONS(1452), + [anon_sym_restrict] = ACTIONS(1452), + [anon_sym___restrict__] = ACTIONS(1452), + [anon_sym__Atomic] = ACTIONS(1452), + [anon_sym__Noreturn] = ACTIONS(1452), + [anon_sym_noreturn] = ACTIONS(1452), + [sym_primitive_type] = ACTIONS(1452), + [anon_sym_enum] = ACTIONS(1452), + [anon_sym_struct] = ACTIONS(1452), + [anon_sym_union] = ACTIONS(1452), + [anon_sym_if] = ACTIONS(1452), + [anon_sym_switch] = ACTIONS(1452), + [anon_sym_case] = ACTIONS(1452), + [anon_sym_default] = ACTIONS(1452), + [anon_sym_while] = ACTIONS(1452), + [anon_sym_do] = ACTIONS(1452), + [anon_sym_for] = ACTIONS(1452), + [anon_sym_return] = ACTIONS(1452), + [anon_sym_break] = ACTIONS(1452), + [anon_sym_continue] = ACTIONS(1452), + [anon_sym_goto] = ACTIONS(1452), + [anon_sym___try] = ACTIONS(1452), + [anon_sym___leave] = ACTIONS(1452), + [anon_sym_DASH_DASH] = ACTIONS(1454), + [anon_sym_PLUS_PLUS] = ACTIONS(1454), + [anon_sym_sizeof] = ACTIONS(1452), + [anon_sym___alignof__] = ACTIONS(1452), + [anon_sym___alignof] = ACTIONS(1452), + [anon_sym__alignof] = ACTIONS(1452), + [anon_sym_alignof] = ACTIONS(1452), + [anon_sym__Alignof] = ACTIONS(1452), + [anon_sym_offsetof] = ACTIONS(1452), + [anon_sym__Generic] = ACTIONS(1452), + [anon_sym_asm] = ACTIONS(1452), + [anon_sym___asm__] = ACTIONS(1452), + [sym_number_literal] = ACTIONS(1454), + [anon_sym_L_SQUOTE] = ACTIONS(1454), + [anon_sym_u_SQUOTE] = ACTIONS(1454), + [anon_sym_U_SQUOTE] = ACTIONS(1454), + [anon_sym_u8_SQUOTE] = ACTIONS(1454), + [anon_sym_SQUOTE] = ACTIONS(1454), + [anon_sym_L_DQUOTE] = ACTIONS(1454), + [anon_sym_u_DQUOTE] = ACTIONS(1454), + [anon_sym_U_DQUOTE] = ACTIONS(1454), + [anon_sym_u8_DQUOTE] = ACTIONS(1454), + [anon_sym_DQUOTE] = ACTIONS(1454), + [sym_true] = ACTIONS(1452), + [sym_false] = ACTIONS(1452), + [anon_sym_NULL] = ACTIONS(1452), + [anon_sym_nullptr] = ACTIONS(1452), [sym_comment] = ACTIONS(3), }, [225] = { - [sym_identifier] = ACTIONS(1481), - [aux_sym_preproc_include_token1] = ACTIONS(1481), - [aux_sym_preproc_def_token1] = ACTIONS(1481), - [aux_sym_preproc_if_token1] = ACTIONS(1481), - [aux_sym_preproc_if_token2] = ACTIONS(1481), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1481), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1481), - [aux_sym_preproc_else_token1] = ACTIONS(1481), - [aux_sym_preproc_elif_token1] = ACTIONS(1481), - [sym_preproc_directive] = ACTIONS(1481), - [anon_sym_LPAREN2] = ACTIONS(1483), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_PLUS] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_SEMI] = ACTIONS(1483), - [anon_sym___extension__] = ACTIONS(1481), - [anon_sym_typedef] = ACTIONS(1481), - [anon_sym_extern] = ACTIONS(1481), - [anon_sym___attribute__] = ACTIONS(1481), - [anon_sym___scanf] = ACTIONS(1481), - [anon_sym___printf] = ACTIONS(1481), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1483), - [anon_sym___declspec] = ACTIONS(1481), - [anon_sym___cdecl] = ACTIONS(1481), - [anon_sym___clrcall] = ACTIONS(1481), - [anon_sym___stdcall] = ACTIONS(1481), - [anon_sym___fastcall] = ACTIONS(1481), - [anon_sym___thiscall] = ACTIONS(1481), - [anon_sym___vectorcall] = ACTIONS(1481), - [anon_sym_LBRACE] = ACTIONS(1483), - [anon_sym_signed] = ACTIONS(1481), - [anon_sym_unsigned] = ACTIONS(1481), - [anon_sym_long] = ACTIONS(1481), - [anon_sym_short] = ACTIONS(1481), - [anon_sym_static] = ACTIONS(1481), - [anon_sym_auto] = ACTIONS(1481), - [anon_sym_register] = ACTIONS(1481), - [anon_sym_inline] = ACTIONS(1481), - [anon_sym___inline] = ACTIONS(1481), - [anon_sym___inline__] = ACTIONS(1481), - [anon_sym___forceinline] = ACTIONS(1481), - [anon_sym_thread_local] = ACTIONS(1481), - [anon_sym___thread] = ACTIONS(1481), - [anon_sym_const] = ACTIONS(1481), - [anon_sym_constexpr] = ACTIONS(1481), - [anon_sym_volatile] = ACTIONS(1481), - [anon_sym_restrict] = ACTIONS(1481), - [anon_sym___restrict__] = ACTIONS(1481), - [anon_sym__Atomic] = ACTIONS(1481), - [anon_sym__Noreturn] = ACTIONS(1481), - [anon_sym_noreturn] = ACTIONS(1481), - [sym_primitive_type] = ACTIONS(1481), - [anon_sym_enum] = ACTIONS(1481), - [anon_sym_struct] = ACTIONS(1481), - [anon_sym_union] = ACTIONS(1481), - [anon_sym_if] = ACTIONS(1481), - [anon_sym_switch] = ACTIONS(1481), - [anon_sym_case] = ACTIONS(1481), - [anon_sym_default] = ACTIONS(1481), - [anon_sym_while] = ACTIONS(1481), - [anon_sym_do] = ACTIONS(1481), - [anon_sym_for] = ACTIONS(1481), - [anon_sym_return] = ACTIONS(1481), - [anon_sym_break] = ACTIONS(1481), - [anon_sym_continue] = ACTIONS(1481), - [anon_sym_goto] = ACTIONS(1481), - [anon_sym___try] = ACTIONS(1481), - [anon_sym___leave] = ACTIONS(1481), - [anon_sym_DASH_DASH] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_sizeof] = ACTIONS(1481), - [anon_sym___alignof__] = ACTIONS(1481), - [anon_sym___alignof] = ACTIONS(1481), - [anon_sym__alignof] = ACTIONS(1481), - [anon_sym_alignof] = ACTIONS(1481), - [anon_sym__Alignof] = ACTIONS(1481), - [anon_sym_offsetof] = ACTIONS(1481), - [anon_sym__Generic] = ACTIONS(1481), - [anon_sym_asm] = ACTIONS(1481), - [anon_sym___asm__] = ACTIONS(1481), - [sym_number_literal] = ACTIONS(1483), - [anon_sym_L_SQUOTE] = ACTIONS(1483), - [anon_sym_u_SQUOTE] = ACTIONS(1483), - [anon_sym_U_SQUOTE] = ACTIONS(1483), - [anon_sym_u8_SQUOTE] = ACTIONS(1483), - [anon_sym_SQUOTE] = ACTIONS(1483), - [anon_sym_L_DQUOTE] = ACTIONS(1483), - [anon_sym_u_DQUOTE] = ACTIONS(1483), - [anon_sym_U_DQUOTE] = ACTIONS(1483), - [anon_sym_u8_DQUOTE] = ACTIONS(1483), - [anon_sym_DQUOTE] = ACTIONS(1483), - [sym_true] = ACTIONS(1481), - [sym_false] = ACTIONS(1481), - [anon_sym_NULL] = ACTIONS(1481), - [anon_sym_nullptr] = ACTIONS(1481), + [sym_identifier] = ACTIONS(1444), + [aux_sym_preproc_include_token1] = ACTIONS(1444), + [aux_sym_preproc_def_token1] = ACTIONS(1444), + [aux_sym_preproc_if_token1] = ACTIONS(1444), + [aux_sym_preproc_if_token2] = ACTIONS(1444), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1444), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1444), + [aux_sym_preproc_else_token1] = ACTIONS(1444), + [aux_sym_preproc_elif_token1] = ACTIONS(1444), + [sym_preproc_directive] = ACTIONS(1444), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_BANG] = ACTIONS(1446), + [anon_sym_TILDE] = ACTIONS(1446), + [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_STAR] = ACTIONS(1446), + [anon_sym_AMP] = ACTIONS(1446), + [anon_sym_SEMI] = ACTIONS(1446), + [anon_sym___extension__] = ACTIONS(1444), + [anon_sym_typedef] = ACTIONS(1444), + [anon_sym_extern] = ACTIONS(1444), + [anon_sym___attribute__] = ACTIONS(1444), + [anon_sym___scanf] = ACTIONS(1444), + [anon_sym___printf] = ACTIONS(1444), + [anon_sym___read_mostly] = ACTIONS(1444), + [anon_sym___must_hold] = ACTIONS(1444), + [anon_sym___ro_after_init] = ACTIONS(1444), + [anon_sym___init] = ACTIONS(1444), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1446), + [anon_sym___declspec] = ACTIONS(1444), + [anon_sym___cdecl] = ACTIONS(1444), + [anon_sym___clrcall] = ACTIONS(1444), + [anon_sym___stdcall] = ACTIONS(1444), + [anon_sym___fastcall] = ACTIONS(1444), + [anon_sym___thiscall] = ACTIONS(1444), + [anon_sym___vectorcall] = ACTIONS(1444), + [anon_sym_LBRACE] = ACTIONS(1446), + [anon_sym_signed] = ACTIONS(1444), + [anon_sym_unsigned] = ACTIONS(1444), + [anon_sym_long] = ACTIONS(1444), + [anon_sym_short] = ACTIONS(1444), + [anon_sym_static] = ACTIONS(1444), + [anon_sym_auto] = ACTIONS(1444), + [anon_sym_register] = ACTIONS(1444), + [anon_sym_inline] = ACTIONS(1444), + [anon_sym___inline] = ACTIONS(1444), + [anon_sym___inline__] = ACTIONS(1444), + [anon_sym___forceinline] = ACTIONS(1444), + [anon_sym_thread_local] = ACTIONS(1444), + [anon_sym___thread] = ACTIONS(1444), + [anon_sym_const] = ACTIONS(1444), + [anon_sym_constexpr] = ACTIONS(1444), + [anon_sym_volatile] = ACTIONS(1444), + [anon_sym_restrict] = ACTIONS(1444), + [anon_sym___restrict__] = ACTIONS(1444), + [anon_sym__Atomic] = ACTIONS(1444), + [anon_sym__Noreturn] = ACTIONS(1444), + [anon_sym_noreturn] = ACTIONS(1444), + [sym_primitive_type] = ACTIONS(1444), + [anon_sym_enum] = ACTIONS(1444), + [anon_sym_struct] = ACTIONS(1444), + [anon_sym_union] = ACTIONS(1444), + [anon_sym_if] = ACTIONS(1444), + [anon_sym_switch] = ACTIONS(1444), + [anon_sym_case] = ACTIONS(1444), + [anon_sym_default] = ACTIONS(1444), + [anon_sym_while] = ACTIONS(1444), + [anon_sym_do] = ACTIONS(1444), + [anon_sym_for] = ACTIONS(1444), + [anon_sym_return] = ACTIONS(1444), + [anon_sym_break] = ACTIONS(1444), + [anon_sym_continue] = ACTIONS(1444), + [anon_sym_goto] = ACTIONS(1444), + [anon_sym___try] = ACTIONS(1444), + [anon_sym___leave] = ACTIONS(1444), + [anon_sym_DASH_DASH] = ACTIONS(1446), + [anon_sym_PLUS_PLUS] = ACTIONS(1446), + [anon_sym_sizeof] = ACTIONS(1444), + [anon_sym___alignof__] = ACTIONS(1444), + [anon_sym___alignof] = ACTIONS(1444), + [anon_sym__alignof] = ACTIONS(1444), + [anon_sym_alignof] = ACTIONS(1444), + [anon_sym__Alignof] = ACTIONS(1444), + [anon_sym_offsetof] = ACTIONS(1444), + [anon_sym__Generic] = ACTIONS(1444), + [anon_sym_asm] = ACTIONS(1444), + [anon_sym___asm__] = ACTIONS(1444), + [sym_number_literal] = ACTIONS(1446), + [anon_sym_L_SQUOTE] = ACTIONS(1446), + [anon_sym_u_SQUOTE] = ACTIONS(1446), + [anon_sym_U_SQUOTE] = ACTIONS(1446), + [anon_sym_u8_SQUOTE] = ACTIONS(1446), + [anon_sym_SQUOTE] = ACTIONS(1446), + [anon_sym_L_DQUOTE] = ACTIONS(1446), + [anon_sym_u_DQUOTE] = ACTIONS(1446), + [anon_sym_U_DQUOTE] = ACTIONS(1446), + [anon_sym_u8_DQUOTE] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1446), + [sym_true] = ACTIONS(1444), + [sym_false] = ACTIONS(1444), + [anon_sym_NULL] = ACTIONS(1444), + [anon_sym_nullptr] = ACTIONS(1444), [sym_comment] = ACTIONS(3), }, [226] = { - [sym_else_clause] = STATE(241), - [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_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_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), - [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_else] = ACTIONS(1521), - [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_identifier] = ACTIONS(1516), + [aux_sym_preproc_include_token1] = ACTIONS(1516), + [aux_sym_preproc_def_token1] = ACTIONS(1516), + [aux_sym_preproc_if_token1] = ACTIONS(1516), + [aux_sym_preproc_if_token2] = ACTIONS(1516), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1516), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1516), + [aux_sym_preproc_else_token1] = ACTIONS(1516), + [aux_sym_preproc_elif_token1] = ACTIONS(1516), + [sym_preproc_directive] = ACTIONS(1516), + [anon_sym_LPAREN2] = ACTIONS(1518), + [anon_sym_BANG] = ACTIONS(1518), + [anon_sym_TILDE] = ACTIONS(1518), + [anon_sym_DASH] = ACTIONS(1516), + [anon_sym_PLUS] = ACTIONS(1516), + [anon_sym_STAR] = ACTIONS(1518), + [anon_sym_AMP] = ACTIONS(1518), + [anon_sym_SEMI] = ACTIONS(1518), + [anon_sym___extension__] = ACTIONS(1516), + [anon_sym_typedef] = ACTIONS(1516), + [anon_sym_extern] = ACTIONS(1516), + [anon_sym___attribute__] = ACTIONS(1516), + [anon_sym___scanf] = ACTIONS(1516), + [anon_sym___printf] = ACTIONS(1516), + [anon_sym___read_mostly] = ACTIONS(1516), + [anon_sym___must_hold] = ACTIONS(1516), + [anon_sym___ro_after_init] = ACTIONS(1516), + [anon_sym___init] = ACTIONS(1516), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1518), + [anon_sym___declspec] = ACTIONS(1516), + [anon_sym___cdecl] = ACTIONS(1516), + [anon_sym___clrcall] = ACTIONS(1516), + [anon_sym___stdcall] = ACTIONS(1516), + [anon_sym___fastcall] = ACTIONS(1516), + [anon_sym___thiscall] = ACTIONS(1516), + [anon_sym___vectorcall] = ACTIONS(1516), + [anon_sym_LBRACE] = ACTIONS(1518), + [anon_sym_signed] = ACTIONS(1516), + [anon_sym_unsigned] = ACTIONS(1516), + [anon_sym_long] = ACTIONS(1516), + [anon_sym_short] = ACTIONS(1516), + [anon_sym_static] = ACTIONS(1516), + [anon_sym_auto] = ACTIONS(1516), + [anon_sym_register] = ACTIONS(1516), + [anon_sym_inline] = ACTIONS(1516), + [anon_sym___inline] = ACTIONS(1516), + [anon_sym___inline__] = ACTIONS(1516), + [anon_sym___forceinline] = ACTIONS(1516), + [anon_sym_thread_local] = ACTIONS(1516), + [anon_sym___thread] = ACTIONS(1516), + [anon_sym_const] = ACTIONS(1516), + [anon_sym_constexpr] = ACTIONS(1516), + [anon_sym_volatile] = ACTIONS(1516), + [anon_sym_restrict] = ACTIONS(1516), + [anon_sym___restrict__] = ACTIONS(1516), + [anon_sym__Atomic] = ACTIONS(1516), + [anon_sym__Noreturn] = ACTIONS(1516), + [anon_sym_noreturn] = ACTIONS(1516), + [sym_primitive_type] = ACTIONS(1516), + [anon_sym_enum] = ACTIONS(1516), + [anon_sym_struct] = ACTIONS(1516), + [anon_sym_union] = ACTIONS(1516), + [anon_sym_if] = ACTIONS(1516), + [anon_sym_switch] = ACTIONS(1516), + [anon_sym_case] = ACTIONS(1516), + [anon_sym_default] = ACTIONS(1516), + [anon_sym_while] = ACTIONS(1516), + [anon_sym_do] = ACTIONS(1516), + [anon_sym_for] = ACTIONS(1516), + [anon_sym_return] = ACTIONS(1516), + [anon_sym_break] = ACTIONS(1516), + [anon_sym_continue] = ACTIONS(1516), + [anon_sym_goto] = ACTIONS(1516), + [anon_sym___try] = ACTIONS(1516), + [anon_sym___leave] = ACTIONS(1516), + [anon_sym_DASH_DASH] = ACTIONS(1518), + [anon_sym_PLUS_PLUS] = ACTIONS(1518), + [anon_sym_sizeof] = ACTIONS(1516), + [anon_sym___alignof__] = ACTIONS(1516), + [anon_sym___alignof] = ACTIONS(1516), + [anon_sym__alignof] = ACTIONS(1516), + [anon_sym_alignof] = ACTIONS(1516), + [anon_sym__Alignof] = ACTIONS(1516), + [anon_sym_offsetof] = ACTIONS(1516), + [anon_sym__Generic] = ACTIONS(1516), + [anon_sym_asm] = ACTIONS(1516), + [anon_sym___asm__] = ACTIONS(1516), + [sym_number_literal] = ACTIONS(1518), + [anon_sym_L_SQUOTE] = ACTIONS(1518), + [anon_sym_u_SQUOTE] = ACTIONS(1518), + [anon_sym_U_SQUOTE] = ACTIONS(1518), + [anon_sym_u8_SQUOTE] = ACTIONS(1518), + [anon_sym_SQUOTE] = ACTIONS(1518), + [anon_sym_L_DQUOTE] = ACTIONS(1518), + [anon_sym_u_DQUOTE] = ACTIONS(1518), + [anon_sym_U_DQUOTE] = ACTIONS(1518), + [anon_sym_u8_DQUOTE] = ACTIONS(1518), + [anon_sym_DQUOTE] = ACTIONS(1518), + [sym_true] = ACTIONS(1516), + [sym_false] = ACTIONS(1516), + [anon_sym_NULL] = ACTIONS(1516), + [anon_sym_nullptr] = ACTIONS(1516), [sym_comment] = ACTIONS(3), }, [227] = { - [sym_identifier] = ACTIONS(1425), - [aux_sym_preproc_include_token1] = ACTIONS(1425), - [aux_sym_preproc_def_token1] = ACTIONS(1425), - [aux_sym_preproc_if_token1] = ACTIONS(1425), - [aux_sym_preproc_if_token2] = ACTIONS(1425), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1425), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1425), - [aux_sym_preproc_else_token1] = ACTIONS(1425), - [aux_sym_preproc_elif_token1] = ACTIONS(1425), - [sym_preproc_directive] = ACTIONS(1425), - [anon_sym_LPAREN2] = ACTIONS(1427), - [anon_sym_BANG] = ACTIONS(1427), - [anon_sym_TILDE] = ACTIONS(1427), - [anon_sym_DASH] = ACTIONS(1425), - [anon_sym_PLUS] = ACTIONS(1425), - [anon_sym_STAR] = ACTIONS(1427), - [anon_sym_AMP] = ACTIONS(1427), - [anon_sym_SEMI] = ACTIONS(1427), - [anon_sym___extension__] = ACTIONS(1425), - [anon_sym_typedef] = ACTIONS(1425), - [anon_sym_extern] = ACTIONS(1425), - [anon_sym___attribute__] = ACTIONS(1425), - [anon_sym___scanf] = ACTIONS(1425), - [anon_sym___printf] = ACTIONS(1425), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1427), - [anon_sym___declspec] = ACTIONS(1425), - [anon_sym___cdecl] = ACTIONS(1425), - [anon_sym___clrcall] = ACTIONS(1425), - [anon_sym___stdcall] = ACTIONS(1425), - [anon_sym___fastcall] = ACTIONS(1425), - [anon_sym___thiscall] = ACTIONS(1425), - [anon_sym___vectorcall] = ACTIONS(1425), - [anon_sym_LBRACE] = ACTIONS(1427), - [anon_sym_signed] = ACTIONS(1425), - [anon_sym_unsigned] = ACTIONS(1425), - [anon_sym_long] = ACTIONS(1425), - [anon_sym_short] = ACTIONS(1425), - [anon_sym_static] = ACTIONS(1425), - [anon_sym_auto] = ACTIONS(1425), - [anon_sym_register] = ACTIONS(1425), - [anon_sym_inline] = ACTIONS(1425), - [anon_sym___inline] = ACTIONS(1425), - [anon_sym___inline__] = ACTIONS(1425), - [anon_sym___forceinline] = ACTIONS(1425), - [anon_sym_thread_local] = ACTIONS(1425), - [anon_sym___thread] = ACTIONS(1425), - [anon_sym_const] = ACTIONS(1425), - [anon_sym_constexpr] = ACTIONS(1425), - [anon_sym_volatile] = ACTIONS(1425), - [anon_sym_restrict] = ACTIONS(1425), - [anon_sym___restrict__] = ACTIONS(1425), - [anon_sym__Atomic] = ACTIONS(1425), - [anon_sym__Noreturn] = ACTIONS(1425), - [anon_sym_noreturn] = ACTIONS(1425), - [sym_primitive_type] = ACTIONS(1425), - [anon_sym_enum] = ACTIONS(1425), - [anon_sym_struct] = ACTIONS(1425), - [anon_sym_union] = ACTIONS(1425), - [anon_sym_if] = ACTIONS(1425), - [anon_sym_switch] = ACTIONS(1425), - [anon_sym_case] = ACTIONS(1425), - [anon_sym_default] = ACTIONS(1425), - [anon_sym_while] = ACTIONS(1425), - [anon_sym_do] = ACTIONS(1425), - [anon_sym_for] = ACTIONS(1425), - [anon_sym_return] = ACTIONS(1425), - [anon_sym_break] = ACTIONS(1425), - [anon_sym_continue] = ACTIONS(1425), - [anon_sym_goto] = ACTIONS(1425), - [anon_sym___try] = ACTIONS(1425), - [anon_sym___leave] = ACTIONS(1425), - [anon_sym_DASH_DASH] = ACTIONS(1427), - [anon_sym_PLUS_PLUS] = ACTIONS(1427), - [anon_sym_sizeof] = ACTIONS(1425), - [anon_sym___alignof__] = ACTIONS(1425), - [anon_sym___alignof] = ACTIONS(1425), - [anon_sym__alignof] = ACTIONS(1425), - [anon_sym_alignof] = ACTIONS(1425), - [anon_sym__Alignof] = ACTIONS(1425), - [anon_sym_offsetof] = ACTIONS(1425), - [anon_sym__Generic] = ACTIONS(1425), - [anon_sym_asm] = ACTIONS(1425), - [anon_sym___asm__] = ACTIONS(1425), - [sym_number_literal] = ACTIONS(1427), - [anon_sym_L_SQUOTE] = ACTIONS(1427), - [anon_sym_u_SQUOTE] = ACTIONS(1427), - [anon_sym_U_SQUOTE] = ACTIONS(1427), - [anon_sym_u8_SQUOTE] = ACTIONS(1427), - [anon_sym_SQUOTE] = ACTIONS(1427), - [anon_sym_L_DQUOTE] = ACTIONS(1427), - [anon_sym_u_DQUOTE] = ACTIONS(1427), - [anon_sym_U_DQUOTE] = ACTIONS(1427), - [anon_sym_u8_DQUOTE] = ACTIONS(1427), - [anon_sym_DQUOTE] = ACTIONS(1427), - [sym_true] = ACTIONS(1425), - [sym_false] = ACTIONS(1425), - [anon_sym_NULL] = ACTIONS(1425), - [anon_sym_nullptr] = ACTIONS(1425), + [sym_identifier] = ACTIONS(1476), + [aux_sym_preproc_include_token1] = ACTIONS(1476), + [aux_sym_preproc_def_token1] = ACTIONS(1476), + [aux_sym_preproc_if_token1] = ACTIONS(1476), + [aux_sym_preproc_if_token2] = ACTIONS(1476), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1476), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1476), + [aux_sym_preproc_else_token1] = ACTIONS(1476), + [aux_sym_preproc_elif_token1] = ACTIONS(1476), + [sym_preproc_directive] = ACTIONS(1476), + [anon_sym_LPAREN2] = ACTIONS(1478), + [anon_sym_BANG] = ACTIONS(1478), + [anon_sym_TILDE] = ACTIONS(1478), + [anon_sym_DASH] = ACTIONS(1476), + [anon_sym_PLUS] = ACTIONS(1476), + [anon_sym_STAR] = ACTIONS(1478), + [anon_sym_AMP] = ACTIONS(1478), + [anon_sym_SEMI] = ACTIONS(1478), + [anon_sym___extension__] = ACTIONS(1476), + [anon_sym_typedef] = ACTIONS(1476), + [anon_sym_extern] = ACTIONS(1476), + [anon_sym___attribute__] = ACTIONS(1476), + [anon_sym___scanf] = ACTIONS(1476), + [anon_sym___printf] = ACTIONS(1476), + [anon_sym___read_mostly] = ACTIONS(1476), + [anon_sym___must_hold] = ACTIONS(1476), + [anon_sym___ro_after_init] = ACTIONS(1476), + [anon_sym___init] = ACTIONS(1476), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1478), + [anon_sym___declspec] = ACTIONS(1476), + [anon_sym___cdecl] = ACTIONS(1476), + [anon_sym___clrcall] = ACTIONS(1476), + [anon_sym___stdcall] = ACTIONS(1476), + [anon_sym___fastcall] = ACTIONS(1476), + [anon_sym___thiscall] = ACTIONS(1476), + [anon_sym___vectorcall] = ACTIONS(1476), + [anon_sym_LBRACE] = ACTIONS(1478), + [anon_sym_signed] = ACTIONS(1476), + [anon_sym_unsigned] = ACTIONS(1476), + [anon_sym_long] = ACTIONS(1476), + [anon_sym_short] = ACTIONS(1476), + [anon_sym_static] = ACTIONS(1476), + [anon_sym_auto] = ACTIONS(1476), + [anon_sym_register] = ACTIONS(1476), + [anon_sym_inline] = ACTIONS(1476), + [anon_sym___inline] = ACTIONS(1476), + [anon_sym___inline__] = ACTIONS(1476), + [anon_sym___forceinline] = ACTIONS(1476), + [anon_sym_thread_local] = ACTIONS(1476), + [anon_sym___thread] = ACTIONS(1476), + [anon_sym_const] = ACTIONS(1476), + [anon_sym_constexpr] = ACTIONS(1476), + [anon_sym_volatile] = ACTIONS(1476), + [anon_sym_restrict] = ACTIONS(1476), + [anon_sym___restrict__] = ACTIONS(1476), + [anon_sym__Atomic] = ACTIONS(1476), + [anon_sym__Noreturn] = ACTIONS(1476), + [anon_sym_noreturn] = ACTIONS(1476), + [sym_primitive_type] = ACTIONS(1476), + [anon_sym_enum] = ACTIONS(1476), + [anon_sym_struct] = ACTIONS(1476), + [anon_sym_union] = ACTIONS(1476), + [anon_sym_if] = ACTIONS(1476), + [anon_sym_switch] = ACTIONS(1476), + [anon_sym_case] = ACTIONS(1476), + [anon_sym_default] = ACTIONS(1476), + [anon_sym_while] = ACTIONS(1476), + [anon_sym_do] = ACTIONS(1476), + [anon_sym_for] = ACTIONS(1476), + [anon_sym_return] = ACTIONS(1476), + [anon_sym_break] = ACTIONS(1476), + [anon_sym_continue] = ACTIONS(1476), + [anon_sym_goto] = ACTIONS(1476), + [anon_sym___try] = ACTIONS(1476), + [anon_sym___leave] = ACTIONS(1476), + [anon_sym_DASH_DASH] = ACTIONS(1478), + [anon_sym_PLUS_PLUS] = ACTIONS(1478), + [anon_sym_sizeof] = ACTIONS(1476), + [anon_sym___alignof__] = ACTIONS(1476), + [anon_sym___alignof] = ACTIONS(1476), + [anon_sym__alignof] = ACTIONS(1476), + [anon_sym_alignof] = ACTIONS(1476), + [anon_sym__Alignof] = ACTIONS(1476), + [anon_sym_offsetof] = ACTIONS(1476), + [anon_sym__Generic] = ACTIONS(1476), + [anon_sym_asm] = ACTIONS(1476), + [anon_sym___asm__] = ACTIONS(1476), + [sym_number_literal] = ACTIONS(1478), + [anon_sym_L_SQUOTE] = ACTIONS(1478), + [anon_sym_u_SQUOTE] = ACTIONS(1478), + [anon_sym_U_SQUOTE] = ACTIONS(1478), + [anon_sym_u8_SQUOTE] = ACTIONS(1478), + [anon_sym_SQUOTE] = ACTIONS(1478), + [anon_sym_L_DQUOTE] = ACTIONS(1478), + [anon_sym_u_DQUOTE] = ACTIONS(1478), + [anon_sym_U_DQUOTE] = ACTIONS(1478), + [anon_sym_u8_DQUOTE] = ACTIONS(1478), + [anon_sym_DQUOTE] = ACTIONS(1478), + [sym_true] = ACTIONS(1476), + [sym_false] = ACTIONS(1476), + [anon_sym_NULL] = ACTIONS(1476), + [anon_sym_nullptr] = ACTIONS(1476), [sym_comment] = ACTIONS(3), }, [228] = { - [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_if_token2] = ACTIONS(1417), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1417), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1417), - [aux_sym_preproc_else_token1] = ACTIONS(1417), - [aux_sym_preproc_elif_token1] = ACTIONS(1417), - [sym_preproc_directive] = ACTIONS(1417), - [anon_sym_LPAREN2] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(1419), - [anon_sym_TILDE] = ACTIONS(1419), - [anon_sym_DASH] = ACTIONS(1417), - [anon_sym_PLUS] = ACTIONS(1417), - [anon_sym_STAR] = ACTIONS(1419), - [anon_sym_AMP] = ACTIONS(1419), - [anon_sym_SEMI] = ACTIONS(1419), - [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_LBRACK_LBRACK] = ACTIONS(1419), - [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(1419), - [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), - [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___try] = ACTIONS(1417), - [anon_sym___leave] = ACTIONS(1417), - [anon_sym_DASH_DASH] = ACTIONS(1419), - [anon_sym_PLUS_PLUS] = ACTIONS(1419), - [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(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(1417), - [sym_false] = ACTIONS(1417), - [anon_sym_NULL] = ACTIONS(1417), - [anon_sym_nullptr] = ACTIONS(1417), + [sym_identifier] = ACTIONS(1428), + [aux_sym_preproc_include_token1] = ACTIONS(1428), + [aux_sym_preproc_def_token1] = ACTIONS(1428), + [aux_sym_preproc_if_token1] = ACTIONS(1428), + [aux_sym_preproc_if_token2] = ACTIONS(1428), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1428), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1428), + [aux_sym_preproc_else_token1] = ACTIONS(1428), + [aux_sym_preproc_elif_token1] = ACTIONS(1428), + [sym_preproc_directive] = ACTIONS(1428), + [anon_sym_LPAREN2] = ACTIONS(1430), + [anon_sym_BANG] = ACTIONS(1430), + [anon_sym_TILDE] = ACTIONS(1430), + [anon_sym_DASH] = ACTIONS(1428), + [anon_sym_PLUS] = ACTIONS(1428), + [anon_sym_STAR] = ACTIONS(1430), + [anon_sym_AMP] = ACTIONS(1430), + [anon_sym_SEMI] = ACTIONS(1430), + [anon_sym___extension__] = ACTIONS(1428), + [anon_sym_typedef] = ACTIONS(1428), + [anon_sym_extern] = ACTIONS(1428), + [anon_sym___attribute__] = ACTIONS(1428), + [anon_sym___scanf] = ACTIONS(1428), + [anon_sym___printf] = ACTIONS(1428), + [anon_sym___read_mostly] = ACTIONS(1428), + [anon_sym___must_hold] = ACTIONS(1428), + [anon_sym___ro_after_init] = ACTIONS(1428), + [anon_sym___init] = ACTIONS(1428), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1430), + [anon_sym___declspec] = ACTIONS(1428), + [anon_sym___cdecl] = ACTIONS(1428), + [anon_sym___clrcall] = ACTIONS(1428), + [anon_sym___stdcall] = ACTIONS(1428), + [anon_sym___fastcall] = ACTIONS(1428), + [anon_sym___thiscall] = ACTIONS(1428), + [anon_sym___vectorcall] = ACTIONS(1428), + [anon_sym_LBRACE] = ACTIONS(1430), + [anon_sym_signed] = ACTIONS(1428), + [anon_sym_unsigned] = ACTIONS(1428), + [anon_sym_long] = ACTIONS(1428), + [anon_sym_short] = ACTIONS(1428), + [anon_sym_static] = ACTIONS(1428), + [anon_sym_auto] = ACTIONS(1428), + [anon_sym_register] = ACTIONS(1428), + [anon_sym_inline] = ACTIONS(1428), + [anon_sym___inline] = ACTIONS(1428), + [anon_sym___inline__] = ACTIONS(1428), + [anon_sym___forceinline] = ACTIONS(1428), + [anon_sym_thread_local] = ACTIONS(1428), + [anon_sym___thread] = ACTIONS(1428), + [anon_sym_const] = ACTIONS(1428), + [anon_sym_constexpr] = ACTIONS(1428), + [anon_sym_volatile] = ACTIONS(1428), + [anon_sym_restrict] = ACTIONS(1428), + [anon_sym___restrict__] = ACTIONS(1428), + [anon_sym__Atomic] = ACTIONS(1428), + [anon_sym__Noreturn] = ACTIONS(1428), + [anon_sym_noreturn] = ACTIONS(1428), + [sym_primitive_type] = ACTIONS(1428), + [anon_sym_enum] = ACTIONS(1428), + [anon_sym_struct] = ACTIONS(1428), + [anon_sym_union] = ACTIONS(1428), + [anon_sym_if] = ACTIONS(1428), + [anon_sym_switch] = ACTIONS(1428), + [anon_sym_case] = ACTIONS(1428), + [anon_sym_default] = ACTIONS(1428), + [anon_sym_while] = ACTIONS(1428), + [anon_sym_do] = ACTIONS(1428), + [anon_sym_for] = ACTIONS(1428), + [anon_sym_return] = ACTIONS(1428), + [anon_sym_break] = ACTIONS(1428), + [anon_sym_continue] = ACTIONS(1428), + [anon_sym_goto] = ACTIONS(1428), + [anon_sym___try] = ACTIONS(1428), + [anon_sym___leave] = ACTIONS(1428), + [anon_sym_DASH_DASH] = ACTIONS(1430), + [anon_sym_PLUS_PLUS] = ACTIONS(1430), + [anon_sym_sizeof] = ACTIONS(1428), + [anon_sym___alignof__] = ACTIONS(1428), + [anon_sym___alignof] = ACTIONS(1428), + [anon_sym__alignof] = ACTIONS(1428), + [anon_sym_alignof] = ACTIONS(1428), + [anon_sym__Alignof] = ACTIONS(1428), + [anon_sym_offsetof] = ACTIONS(1428), + [anon_sym__Generic] = ACTIONS(1428), + [anon_sym_asm] = ACTIONS(1428), + [anon_sym___asm__] = ACTIONS(1428), + [sym_number_literal] = ACTIONS(1430), + [anon_sym_L_SQUOTE] = ACTIONS(1430), + [anon_sym_u_SQUOTE] = ACTIONS(1430), + [anon_sym_U_SQUOTE] = ACTIONS(1430), + [anon_sym_u8_SQUOTE] = ACTIONS(1430), + [anon_sym_SQUOTE] = ACTIONS(1430), + [anon_sym_L_DQUOTE] = ACTIONS(1430), + [anon_sym_u_DQUOTE] = ACTIONS(1430), + [anon_sym_U_DQUOTE] = ACTIONS(1430), + [anon_sym_u8_DQUOTE] = ACTIONS(1430), + [anon_sym_DQUOTE] = ACTIONS(1430), + [sym_true] = ACTIONS(1428), + [sym_false] = ACTIONS(1428), + [anon_sym_NULL] = ACTIONS(1428), + [anon_sym_nullptr] = ACTIONS(1428), [sym_comment] = ACTIONS(3), }, [229] = { - [sym_else_clause] = STATE(335), - [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_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), - [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_else] = ACTIONS(1523), - [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_identifier] = ACTIONS(1460), + [aux_sym_preproc_include_token1] = ACTIONS(1460), + [aux_sym_preproc_def_token1] = ACTIONS(1460), + [aux_sym_preproc_if_token1] = ACTIONS(1460), + [aux_sym_preproc_if_token2] = ACTIONS(1460), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1460), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1460), + [aux_sym_preproc_else_token1] = ACTIONS(1460), + [aux_sym_preproc_elif_token1] = ACTIONS(1460), + [sym_preproc_directive] = ACTIONS(1460), + [anon_sym_LPAREN2] = ACTIONS(1462), + [anon_sym_BANG] = ACTIONS(1462), + [anon_sym_TILDE] = ACTIONS(1462), + [anon_sym_DASH] = ACTIONS(1460), + [anon_sym_PLUS] = ACTIONS(1460), + [anon_sym_STAR] = ACTIONS(1462), + [anon_sym_AMP] = ACTIONS(1462), + [anon_sym_SEMI] = ACTIONS(1462), + [anon_sym___extension__] = ACTIONS(1460), + [anon_sym_typedef] = ACTIONS(1460), + [anon_sym_extern] = ACTIONS(1460), + [anon_sym___attribute__] = ACTIONS(1460), + [anon_sym___scanf] = ACTIONS(1460), + [anon_sym___printf] = ACTIONS(1460), + [anon_sym___read_mostly] = ACTIONS(1460), + [anon_sym___must_hold] = ACTIONS(1460), + [anon_sym___ro_after_init] = ACTIONS(1460), + [anon_sym___init] = ACTIONS(1460), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1462), + [anon_sym___declspec] = ACTIONS(1460), + [anon_sym___cdecl] = ACTIONS(1460), + [anon_sym___clrcall] = ACTIONS(1460), + [anon_sym___stdcall] = ACTIONS(1460), + [anon_sym___fastcall] = ACTIONS(1460), + [anon_sym___thiscall] = ACTIONS(1460), + [anon_sym___vectorcall] = ACTIONS(1460), + [anon_sym_LBRACE] = ACTIONS(1462), + [anon_sym_signed] = ACTIONS(1460), + [anon_sym_unsigned] = ACTIONS(1460), + [anon_sym_long] = ACTIONS(1460), + [anon_sym_short] = ACTIONS(1460), + [anon_sym_static] = ACTIONS(1460), + [anon_sym_auto] = ACTIONS(1460), + [anon_sym_register] = ACTIONS(1460), + [anon_sym_inline] = ACTIONS(1460), + [anon_sym___inline] = ACTIONS(1460), + [anon_sym___inline__] = ACTIONS(1460), + [anon_sym___forceinline] = ACTIONS(1460), + [anon_sym_thread_local] = ACTIONS(1460), + [anon_sym___thread] = ACTIONS(1460), + [anon_sym_const] = ACTIONS(1460), + [anon_sym_constexpr] = ACTIONS(1460), + [anon_sym_volatile] = ACTIONS(1460), + [anon_sym_restrict] = ACTIONS(1460), + [anon_sym___restrict__] = ACTIONS(1460), + [anon_sym__Atomic] = ACTIONS(1460), + [anon_sym__Noreturn] = ACTIONS(1460), + [anon_sym_noreturn] = ACTIONS(1460), + [sym_primitive_type] = ACTIONS(1460), + [anon_sym_enum] = ACTIONS(1460), + [anon_sym_struct] = ACTIONS(1460), + [anon_sym_union] = ACTIONS(1460), + [anon_sym_if] = ACTIONS(1460), + [anon_sym_switch] = ACTIONS(1460), + [anon_sym_case] = ACTIONS(1460), + [anon_sym_default] = ACTIONS(1460), + [anon_sym_while] = ACTIONS(1460), + [anon_sym_do] = ACTIONS(1460), + [anon_sym_for] = ACTIONS(1460), + [anon_sym_return] = ACTIONS(1460), + [anon_sym_break] = ACTIONS(1460), + [anon_sym_continue] = ACTIONS(1460), + [anon_sym_goto] = ACTIONS(1460), + [anon_sym___try] = ACTIONS(1460), + [anon_sym___leave] = ACTIONS(1460), + [anon_sym_DASH_DASH] = ACTIONS(1462), + [anon_sym_PLUS_PLUS] = ACTIONS(1462), + [anon_sym_sizeof] = ACTIONS(1460), + [anon_sym___alignof__] = ACTIONS(1460), + [anon_sym___alignof] = ACTIONS(1460), + [anon_sym__alignof] = ACTIONS(1460), + [anon_sym_alignof] = ACTIONS(1460), + [anon_sym__Alignof] = ACTIONS(1460), + [anon_sym_offsetof] = ACTIONS(1460), + [anon_sym__Generic] = ACTIONS(1460), + [anon_sym_asm] = ACTIONS(1460), + [anon_sym___asm__] = ACTIONS(1460), + [sym_number_literal] = ACTIONS(1462), + [anon_sym_L_SQUOTE] = ACTIONS(1462), + [anon_sym_u_SQUOTE] = ACTIONS(1462), + [anon_sym_U_SQUOTE] = ACTIONS(1462), + [anon_sym_u8_SQUOTE] = ACTIONS(1462), + [anon_sym_SQUOTE] = ACTIONS(1462), + [anon_sym_L_DQUOTE] = ACTIONS(1462), + [anon_sym_u_DQUOTE] = ACTIONS(1462), + [anon_sym_U_DQUOTE] = ACTIONS(1462), + [anon_sym_u8_DQUOTE] = ACTIONS(1462), + [anon_sym_DQUOTE] = ACTIONS(1462), + [sym_true] = ACTIONS(1460), + [sym_false] = ACTIONS(1460), + [anon_sym_NULL] = ACTIONS(1460), + [anon_sym_nullptr] = ACTIONS(1460), [sym_comment] = ACTIONS(3), }, [230] = { - [sym_identifier] = ACTIONS(1421), - [aux_sym_preproc_include_token1] = ACTIONS(1421), - [aux_sym_preproc_def_token1] = ACTIONS(1421), - [aux_sym_preproc_if_token1] = ACTIONS(1421), - [aux_sym_preproc_if_token2] = ACTIONS(1421), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1421), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1421), - [aux_sym_preproc_else_token1] = ACTIONS(1421), - [aux_sym_preproc_elif_token1] = ACTIONS(1421), - [sym_preproc_directive] = ACTIONS(1421), - [anon_sym_LPAREN2] = ACTIONS(1423), - [anon_sym_BANG] = ACTIONS(1423), - [anon_sym_TILDE] = ACTIONS(1423), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_PLUS] = ACTIONS(1421), - [anon_sym_STAR] = ACTIONS(1423), - [anon_sym_AMP] = ACTIONS(1423), - [anon_sym_SEMI] = ACTIONS(1423), - [anon_sym___extension__] = ACTIONS(1421), - [anon_sym_typedef] = ACTIONS(1421), - [anon_sym_extern] = ACTIONS(1421), - [anon_sym___attribute__] = ACTIONS(1421), - [anon_sym___scanf] = ACTIONS(1421), - [anon_sym___printf] = ACTIONS(1421), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1423), - [anon_sym___declspec] = ACTIONS(1421), - [anon_sym___cdecl] = ACTIONS(1421), - [anon_sym___clrcall] = ACTIONS(1421), - [anon_sym___stdcall] = ACTIONS(1421), - [anon_sym___fastcall] = ACTIONS(1421), - [anon_sym___thiscall] = ACTIONS(1421), - [anon_sym___vectorcall] = ACTIONS(1421), - [anon_sym_LBRACE] = ACTIONS(1423), - [anon_sym_signed] = ACTIONS(1421), - [anon_sym_unsigned] = ACTIONS(1421), - [anon_sym_long] = ACTIONS(1421), - [anon_sym_short] = ACTIONS(1421), - [anon_sym_static] = ACTIONS(1421), - [anon_sym_auto] = ACTIONS(1421), - [anon_sym_register] = ACTIONS(1421), - [anon_sym_inline] = ACTIONS(1421), - [anon_sym___inline] = ACTIONS(1421), - [anon_sym___inline__] = ACTIONS(1421), - [anon_sym___forceinline] = ACTIONS(1421), - [anon_sym_thread_local] = ACTIONS(1421), - [anon_sym___thread] = ACTIONS(1421), - [anon_sym_const] = ACTIONS(1421), - [anon_sym_constexpr] = ACTIONS(1421), - [anon_sym_volatile] = ACTIONS(1421), - [anon_sym_restrict] = ACTIONS(1421), - [anon_sym___restrict__] = ACTIONS(1421), - [anon_sym__Atomic] = ACTIONS(1421), - [anon_sym__Noreturn] = ACTIONS(1421), - [anon_sym_noreturn] = ACTIONS(1421), - [sym_primitive_type] = ACTIONS(1421), - [anon_sym_enum] = ACTIONS(1421), - [anon_sym_struct] = ACTIONS(1421), - [anon_sym_union] = ACTIONS(1421), - [anon_sym_if] = ACTIONS(1421), - [anon_sym_switch] = ACTIONS(1421), - [anon_sym_case] = ACTIONS(1421), - [anon_sym_default] = ACTIONS(1421), - [anon_sym_while] = ACTIONS(1421), - [anon_sym_do] = ACTIONS(1421), - [anon_sym_for] = ACTIONS(1421), - [anon_sym_return] = ACTIONS(1421), - [anon_sym_break] = ACTIONS(1421), - [anon_sym_continue] = ACTIONS(1421), - [anon_sym_goto] = ACTIONS(1421), - [anon_sym___try] = ACTIONS(1421), - [anon_sym___leave] = ACTIONS(1421), - [anon_sym_DASH_DASH] = ACTIONS(1423), - [anon_sym_PLUS_PLUS] = ACTIONS(1423), - [anon_sym_sizeof] = ACTIONS(1421), - [anon_sym___alignof__] = ACTIONS(1421), - [anon_sym___alignof] = ACTIONS(1421), - [anon_sym__alignof] = ACTIONS(1421), - [anon_sym_alignof] = ACTIONS(1421), - [anon_sym__Alignof] = ACTIONS(1421), - [anon_sym_offsetof] = ACTIONS(1421), - [anon_sym__Generic] = ACTIONS(1421), - [anon_sym_asm] = ACTIONS(1421), - [anon_sym___asm__] = ACTIONS(1421), - [sym_number_literal] = ACTIONS(1423), - [anon_sym_L_SQUOTE] = ACTIONS(1423), - [anon_sym_u_SQUOTE] = ACTIONS(1423), - [anon_sym_U_SQUOTE] = ACTIONS(1423), - [anon_sym_u8_SQUOTE] = ACTIONS(1423), - [anon_sym_SQUOTE] = ACTIONS(1423), - [anon_sym_L_DQUOTE] = ACTIONS(1423), - [anon_sym_u_DQUOTE] = ACTIONS(1423), - [anon_sym_U_DQUOTE] = ACTIONS(1423), - [anon_sym_u8_DQUOTE] = ACTIONS(1423), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_true] = ACTIONS(1421), - [sym_false] = ACTIONS(1421), - [anon_sym_NULL] = ACTIONS(1421), - [anon_sym_nullptr] = ACTIONS(1421), + [sym_else_clause] = STATE(335), + [sym_identifier] = ACTIONS(1314), + [aux_sym_preproc_include_token1] = ACTIONS(1314), + [aux_sym_preproc_def_token1] = ACTIONS(1314), + [aux_sym_preproc_if_token1] = ACTIONS(1314), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1314), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1314), + [sym_preproc_directive] = ACTIONS(1314), + [anon_sym_LPAREN2] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(1316), + [anon_sym_TILDE] = ACTIONS(1316), + [anon_sym_DASH] = ACTIONS(1314), + [anon_sym_PLUS] = ACTIONS(1314), + [anon_sym_STAR] = ACTIONS(1316), + [anon_sym_AMP] = ACTIONS(1316), + [anon_sym_SEMI] = ACTIONS(1316), + [anon_sym___extension__] = ACTIONS(1314), + [anon_sym_typedef] = ACTIONS(1314), + [anon_sym_extern] = ACTIONS(1314), + [anon_sym___attribute__] = ACTIONS(1314), + [anon_sym___scanf] = ACTIONS(1314), + [anon_sym___printf] = ACTIONS(1314), + [anon_sym___read_mostly] = ACTIONS(1314), + [anon_sym___must_hold] = ACTIONS(1314), + [anon_sym___ro_after_init] = ACTIONS(1314), + [anon_sym___init] = ACTIONS(1314), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1316), + [anon_sym___declspec] = ACTIONS(1314), + [anon_sym___cdecl] = ACTIONS(1314), + [anon_sym___clrcall] = ACTIONS(1314), + [anon_sym___stdcall] = ACTIONS(1314), + [anon_sym___fastcall] = ACTIONS(1314), + [anon_sym___thiscall] = ACTIONS(1314), + [anon_sym___vectorcall] = ACTIONS(1314), + [anon_sym_LBRACE] = ACTIONS(1316), + [anon_sym_RBRACE] = ACTIONS(1316), + [anon_sym_signed] = ACTIONS(1314), + [anon_sym_unsigned] = ACTIONS(1314), + [anon_sym_long] = ACTIONS(1314), + [anon_sym_short] = ACTIONS(1314), + [anon_sym_static] = ACTIONS(1314), + [anon_sym_auto] = ACTIONS(1314), + [anon_sym_register] = ACTIONS(1314), + [anon_sym_inline] = ACTIONS(1314), + [anon_sym___inline] = ACTIONS(1314), + [anon_sym___inline__] = ACTIONS(1314), + [anon_sym___forceinline] = ACTIONS(1314), + [anon_sym_thread_local] = ACTIONS(1314), + [anon_sym___thread] = ACTIONS(1314), + [anon_sym_const] = ACTIONS(1314), + [anon_sym_constexpr] = ACTIONS(1314), + [anon_sym_volatile] = ACTIONS(1314), + [anon_sym_restrict] = ACTIONS(1314), + [anon_sym___restrict__] = ACTIONS(1314), + [anon_sym__Atomic] = ACTIONS(1314), + [anon_sym__Noreturn] = ACTIONS(1314), + [anon_sym_noreturn] = ACTIONS(1314), + [sym_primitive_type] = ACTIONS(1314), + [anon_sym_enum] = ACTIONS(1314), + [anon_sym_struct] = ACTIONS(1314), + [anon_sym_union] = ACTIONS(1314), + [anon_sym_if] = ACTIONS(1314), + [anon_sym_else] = ACTIONS(1534), + [anon_sym_switch] = ACTIONS(1314), + [anon_sym_case] = ACTIONS(1314), + [anon_sym_default] = ACTIONS(1314), + [anon_sym_while] = ACTIONS(1314), + [anon_sym_do] = ACTIONS(1314), + [anon_sym_for] = ACTIONS(1314), + [anon_sym_return] = ACTIONS(1314), + [anon_sym_break] = ACTIONS(1314), + [anon_sym_continue] = ACTIONS(1314), + [anon_sym_goto] = ACTIONS(1314), + [anon_sym___try] = ACTIONS(1314), + [anon_sym___leave] = ACTIONS(1314), + [anon_sym_DASH_DASH] = ACTIONS(1316), + [anon_sym_PLUS_PLUS] = ACTIONS(1316), + [anon_sym_sizeof] = ACTIONS(1314), + [anon_sym___alignof__] = ACTIONS(1314), + [anon_sym___alignof] = ACTIONS(1314), + [anon_sym__alignof] = ACTIONS(1314), + [anon_sym_alignof] = ACTIONS(1314), + [anon_sym__Alignof] = ACTIONS(1314), + [anon_sym_offsetof] = ACTIONS(1314), + [anon_sym__Generic] = ACTIONS(1314), + [anon_sym_asm] = ACTIONS(1314), + [anon_sym___asm__] = ACTIONS(1314), + [sym_number_literal] = ACTIONS(1316), + [anon_sym_L_SQUOTE] = ACTIONS(1316), + [anon_sym_u_SQUOTE] = ACTIONS(1316), + [anon_sym_U_SQUOTE] = ACTIONS(1316), + [anon_sym_u8_SQUOTE] = ACTIONS(1316), + [anon_sym_SQUOTE] = ACTIONS(1316), + [anon_sym_L_DQUOTE] = ACTIONS(1316), + [anon_sym_u_DQUOTE] = ACTIONS(1316), + [anon_sym_U_DQUOTE] = ACTIONS(1316), + [anon_sym_u8_DQUOTE] = ACTIONS(1316), + [anon_sym_DQUOTE] = ACTIONS(1316), + [sym_true] = ACTIONS(1314), + [sym_false] = ACTIONS(1314), + [anon_sym_NULL] = ACTIONS(1314), + [anon_sym_nullptr] = ACTIONS(1314), [sym_comment] = ACTIONS(3), }, [231] = { - [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_LBRACK_LBRACK] = ACTIONS(1315), - [anon_sym___declspec] = 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), - [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_else] = 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_identifier] = ACTIONS(1360), + [aux_sym_preproc_include_token1] = ACTIONS(1360), + [aux_sym_preproc_def_token1] = ACTIONS(1360), + [aux_sym_preproc_if_token1] = ACTIONS(1360), + [aux_sym_preproc_if_token2] = ACTIONS(1360), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1360), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1360), + [sym_preproc_directive] = ACTIONS(1360), + [anon_sym_LPAREN2] = ACTIONS(1362), + [anon_sym_BANG] = ACTIONS(1362), + [anon_sym_TILDE] = ACTIONS(1362), + [anon_sym_DASH] = ACTIONS(1360), + [anon_sym_PLUS] = ACTIONS(1360), + [anon_sym_STAR] = ACTIONS(1362), + [anon_sym_AMP] = ACTIONS(1362), + [anon_sym_SEMI] = ACTIONS(1362), + [anon_sym___extension__] = ACTIONS(1360), + [anon_sym_typedef] = ACTIONS(1360), + [anon_sym_extern] = ACTIONS(1360), + [anon_sym___attribute__] = ACTIONS(1360), + [anon_sym___scanf] = ACTIONS(1360), + [anon_sym___printf] = ACTIONS(1360), + [anon_sym___read_mostly] = ACTIONS(1360), + [anon_sym___must_hold] = ACTIONS(1360), + [anon_sym___ro_after_init] = ACTIONS(1360), + [anon_sym___init] = ACTIONS(1360), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1362), + [anon_sym___declspec] = ACTIONS(1360), + [anon_sym___cdecl] = ACTIONS(1360), + [anon_sym___clrcall] = ACTIONS(1360), + [anon_sym___stdcall] = ACTIONS(1360), + [anon_sym___fastcall] = ACTIONS(1360), + [anon_sym___thiscall] = ACTIONS(1360), + [anon_sym___vectorcall] = ACTIONS(1360), + [anon_sym_LBRACE] = ACTIONS(1362), + [anon_sym_signed] = ACTIONS(1360), + [anon_sym_unsigned] = ACTIONS(1360), + [anon_sym_long] = ACTIONS(1360), + [anon_sym_short] = ACTIONS(1360), + [anon_sym_static] = ACTIONS(1360), + [anon_sym_auto] = ACTIONS(1360), + [anon_sym_register] = ACTIONS(1360), + [anon_sym_inline] = ACTIONS(1360), + [anon_sym___inline] = ACTIONS(1360), + [anon_sym___inline__] = ACTIONS(1360), + [anon_sym___forceinline] = ACTIONS(1360), + [anon_sym_thread_local] = ACTIONS(1360), + [anon_sym___thread] = ACTIONS(1360), + [anon_sym_const] = ACTIONS(1360), + [anon_sym_constexpr] = ACTIONS(1360), + [anon_sym_volatile] = ACTIONS(1360), + [anon_sym_restrict] = ACTIONS(1360), + [anon_sym___restrict__] = ACTIONS(1360), + [anon_sym__Atomic] = ACTIONS(1360), + [anon_sym__Noreturn] = ACTIONS(1360), + [anon_sym_noreturn] = ACTIONS(1360), + [sym_primitive_type] = ACTIONS(1360), + [anon_sym_enum] = ACTIONS(1360), + [anon_sym_struct] = ACTIONS(1360), + [anon_sym_union] = ACTIONS(1360), + [anon_sym_if] = ACTIONS(1360), + [anon_sym_else] = ACTIONS(1360), + [anon_sym_switch] = ACTIONS(1360), + [anon_sym_case] = ACTIONS(1360), + [anon_sym_default] = ACTIONS(1360), + [anon_sym_while] = ACTIONS(1360), + [anon_sym_do] = ACTIONS(1360), + [anon_sym_for] = ACTIONS(1360), + [anon_sym_return] = ACTIONS(1360), + [anon_sym_break] = ACTIONS(1360), + [anon_sym_continue] = ACTIONS(1360), + [anon_sym_goto] = ACTIONS(1360), + [anon_sym___try] = ACTIONS(1360), + [anon_sym___leave] = ACTIONS(1360), + [anon_sym_DASH_DASH] = ACTIONS(1362), + [anon_sym_PLUS_PLUS] = ACTIONS(1362), + [anon_sym_sizeof] = ACTIONS(1360), + [anon_sym___alignof__] = ACTIONS(1360), + [anon_sym___alignof] = ACTIONS(1360), + [anon_sym__alignof] = ACTIONS(1360), + [anon_sym_alignof] = ACTIONS(1360), + [anon_sym__Alignof] = ACTIONS(1360), + [anon_sym_offsetof] = ACTIONS(1360), + [anon_sym__Generic] = ACTIONS(1360), + [anon_sym_asm] = ACTIONS(1360), + [anon_sym___asm__] = ACTIONS(1360), + [sym_number_literal] = ACTIONS(1362), + [anon_sym_L_SQUOTE] = ACTIONS(1362), + [anon_sym_u_SQUOTE] = ACTIONS(1362), + [anon_sym_U_SQUOTE] = ACTIONS(1362), + [anon_sym_u8_SQUOTE] = ACTIONS(1362), + [anon_sym_SQUOTE] = ACTIONS(1362), + [anon_sym_L_DQUOTE] = ACTIONS(1362), + [anon_sym_u_DQUOTE] = ACTIONS(1362), + [anon_sym_U_DQUOTE] = ACTIONS(1362), + [anon_sym_u8_DQUOTE] = ACTIONS(1362), + [anon_sym_DQUOTE] = ACTIONS(1362), + [sym_true] = ACTIONS(1360), + [sym_false] = ACTIONS(1360), + [anon_sym_NULL] = ACTIONS(1360), + [anon_sym_nullptr] = ACTIONS(1360), [sym_comment] = ACTIONS(3), }, [232] = { - [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_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_LBRACK_LBRACK] = ACTIONS(1351), - [anon_sym___declspec] = 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), - [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_else] = 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_identifier] = ACTIONS(1412), + [aux_sym_preproc_include_token1] = ACTIONS(1412), + [aux_sym_preproc_def_token1] = ACTIONS(1412), + [aux_sym_preproc_if_token1] = ACTIONS(1412), + [aux_sym_preproc_if_token2] = ACTIONS(1412), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1412), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1412), + [sym_preproc_directive] = ACTIONS(1412), + [anon_sym_LPAREN2] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(1414), + [anon_sym_TILDE] = ACTIONS(1414), + [anon_sym_DASH] = ACTIONS(1412), + [anon_sym_PLUS] = ACTIONS(1412), + [anon_sym_STAR] = ACTIONS(1414), + [anon_sym_AMP] = ACTIONS(1414), + [anon_sym_SEMI] = ACTIONS(1414), + [anon_sym___extension__] = ACTIONS(1412), + [anon_sym_typedef] = ACTIONS(1412), + [anon_sym_extern] = ACTIONS(1412), + [anon_sym___attribute__] = ACTIONS(1412), + [anon_sym___scanf] = ACTIONS(1412), + [anon_sym___printf] = ACTIONS(1412), + [anon_sym___read_mostly] = ACTIONS(1412), + [anon_sym___must_hold] = ACTIONS(1412), + [anon_sym___ro_after_init] = ACTIONS(1412), + [anon_sym___init] = ACTIONS(1412), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1414), + [anon_sym___declspec] = ACTIONS(1412), + [anon_sym___cdecl] = ACTIONS(1412), + [anon_sym___clrcall] = ACTIONS(1412), + [anon_sym___stdcall] = ACTIONS(1412), + [anon_sym___fastcall] = ACTIONS(1412), + [anon_sym___thiscall] = ACTIONS(1412), + [anon_sym___vectorcall] = ACTIONS(1412), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_signed] = ACTIONS(1412), + [anon_sym_unsigned] = ACTIONS(1412), + [anon_sym_long] = ACTIONS(1412), + [anon_sym_short] = ACTIONS(1412), + [anon_sym_static] = ACTIONS(1412), + [anon_sym_auto] = ACTIONS(1412), + [anon_sym_register] = ACTIONS(1412), + [anon_sym_inline] = ACTIONS(1412), + [anon_sym___inline] = ACTIONS(1412), + [anon_sym___inline__] = ACTIONS(1412), + [anon_sym___forceinline] = ACTIONS(1412), + [anon_sym_thread_local] = ACTIONS(1412), + [anon_sym___thread] = ACTIONS(1412), + [anon_sym_const] = ACTIONS(1412), + [anon_sym_constexpr] = ACTIONS(1412), + [anon_sym_volatile] = ACTIONS(1412), + [anon_sym_restrict] = ACTIONS(1412), + [anon_sym___restrict__] = ACTIONS(1412), + [anon_sym__Atomic] = ACTIONS(1412), + [anon_sym__Noreturn] = ACTIONS(1412), + [anon_sym_noreturn] = ACTIONS(1412), + [sym_primitive_type] = ACTIONS(1412), + [anon_sym_enum] = ACTIONS(1412), + [anon_sym_struct] = ACTIONS(1412), + [anon_sym_union] = ACTIONS(1412), + [anon_sym_if] = ACTIONS(1412), + [anon_sym_else] = ACTIONS(1412), + [anon_sym_switch] = ACTIONS(1412), + [anon_sym_case] = ACTIONS(1412), + [anon_sym_default] = ACTIONS(1412), + [anon_sym_while] = ACTIONS(1412), + [anon_sym_do] = ACTIONS(1412), + [anon_sym_for] = ACTIONS(1412), + [anon_sym_return] = ACTIONS(1412), + [anon_sym_break] = ACTIONS(1412), + [anon_sym_continue] = ACTIONS(1412), + [anon_sym_goto] = ACTIONS(1412), + [anon_sym___try] = ACTIONS(1412), + [anon_sym___leave] = ACTIONS(1412), + [anon_sym_DASH_DASH] = ACTIONS(1414), + [anon_sym_PLUS_PLUS] = ACTIONS(1414), + [anon_sym_sizeof] = ACTIONS(1412), + [anon_sym___alignof__] = ACTIONS(1412), + [anon_sym___alignof] = ACTIONS(1412), + [anon_sym__alignof] = ACTIONS(1412), + [anon_sym_alignof] = ACTIONS(1412), + [anon_sym__Alignof] = ACTIONS(1412), + [anon_sym_offsetof] = ACTIONS(1412), + [anon_sym__Generic] = ACTIONS(1412), + [anon_sym_asm] = ACTIONS(1412), + [anon_sym___asm__] = ACTIONS(1412), + [sym_number_literal] = ACTIONS(1414), + [anon_sym_L_SQUOTE] = ACTIONS(1414), + [anon_sym_u_SQUOTE] = ACTIONS(1414), + [anon_sym_U_SQUOTE] = ACTIONS(1414), + [anon_sym_u8_SQUOTE] = ACTIONS(1414), + [anon_sym_SQUOTE] = ACTIONS(1414), + [anon_sym_L_DQUOTE] = ACTIONS(1414), + [anon_sym_u_DQUOTE] = ACTIONS(1414), + [anon_sym_U_DQUOTE] = ACTIONS(1414), + [anon_sym_u8_DQUOTE] = ACTIONS(1414), + [anon_sym_DQUOTE] = ACTIONS(1414), + [sym_true] = ACTIONS(1412), + [sym_false] = ACTIONS(1412), + [anon_sym_NULL] = ACTIONS(1412), + [anon_sym_nullptr] = ACTIONS(1412), [sym_comment] = ACTIONS(3), }, [233] = { - [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_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_LBRACK_LBRACK] = ACTIONS(1371), - [anon_sym___declspec] = 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), - [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_else] = 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), + [ts_builtin_sym_end] = ACTIONS(1322), + [sym_identifier] = ACTIONS(1320), + [aux_sym_preproc_include_token1] = ACTIONS(1320), + [aux_sym_preproc_def_token1] = ACTIONS(1320), + [aux_sym_preproc_if_token1] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1320), + [sym_preproc_directive] = ACTIONS(1320), + [anon_sym_LPAREN2] = ACTIONS(1322), + [anon_sym_BANG] = ACTIONS(1322), + [anon_sym_TILDE] = ACTIONS(1322), + [anon_sym_DASH] = ACTIONS(1320), + [anon_sym_PLUS] = ACTIONS(1320), + [anon_sym_STAR] = ACTIONS(1322), + [anon_sym_AMP] = ACTIONS(1322), + [anon_sym_SEMI] = ACTIONS(1322), + [anon_sym___extension__] = ACTIONS(1320), + [anon_sym_typedef] = ACTIONS(1320), + [anon_sym_extern] = ACTIONS(1320), + [anon_sym___attribute__] = ACTIONS(1320), + [anon_sym___scanf] = ACTIONS(1320), + [anon_sym___printf] = ACTIONS(1320), + [anon_sym___read_mostly] = ACTIONS(1320), + [anon_sym___must_hold] = ACTIONS(1320), + [anon_sym___ro_after_init] = ACTIONS(1320), + [anon_sym___init] = ACTIONS(1320), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1322), + [anon_sym___declspec] = ACTIONS(1320), + [anon_sym___cdecl] = ACTIONS(1320), + [anon_sym___clrcall] = ACTIONS(1320), + [anon_sym___stdcall] = ACTIONS(1320), + [anon_sym___fastcall] = ACTIONS(1320), + [anon_sym___thiscall] = ACTIONS(1320), + [anon_sym___vectorcall] = ACTIONS(1320), + [anon_sym_LBRACE] = ACTIONS(1322), + [anon_sym_signed] = ACTIONS(1320), + [anon_sym_unsigned] = ACTIONS(1320), + [anon_sym_long] = ACTIONS(1320), + [anon_sym_short] = ACTIONS(1320), + [anon_sym_static] = ACTIONS(1320), + [anon_sym_auto] = ACTIONS(1320), + [anon_sym_register] = ACTIONS(1320), + [anon_sym_inline] = ACTIONS(1320), + [anon_sym___inline] = ACTIONS(1320), + [anon_sym___inline__] = ACTIONS(1320), + [anon_sym___forceinline] = ACTIONS(1320), + [anon_sym_thread_local] = ACTIONS(1320), + [anon_sym___thread] = ACTIONS(1320), + [anon_sym_const] = ACTIONS(1320), + [anon_sym_constexpr] = ACTIONS(1320), + [anon_sym_volatile] = ACTIONS(1320), + [anon_sym_restrict] = ACTIONS(1320), + [anon_sym___restrict__] = ACTIONS(1320), + [anon_sym__Atomic] = ACTIONS(1320), + [anon_sym__Noreturn] = ACTIONS(1320), + [anon_sym_noreturn] = ACTIONS(1320), + [sym_primitive_type] = ACTIONS(1320), + [anon_sym_enum] = ACTIONS(1320), + [anon_sym_struct] = ACTIONS(1320), + [anon_sym_union] = ACTIONS(1320), + [anon_sym_if] = ACTIONS(1320), + [anon_sym_else] = ACTIONS(1320), + [anon_sym_switch] = ACTIONS(1320), + [anon_sym_case] = ACTIONS(1320), + [anon_sym_default] = ACTIONS(1320), + [anon_sym_while] = ACTIONS(1320), + [anon_sym_do] = ACTIONS(1320), + [anon_sym_for] = ACTIONS(1320), + [anon_sym_return] = ACTIONS(1320), + [anon_sym_break] = ACTIONS(1320), + [anon_sym_continue] = ACTIONS(1320), + [anon_sym_goto] = ACTIONS(1320), + [anon_sym___try] = ACTIONS(1320), + [anon_sym___leave] = ACTIONS(1320), + [anon_sym_DASH_DASH] = ACTIONS(1322), + [anon_sym_PLUS_PLUS] = ACTIONS(1322), + [anon_sym_sizeof] = ACTIONS(1320), + [anon_sym___alignof__] = ACTIONS(1320), + [anon_sym___alignof] = ACTIONS(1320), + [anon_sym__alignof] = ACTIONS(1320), + [anon_sym_alignof] = ACTIONS(1320), + [anon_sym__Alignof] = ACTIONS(1320), + [anon_sym_offsetof] = ACTIONS(1320), + [anon_sym__Generic] = ACTIONS(1320), + [anon_sym_asm] = ACTIONS(1320), + [anon_sym___asm__] = ACTIONS(1320), + [sym_number_literal] = ACTIONS(1322), + [anon_sym_L_SQUOTE] = ACTIONS(1322), + [anon_sym_u_SQUOTE] = ACTIONS(1322), + [anon_sym_U_SQUOTE] = ACTIONS(1322), + [anon_sym_u8_SQUOTE] = ACTIONS(1322), + [anon_sym_SQUOTE] = ACTIONS(1322), + [anon_sym_L_DQUOTE] = ACTIONS(1322), + [anon_sym_u_DQUOTE] = ACTIONS(1322), + [anon_sym_U_DQUOTE] = ACTIONS(1322), + [anon_sym_u8_DQUOTE] = ACTIONS(1322), + [anon_sym_DQUOTE] = ACTIONS(1322), + [sym_true] = ACTIONS(1320), + [sym_false] = ACTIONS(1320), + [anon_sym_NULL] = ACTIONS(1320), + [anon_sym_nullptr] = ACTIONS(1320), [sym_comment] = ACTIONS(3), }, [234] = { - [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_LBRACK_LBRACK] = ACTIONS(1347), - [anon_sym___declspec] = 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), - [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_else] = 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), + [ts_builtin_sym_end] = ACTIONS(1322), + [sym_identifier] = ACTIONS(1320), + [aux_sym_preproc_include_token1] = ACTIONS(1320), + [aux_sym_preproc_def_token1] = ACTIONS(1320), + [aux_sym_preproc_if_token1] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1320), + [sym_preproc_directive] = ACTIONS(1320), + [anon_sym_LPAREN2] = ACTIONS(1322), + [anon_sym_BANG] = ACTIONS(1322), + [anon_sym_TILDE] = ACTIONS(1322), + [anon_sym_DASH] = ACTIONS(1320), + [anon_sym_PLUS] = ACTIONS(1320), + [anon_sym_STAR] = ACTIONS(1322), + [anon_sym_AMP] = ACTIONS(1322), + [anon_sym_SEMI] = ACTIONS(1322), + [anon_sym___extension__] = ACTIONS(1320), + [anon_sym_typedef] = ACTIONS(1320), + [anon_sym_extern] = ACTIONS(1320), + [anon_sym___attribute__] = ACTIONS(1320), + [anon_sym___scanf] = ACTIONS(1320), + [anon_sym___printf] = ACTIONS(1320), + [anon_sym___read_mostly] = ACTIONS(1320), + [anon_sym___must_hold] = ACTIONS(1320), + [anon_sym___ro_after_init] = ACTIONS(1320), + [anon_sym___init] = ACTIONS(1320), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1322), + [anon_sym___declspec] = ACTIONS(1320), + [anon_sym___cdecl] = ACTIONS(1320), + [anon_sym___clrcall] = ACTIONS(1320), + [anon_sym___stdcall] = ACTIONS(1320), + [anon_sym___fastcall] = ACTIONS(1320), + [anon_sym___thiscall] = ACTIONS(1320), + [anon_sym___vectorcall] = ACTIONS(1320), + [anon_sym_LBRACE] = ACTIONS(1322), + [anon_sym_signed] = ACTIONS(1320), + [anon_sym_unsigned] = ACTIONS(1320), + [anon_sym_long] = ACTIONS(1320), + [anon_sym_short] = ACTIONS(1320), + [anon_sym_static] = ACTIONS(1320), + [anon_sym_auto] = ACTIONS(1320), + [anon_sym_register] = ACTIONS(1320), + [anon_sym_inline] = ACTIONS(1320), + [anon_sym___inline] = ACTIONS(1320), + [anon_sym___inline__] = ACTIONS(1320), + [anon_sym___forceinline] = ACTIONS(1320), + [anon_sym_thread_local] = ACTIONS(1320), + [anon_sym___thread] = ACTIONS(1320), + [anon_sym_const] = ACTIONS(1320), + [anon_sym_constexpr] = ACTIONS(1320), + [anon_sym_volatile] = ACTIONS(1320), + [anon_sym_restrict] = ACTIONS(1320), + [anon_sym___restrict__] = ACTIONS(1320), + [anon_sym__Atomic] = ACTIONS(1320), + [anon_sym__Noreturn] = ACTIONS(1320), + [anon_sym_noreturn] = ACTIONS(1320), + [sym_primitive_type] = ACTIONS(1320), + [anon_sym_enum] = ACTIONS(1320), + [anon_sym_struct] = ACTIONS(1320), + [anon_sym_union] = ACTIONS(1320), + [anon_sym_if] = ACTIONS(1320), + [anon_sym_else] = ACTIONS(1320), + [anon_sym_switch] = ACTIONS(1320), + [anon_sym_case] = ACTIONS(1320), + [anon_sym_default] = ACTIONS(1320), + [anon_sym_while] = ACTIONS(1320), + [anon_sym_do] = ACTIONS(1320), + [anon_sym_for] = ACTIONS(1320), + [anon_sym_return] = ACTIONS(1320), + [anon_sym_break] = ACTIONS(1320), + [anon_sym_continue] = ACTIONS(1320), + [anon_sym_goto] = ACTIONS(1320), + [anon_sym___try] = ACTIONS(1320), + [anon_sym___leave] = ACTIONS(1320), + [anon_sym_DASH_DASH] = ACTIONS(1322), + [anon_sym_PLUS_PLUS] = ACTIONS(1322), + [anon_sym_sizeof] = ACTIONS(1320), + [anon_sym___alignof__] = ACTIONS(1320), + [anon_sym___alignof] = ACTIONS(1320), + [anon_sym__alignof] = ACTIONS(1320), + [anon_sym_alignof] = ACTIONS(1320), + [anon_sym__Alignof] = ACTIONS(1320), + [anon_sym_offsetof] = ACTIONS(1320), + [anon_sym__Generic] = ACTIONS(1320), + [anon_sym_asm] = ACTIONS(1320), + [anon_sym___asm__] = ACTIONS(1320), + [sym_number_literal] = ACTIONS(1322), + [anon_sym_L_SQUOTE] = ACTIONS(1322), + [anon_sym_u_SQUOTE] = ACTIONS(1322), + [anon_sym_U_SQUOTE] = ACTIONS(1322), + [anon_sym_u8_SQUOTE] = ACTIONS(1322), + [anon_sym_SQUOTE] = ACTIONS(1322), + [anon_sym_L_DQUOTE] = ACTIONS(1322), + [anon_sym_u_DQUOTE] = ACTIONS(1322), + [anon_sym_U_DQUOTE] = ACTIONS(1322), + [anon_sym_u8_DQUOTE] = ACTIONS(1322), + [anon_sym_DQUOTE] = ACTIONS(1322), + [sym_true] = ACTIONS(1320), + [sym_false] = ACTIONS(1320), + [anon_sym_NULL] = ACTIONS(1320), + [anon_sym_nullptr] = ACTIONS(1320), [sym_comment] = ACTIONS(3), }, [235] = { - [sym_identifier] = ACTIONS(1409), - [aux_sym_preproc_include_token1] = ACTIONS(1409), - [aux_sym_preproc_def_token1] = ACTIONS(1409), - [aux_sym_preproc_if_token1] = ACTIONS(1409), - [aux_sym_preproc_if_token2] = ACTIONS(1409), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1409), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1409), - [sym_preproc_directive] = ACTIONS(1409), - [anon_sym_LPAREN2] = ACTIONS(1411), - [anon_sym_BANG] = ACTIONS(1411), - [anon_sym_TILDE] = ACTIONS(1411), - [anon_sym_DASH] = ACTIONS(1409), - [anon_sym_PLUS] = ACTIONS(1409), - [anon_sym_STAR] = ACTIONS(1411), - [anon_sym_AMP] = ACTIONS(1411), - [anon_sym_SEMI] = ACTIONS(1411), - [anon_sym___extension__] = ACTIONS(1409), - [anon_sym_typedef] = ACTIONS(1409), - [anon_sym_extern] = ACTIONS(1409), - [anon_sym___attribute__] = ACTIONS(1409), - [anon_sym___scanf] = ACTIONS(1409), - [anon_sym___printf] = ACTIONS(1409), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1411), - [anon_sym___declspec] = ACTIONS(1409), - [anon_sym___cdecl] = ACTIONS(1409), - [anon_sym___clrcall] = ACTIONS(1409), - [anon_sym___stdcall] = ACTIONS(1409), - [anon_sym___fastcall] = ACTIONS(1409), - [anon_sym___thiscall] = ACTIONS(1409), - [anon_sym___vectorcall] = ACTIONS(1409), - [anon_sym_LBRACE] = ACTIONS(1411), - [anon_sym_signed] = ACTIONS(1409), - [anon_sym_unsigned] = ACTIONS(1409), - [anon_sym_long] = ACTIONS(1409), - [anon_sym_short] = ACTIONS(1409), - [anon_sym_static] = ACTIONS(1409), - [anon_sym_auto] = ACTIONS(1409), - [anon_sym_register] = ACTIONS(1409), - [anon_sym_inline] = ACTIONS(1409), - [anon_sym___inline] = ACTIONS(1409), - [anon_sym___inline__] = ACTIONS(1409), - [anon_sym___forceinline] = ACTIONS(1409), - [anon_sym_thread_local] = ACTIONS(1409), - [anon_sym___thread] = ACTIONS(1409), - [anon_sym_const] = ACTIONS(1409), - [anon_sym_constexpr] = ACTIONS(1409), - [anon_sym_volatile] = ACTIONS(1409), - [anon_sym_restrict] = ACTIONS(1409), - [anon_sym___restrict__] = ACTIONS(1409), - [anon_sym__Atomic] = ACTIONS(1409), - [anon_sym__Noreturn] = ACTIONS(1409), - [anon_sym_noreturn] = ACTIONS(1409), - [sym_primitive_type] = ACTIONS(1409), - [anon_sym_enum] = ACTIONS(1409), - [anon_sym_struct] = ACTIONS(1409), - [anon_sym_union] = ACTIONS(1409), - [anon_sym_if] = ACTIONS(1409), - [anon_sym_else] = ACTIONS(1409), - [anon_sym_switch] = ACTIONS(1409), - [anon_sym_case] = ACTIONS(1409), - [anon_sym_default] = ACTIONS(1409), - [anon_sym_while] = ACTIONS(1409), - [anon_sym_do] = ACTIONS(1409), - [anon_sym_for] = ACTIONS(1409), - [anon_sym_return] = ACTIONS(1409), - [anon_sym_break] = ACTIONS(1409), - [anon_sym_continue] = ACTIONS(1409), - [anon_sym_goto] = ACTIONS(1409), - [anon_sym___try] = ACTIONS(1409), - [anon_sym___leave] = ACTIONS(1409), - [anon_sym_DASH_DASH] = ACTIONS(1411), - [anon_sym_PLUS_PLUS] = ACTIONS(1411), - [anon_sym_sizeof] = ACTIONS(1409), - [anon_sym___alignof__] = ACTIONS(1409), - [anon_sym___alignof] = ACTIONS(1409), - [anon_sym__alignof] = ACTIONS(1409), - [anon_sym_alignof] = ACTIONS(1409), - [anon_sym__Alignof] = ACTIONS(1409), - [anon_sym_offsetof] = ACTIONS(1409), - [anon_sym__Generic] = ACTIONS(1409), - [anon_sym_asm] = ACTIONS(1409), - [anon_sym___asm__] = ACTIONS(1409), - [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(1409), - [sym_false] = ACTIONS(1409), - [anon_sym_NULL] = ACTIONS(1409), - [anon_sym_nullptr] = ACTIONS(1409), + [ts_builtin_sym_end] = ACTIONS(1322), + [sym_identifier] = ACTIONS(1320), + [aux_sym_preproc_include_token1] = ACTIONS(1320), + [aux_sym_preproc_def_token1] = ACTIONS(1320), + [aux_sym_preproc_if_token1] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1320), + [sym_preproc_directive] = ACTIONS(1320), + [anon_sym_LPAREN2] = ACTIONS(1322), + [anon_sym_BANG] = ACTIONS(1322), + [anon_sym_TILDE] = ACTIONS(1322), + [anon_sym_DASH] = ACTIONS(1320), + [anon_sym_PLUS] = ACTIONS(1320), + [anon_sym_STAR] = ACTIONS(1322), + [anon_sym_AMP] = ACTIONS(1322), + [anon_sym_SEMI] = ACTIONS(1322), + [anon_sym___extension__] = ACTIONS(1320), + [anon_sym_typedef] = ACTIONS(1320), + [anon_sym_extern] = ACTIONS(1320), + [anon_sym___attribute__] = ACTIONS(1320), + [anon_sym___scanf] = ACTIONS(1320), + [anon_sym___printf] = ACTIONS(1320), + [anon_sym___read_mostly] = ACTIONS(1320), + [anon_sym___must_hold] = ACTIONS(1320), + [anon_sym___ro_after_init] = ACTIONS(1320), + [anon_sym___init] = ACTIONS(1320), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1322), + [anon_sym___declspec] = ACTIONS(1320), + [anon_sym___cdecl] = ACTIONS(1320), + [anon_sym___clrcall] = ACTIONS(1320), + [anon_sym___stdcall] = ACTIONS(1320), + [anon_sym___fastcall] = ACTIONS(1320), + [anon_sym___thiscall] = ACTIONS(1320), + [anon_sym___vectorcall] = ACTIONS(1320), + [anon_sym_LBRACE] = ACTIONS(1322), + [anon_sym_signed] = ACTIONS(1320), + [anon_sym_unsigned] = ACTIONS(1320), + [anon_sym_long] = ACTIONS(1320), + [anon_sym_short] = ACTIONS(1320), + [anon_sym_static] = ACTIONS(1320), + [anon_sym_auto] = ACTIONS(1320), + [anon_sym_register] = ACTIONS(1320), + [anon_sym_inline] = ACTIONS(1320), + [anon_sym___inline] = ACTIONS(1320), + [anon_sym___inline__] = ACTIONS(1320), + [anon_sym___forceinline] = ACTIONS(1320), + [anon_sym_thread_local] = ACTIONS(1320), + [anon_sym___thread] = ACTIONS(1320), + [anon_sym_const] = ACTIONS(1320), + [anon_sym_constexpr] = ACTIONS(1320), + [anon_sym_volatile] = ACTIONS(1320), + [anon_sym_restrict] = ACTIONS(1320), + [anon_sym___restrict__] = ACTIONS(1320), + [anon_sym__Atomic] = ACTIONS(1320), + [anon_sym__Noreturn] = ACTIONS(1320), + [anon_sym_noreturn] = ACTIONS(1320), + [sym_primitive_type] = ACTIONS(1320), + [anon_sym_enum] = ACTIONS(1320), + [anon_sym_struct] = ACTIONS(1320), + [anon_sym_union] = ACTIONS(1320), + [anon_sym_if] = ACTIONS(1320), + [anon_sym_else] = ACTIONS(1320), + [anon_sym_switch] = ACTIONS(1320), + [anon_sym_case] = ACTIONS(1320), + [anon_sym_default] = ACTIONS(1320), + [anon_sym_while] = ACTIONS(1320), + [anon_sym_do] = ACTIONS(1320), + [anon_sym_for] = ACTIONS(1320), + [anon_sym_return] = ACTIONS(1320), + [anon_sym_break] = ACTIONS(1320), + [anon_sym_continue] = ACTIONS(1320), + [anon_sym_goto] = ACTIONS(1320), + [anon_sym___try] = ACTIONS(1320), + [anon_sym___leave] = ACTIONS(1320), + [anon_sym_DASH_DASH] = ACTIONS(1322), + [anon_sym_PLUS_PLUS] = ACTIONS(1322), + [anon_sym_sizeof] = ACTIONS(1320), + [anon_sym___alignof__] = ACTIONS(1320), + [anon_sym___alignof] = ACTIONS(1320), + [anon_sym__alignof] = ACTIONS(1320), + [anon_sym_alignof] = ACTIONS(1320), + [anon_sym__Alignof] = ACTIONS(1320), + [anon_sym_offsetof] = ACTIONS(1320), + [anon_sym__Generic] = ACTIONS(1320), + [anon_sym_asm] = ACTIONS(1320), + [anon_sym___asm__] = ACTIONS(1320), + [sym_number_literal] = ACTIONS(1322), + [anon_sym_L_SQUOTE] = ACTIONS(1322), + [anon_sym_u_SQUOTE] = ACTIONS(1322), + [anon_sym_U_SQUOTE] = ACTIONS(1322), + [anon_sym_u8_SQUOTE] = ACTIONS(1322), + [anon_sym_SQUOTE] = ACTIONS(1322), + [anon_sym_L_DQUOTE] = ACTIONS(1322), + [anon_sym_u_DQUOTE] = ACTIONS(1322), + [anon_sym_U_DQUOTE] = ACTIONS(1322), + [anon_sym_u8_DQUOTE] = ACTIONS(1322), + [anon_sym_DQUOTE] = ACTIONS(1322), + [sym_true] = ACTIONS(1320), + [sym_false] = ACTIONS(1320), + [anon_sym_NULL] = ACTIONS(1320), + [anon_sym_nullptr] = ACTIONS(1320), [sym_comment] = ACTIONS(3), }, [236] = { - [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_LBRACK_LBRACK] = ACTIONS(1395), - [anon_sym___declspec] = 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), - [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_else] = 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), + [ts_builtin_sym_end] = ACTIONS(1322), + [sym_identifier] = ACTIONS(1320), + [aux_sym_preproc_include_token1] = ACTIONS(1320), + [aux_sym_preproc_def_token1] = ACTIONS(1320), + [aux_sym_preproc_if_token1] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1320), + [sym_preproc_directive] = ACTIONS(1320), + [anon_sym_LPAREN2] = ACTIONS(1322), + [anon_sym_BANG] = ACTIONS(1322), + [anon_sym_TILDE] = ACTIONS(1322), + [anon_sym_DASH] = ACTIONS(1320), + [anon_sym_PLUS] = ACTIONS(1320), + [anon_sym_STAR] = ACTIONS(1322), + [anon_sym_AMP] = ACTIONS(1322), + [anon_sym_SEMI] = ACTIONS(1322), + [anon_sym___extension__] = ACTIONS(1320), + [anon_sym_typedef] = ACTIONS(1320), + [anon_sym_extern] = ACTIONS(1320), + [anon_sym___attribute__] = ACTIONS(1320), + [anon_sym___scanf] = ACTIONS(1320), + [anon_sym___printf] = ACTIONS(1320), + [anon_sym___read_mostly] = ACTIONS(1320), + [anon_sym___must_hold] = ACTIONS(1320), + [anon_sym___ro_after_init] = ACTIONS(1320), + [anon_sym___init] = ACTIONS(1320), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1322), + [anon_sym___declspec] = ACTIONS(1320), + [anon_sym___cdecl] = ACTIONS(1320), + [anon_sym___clrcall] = ACTIONS(1320), + [anon_sym___stdcall] = ACTIONS(1320), + [anon_sym___fastcall] = ACTIONS(1320), + [anon_sym___thiscall] = ACTIONS(1320), + [anon_sym___vectorcall] = ACTIONS(1320), + [anon_sym_LBRACE] = ACTIONS(1322), + [anon_sym_signed] = ACTIONS(1320), + [anon_sym_unsigned] = ACTIONS(1320), + [anon_sym_long] = ACTIONS(1320), + [anon_sym_short] = ACTIONS(1320), + [anon_sym_static] = ACTIONS(1320), + [anon_sym_auto] = ACTIONS(1320), + [anon_sym_register] = ACTIONS(1320), + [anon_sym_inline] = ACTIONS(1320), + [anon_sym___inline] = ACTIONS(1320), + [anon_sym___inline__] = ACTIONS(1320), + [anon_sym___forceinline] = ACTIONS(1320), + [anon_sym_thread_local] = ACTIONS(1320), + [anon_sym___thread] = ACTIONS(1320), + [anon_sym_const] = ACTIONS(1320), + [anon_sym_constexpr] = ACTIONS(1320), + [anon_sym_volatile] = ACTIONS(1320), + [anon_sym_restrict] = ACTIONS(1320), + [anon_sym___restrict__] = ACTIONS(1320), + [anon_sym__Atomic] = ACTIONS(1320), + [anon_sym__Noreturn] = ACTIONS(1320), + [anon_sym_noreturn] = ACTIONS(1320), + [sym_primitive_type] = ACTIONS(1320), + [anon_sym_enum] = ACTIONS(1320), + [anon_sym_struct] = ACTIONS(1320), + [anon_sym_union] = ACTIONS(1320), + [anon_sym_if] = ACTIONS(1320), + [anon_sym_else] = ACTIONS(1320), + [anon_sym_switch] = ACTIONS(1320), + [anon_sym_case] = ACTIONS(1320), + [anon_sym_default] = ACTIONS(1320), + [anon_sym_while] = ACTIONS(1320), + [anon_sym_do] = ACTIONS(1320), + [anon_sym_for] = ACTIONS(1320), + [anon_sym_return] = ACTIONS(1320), + [anon_sym_break] = ACTIONS(1320), + [anon_sym_continue] = ACTIONS(1320), + [anon_sym_goto] = ACTIONS(1320), + [anon_sym___try] = ACTIONS(1320), + [anon_sym___leave] = ACTIONS(1320), + [anon_sym_DASH_DASH] = ACTIONS(1322), + [anon_sym_PLUS_PLUS] = ACTIONS(1322), + [anon_sym_sizeof] = ACTIONS(1320), + [anon_sym___alignof__] = ACTIONS(1320), + [anon_sym___alignof] = ACTIONS(1320), + [anon_sym__alignof] = ACTIONS(1320), + [anon_sym_alignof] = ACTIONS(1320), + [anon_sym__Alignof] = ACTIONS(1320), + [anon_sym_offsetof] = ACTIONS(1320), + [anon_sym__Generic] = ACTIONS(1320), + [anon_sym_asm] = ACTIONS(1320), + [anon_sym___asm__] = ACTIONS(1320), + [sym_number_literal] = ACTIONS(1322), + [anon_sym_L_SQUOTE] = ACTIONS(1322), + [anon_sym_u_SQUOTE] = ACTIONS(1322), + [anon_sym_U_SQUOTE] = ACTIONS(1322), + [anon_sym_u8_SQUOTE] = ACTIONS(1322), + [anon_sym_SQUOTE] = ACTIONS(1322), + [anon_sym_L_DQUOTE] = ACTIONS(1322), + [anon_sym_u_DQUOTE] = ACTIONS(1322), + [anon_sym_U_DQUOTE] = ACTIONS(1322), + [anon_sym_u8_DQUOTE] = ACTIONS(1322), + [anon_sym_DQUOTE] = ACTIONS(1322), + [sym_true] = ACTIONS(1320), + [sym_false] = ACTIONS(1320), + [anon_sym_NULL] = ACTIONS(1320), + [anon_sym_nullptr] = ACTIONS(1320), [sym_comment] = ACTIONS(3), }, [237] = { - [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(1309), - [anon_sym_BANG] = ACTIONS(1309), - [anon_sym_TILDE] = ACTIONS(1309), - [anon_sym_DASH] = ACTIONS(1311), - [anon_sym_PLUS] = ACTIONS(1311), - [anon_sym_STAR] = ACTIONS(1309), - [anon_sym_AMP] = ACTIONS(1309), - [anon_sym_SEMI] = ACTIONS(1309), - [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_LBRACK_LBRACK] = ACTIONS(1309), - [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(1309), - [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), - [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_else] = 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(1309), - [anon_sym_PLUS_PLUS] = ACTIONS(1309), - [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(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(1311), - [sym_false] = ACTIONS(1311), - [anon_sym_NULL] = ACTIONS(1311), - [anon_sym_nullptr] = ACTIONS(1311), + [ts_builtin_sym_end] = ACTIONS(1342), + [sym_identifier] = ACTIONS(1340), + [aux_sym_preproc_include_token1] = ACTIONS(1340), + [aux_sym_preproc_def_token1] = ACTIONS(1340), + [aux_sym_preproc_if_token1] = ACTIONS(1340), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1340), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1340), + [sym_preproc_directive] = ACTIONS(1340), + [anon_sym_LPAREN2] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1342), + [anon_sym_TILDE] = ACTIONS(1342), + [anon_sym_DASH] = ACTIONS(1340), + [anon_sym_PLUS] = ACTIONS(1340), + [anon_sym_STAR] = ACTIONS(1342), + [anon_sym_AMP] = ACTIONS(1342), + [anon_sym_SEMI] = ACTIONS(1342), + [anon_sym___extension__] = ACTIONS(1340), + [anon_sym_typedef] = ACTIONS(1340), + [anon_sym_extern] = ACTIONS(1340), + [anon_sym___attribute__] = ACTIONS(1340), + [anon_sym___scanf] = ACTIONS(1340), + [anon_sym___printf] = ACTIONS(1340), + [anon_sym___read_mostly] = ACTIONS(1340), + [anon_sym___must_hold] = ACTIONS(1340), + [anon_sym___ro_after_init] = ACTIONS(1340), + [anon_sym___init] = ACTIONS(1340), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1342), + [anon_sym___declspec] = ACTIONS(1340), + [anon_sym___cdecl] = ACTIONS(1340), + [anon_sym___clrcall] = ACTIONS(1340), + [anon_sym___stdcall] = ACTIONS(1340), + [anon_sym___fastcall] = ACTIONS(1340), + [anon_sym___thiscall] = ACTIONS(1340), + [anon_sym___vectorcall] = ACTIONS(1340), + [anon_sym_LBRACE] = ACTIONS(1342), + [anon_sym_signed] = ACTIONS(1340), + [anon_sym_unsigned] = ACTIONS(1340), + [anon_sym_long] = ACTIONS(1340), + [anon_sym_short] = ACTIONS(1340), + [anon_sym_static] = ACTIONS(1340), + [anon_sym_auto] = ACTIONS(1340), + [anon_sym_register] = ACTIONS(1340), + [anon_sym_inline] = ACTIONS(1340), + [anon_sym___inline] = ACTIONS(1340), + [anon_sym___inline__] = ACTIONS(1340), + [anon_sym___forceinline] = ACTIONS(1340), + [anon_sym_thread_local] = ACTIONS(1340), + [anon_sym___thread] = ACTIONS(1340), + [anon_sym_const] = ACTIONS(1340), + [anon_sym_constexpr] = ACTIONS(1340), + [anon_sym_volatile] = ACTIONS(1340), + [anon_sym_restrict] = ACTIONS(1340), + [anon_sym___restrict__] = ACTIONS(1340), + [anon_sym__Atomic] = ACTIONS(1340), + [anon_sym__Noreturn] = ACTIONS(1340), + [anon_sym_noreturn] = ACTIONS(1340), + [sym_primitive_type] = ACTIONS(1340), + [anon_sym_enum] = ACTIONS(1340), + [anon_sym_struct] = ACTIONS(1340), + [anon_sym_union] = ACTIONS(1340), + [anon_sym_if] = ACTIONS(1340), + [anon_sym_else] = ACTIONS(1340), + [anon_sym_switch] = ACTIONS(1340), + [anon_sym_case] = ACTIONS(1340), + [anon_sym_default] = ACTIONS(1340), + [anon_sym_while] = ACTIONS(1340), + [anon_sym_do] = ACTIONS(1340), + [anon_sym_for] = ACTIONS(1340), + [anon_sym_return] = ACTIONS(1340), + [anon_sym_break] = ACTIONS(1340), + [anon_sym_continue] = ACTIONS(1340), + [anon_sym_goto] = ACTIONS(1340), + [anon_sym___try] = ACTIONS(1340), + [anon_sym___leave] = ACTIONS(1340), + [anon_sym_DASH_DASH] = ACTIONS(1342), + [anon_sym_PLUS_PLUS] = ACTIONS(1342), + [anon_sym_sizeof] = ACTIONS(1340), + [anon_sym___alignof__] = ACTIONS(1340), + [anon_sym___alignof] = ACTIONS(1340), + [anon_sym__alignof] = ACTIONS(1340), + [anon_sym_alignof] = ACTIONS(1340), + [anon_sym__Alignof] = ACTIONS(1340), + [anon_sym_offsetof] = ACTIONS(1340), + [anon_sym__Generic] = ACTIONS(1340), + [anon_sym_asm] = ACTIONS(1340), + [anon_sym___asm__] = ACTIONS(1340), + [sym_number_literal] = ACTIONS(1342), + [anon_sym_L_SQUOTE] = ACTIONS(1342), + [anon_sym_u_SQUOTE] = ACTIONS(1342), + [anon_sym_U_SQUOTE] = ACTIONS(1342), + [anon_sym_u8_SQUOTE] = ACTIONS(1342), + [anon_sym_SQUOTE] = ACTIONS(1342), + [anon_sym_L_DQUOTE] = ACTIONS(1342), + [anon_sym_u_DQUOTE] = ACTIONS(1342), + [anon_sym_U_DQUOTE] = ACTIONS(1342), + [anon_sym_u8_DQUOTE] = ACTIONS(1342), + [anon_sym_DQUOTE] = ACTIONS(1342), + [sym_true] = ACTIONS(1340), + [sym_false] = ACTIONS(1340), + [anon_sym_NULL] = ACTIONS(1340), + [anon_sym_nullptr] = ACTIONS(1340), [sym_comment] = ACTIONS(3), }, [238] = { - [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_LBRACK_LBRACK] = ACTIONS(1391), - [anon_sym___declspec] = 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), - [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_else] = 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), + [ts_builtin_sym_end] = ACTIONS(1346), + [sym_identifier] = ACTIONS(1344), + [aux_sym_preproc_include_token1] = ACTIONS(1344), + [aux_sym_preproc_def_token1] = ACTIONS(1344), + [aux_sym_preproc_if_token1] = ACTIONS(1344), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1344), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1344), + [sym_preproc_directive] = ACTIONS(1344), + [anon_sym_LPAREN2] = ACTIONS(1346), + [anon_sym_BANG] = ACTIONS(1346), + [anon_sym_TILDE] = ACTIONS(1346), + [anon_sym_DASH] = ACTIONS(1344), + [anon_sym_PLUS] = ACTIONS(1344), + [anon_sym_STAR] = ACTIONS(1346), + [anon_sym_AMP] = ACTIONS(1346), + [anon_sym_SEMI] = ACTIONS(1346), + [anon_sym___extension__] = ACTIONS(1344), + [anon_sym_typedef] = ACTIONS(1344), + [anon_sym_extern] = ACTIONS(1344), + [anon_sym___attribute__] = ACTIONS(1344), + [anon_sym___scanf] = ACTIONS(1344), + [anon_sym___printf] = ACTIONS(1344), + [anon_sym___read_mostly] = ACTIONS(1344), + [anon_sym___must_hold] = ACTIONS(1344), + [anon_sym___ro_after_init] = ACTIONS(1344), + [anon_sym___init] = ACTIONS(1344), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1346), + [anon_sym___declspec] = ACTIONS(1344), + [anon_sym___cdecl] = ACTIONS(1344), + [anon_sym___clrcall] = ACTIONS(1344), + [anon_sym___stdcall] = ACTIONS(1344), + [anon_sym___fastcall] = ACTIONS(1344), + [anon_sym___thiscall] = ACTIONS(1344), + [anon_sym___vectorcall] = ACTIONS(1344), + [anon_sym_LBRACE] = ACTIONS(1346), + [anon_sym_signed] = ACTIONS(1344), + [anon_sym_unsigned] = ACTIONS(1344), + [anon_sym_long] = ACTIONS(1344), + [anon_sym_short] = ACTIONS(1344), + [anon_sym_static] = ACTIONS(1344), + [anon_sym_auto] = ACTIONS(1344), + [anon_sym_register] = ACTIONS(1344), + [anon_sym_inline] = ACTIONS(1344), + [anon_sym___inline] = ACTIONS(1344), + [anon_sym___inline__] = ACTIONS(1344), + [anon_sym___forceinline] = ACTIONS(1344), + [anon_sym_thread_local] = ACTIONS(1344), + [anon_sym___thread] = ACTIONS(1344), + [anon_sym_const] = ACTIONS(1344), + [anon_sym_constexpr] = ACTIONS(1344), + [anon_sym_volatile] = ACTIONS(1344), + [anon_sym_restrict] = ACTIONS(1344), + [anon_sym___restrict__] = ACTIONS(1344), + [anon_sym__Atomic] = ACTIONS(1344), + [anon_sym__Noreturn] = ACTIONS(1344), + [anon_sym_noreturn] = ACTIONS(1344), + [sym_primitive_type] = ACTIONS(1344), + [anon_sym_enum] = ACTIONS(1344), + [anon_sym_struct] = ACTIONS(1344), + [anon_sym_union] = ACTIONS(1344), + [anon_sym_if] = ACTIONS(1344), + [anon_sym_else] = ACTIONS(1344), + [anon_sym_switch] = ACTIONS(1344), + [anon_sym_case] = ACTIONS(1344), + [anon_sym_default] = ACTIONS(1344), + [anon_sym_while] = ACTIONS(1344), + [anon_sym_do] = ACTIONS(1344), + [anon_sym_for] = ACTIONS(1344), + [anon_sym_return] = ACTIONS(1344), + [anon_sym_break] = ACTIONS(1344), + [anon_sym_continue] = ACTIONS(1344), + [anon_sym_goto] = ACTIONS(1344), + [anon_sym___try] = ACTIONS(1344), + [anon_sym___leave] = ACTIONS(1344), + [anon_sym_DASH_DASH] = ACTIONS(1346), + [anon_sym_PLUS_PLUS] = ACTIONS(1346), + [anon_sym_sizeof] = ACTIONS(1344), + [anon_sym___alignof__] = ACTIONS(1344), + [anon_sym___alignof] = ACTIONS(1344), + [anon_sym__alignof] = ACTIONS(1344), + [anon_sym_alignof] = ACTIONS(1344), + [anon_sym__Alignof] = ACTIONS(1344), + [anon_sym_offsetof] = ACTIONS(1344), + [anon_sym__Generic] = ACTIONS(1344), + [anon_sym_asm] = ACTIONS(1344), + [anon_sym___asm__] = ACTIONS(1344), + [sym_number_literal] = ACTIONS(1346), + [anon_sym_L_SQUOTE] = ACTIONS(1346), + [anon_sym_u_SQUOTE] = ACTIONS(1346), + [anon_sym_U_SQUOTE] = ACTIONS(1346), + [anon_sym_u8_SQUOTE] = ACTIONS(1346), + [anon_sym_SQUOTE] = ACTIONS(1346), + [anon_sym_L_DQUOTE] = ACTIONS(1346), + [anon_sym_u_DQUOTE] = ACTIONS(1346), + [anon_sym_U_DQUOTE] = ACTIONS(1346), + [anon_sym_u8_DQUOTE] = ACTIONS(1346), + [anon_sym_DQUOTE] = ACTIONS(1346), + [sym_true] = ACTIONS(1344), + [sym_false] = ACTIONS(1344), + [anon_sym_NULL] = ACTIONS(1344), + [anon_sym_nullptr] = ACTIONS(1344), [sym_comment] = ACTIONS(3), }, [239] = { - [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_LBRACK_LBRACK] = ACTIONS(1387), - [anon_sym___declspec] = 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), - [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_else] = 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_identifier] = ACTIONS(1368), + [aux_sym_preproc_include_token1] = ACTIONS(1368), + [aux_sym_preproc_def_token1] = ACTIONS(1368), + [aux_sym_preproc_if_token1] = ACTIONS(1368), + [aux_sym_preproc_if_token2] = ACTIONS(1368), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1368), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1368), + [sym_preproc_directive] = ACTIONS(1368), + [anon_sym_LPAREN2] = ACTIONS(1370), + [anon_sym_BANG] = ACTIONS(1370), + [anon_sym_TILDE] = ACTIONS(1370), + [anon_sym_DASH] = ACTIONS(1368), + [anon_sym_PLUS] = ACTIONS(1368), + [anon_sym_STAR] = ACTIONS(1370), + [anon_sym_AMP] = ACTIONS(1370), + [anon_sym_SEMI] = ACTIONS(1370), + [anon_sym___extension__] = ACTIONS(1368), + [anon_sym_typedef] = ACTIONS(1368), + [anon_sym_extern] = ACTIONS(1368), + [anon_sym___attribute__] = ACTIONS(1368), + [anon_sym___scanf] = ACTIONS(1368), + [anon_sym___printf] = ACTIONS(1368), + [anon_sym___read_mostly] = ACTIONS(1368), + [anon_sym___must_hold] = ACTIONS(1368), + [anon_sym___ro_after_init] = ACTIONS(1368), + [anon_sym___init] = ACTIONS(1368), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1370), + [anon_sym___declspec] = ACTIONS(1368), + [anon_sym___cdecl] = ACTIONS(1368), + [anon_sym___clrcall] = ACTIONS(1368), + [anon_sym___stdcall] = ACTIONS(1368), + [anon_sym___fastcall] = ACTIONS(1368), + [anon_sym___thiscall] = ACTIONS(1368), + [anon_sym___vectorcall] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_signed] = ACTIONS(1368), + [anon_sym_unsigned] = ACTIONS(1368), + [anon_sym_long] = ACTIONS(1368), + [anon_sym_short] = ACTIONS(1368), + [anon_sym_static] = ACTIONS(1368), + [anon_sym_auto] = ACTIONS(1368), + [anon_sym_register] = ACTIONS(1368), + [anon_sym_inline] = ACTIONS(1368), + [anon_sym___inline] = ACTIONS(1368), + [anon_sym___inline__] = ACTIONS(1368), + [anon_sym___forceinline] = ACTIONS(1368), + [anon_sym_thread_local] = ACTIONS(1368), + [anon_sym___thread] = ACTIONS(1368), + [anon_sym_const] = ACTIONS(1368), + [anon_sym_constexpr] = ACTIONS(1368), + [anon_sym_volatile] = ACTIONS(1368), + [anon_sym_restrict] = ACTIONS(1368), + [anon_sym___restrict__] = ACTIONS(1368), + [anon_sym__Atomic] = ACTIONS(1368), + [anon_sym__Noreturn] = ACTIONS(1368), + [anon_sym_noreturn] = ACTIONS(1368), + [sym_primitive_type] = ACTIONS(1368), + [anon_sym_enum] = ACTIONS(1368), + [anon_sym_struct] = ACTIONS(1368), + [anon_sym_union] = ACTIONS(1368), + [anon_sym_if] = ACTIONS(1368), + [anon_sym_else] = ACTIONS(1368), + [anon_sym_switch] = ACTIONS(1368), + [anon_sym_case] = ACTIONS(1368), + [anon_sym_default] = ACTIONS(1368), + [anon_sym_while] = ACTIONS(1368), + [anon_sym_do] = ACTIONS(1368), + [anon_sym_for] = ACTIONS(1368), + [anon_sym_return] = ACTIONS(1368), + [anon_sym_break] = ACTIONS(1368), + [anon_sym_continue] = ACTIONS(1368), + [anon_sym_goto] = ACTIONS(1368), + [anon_sym___try] = ACTIONS(1368), + [anon_sym___leave] = ACTIONS(1368), + [anon_sym_DASH_DASH] = ACTIONS(1370), + [anon_sym_PLUS_PLUS] = ACTIONS(1370), + [anon_sym_sizeof] = ACTIONS(1368), + [anon_sym___alignof__] = ACTIONS(1368), + [anon_sym___alignof] = ACTIONS(1368), + [anon_sym__alignof] = ACTIONS(1368), + [anon_sym_alignof] = ACTIONS(1368), + [anon_sym__Alignof] = ACTIONS(1368), + [anon_sym_offsetof] = ACTIONS(1368), + [anon_sym__Generic] = ACTIONS(1368), + [anon_sym_asm] = ACTIONS(1368), + [anon_sym___asm__] = ACTIONS(1368), + [sym_number_literal] = ACTIONS(1370), + [anon_sym_L_SQUOTE] = ACTIONS(1370), + [anon_sym_u_SQUOTE] = ACTIONS(1370), + [anon_sym_U_SQUOTE] = ACTIONS(1370), + [anon_sym_u8_SQUOTE] = ACTIONS(1370), + [anon_sym_SQUOTE] = ACTIONS(1370), + [anon_sym_L_DQUOTE] = ACTIONS(1370), + [anon_sym_u_DQUOTE] = ACTIONS(1370), + [anon_sym_U_DQUOTE] = ACTIONS(1370), + [anon_sym_u8_DQUOTE] = ACTIONS(1370), + [anon_sym_DQUOTE] = ACTIONS(1370), + [sym_true] = ACTIONS(1368), + [sym_false] = ACTIONS(1368), + [anon_sym_NULL] = ACTIONS(1368), + [anon_sym_nullptr] = ACTIONS(1368), [sym_comment] = ACTIONS(3), }, [240] = { - [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_LBRACK_LBRACK] = ACTIONS(1383), - [anon_sym___declspec] = 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), - [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_else] = 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_identifier] = ACTIONS(1320), + [aux_sym_preproc_include_token1] = ACTIONS(1320), + [aux_sym_preproc_def_token1] = ACTIONS(1320), + [aux_sym_preproc_if_token1] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1320), + [sym_preproc_directive] = ACTIONS(1320), + [anon_sym_LPAREN2] = ACTIONS(1322), + [anon_sym_BANG] = ACTIONS(1322), + [anon_sym_TILDE] = ACTIONS(1322), + [anon_sym_DASH] = ACTIONS(1320), + [anon_sym_PLUS] = ACTIONS(1320), + [anon_sym_STAR] = ACTIONS(1322), + [anon_sym_AMP] = ACTIONS(1322), + [anon_sym_SEMI] = ACTIONS(1322), + [anon_sym___extension__] = ACTIONS(1320), + [anon_sym_typedef] = ACTIONS(1320), + [anon_sym_extern] = ACTIONS(1320), + [anon_sym___attribute__] = ACTIONS(1320), + [anon_sym___scanf] = ACTIONS(1320), + [anon_sym___printf] = ACTIONS(1320), + [anon_sym___read_mostly] = ACTIONS(1320), + [anon_sym___must_hold] = ACTIONS(1320), + [anon_sym___ro_after_init] = ACTIONS(1320), + [anon_sym___init] = ACTIONS(1320), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1322), + [anon_sym___declspec] = ACTIONS(1320), + [anon_sym___cdecl] = ACTIONS(1320), + [anon_sym___clrcall] = ACTIONS(1320), + [anon_sym___stdcall] = ACTIONS(1320), + [anon_sym___fastcall] = ACTIONS(1320), + [anon_sym___thiscall] = ACTIONS(1320), + [anon_sym___vectorcall] = ACTIONS(1320), + [anon_sym_LBRACE] = ACTIONS(1322), + [anon_sym_RBRACE] = ACTIONS(1322), + [anon_sym_signed] = ACTIONS(1320), + [anon_sym_unsigned] = ACTIONS(1320), + [anon_sym_long] = ACTIONS(1320), + [anon_sym_short] = ACTIONS(1320), + [anon_sym_static] = ACTIONS(1320), + [anon_sym_auto] = ACTIONS(1320), + [anon_sym_register] = ACTIONS(1320), + [anon_sym_inline] = ACTIONS(1320), + [anon_sym___inline] = ACTIONS(1320), + [anon_sym___inline__] = ACTIONS(1320), + [anon_sym___forceinline] = ACTIONS(1320), + [anon_sym_thread_local] = ACTIONS(1320), + [anon_sym___thread] = ACTIONS(1320), + [anon_sym_const] = ACTIONS(1320), + [anon_sym_constexpr] = ACTIONS(1320), + [anon_sym_volatile] = ACTIONS(1320), + [anon_sym_restrict] = ACTIONS(1320), + [anon_sym___restrict__] = ACTIONS(1320), + [anon_sym__Atomic] = ACTIONS(1320), + [anon_sym__Noreturn] = ACTIONS(1320), + [anon_sym_noreturn] = ACTIONS(1320), + [sym_primitive_type] = ACTIONS(1320), + [anon_sym_enum] = ACTIONS(1320), + [anon_sym_struct] = ACTIONS(1320), + [anon_sym_union] = ACTIONS(1320), + [anon_sym_if] = ACTIONS(1320), + [anon_sym_else] = ACTIONS(1320), + [anon_sym_switch] = ACTIONS(1320), + [anon_sym_case] = ACTIONS(1320), + [anon_sym_default] = ACTIONS(1320), + [anon_sym_while] = ACTIONS(1320), + [anon_sym_do] = ACTIONS(1320), + [anon_sym_for] = ACTIONS(1320), + [anon_sym_return] = ACTIONS(1320), + [anon_sym_break] = ACTIONS(1320), + [anon_sym_continue] = ACTIONS(1320), + [anon_sym_goto] = ACTIONS(1320), + [anon_sym___try] = ACTIONS(1320), + [anon_sym___leave] = ACTIONS(1320), + [anon_sym_DASH_DASH] = ACTIONS(1322), + [anon_sym_PLUS_PLUS] = ACTIONS(1322), + [anon_sym_sizeof] = ACTIONS(1320), + [anon_sym___alignof__] = ACTIONS(1320), + [anon_sym___alignof] = ACTIONS(1320), + [anon_sym__alignof] = ACTIONS(1320), + [anon_sym_alignof] = ACTIONS(1320), + [anon_sym__Alignof] = ACTIONS(1320), + [anon_sym_offsetof] = ACTIONS(1320), + [anon_sym__Generic] = ACTIONS(1320), + [anon_sym_asm] = ACTIONS(1320), + [anon_sym___asm__] = ACTIONS(1320), + [sym_number_literal] = ACTIONS(1322), + [anon_sym_L_SQUOTE] = ACTIONS(1322), + [anon_sym_u_SQUOTE] = ACTIONS(1322), + [anon_sym_U_SQUOTE] = ACTIONS(1322), + [anon_sym_u8_SQUOTE] = ACTIONS(1322), + [anon_sym_SQUOTE] = ACTIONS(1322), + [anon_sym_L_DQUOTE] = ACTIONS(1322), + [anon_sym_u_DQUOTE] = ACTIONS(1322), + [anon_sym_U_DQUOTE] = ACTIONS(1322), + [anon_sym_u8_DQUOTE] = ACTIONS(1322), + [anon_sym_DQUOTE] = ACTIONS(1322), + [sym_true] = ACTIONS(1320), + [sym_false] = ACTIONS(1320), + [anon_sym_NULL] = ACTIONS(1320), + [anon_sym_nullptr] = ACTIONS(1320), [sym_comment] = ACTIONS(3), }, [241] = { - [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_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_LBRACK_LBRACK] = ACTIONS(1379), - [anon_sym___declspec] = 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), - [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_else] = 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_identifier] = ACTIONS(1336), + [aux_sym_preproc_include_token1] = ACTIONS(1336), + [aux_sym_preproc_def_token1] = ACTIONS(1336), + [aux_sym_preproc_if_token1] = ACTIONS(1336), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1336), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1336), + [sym_preproc_directive] = ACTIONS(1336), + [anon_sym_LPAREN2] = ACTIONS(1338), + [anon_sym_BANG] = ACTIONS(1338), + [anon_sym_TILDE] = ACTIONS(1338), + [anon_sym_DASH] = ACTIONS(1336), + [anon_sym_PLUS] = ACTIONS(1336), + [anon_sym_STAR] = ACTIONS(1338), + [anon_sym_AMP] = ACTIONS(1338), + [anon_sym_SEMI] = ACTIONS(1338), + [anon_sym___extension__] = ACTIONS(1336), + [anon_sym_typedef] = ACTIONS(1336), + [anon_sym_extern] = ACTIONS(1336), + [anon_sym___attribute__] = ACTIONS(1336), + [anon_sym___scanf] = ACTIONS(1336), + [anon_sym___printf] = ACTIONS(1336), + [anon_sym___read_mostly] = ACTIONS(1336), + [anon_sym___must_hold] = ACTIONS(1336), + [anon_sym___ro_after_init] = ACTIONS(1336), + [anon_sym___init] = ACTIONS(1336), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1338), + [anon_sym___declspec] = ACTIONS(1336), + [anon_sym___cdecl] = ACTIONS(1336), + [anon_sym___clrcall] = ACTIONS(1336), + [anon_sym___stdcall] = ACTIONS(1336), + [anon_sym___fastcall] = ACTIONS(1336), + [anon_sym___thiscall] = ACTIONS(1336), + [anon_sym___vectorcall] = ACTIONS(1336), + [anon_sym_LBRACE] = ACTIONS(1338), + [anon_sym_RBRACE] = ACTIONS(1338), + [anon_sym_signed] = ACTIONS(1336), + [anon_sym_unsigned] = ACTIONS(1336), + [anon_sym_long] = ACTIONS(1336), + [anon_sym_short] = ACTIONS(1336), + [anon_sym_static] = ACTIONS(1336), + [anon_sym_auto] = ACTIONS(1336), + [anon_sym_register] = ACTIONS(1336), + [anon_sym_inline] = ACTIONS(1336), + [anon_sym___inline] = ACTIONS(1336), + [anon_sym___inline__] = ACTIONS(1336), + [anon_sym___forceinline] = ACTIONS(1336), + [anon_sym_thread_local] = ACTIONS(1336), + [anon_sym___thread] = ACTIONS(1336), + [anon_sym_const] = ACTIONS(1336), + [anon_sym_constexpr] = ACTIONS(1336), + [anon_sym_volatile] = ACTIONS(1336), + [anon_sym_restrict] = ACTIONS(1336), + [anon_sym___restrict__] = ACTIONS(1336), + [anon_sym__Atomic] = ACTIONS(1336), + [anon_sym__Noreturn] = ACTIONS(1336), + [anon_sym_noreturn] = ACTIONS(1336), + [sym_primitive_type] = ACTIONS(1336), + [anon_sym_enum] = ACTIONS(1336), + [anon_sym_struct] = ACTIONS(1336), + [anon_sym_union] = ACTIONS(1336), + [anon_sym_if] = ACTIONS(1336), + [anon_sym_else] = ACTIONS(1336), + [anon_sym_switch] = ACTIONS(1336), + [anon_sym_case] = ACTIONS(1336), + [anon_sym_default] = ACTIONS(1336), + [anon_sym_while] = ACTIONS(1336), + [anon_sym_do] = ACTIONS(1336), + [anon_sym_for] = ACTIONS(1336), + [anon_sym_return] = ACTIONS(1336), + [anon_sym_break] = ACTIONS(1336), + [anon_sym_continue] = ACTIONS(1336), + [anon_sym_goto] = ACTIONS(1336), + [anon_sym___try] = ACTIONS(1336), + [anon_sym___leave] = ACTIONS(1336), + [anon_sym_DASH_DASH] = ACTIONS(1338), + [anon_sym_PLUS_PLUS] = ACTIONS(1338), + [anon_sym_sizeof] = ACTIONS(1336), + [anon_sym___alignof__] = ACTIONS(1336), + [anon_sym___alignof] = ACTIONS(1336), + [anon_sym__alignof] = ACTIONS(1336), + [anon_sym_alignof] = ACTIONS(1336), + [anon_sym__Alignof] = ACTIONS(1336), + [anon_sym_offsetof] = ACTIONS(1336), + [anon_sym__Generic] = ACTIONS(1336), + [anon_sym_asm] = ACTIONS(1336), + [anon_sym___asm__] = ACTIONS(1336), + [sym_number_literal] = ACTIONS(1338), + [anon_sym_L_SQUOTE] = ACTIONS(1338), + [anon_sym_u_SQUOTE] = ACTIONS(1338), + [anon_sym_U_SQUOTE] = ACTIONS(1338), + [anon_sym_u8_SQUOTE] = ACTIONS(1338), + [anon_sym_SQUOTE] = ACTIONS(1338), + [anon_sym_L_DQUOTE] = ACTIONS(1338), + [anon_sym_u_DQUOTE] = ACTIONS(1338), + [anon_sym_U_DQUOTE] = ACTIONS(1338), + [anon_sym_u8_DQUOTE] = ACTIONS(1338), + [anon_sym_DQUOTE] = ACTIONS(1338), + [sym_true] = ACTIONS(1336), + [sym_false] = ACTIONS(1336), + [anon_sym_NULL] = ACTIONS(1336), + [anon_sym_nullptr] = ACTIONS(1336), [sym_comment] = ACTIONS(3), }, [242] = { - [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_LBRACK_LBRACK] = ACTIONS(1371), - [anon_sym___declspec] = 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), - [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_else] = 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_identifier] = ACTIONS(1320), + [aux_sym_preproc_include_token1] = ACTIONS(1320), + [aux_sym_preproc_def_token1] = ACTIONS(1320), + [aux_sym_preproc_if_token1] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1320), + [sym_preproc_directive] = ACTIONS(1320), + [anon_sym_LPAREN2] = ACTIONS(1322), + [anon_sym_BANG] = ACTIONS(1322), + [anon_sym_TILDE] = ACTIONS(1322), + [anon_sym_DASH] = ACTIONS(1320), + [anon_sym_PLUS] = ACTIONS(1320), + [anon_sym_STAR] = ACTIONS(1322), + [anon_sym_AMP] = ACTIONS(1322), + [anon_sym_SEMI] = ACTIONS(1322), + [anon_sym___extension__] = ACTIONS(1320), + [anon_sym_typedef] = ACTIONS(1320), + [anon_sym_extern] = ACTIONS(1320), + [anon_sym___attribute__] = ACTIONS(1320), + [anon_sym___scanf] = ACTIONS(1320), + [anon_sym___printf] = ACTIONS(1320), + [anon_sym___read_mostly] = ACTIONS(1320), + [anon_sym___must_hold] = ACTIONS(1320), + [anon_sym___ro_after_init] = ACTIONS(1320), + [anon_sym___init] = ACTIONS(1320), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1322), + [anon_sym___declspec] = ACTIONS(1320), + [anon_sym___cdecl] = ACTIONS(1320), + [anon_sym___clrcall] = ACTIONS(1320), + [anon_sym___stdcall] = ACTIONS(1320), + [anon_sym___fastcall] = ACTIONS(1320), + [anon_sym___thiscall] = ACTIONS(1320), + [anon_sym___vectorcall] = ACTIONS(1320), + [anon_sym_LBRACE] = ACTIONS(1322), + [anon_sym_RBRACE] = ACTIONS(1322), + [anon_sym_signed] = ACTIONS(1320), + [anon_sym_unsigned] = ACTIONS(1320), + [anon_sym_long] = ACTIONS(1320), + [anon_sym_short] = ACTIONS(1320), + [anon_sym_static] = ACTIONS(1320), + [anon_sym_auto] = ACTIONS(1320), + [anon_sym_register] = ACTIONS(1320), + [anon_sym_inline] = ACTIONS(1320), + [anon_sym___inline] = ACTIONS(1320), + [anon_sym___inline__] = ACTIONS(1320), + [anon_sym___forceinline] = ACTIONS(1320), + [anon_sym_thread_local] = ACTIONS(1320), + [anon_sym___thread] = ACTIONS(1320), + [anon_sym_const] = ACTIONS(1320), + [anon_sym_constexpr] = ACTIONS(1320), + [anon_sym_volatile] = ACTIONS(1320), + [anon_sym_restrict] = ACTIONS(1320), + [anon_sym___restrict__] = ACTIONS(1320), + [anon_sym__Atomic] = ACTIONS(1320), + [anon_sym__Noreturn] = ACTIONS(1320), + [anon_sym_noreturn] = ACTIONS(1320), + [sym_primitive_type] = ACTIONS(1320), + [anon_sym_enum] = ACTIONS(1320), + [anon_sym_struct] = ACTIONS(1320), + [anon_sym_union] = ACTIONS(1320), + [anon_sym_if] = ACTIONS(1320), + [anon_sym_else] = ACTIONS(1320), + [anon_sym_switch] = ACTIONS(1320), + [anon_sym_case] = ACTIONS(1320), + [anon_sym_default] = ACTIONS(1320), + [anon_sym_while] = ACTIONS(1320), + [anon_sym_do] = ACTIONS(1320), + [anon_sym_for] = ACTIONS(1320), + [anon_sym_return] = ACTIONS(1320), + [anon_sym_break] = ACTIONS(1320), + [anon_sym_continue] = ACTIONS(1320), + [anon_sym_goto] = ACTIONS(1320), + [anon_sym___try] = ACTIONS(1320), + [anon_sym___leave] = ACTIONS(1320), + [anon_sym_DASH_DASH] = ACTIONS(1322), + [anon_sym_PLUS_PLUS] = ACTIONS(1322), + [anon_sym_sizeof] = ACTIONS(1320), + [anon_sym___alignof__] = ACTIONS(1320), + [anon_sym___alignof] = ACTIONS(1320), + [anon_sym__alignof] = ACTIONS(1320), + [anon_sym_alignof] = ACTIONS(1320), + [anon_sym__Alignof] = ACTIONS(1320), + [anon_sym_offsetof] = ACTIONS(1320), + [anon_sym__Generic] = ACTIONS(1320), + [anon_sym_asm] = ACTIONS(1320), + [anon_sym___asm__] = ACTIONS(1320), + [sym_number_literal] = ACTIONS(1322), + [anon_sym_L_SQUOTE] = ACTIONS(1322), + [anon_sym_u_SQUOTE] = ACTIONS(1322), + [anon_sym_U_SQUOTE] = ACTIONS(1322), + [anon_sym_u8_SQUOTE] = ACTIONS(1322), + [anon_sym_SQUOTE] = ACTIONS(1322), + [anon_sym_L_DQUOTE] = ACTIONS(1322), + [anon_sym_u_DQUOTE] = ACTIONS(1322), + [anon_sym_U_DQUOTE] = ACTIONS(1322), + [anon_sym_u8_DQUOTE] = ACTIONS(1322), + [anon_sym_DQUOTE] = ACTIONS(1322), + [sym_true] = ACTIONS(1320), + [sym_false] = ACTIONS(1320), + [anon_sym_NULL] = ACTIONS(1320), + [anon_sym_nullptr] = ACTIONS(1320), [sym_comment] = ACTIONS(3), }, [243] = { - [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_LBRACK_LBRACK] = ACTIONS(1375), - [anon_sym___declspec] = 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), - [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_else] = 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), + [ts_builtin_sym_end] = ACTIONS(1322), + [sym_identifier] = ACTIONS(1320), + [aux_sym_preproc_include_token1] = ACTIONS(1320), + [aux_sym_preproc_def_token1] = ACTIONS(1320), + [aux_sym_preproc_if_token1] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1320), + [sym_preproc_directive] = ACTIONS(1320), + [anon_sym_LPAREN2] = ACTIONS(1322), + [anon_sym_BANG] = ACTIONS(1322), + [anon_sym_TILDE] = ACTIONS(1322), + [anon_sym_DASH] = ACTIONS(1320), + [anon_sym_PLUS] = ACTIONS(1320), + [anon_sym_STAR] = ACTIONS(1322), + [anon_sym_AMP] = ACTIONS(1322), + [anon_sym_SEMI] = ACTIONS(1322), + [anon_sym___extension__] = ACTIONS(1320), + [anon_sym_typedef] = ACTIONS(1320), + [anon_sym_extern] = ACTIONS(1320), + [anon_sym___attribute__] = ACTIONS(1320), + [anon_sym___scanf] = ACTIONS(1320), + [anon_sym___printf] = ACTIONS(1320), + [anon_sym___read_mostly] = ACTIONS(1320), + [anon_sym___must_hold] = ACTIONS(1320), + [anon_sym___ro_after_init] = ACTIONS(1320), + [anon_sym___init] = ACTIONS(1320), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1322), + [anon_sym___declspec] = ACTIONS(1320), + [anon_sym___cdecl] = ACTIONS(1320), + [anon_sym___clrcall] = ACTIONS(1320), + [anon_sym___stdcall] = ACTIONS(1320), + [anon_sym___fastcall] = ACTIONS(1320), + [anon_sym___thiscall] = ACTIONS(1320), + [anon_sym___vectorcall] = ACTIONS(1320), + [anon_sym_LBRACE] = ACTIONS(1322), + [anon_sym_signed] = ACTIONS(1320), + [anon_sym_unsigned] = ACTIONS(1320), + [anon_sym_long] = ACTIONS(1320), + [anon_sym_short] = ACTIONS(1320), + [anon_sym_static] = ACTIONS(1320), + [anon_sym_auto] = ACTIONS(1320), + [anon_sym_register] = ACTIONS(1320), + [anon_sym_inline] = ACTIONS(1320), + [anon_sym___inline] = ACTIONS(1320), + [anon_sym___inline__] = ACTIONS(1320), + [anon_sym___forceinline] = ACTIONS(1320), + [anon_sym_thread_local] = ACTIONS(1320), + [anon_sym___thread] = ACTIONS(1320), + [anon_sym_const] = ACTIONS(1320), + [anon_sym_constexpr] = ACTIONS(1320), + [anon_sym_volatile] = ACTIONS(1320), + [anon_sym_restrict] = ACTIONS(1320), + [anon_sym___restrict__] = ACTIONS(1320), + [anon_sym__Atomic] = ACTIONS(1320), + [anon_sym__Noreturn] = ACTIONS(1320), + [anon_sym_noreturn] = ACTIONS(1320), + [sym_primitive_type] = ACTIONS(1320), + [anon_sym_enum] = ACTIONS(1320), + [anon_sym_struct] = ACTIONS(1320), + [anon_sym_union] = ACTIONS(1320), + [anon_sym_if] = ACTIONS(1320), + [anon_sym_else] = ACTIONS(1320), + [anon_sym_switch] = ACTIONS(1320), + [anon_sym_case] = ACTIONS(1320), + [anon_sym_default] = ACTIONS(1320), + [anon_sym_while] = ACTIONS(1320), + [anon_sym_do] = ACTIONS(1320), + [anon_sym_for] = ACTIONS(1320), + [anon_sym_return] = ACTIONS(1320), + [anon_sym_break] = ACTIONS(1320), + [anon_sym_continue] = ACTIONS(1320), + [anon_sym_goto] = ACTIONS(1320), + [anon_sym___try] = ACTIONS(1320), + [anon_sym___leave] = ACTIONS(1320), + [anon_sym_DASH_DASH] = ACTIONS(1322), + [anon_sym_PLUS_PLUS] = ACTIONS(1322), + [anon_sym_sizeof] = ACTIONS(1320), + [anon_sym___alignof__] = ACTIONS(1320), + [anon_sym___alignof] = ACTIONS(1320), + [anon_sym__alignof] = ACTIONS(1320), + [anon_sym_alignof] = ACTIONS(1320), + [anon_sym__Alignof] = ACTIONS(1320), + [anon_sym_offsetof] = ACTIONS(1320), + [anon_sym__Generic] = ACTIONS(1320), + [anon_sym_asm] = ACTIONS(1320), + [anon_sym___asm__] = ACTIONS(1320), + [sym_number_literal] = ACTIONS(1322), + [anon_sym_L_SQUOTE] = ACTIONS(1322), + [anon_sym_u_SQUOTE] = ACTIONS(1322), + [anon_sym_U_SQUOTE] = ACTIONS(1322), + [anon_sym_u8_SQUOTE] = ACTIONS(1322), + [anon_sym_SQUOTE] = ACTIONS(1322), + [anon_sym_L_DQUOTE] = ACTIONS(1322), + [anon_sym_u_DQUOTE] = ACTIONS(1322), + [anon_sym_U_DQUOTE] = ACTIONS(1322), + [anon_sym_u8_DQUOTE] = ACTIONS(1322), + [anon_sym_DQUOTE] = ACTIONS(1322), + [sym_true] = ACTIONS(1320), + [sym_false] = ACTIONS(1320), + [anon_sym_NULL] = ACTIONS(1320), + [anon_sym_nullptr] = ACTIONS(1320), [sym_comment] = ACTIONS(3), }, [244] = { - [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_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_LBRACK_LBRACK] = ACTIONS(1383), - [anon_sym___declspec] = 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), - [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_else] = 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_identifier] = ACTIONS(1320), + [aux_sym_preproc_include_token1] = ACTIONS(1320), + [aux_sym_preproc_def_token1] = ACTIONS(1320), + [aux_sym_preproc_if_token1] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1320), + [sym_preproc_directive] = ACTIONS(1320), + [anon_sym_LPAREN2] = ACTIONS(1322), + [anon_sym_BANG] = ACTIONS(1322), + [anon_sym_TILDE] = ACTIONS(1322), + [anon_sym_DASH] = ACTIONS(1320), + [anon_sym_PLUS] = ACTIONS(1320), + [anon_sym_STAR] = ACTIONS(1322), + [anon_sym_AMP] = ACTIONS(1322), + [anon_sym_SEMI] = ACTIONS(1322), + [anon_sym___extension__] = ACTIONS(1320), + [anon_sym_typedef] = ACTIONS(1320), + [anon_sym_extern] = ACTIONS(1320), + [anon_sym___attribute__] = ACTIONS(1320), + [anon_sym___scanf] = ACTIONS(1320), + [anon_sym___printf] = ACTIONS(1320), + [anon_sym___read_mostly] = ACTIONS(1320), + [anon_sym___must_hold] = ACTIONS(1320), + [anon_sym___ro_after_init] = ACTIONS(1320), + [anon_sym___init] = ACTIONS(1320), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1322), + [anon_sym___declspec] = ACTIONS(1320), + [anon_sym___cdecl] = ACTIONS(1320), + [anon_sym___clrcall] = ACTIONS(1320), + [anon_sym___stdcall] = ACTIONS(1320), + [anon_sym___fastcall] = ACTIONS(1320), + [anon_sym___thiscall] = ACTIONS(1320), + [anon_sym___vectorcall] = ACTIONS(1320), + [anon_sym_LBRACE] = ACTIONS(1322), + [anon_sym_RBRACE] = ACTIONS(1322), + [anon_sym_signed] = ACTIONS(1320), + [anon_sym_unsigned] = ACTIONS(1320), + [anon_sym_long] = ACTIONS(1320), + [anon_sym_short] = ACTIONS(1320), + [anon_sym_static] = ACTIONS(1320), + [anon_sym_auto] = ACTIONS(1320), + [anon_sym_register] = ACTIONS(1320), + [anon_sym_inline] = ACTIONS(1320), + [anon_sym___inline] = ACTIONS(1320), + [anon_sym___inline__] = ACTIONS(1320), + [anon_sym___forceinline] = ACTIONS(1320), + [anon_sym_thread_local] = ACTIONS(1320), + [anon_sym___thread] = ACTIONS(1320), + [anon_sym_const] = ACTIONS(1320), + [anon_sym_constexpr] = ACTIONS(1320), + [anon_sym_volatile] = ACTIONS(1320), + [anon_sym_restrict] = ACTIONS(1320), + [anon_sym___restrict__] = ACTIONS(1320), + [anon_sym__Atomic] = ACTIONS(1320), + [anon_sym__Noreturn] = ACTIONS(1320), + [anon_sym_noreturn] = ACTIONS(1320), + [sym_primitive_type] = ACTIONS(1320), + [anon_sym_enum] = ACTIONS(1320), + [anon_sym_struct] = ACTIONS(1320), + [anon_sym_union] = ACTIONS(1320), + [anon_sym_if] = ACTIONS(1320), + [anon_sym_else] = ACTIONS(1320), + [anon_sym_switch] = ACTIONS(1320), + [anon_sym_case] = ACTIONS(1320), + [anon_sym_default] = ACTIONS(1320), + [anon_sym_while] = ACTIONS(1320), + [anon_sym_do] = ACTIONS(1320), + [anon_sym_for] = ACTIONS(1320), + [anon_sym_return] = ACTIONS(1320), + [anon_sym_break] = ACTIONS(1320), + [anon_sym_continue] = ACTIONS(1320), + [anon_sym_goto] = ACTIONS(1320), + [anon_sym___try] = ACTIONS(1320), + [anon_sym___leave] = ACTIONS(1320), + [anon_sym_DASH_DASH] = ACTIONS(1322), + [anon_sym_PLUS_PLUS] = ACTIONS(1322), + [anon_sym_sizeof] = ACTIONS(1320), + [anon_sym___alignof__] = ACTIONS(1320), + [anon_sym___alignof] = ACTIONS(1320), + [anon_sym__alignof] = ACTIONS(1320), + [anon_sym_alignof] = ACTIONS(1320), + [anon_sym__Alignof] = ACTIONS(1320), + [anon_sym_offsetof] = ACTIONS(1320), + [anon_sym__Generic] = ACTIONS(1320), + [anon_sym_asm] = ACTIONS(1320), + [anon_sym___asm__] = ACTIONS(1320), + [sym_number_literal] = ACTIONS(1322), + [anon_sym_L_SQUOTE] = ACTIONS(1322), + [anon_sym_u_SQUOTE] = ACTIONS(1322), + [anon_sym_U_SQUOTE] = ACTIONS(1322), + [anon_sym_u8_SQUOTE] = ACTIONS(1322), + [anon_sym_SQUOTE] = ACTIONS(1322), + [anon_sym_L_DQUOTE] = ACTIONS(1322), + [anon_sym_u_DQUOTE] = ACTIONS(1322), + [anon_sym_U_DQUOTE] = ACTIONS(1322), + [anon_sym_u8_DQUOTE] = ACTIONS(1322), + [anon_sym_DQUOTE] = ACTIONS(1322), + [sym_true] = ACTIONS(1320), + [sym_false] = ACTIONS(1320), + [anon_sym_NULL] = ACTIONS(1320), + [anon_sym_nullptr] = ACTIONS(1320), [sym_comment] = ACTIONS(3), }, [245] = { - [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_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_LBRACK_LBRACK] = ACTIONS(1387), - [anon_sym___declspec] = 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), - [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_else] = 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), + [ts_builtin_sym_end] = ACTIONS(1322), + [sym_identifier] = ACTIONS(1320), + [aux_sym_preproc_include_token1] = ACTIONS(1320), + [aux_sym_preproc_def_token1] = ACTIONS(1320), + [aux_sym_preproc_if_token1] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1320), + [sym_preproc_directive] = ACTIONS(1320), + [anon_sym_LPAREN2] = ACTIONS(1322), + [anon_sym_BANG] = ACTIONS(1322), + [anon_sym_TILDE] = ACTIONS(1322), + [anon_sym_DASH] = ACTIONS(1320), + [anon_sym_PLUS] = ACTIONS(1320), + [anon_sym_STAR] = ACTIONS(1322), + [anon_sym_AMP] = ACTIONS(1322), + [anon_sym_SEMI] = ACTIONS(1322), + [anon_sym___extension__] = ACTIONS(1320), + [anon_sym_typedef] = ACTIONS(1320), + [anon_sym_extern] = ACTIONS(1320), + [anon_sym___attribute__] = ACTIONS(1320), + [anon_sym___scanf] = ACTIONS(1320), + [anon_sym___printf] = ACTIONS(1320), + [anon_sym___read_mostly] = ACTIONS(1320), + [anon_sym___must_hold] = ACTIONS(1320), + [anon_sym___ro_after_init] = ACTIONS(1320), + [anon_sym___init] = ACTIONS(1320), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1322), + [anon_sym___declspec] = ACTIONS(1320), + [anon_sym___cdecl] = ACTIONS(1320), + [anon_sym___clrcall] = ACTIONS(1320), + [anon_sym___stdcall] = ACTIONS(1320), + [anon_sym___fastcall] = ACTIONS(1320), + [anon_sym___thiscall] = ACTIONS(1320), + [anon_sym___vectorcall] = ACTIONS(1320), + [anon_sym_LBRACE] = ACTIONS(1322), + [anon_sym_signed] = ACTIONS(1320), + [anon_sym_unsigned] = ACTIONS(1320), + [anon_sym_long] = ACTIONS(1320), + [anon_sym_short] = ACTIONS(1320), + [anon_sym_static] = ACTIONS(1320), + [anon_sym_auto] = ACTIONS(1320), + [anon_sym_register] = ACTIONS(1320), + [anon_sym_inline] = ACTIONS(1320), + [anon_sym___inline] = ACTIONS(1320), + [anon_sym___inline__] = ACTIONS(1320), + [anon_sym___forceinline] = ACTIONS(1320), + [anon_sym_thread_local] = ACTIONS(1320), + [anon_sym___thread] = ACTIONS(1320), + [anon_sym_const] = ACTIONS(1320), + [anon_sym_constexpr] = ACTIONS(1320), + [anon_sym_volatile] = ACTIONS(1320), + [anon_sym_restrict] = ACTIONS(1320), + [anon_sym___restrict__] = ACTIONS(1320), + [anon_sym__Atomic] = ACTIONS(1320), + [anon_sym__Noreturn] = ACTIONS(1320), + [anon_sym_noreturn] = ACTIONS(1320), + [sym_primitive_type] = ACTIONS(1320), + [anon_sym_enum] = ACTIONS(1320), + [anon_sym_struct] = ACTIONS(1320), + [anon_sym_union] = ACTIONS(1320), + [anon_sym_if] = ACTIONS(1320), + [anon_sym_else] = ACTIONS(1320), + [anon_sym_switch] = ACTIONS(1320), + [anon_sym_case] = ACTIONS(1320), + [anon_sym_default] = ACTIONS(1320), + [anon_sym_while] = ACTIONS(1320), + [anon_sym_do] = ACTIONS(1320), + [anon_sym_for] = ACTIONS(1320), + [anon_sym_return] = ACTIONS(1320), + [anon_sym_break] = ACTIONS(1320), + [anon_sym_continue] = ACTIONS(1320), + [anon_sym_goto] = ACTIONS(1320), + [anon_sym___try] = ACTIONS(1320), + [anon_sym___leave] = ACTIONS(1320), + [anon_sym_DASH_DASH] = ACTIONS(1322), + [anon_sym_PLUS_PLUS] = ACTIONS(1322), + [anon_sym_sizeof] = ACTIONS(1320), + [anon_sym___alignof__] = ACTIONS(1320), + [anon_sym___alignof] = ACTIONS(1320), + [anon_sym__alignof] = ACTIONS(1320), + [anon_sym_alignof] = ACTIONS(1320), + [anon_sym__Alignof] = ACTIONS(1320), + [anon_sym_offsetof] = ACTIONS(1320), + [anon_sym__Generic] = ACTIONS(1320), + [anon_sym_asm] = ACTIONS(1320), + [anon_sym___asm__] = ACTIONS(1320), + [sym_number_literal] = ACTIONS(1322), + [anon_sym_L_SQUOTE] = ACTIONS(1322), + [anon_sym_u_SQUOTE] = ACTIONS(1322), + [anon_sym_U_SQUOTE] = ACTIONS(1322), + [anon_sym_u8_SQUOTE] = ACTIONS(1322), + [anon_sym_SQUOTE] = ACTIONS(1322), + [anon_sym_L_DQUOTE] = ACTIONS(1322), + [anon_sym_u_DQUOTE] = ACTIONS(1322), + [anon_sym_U_DQUOTE] = ACTIONS(1322), + [anon_sym_u8_DQUOTE] = ACTIONS(1322), + [anon_sym_DQUOTE] = ACTIONS(1322), + [sym_true] = ACTIONS(1320), + [sym_false] = ACTIONS(1320), + [anon_sym_NULL] = ACTIONS(1320), + [anon_sym_nullptr] = ACTIONS(1320), [sym_comment] = ACTIONS(3), }, [246] = { - [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_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_LBRACK_LBRACK] = ACTIONS(1367), - [anon_sym___declspec] = 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), - [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_else] = 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_identifier] = ACTIONS(1320), + [aux_sym_preproc_include_token1] = ACTIONS(1320), + [aux_sym_preproc_def_token1] = ACTIONS(1320), + [aux_sym_preproc_if_token1] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1320), + [sym_preproc_directive] = ACTIONS(1320), + [anon_sym_LPAREN2] = ACTIONS(1322), + [anon_sym_BANG] = ACTIONS(1322), + [anon_sym_TILDE] = ACTIONS(1322), + [anon_sym_DASH] = ACTIONS(1320), + [anon_sym_PLUS] = ACTIONS(1320), + [anon_sym_STAR] = ACTIONS(1322), + [anon_sym_AMP] = ACTIONS(1322), + [anon_sym_SEMI] = ACTIONS(1322), + [anon_sym___extension__] = ACTIONS(1320), + [anon_sym_typedef] = ACTIONS(1320), + [anon_sym_extern] = ACTIONS(1320), + [anon_sym___attribute__] = ACTIONS(1320), + [anon_sym___scanf] = ACTIONS(1320), + [anon_sym___printf] = ACTIONS(1320), + [anon_sym___read_mostly] = ACTIONS(1320), + [anon_sym___must_hold] = ACTIONS(1320), + [anon_sym___ro_after_init] = ACTIONS(1320), + [anon_sym___init] = ACTIONS(1320), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1322), + [anon_sym___declspec] = ACTIONS(1320), + [anon_sym___cdecl] = ACTIONS(1320), + [anon_sym___clrcall] = ACTIONS(1320), + [anon_sym___stdcall] = ACTIONS(1320), + [anon_sym___fastcall] = ACTIONS(1320), + [anon_sym___thiscall] = ACTIONS(1320), + [anon_sym___vectorcall] = ACTIONS(1320), + [anon_sym_LBRACE] = ACTIONS(1322), + [anon_sym_RBRACE] = ACTIONS(1322), + [anon_sym_signed] = ACTIONS(1320), + [anon_sym_unsigned] = ACTIONS(1320), + [anon_sym_long] = ACTIONS(1320), + [anon_sym_short] = ACTIONS(1320), + [anon_sym_static] = ACTIONS(1320), + [anon_sym_auto] = ACTIONS(1320), + [anon_sym_register] = ACTIONS(1320), + [anon_sym_inline] = ACTIONS(1320), + [anon_sym___inline] = ACTIONS(1320), + [anon_sym___inline__] = ACTIONS(1320), + [anon_sym___forceinline] = ACTIONS(1320), + [anon_sym_thread_local] = ACTIONS(1320), + [anon_sym___thread] = ACTIONS(1320), + [anon_sym_const] = ACTIONS(1320), + [anon_sym_constexpr] = ACTIONS(1320), + [anon_sym_volatile] = ACTIONS(1320), + [anon_sym_restrict] = ACTIONS(1320), + [anon_sym___restrict__] = ACTIONS(1320), + [anon_sym__Atomic] = ACTIONS(1320), + [anon_sym__Noreturn] = ACTIONS(1320), + [anon_sym_noreturn] = ACTIONS(1320), + [sym_primitive_type] = ACTIONS(1320), + [anon_sym_enum] = ACTIONS(1320), + [anon_sym_struct] = ACTIONS(1320), + [anon_sym_union] = ACTIONS(1320), + [anon_sym_if] = ACTIONS(1320), + [anon_sym_else] = ACTIONS(1320), + [anon_sym_switch] = ACTIONS(1320), + [anon_sym_case] = ACTIONS(1320), + [anon_sym_default] = ACTIONS(1320), + [anon_sym_while] = ACTIONS(1320), + [anon_sym_do] = ACTIONS(1320), + [anon_sym_for] = ACTIONS(1320), + [anon_sym_return] = ACTIONS(1320), + [anon_sym_break] = ACTIONS(1320), + [anon_sym_continue] = ACTIONS(1320), + [anon_sym_goto] = ACTIONS(1320), + [anon_sym___try] = ACTIONS(1320), + [anon_sym___leave] = ACTIONS(1320), + [anon_sym_DASH_DASH] = ACTIONS(1322), + [anon_sym_PLUS_PLUS] = ACTIONS(1322), + [anon_sym_sizeof] = ACTIONS(1320), + [anon_sym___alignof__] = ACTIONS(1320), + [anon_sym___alignof] = ACTIONS(1320), + [anon_sym__alignof] = ACTIONS(1320), + [anon_sym_alignof] = ACTIONS(1320), + [anon_sym__Alignof] = ACTIONS(1320), + [anon_sym_offsetof] = ACTIONS(1320), + [anon_sym__Generic] = ACTIONS(1320), + [anon_sym_asm] = ACTIONS(1320), + [anon_sym___asm__] = ACTIONS(1320), + [sym_number_literal] = ACTIONS(1322), + [anon_sym_L_SQUOTE] = ACTIONS(1322), + [anon_sym_u_SQUOTE] = ACTIONS(1322), + [anon_sym_U_SQUOTE] = ACTIONS(1322), + [anon_sym_u8_SQUOTE] = ACTIONS(1322), + [anon_sym_SQUOTE] = ACTIONS(1322), + [anon_sym_L_DQUOTE] = ACTIONS(1322), + [anon_sym_u_DQUOTE] = ACTIONS(1322), + [anon_sym_U_DQUOTE] = ACTIONS(1322), + [anon_sym_u8_DQUOTE] = ACTIONS(1322), + [anon_sym_DQUOTE] = ACTIONS(1322), + [sym_true] = ACTIONS(1320), + [sym_false] = ACTIONS(1320), + [anon_sym_NULL] = ACTIONS(1320), + [anon_sym_nullptr] = ACTIONS(1320), [sym_comment] = ACTIONS(3), }, [247] = { - [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_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_LBRACK_LBRACK] = ACTIONS(1391), - [anon_sym___declspec] = 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), - [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_else] = 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), + [ts_builtin_sym_end] = ACTIONS(1322), + [sym_identifier] = ACTIONS(1320), + [aux_sym_preproc_include_token1] = ACTIONS(1320), + [aux_sym_preproc_def_token1] = ACTIONS(1320), + [aux_sym_preproc_if_token1] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1320), + [sym_preproc_directive] = ACTIONS(1320), + [anon_sym_LPAREN2] = ACTIONS(1322), + [anon_sym_BANG] = ACTIONS(1322), + [anon_sym_TILDE] = ACTIONS(1322), + [anon_sym_DASH] = ACTIONS(1320), + [anon_sym_PLUS] = ACTIONS(1320), + [anon_sym_STAR] = ACTIONS(1322), + [anon_sym_AMP] = ACTIONS(1322), + [anon_sym_SEMI] = ACTIONS(1322), + [anon_sym___extension__] = ACTIONS(1320), + [anon_sym_typedef] = ACTIONS(1320), + [anon_sym_extern] = ACTIONS(1320), + [anon_sym___attribute__] = ACTIONS(1320), + [anon_sym___scanf] = ACTIONS(1320), + [anon_sym___printf] = ACTIONS(1320), + [anon_sym___read_mostly] = ACTIONS(1320), + [anon_sym___must_hold] = ACTIONS(1320), + [anon_sym___ro_after_init] = ACTIONS(1320), + [anon_sym___init] = ACTIONS(1320), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1322), + [anon_sym___declspec] = ACTIONS(1320), + [anon_sym___cdecl] = ACTIONS(1320), + [anon_sym___clrcall] = ACTIONS(1320), + [anon_sym___stdcall] = ACTIONS(1320), + [anon_sym___fastcall] = ACTIONS(1320), + [anon_sym___thiscall] = ACTIONS(1320), + [anon_sym___vectorcall] = ACTIONS(1320), + [anon_sym_LBRACE] = ACTIONS(1322), + [anon_sym_signed] = ACTIONS(1320), + [anon_sym_unsigned] = ACTIONS(1320), + [anon_sym_long] = ACTIONS(1320), + [anon_sym_short] = ACTIONS(1320), + [anon_sym_static] = ACTIONS(1320), + [anon_sym_auto] = ACTIONS(1320), + [anon_sym_register] = ACTIONS(1320), + [anon_sym_inline] = ACTIONS(1320), + [anon_sym___inline] = ACTIONS(1320), + [anon_sym___inline__] = ACTIONS(1320), + [anon_sym___forceinline] = ACTIONS(1320), + [anon_sym_thread_local] = ACTIONS(1320), + [anon_sym___thread] = ACTIONS(1320), + [anon_sym_const] = ACTIONS(1320), + [anon_sym_constexpr] = ACTIONS(1320), + [anon_sym_volatile] = ACTIONS(1320), + [anon_sym_restrict] = ACTIONS(1320), + [anon_sym___restrict__] = ACTIONS(1320), + [anon_sym__Atomic] = ACTIONS(1320), + [anon_sym__Noreturn] = ACTIONS(1320), + [anon_sym_noreturn] = ACTIONS(1320), + [sym_primitive_type] = ACTIONS(1320), + [anon_sym_enum] = ACTIONS(1320), + [anon_sym_struct] = ACTIONS(1320), + [anon_sym_union] = ACTIONS(1320), + [anon_sym_if] = ACTIONS(1320), + [anon_sym_else] = ACTIONS(1320), + [anon_sym_switch] = ACTIONS(1320), + [anon_sym_case] = ACTIONS(1320), + [anon_sym_default] = ACTIONS(1320), + [anon_sym_while] = ACTIONS(1320), + [anon_sym_do] = ACTIONS(1320), + [anon_sym_for] = ACTIONS(1320), + [anon_sym_return] = ACTIONS(1320), + [anon_sym_break] = ACTIONS(1320), + [anon_sym_continue] = ACTIONS(1320), + [anon_sym_goto] = ACTIONS(1320), + [anon_sym___try] = ACTIONS(1320), + [anon_sym___leave] = ACTIONS(1320), + [anon_sym_DASH_DASH] = ACTIONS(1322), + [anon_sym_PLUS_PLUS] = ACTIONS(1322), + [anon_sym_sizeof] = ACTIONS(1320), + [anon_sym___alignof__] = ACTIONS(1320), + [anon_sym___alignof] = ACTIONS(1320), + [anon_sym__alignof] = ACTIONS(1320), + [anon_sym_alignof] = ACTIONS(1320), + [anon_sym__Alignof] = ACTIONS(1320), + [anon_sym_offsetof] = ACTIONS(1320), + [anon_sym__Generic] = ACTIONS(1320), + [anon_sym_asm] = ACTIONS(1320), + [anon_sym___asm__] = ACTIONS(1320), + [sym_number_literal] = ACTIONS(1322), + [anon_sym_L_SQUOTE] = ACTIONS(1322), + [anon_sym_u_SQUOTE] = ACTIONS(1322), + [anon_sym_U_SQUOTE] = ACTIONS(1322), + [anon_sym_u8_SQUOTE] = ACTIONS(1322), + [anon_sym_SQUOTE] = ACTIONS(1322), + [anon_sym_L_DQUOTE] = ACTIONS(1322), + [anon_sym_u_DQUOTE] = ACTIONS(1322), + [anon_sym_U_DQUOTE] = ACTIONS(1322), + [anon_sym_u8_DQUOTE] = ACTIONS(1322), + [anon_sym_DQUOTE] = ACTIONS(1322), + [sym_true] = ACTIONS(1320), + [sym_false] = ACTIONS(1320), + [anon_sym_NULL] = ACTIONS(1320), + [anon_sym_nullptr] = ACTIONS(1320), [sym_comment] = ACTIONS(3), }, [248] = { - [ts_builtin_sym_end] = ACTIONS(1403), - [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(1403), - [anon_sym_BANG] = ACTIONS(1403), - [anon_sym_TILDE] = ACTIONS(1403), - [anon_sym_DASH] = ACTIONS(1401), - [anon_sym_PLUS] = ACTIONS(1401), - [anon_sym_STAR] = ACTIONS(1403), - [anon_sym_AMP] = ACTIONS(1403), - [anon_sym_SEMI] = ACTIONS(1403), - [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_LBRACK_LBRACK] = ACTIONS(1403), - [anon_sym___declspec] = 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(1403), - [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), - [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_else] = 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(1403), - [anon_sym_PLUS_PLUS] = ACTIONS(1403), - [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(1403), - [anon_sym_L_SQUOTE] = ACTIONS(1403), - [anon_sym_u_SQUOTE] = ACTIONS(1403), - [anon_sym_U_SQUOTE] = ACTIONS(1403), - [anon_sym_u8_SQUOTE] = ACTIONS(1403), - [anon_sym_SQUOTE] = ACTIONS(1403), - [anon_sym_L_DQUOTE] = ACTIONS(1403), - [anon_sym_u_DQUOTE] = ACTIONS(1403), - [anon_sym_U_DQUOTE] = ACTIONS(1403), - [anon_sym_u8_DQUOTE] = ACTIONS(1403), - [anon_sym_DQUOTE] = ACTIONS(1403), - [sym_true] = ACTIONS(1401), - [sym_false] = ACTIONS(1401), - [anon_sym_NULL] = ACTIONS(1401), - [anon_sym_nullptr] = ACTIONS(1401), + [ts_builtin_sym_end] = ACTIONS(1322), + [sym_identifier] = ACTIONS(1320), + [aux_sym_preproc_include_token1] = ACTIONS(1320), + [aux_sym_preproc_def_token1] = ACTIONS(1320), + [aux_sym_preproc_if_token1] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1320), + [sym_preproc_directive] = ACTIONS(1320), + [anon_sym_LPAREN2] = ACTIONS(1322), + [anon_sym_BANG] = ACTIONS(1322), + [anon_sym_TILDE] = ACTIONS(1322), + [anon_sym_DASH] = ACTIONS(1320), + [anon_sym_PLUS] = ACTIONS(1320), + [anon_sym_STAR] = ACTIONS(1322), + [anon_sym_AMP] = ACTIONS(1322), + [anon_sym_SEMI] = ACTIONS(1322), + [anon_sym___extension__] = ACTIONS(1320), + [anon_sym_typedef] = ACTIONS(1320), + [anon_sym_extern] = ACTIONS(1320), + [anon_sym___attribute__] = ACTIONS(1320), + [anon_sym___scanf] = ACTIONS(1320), + [anon_sym___printf] = ACTIONS(1320), + [anon_sym___read_mostly] = ACTIONS(1320), + [anon_sym___must_hold] = ACTIONS(1320), + [anon_sym___ro_after_init] = ACTIONS(1320), + [anon_sym___init] = ACTIONS(1320), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1322), + [anon_sym___declspec] = ACTIONS(1320), + [anon_sym___cdecl] = ACTIONS(1320), + [anon_sym___clrcall] = ACTIONS(1320), + [anon_sym___stdcall] = ACTIONS(1320), + [anon_sym___fastcall] = ACTIONS(1320), + [anon_sym___thiscall] = ACTIONS(1320), + [anon_sym___vectorcall] = ACTIONS(1320), + [anon_sym_LBRACE] = ACTIONS(1322), + [anon_sym_signed] = ACTIONS(1320), + [anon_sym_unsigned] = ACTIONS(1320), + [anon_sym_long] = ACTIONS(1320), + [anon_sym_short] = ACTIONS(1320), + [anon_sym_static] = ACTIONS(1320), + [anon_sym_auto] = ACTIONS(1320), + [anon_sym_register] = ACTIONS(1320), + [anon_sym_inline] = ACTIONS(1320), + [anon_sym___inline] = ACTIONS(1320), + [anon_sym___inline__] = ACTIONS(1320), + [anon_sym___forceinline] = ACTIONS(1320), + [anon_sym_thread_local] = ACTIONS(1320), + [anon_sym___thread] = ACTIONS(1320), + [anon_sym_const] = ACTIONS(1320), + [anon_sym_constexpr] = ACTIONS(1320), + [anon_sym_volatile] = ACTIONS(1320), + [anon_sym_restrict] = ACTIONS(1320), + [anon_sym___restrict__] = ACTIONS(1320), + [anon_sym__Atomic] = ACTIONS(1320), + [anon_sym__Noreturn] = ACTIONS(1320), + [anon_sym_noreturn] = ACTIONS(1320), + [sym_primitive_type] = ACTIONS(1320), + [anon_sym_enum] = ACTIONS(1320), + [anon_sym_struct] = ACTIONS(1320), + [anon_sym_union] = ACTIONS(1320), + [anon_sym_if] = ACTIONS(1320), + [anon_sym_else] = ACTIONS(1320), + [anon_sym_switch] = ACTIONS(1320), + [anon_sym_case] = ACTIONS(1320), + [anon_sym_default] = ACTIONS(1320), + [anon_sym_while] = ACTIONS(1320), + [anon_sym_do] = ACTIONS(1320), + [anon_sym_for] = ACTIONS(1320), + [anon_sym_return] = ACTIONS(1320), + [anon_sym_break] = ACTIONS(1320), + [anon_sym_continue] = ACTIONS(1320), + [anon_sym_goto] = ACTIONS(1320), + [anon_sym___try] = ACTIONS(1320), + [anon_sym___leave] = ACTIONS(1320), + [anon_sym_DASH_DASH] = ACTIONS(1322), + [anon_sym_PLUS_PLUS] = ACTIONS(1322), + [anon_sym_sizeof] = ACTIONS(1320), + [anon_sym___alignof__] = ACTIONS(1320), + [anon_sym___alignof] = ACTIONS(1320), + [anon_sym__alignof] = ACTIONS(1320), + [anon_sym_alignof] = ACTIONS(1320), + [anon_sym__Alignof] = ACTIONS(1320), + [anon_sym_offsetof] = ACTIONS(1320), + [anon_sym__Generic] = ACTIONS(1320), + [anon_sym_asm] = ACTIONS(1320), + [anon_sym___asm__] = ACTIONS(1320), + [sym_number_literal] = ACTIONS(1322), + [anon_sym_L_SQUOTE] = ACTIONS(1322), + [anon_sym_u_SQUOTE] = ACTIONS(1322), + [anon_sym_U_SQUOTE] = ACTIONS(1322), + [anon_sym_u8_SQUOTE] = ACTIONS(1322), + [anon_sym_SQUOTE] = ACTIONS(1322), + [anon_sym_L_DQUOTE] = ACTIONS(1322), + [anon_sym_u_DQUOTE] = ACTIONS(1322), + [anon_sym_U_DQUOTE] = ACTIONS(1322), + [anon_sym_u8_DQUOTE] = ACTIONS(1322), + [anon_sym_DQUOTE] = ACTIONS(1322), + [sym_true] = ACTIONS(1320), + [sym_false] = ACTIONS(1320), + [anon_sym_NULL] = ACTIONS(1320), + [anon_sym_nullptr] = ACTIONS(1320), [sym_comment] = ACTIONS(3), }, [249] = { - [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_LBRACK_LBRACK] = ACTIONS(1359), - [anon_sym___declspec] = 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), - [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_else] = 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_identifier] = ACTIONS(1334), + [aux_sym_preproc_include_token1] = ACTIONS(1334), + [aux_sym_preproc_def_token1] = ACTIONS(1334), + [aux_sym_preproc_if_token1] = ACTIONS(1334), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1334), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1334), + [sym_preproc_directive] = ACTIONS(1334), + [anon_sym_LPAREN2] = ACTIONS(1332), + [anon_sym_BANG] = ACTIONS(1332), + [anon_sym_TILDE] = ACTIONS(1332), + [anon_sym_DASH] = ACTIONS(1334), + [anon_sym_PLUS] = ACTIONS(1334), + [anon_sym_STAR] = ACTIONS(1332), + [anon_sym_AMP] = ACTIONS(1332), + [anon_sym_SEMI] = ACTIONS(1332), + [anon_sym___extension__] = ACTIONS(1334), + [anon_sym_typedef] = ACTIONS(1334), + [anon_sym_extern] = ACTIONS(1334), + [anon_sym___attribute__] = ACTIONS(1334), + [anon_sym___scanf] = ACTIONS(1334), + [anon_sym___printf] = ACTIONS(1334), + [anon_sym___read_mostly] = ACTIONS(1334), + [anon_sym___must_hold] = ACTIONS(1334), + [anon_sym___ro_after_init] = ACTIONS(1334), + [anon_sym___init] = ACTIONS(1334), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1332), + [anon_sym___declspec] = ACTIONS(1334), + [anon_sym___cdecl] = ACTIONS(1334), + [anon_sym___clrcall] = ACTIONS(1334), + [anon_sym___stdcall] = ACTIONS(1334), + [anon_sym___fastcall] = ACTIONS(1334), + [anon_sym___thiscall] = ACTIONS(1334), + [anon_sym___vectorcall] = ACTIONS(1334), + [anon_sym_LBRACE] = ACTIONS(1332), + [anon_sym_RBRACE] = ACTIONS(1332), + [anon_sym_signed] = ACTIONS(1334), + [anon_sym_unsigned] = ACTIONS(1334), + [anon_sym_long] = ACTIONS(1334), + [anon_sym_short] = ACTIONS(1334), + [anon_sym_static] = ACTIONS(1334), + [anon_sym_auto] = ACTIONS(1334), + [anon_sym_register] = ACTIONS(1334), + [anon_sym_inline] = ACTIONS(1334), + [anon_sym___inline] = ACTIONS(1334), + [anon_sym___inline__] = ACTIONS(1334), + [anon_sym___forceinline] = ACTIONS(1334), + [anon_sym_thread_local] = ACTIONS(1334), + [anon_sym___thread] = ACTIONS(1334), + [anon_sym_const] = ACTIONS(1334), + [anon_sym_constexpr] = ACTIONS(1334), + [anon_sym_volatile] = ACTIONS(1334), + [anon_sym_restrict] = ACTIONS(1334), + [anon_sym___restrict__] = ACTIONS(1334), + [anon_sym__Atomic] = ACTIONS(1334), + [anon_sym__Noreturn] = ACTIONS(1334), + [anon_sym_noreturn] = ACTIONS(1334), + [sym_primitive_type] = ACTIONS(1334), + [anon_sym_enum] = ACTIONS(1334), + [anon_sym_struct] = ACTIONS(1334), + [anon_sym_union] = ACTIONS(1334), + [anon_sym_if] = ACTIONS(1334), + [anon_sym_else] = ACTIONS(1334), + [anon_sym_switch] = ACTIONS(1334), + [anon_sym_case] = ACTIONS(1334), + [anon_sym_default] = ACTIONS(1334), + [anon_sym_while] = ACTIONS(1334), + [anon_sym_do] = ACTIONS(1334), + [anon_sym_for] = ACTIONS(1334), + [anon_sym_return] = ACTIONS(1334), + [anon_sym_break] = ACTIONS(1334), + [anon_sym_continue] = ACTIONS(1334), + [anon_sym_goto] = ACTIONS(1334), + [anon_sym___try] = ACTIONS(1334), + [anon_sym___leave] = ACTIONS(1334), + [anon_sym_DASH_DASH] = ACTIONS(1332), + [anon_sym_PLUS_PLUS] = ACTIONS(1332), + [anon_sym_sizeof] = ACTIONS(1334), + [anon_sym___alignof__] = ACTIONS(1334), + [anon_sym___alignof] = ACTIONS(1334), + [anon_sym__alignof] = ACTIONS(1334), + [anon_sym_alignof] = ACTIONS(1334), + [anon_sym__Alignof] = ACTIONS(1334), + [anon_sym_offsetof] = ACTIONS(1334), + [anon_sym__Generic] = ACTIONS(1334), + [anon_sym_asm] = ACTIONS(1334), + [anon_sym___asm__] = ACTIONS(1334), + [sym_number_literal] = ACTIONS(1332), + [anon_sym_L_SQUOTE] = ACTIONS(1332), + [anon_sym_u_SQUOTE] = ACTIONS(1332), + [anon_sym_U_SQUOTE] = ACTIONS(1332), + [anon_sym_u8_SQUOTE] = ACTIONS(1332), + [anon_sym_SQUOTE] = ACTIONS(1332), + [anon_sym_L_DQUOTE] = ACTIONS(1332), + [anon_sym_u_DQUOTE] = ACTIONS(1332), + [anon_sym_U_DQUOTE] = ACTIONS(1332), + [anon_sym_u8_DQUOTE] = ACTIONS(1332), + [anon_sym_DQUOTE] = ACTIONS(1332), + [sym_true] = ACTIONS(1334), + [sym_false] = ACTIONS(1334), + [anon_sym_NULL] = ACTIONS(1334), + [anon_sym_nullptr] = ACTIONS(1334), [sym_comment] = ACTIONS(3), }, [250] = { - [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_LBRACK_LBRACK] = ACTIONS(1319), - [anon_sym___declspec] = 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), - [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_else] = 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_identifier] = ACTIONS(1320), + [aux_sym_preproc_include_token1] = ACTIONS(1320), + [aux_sym_preproc_def_token1] = ACTIONS(1320), + [aux_sym_preproc_if_token1] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1320), + [sym_preproc_directive] = ACTIONS(1320), + [anon_sym_LPAREN2] = ACTIONS(1322), + [anon_sym_BANG] = ACTIONS(1322), + [anon_sym_TILDE] = ACTIONS(1322), + [anon_sym_DASH] = ACTIONS(1320), + [anon_sym_PLUS] = ACTIONS(1320), + [anon_sym_STAR] = ACTIONS(1322), + [anon_sym_AMP] = ACTIONS(1322), + [anon_sym_SEMI] = ACTIONS(1322), + [anon_sym___extension__] = ACTIONS(1320), + [anon_sym_typedef] = ACTIONS(1320), + [anon_sym_extern] = ACTIONS(1320), + [anon_sym___attribute__] = ACTIONS(1320), + [anon_sym___scanf] = ACTIONS(1320), + [anon_sym___printf] = ACTIONS(1320), + [anon_sym___read_mostly] = ACTIONS(1320), + [anon_sym___must_hold] = ACTIONS(1320), + [anon_sym___ro_after_init] = ACTIONS(1320), + [anon_sym___init] = ACTIONS(1320), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1322), + [anon_sym___declspec] = ACTIONS(1320), + [anon_sym___cdecl] = ACTIONS(1320), + [anon_sym___clrcall] = ACTIONS(1320), + [anon_sym___stdcall] = ACTIONS(1320), + [anon_sym___fastcall] = ACTIONS(1320), + [anon_sym___thiscall] = ACTIONS(1320), + [anon_sym___vectorcall] = ACTIONS(1320), + [anon_sym_LBRACE] = ACTIONS(1322), + [anon_sym_RBRACE] = ACTIONS(1322), + [anon_sym_signed] = ACTIONS(1320), + [anon_sym_unsigned] = ACTIONS(1320), + [anon_sym_long] = ACTIONS(1320), + [anon_sym_short] = ACTIONS(1320), + [anon_sym_static] = ACTIONS(1320), + [anon_sym_auto] = ACTIONS(1320), + [anon_sym_register] = ACTIONS(1320), + [anon_sym_inline] = ACTIONS(1320), + [anon_sym___inline] = ACTIONS(1320), + [anon_sym___inline__] = ACTIONS(1320), + [anon_sym___forceinline] = ACTIONS(1320), + [anon_sym_thread_local] = ACTIONS(1320), + [anon_sym___thread] = ACTIONS(1320), + [anon_sym_const] = ACTIONS(1320), + [anon_sym_constexpr] = ACTIONS(1320), + [anon_sym_volatile] = ACTIONS(1320), + [anon_sym_restrict] = ACTIONS(1320), + [anon_sym___restrict__] = ACTIONS(1320), + [anon_sym__Atomic] = ACTIONS(1320), + [anon_sym__Noreturn] = ACTIONS(1320), + [anon_sym_noreturn] = ACTIONS(1320), + [sym_primitive_type] = ACTIONS(1320), + [anon_sym_enum] = ACTIONS(1320), + [anon_sym_struct] = ACTIONS(1320), + [anon_sym_union] = ACTIONS(1320), + [anon_sym_if] = ACTIONS(1320), + [anon_sym_else] = ACTIONS(1320), + [anon_sym_switch] = ACTIONS(1320), + [anon_sym_case] = ACTIONS(1320), + [anon_sym_default] = ACTIONS(1320), + [anon_sym_while] = ACTIONS(1320), + [anon_sym_do] = ACTIONS(1320), + [anon_sym_for] = ACTIONS(1320), + [anon_sym_return] = ACTIONS(1320), + [anon_sym_break] = ACTIONS(1320), + [anon_sym_continue] = ACTIONS(1320), + [anon_sym_goto] = ACTIONS(1320), + [anon_sym___try] = ACTIONS(1320), + [anon_sym___leave] = ACTIONS(1320), + [anon_sym_DASH_DASH] = ACTIONS(1322), + [anon_sym_PLUS_PLUS] = ACTIONS(1322), + [anon_sym_sizeof] = ACTIONS(1320), + [anon_sym___alignof__] = ACTIONS(1320), + [anon_sym___alignof] = ACTIONS(1320), + [anon_sym__alignof] = ACTIONS(1320), + [anon_sym_alignof] = ACTIONS(1320), + [anon_sym__Alignof] = ACTIONS(1320), + [anon_sym_offsetof] = ACTIONS(1320), + [anon_sym__Generic] = ACTIONS(1320), + [anon_sym_asm] = ACTIONS(1320), + [anon_sym___asm__] = ACTIONS(1320), + [sym_number_literal] = ACTIONS(1322), + [anon_sym_L_SQUOTE] = ACTIONS(1322), + [anon_sym_u_SQUOTE] = ACTIONS(1322), + [anon_sym_U_SQUOTE] = ACTIONS(1322), + [anon_sym_u8_SQUOTE] = ACTIONS(1322), + [anon_sym_SQUOTE] = ACTIONS(1322), + [anon_sym_L_DQUOTE] = ACTIONS(1322), + [anon_sym_u_DQUOTE] = ACTIONS(1322), + [anon_sym_U_DQUOTE] = ACTIONS(1322), + [anon_sym_u8_DQUOTE] = ACTIONS(1322), + [anon_sym_DQUOTE] = ACTIONS(1322), + [sym_true] = ACTIONS(1320), + [sym_false] = ACTIONS(1320), + [anon_sym_NULL] = ACTIONS(1320), + [anon_sym_nullptr] = ACTIONS(1320), [sym_comment] = ACTIONS(3), }, [251] = { - [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_LBRACK_LBRACK] = ACTIONS(1359), - [anon_sym___declspec] = 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), - [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_else] = 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_identifier] = ACTIONS(1324), + [aux_sym_preproc_include_token1] = ACTIONS(1324), + [aux_sym_preproc_def_token1] = ACTIONS(1324), + [aux_sym_preproc_if_token1] = ACTIONS(1324), + [aux_sym_preproc_if_token2] = ACTIONS(1324), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1324), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1324), + [sym_preproc_directive] = ACTIONS(1324), + [anon_sym_LPAREN2] = ACTIONS(1326), + [anon_sym_BANG] = ACTIONS(1326), + [anon_sym_TILDE] = ACTIONS(1326), + [anon_sym_DASH] = ACTIONS(1324), + [anon_sym_PLUS] = ACTIONS(1324), + [anon_sym_STAR] = ACTIONS(1326), + [anon_sym_AMP] = ACTIONS(1326), + [anon_sym_SEMI] = ACTIONS(1326), + [anon_sym___extension__] = ACTIONS(1324), + [anon_sym_typedef] = ACTIONS(1324), + [anon_sym_extern] = ACTIONS(1324), + [anon_sym___attribute__] = ACTIONS(1324), + [anon_sym___scanf] = ACTIONS(1324), + [anon_sym___printf] = ACTIONS(1324), + [anon_sym___read_mostly] = ACTIONS(1324), + [anon_sym___must_hold] = ACTIONS(1324), + [anon_sym___ro_after_init] = ACTIONS(1324), + [anon_sym___init] = ACTIONS(1324), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1326), + [anon_sym___declspec] = ACTIONS(1324), + [anon_sym___cdecl] = ACTIONS(1324), + [anon_sym___clrcall] = ACTIONS(1324), + [anon_sym___stdcall] = ACTIONS(1324), + [anon_sym___fastcall] = ACTIONS(1324), + [anon_sym___thiscall] = ACTIONS(1324), + [anon_sym___vectorcall] = ACTIONS(1324), + [anon_sym_LBRACE] = ACTIONS(1326), + [anon_sym_signed] = ACTIONS(1324), + [anon_sym_unsigned] = ACTIONS(1324), + [anon_sym_long] = ACTIONS(1324), + [anon_sym_short] = ACTIONS(1324), + [anon_sym_static] = ACTIONS(1324), + [anon_sym_auto] = ACTIONS(1324), + [anon_sym_register] = ACTIONS(1324), + [anon_sym_inline] = ACTIONS(1324), + [anon_sym___inline] = ACTIONS(1324), + [anon_sym___inline__] = ACTIONS(1324), + [anon_sym___forceinline] = ACTIONS(1324), + [anon_sym_thread_local] = ACTIONS(1324), + [anon_sym___thread] = ACTIONS(1324), + [anon_sym_const] = ACTIONS(1324), + [anon_sym_constexpr] = ACTIONS(1324), + [anon_sym_volatile] = ACTIONS(1324), + [anon_sym_restrict] = ACTIONS(1324), + [anon_sym___restrict__] = ACTIONS(1324), + [anon_sym__Atomic] = ACTIONS(1324), + [anon_sym__Noreturn] = ACTIONS(1324), + [anon_sym_noreturn] = ACTIONS(1324), + [sym_primitive_type] = ACTIONS(1324), + [anon_sym_enum] = ACTIONS(1324), + [anon_sym_struct] = ACTIONS(1324), + [anon_sym_union] = ACTIONS(1324), + [anon_sym_if] = ACTIONS(1324), + [anon_sym_else] = ACTIONS(1324), + [anon_sym_switch] = ACTIONS(1324), + [anon_sym_case] = ACTIONS(1324), + [anon_sym_default] = ACTIONS(1324), + [anon_sym_while] = ACTIONS(1324), + [anon_sym_do] = ACTIONS(1324), + [anon_sym_for] = ACTIONS(1324), + [anon_sym_return] = ACTIONS(1324), + [anon_sym_break] = ACTIONS(1324), + [anon_sym_continue] = ACTIONS(1324), + [anon_sym_goto] = ACTIONS(1324), + [anon_sym___try] = ACTIONS(1324), + [anon_sym___leave] = ACTIONS(1324), + [anon_sym_DASH_DASH] = ACTIONS(1326), + [anon_sym_PLUS_PLUS] = ACTIONS(1326), + [anon_sym_sizeof] = ACTIONS(1324), + [anon_sym___alignof__] = ACTIONS(1324), + [anon_sym___alignof] = ACTIONS(1324), + [anon_sym__alignof] = ACTIONS(1324), + [anon_sym_alignof] = ACTIONS(1324), + [anon_sym__Alignof] = ACTIONS(1324), + [anon_sym_offsetof] = ACTIONS(1324), + [anon_sym__Generic] = ACTIONS(1324), + [anon_sym_asm] = ACTIONS(1324), + [anon_sym___asm__] = ACTIONS(1324), + [sym_number_literal] = ACTIONS(1326), + [anon_sym_L_SQUOTE] = ACTIONS(1326), + [anon_sym_u_SQUOTE] = ACTIONS(1326), + [anon_sym_U_SQUOTE] = ACTIONS(1326), + [anon_sym_u8_SQUOTE] = ACTIONS(1326), + [anon_sym_SQUOTE] = ACTIONS(1326), + [anon_sym_L_DQUOTE] = ACTIONS(1326), + [anon_sym_u_DQUOTE] = ACTIONS(1326), + [anon_sym_U_DQUOTE] = ACTIONS(1326), + [anon_sym_u8_DQUOTE] = ACTIONS(1326), + [anon_sym_DQUOTE] = ACTIONS(1326), + [sym_true] = ACTIONS(1324), + [sym_false] = ACTIONS(1324), + [anon_sym_NULL] = ACTIONS(1324), + [anon_sym_nullptr] = ACTIONS(1324), [sym_comment] = ACTIONS(3), }, [252] = { - [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_LBRACK_LBRACK] = ACTIONS(1319), - [anon_sym___declspec] = 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), - [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_else] = 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), + [ts_builtin_sym_end] = ACTIONS(1322), + [sym_identifier] = ACTIONS(1320), + [aux_sym_preproc_include_token1] = ACTIONS(1320), + [aux_sym_preproc_def_token1] = ACTIONS(1320), + [aux_sym_preproc_if_token1] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1320), + [sym_preproc_directive] = ACTIONS(1320), + [anon_sym_LPAREN2] = ACTIONS(1322), + [anon_sym_BANG] = ACTIONS(1322), + [anon_sym_TILDE] = ACTIONS(1322), + [anon_sym_DASH] = ACTIONS(1320), + [anon_sym_PLUS] = ACTIONS(1320), + [anon_sym_STAR] = ACTIONS(1322), + [anon_sym_AMP] = ACTIONS(1322), + [anon_sym_SEMI] = ACTIONS(1322), + [anon_sym___extension__] = ACTIONS(1320), + [anon_sym_typedef] = ACTIONS(1320), + [anon_sym_extern] = ACTIONS(1320), + [anon_sym___attribute__] = ACTIONS(1320), + [anon_sym___scanf] = ACTIONS(1320), + [anon_sym___printf] = ACTIONS(1320), + [anon_sym___read_mostly] = ACTIONS(1320), + [anon_sym___must_hold] = ACTIONS(1320), + [anon_sym___ro_after_init] = ACTIONS(1320), + [anon_sym___init] = ACTIONS(1320), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1322), + [anon_sym___declspec] = ACTIONS(1320), + [anon_sym___cdecl] = ACTIONS(1320), + [anon_sym___clrcall] = ACTIONS(1320), + [anon_sym___stdcall] = ACTIONS(1320), + [anon_sym___fastcall] = ACTIONS(1320), + [anon_sym___thiscall] = ACTIONS(1320), + [anon_sym___vectorcall] = ACTIONS(1320), + [anon_sym_LBRACE] = ACTIONS(1322), + [anon_sym_signed] = ACTIONS(1320), + [anon_sym_unsigned] = ACTIONS(1320), + [anon_sym_long] = ACTIONS(1320), + [anon_sym_short] = ACTIONS(1320), + [anon_sym_static] = ACTIONS(1320), + [anon_sym_auto] = ACTIONS(1320), + [anon_sym_register] = ACTIONS(1320), + [anon_sym_inline] = ACTIONS(1320), + [anon_sym___inline] = ACTIONS(1320), + [anon_sym___inline__] = ACTIONS(1320), + [anon_sym___forceinline] = ACTIONS(1320), + [anon_sym_thread_local] = ACTIONS(1320), + [anon_sym___thread] = ACTIONS(1320), + [anon_sym_const] = ACTIONS(1320), + [anon_sym_constexpr] = ACTIONS(1320), + [anon_sym_volatile] = ACTIONS(1320), + [anon_sym_restrict] = ACTIONS(1320), + [anon_sym___restrict__] = ACTIONS(1320), + [anon_sym__Atomic] = ACTIONS(1320), + [anon_sym__Noreturn] = ACTIONS(1320), + [anon_sym_noreturn] = ACTIONS(1320), + [sym_primitive_type] = ACTIONS(1320), + [anon_sym_enum] = ACTIONS(1320), + [anon_sym_struct] = ACTIONS(1320), + [anon_sym_union] = ACTIONS(1320), + [anon_sym_if] = ACTIONS(1320), + [anon_sym_else] = ACTIONS(1320), + [anon_sym_switch] = ACTIONS(1320), + [anon_sym_case] = ACTIONS(1320), + [anon_sym_default] = ACTIONS(1320), + [anon_sym_while] = ACTIONS(1320), + [anon_sym_do] = ACTIONS(1320), + [anon_sym_for] = ACTIONS(1320), + [anon_sym_return] = ACTIONS(1320), + [anon_sym_break] = ACTIONS(1320), + [anon_sym_continue] = ACTIONS(1320), + [anon_sym_goto] = ACTIONS(1320), + [anon_sym___try] = ACTIONS(1320), + [anon_sym___leave] = ACTIONS(1320), + [anon_sym_DASH_DASH] = ACTIONS(1322), + [anon_sym_PLUS_PLUS] = ACTIONS(1322), + [anon_sym_sizeof] = ACTIONS(1320), + [anon_sym___alignof__] = ACTIONS(1320), + [anon_sym___alignof] = ACTIONS(1320), + [anon_sym__alignof] = ACTIONS(1320), + [anon_sym_alignof] = ACTIONS(1320), + [anon_sym__Alignof] = ACTIONS(1320), + [anon_sym_offsetof] = ACTIONS(1320), + [anon_sym__Generic] = ACTIONS(1320), + [anon_sym_asm] = ACTIONS(1320), + [anon_sym___asm__] = ACTIONS(1320), + [sym_number_literal] = ACTIONS(1322), + [anon_sym_L_SQUOTE] = ACTIONS(1322), + [anon_sym_u_SQUOTE] = ACTIONS(1322), + [anon_sym_U_SQUOTE] = ACTIONS(1322), + [anon_sym_u8_SQUOTE] = ACTIONS(1322), + [anon_sym_SQUOTE] = ACTIONS(1322), + [anon_sym_L_DQUOTE] = ACTIONS(1322), + [anon_sym_u_DQUOTE] = ACTIONS(1322), + [anon_sym_U_DQUOTE] = ACTIONS(1322), + [anon_sym_u8_DQUOTE] = ACTIONS(1322), + [anon_sym_DQUOTE] = ACTIONS(1322), + [sym_true] = ACTIONS(1320), + [sym_false] = ACTIONS(1320), + [anon_sym_NULL] = ACTIONS(1320), + [anon_sym_nullptr] = ACTIONS(1320), [sym_comment] = ACTIONS(3), }, [253] = { - [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_LBRACK_LBRACK] = ACTIONS(1323), - [anon_sym___declspec] = 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), - [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_else] = 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_identifier] = ACTIONS(1352), + [aux_sym_preproc_include_token1] = ACTIONS(1352), + [aux_sym_preproc_def_token1] = ACTIONS(1352), + [aux_sym_preproc_if_token1] = ACTIONS(1352), + [aux_sym_preproc_if_token2] = ACTIONS(1352), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1352), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1352), + [sym_preproc_directive] = ACTIONS(1352), + [anon_sym_LPAREN2] = ACTIONS(1354), + [anon_sym_BANG] = ACTIONS(1354), + [anon_sym_TILDE] = ACTIONS(1354), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_PLUS] = ACTIONS(1352), + [anon_sym_STAR] = ACTIONS(1354), + [anon_sym_AMP] = ACTIONS(1354), + [anon_sym_SEMI] = ACTIONS(1354), + [anon_sym___extension__] = ACTIONS(1352), + [anon_sym_typedef] = ACTIONS(1352), + [anon_sym_extern] = ACTIONS(1352), + [anon_sym___attribute__] = ACTIONS(1352), + [anon_sym___scanf] = ACTIONS(1352), + [anon_sym___printf] = ACTIONS(1352), + [anon_sym___read_mostly] = ACTIONS(1352), + [anon_sym___must_hold] = ACTIONS(1352), + [anon_sym___ro_after_init] = ACTIONS(1352), + [anon_sym___init] = ACTIONS(1352), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1354), + [anon_sym___declspec] = ACTIONS(1352), + [anon_sym___cdecl] = ACTIONS(1352), + [anon_sym___clrcall] = ACTIONS(1352), + [anon_sym___stdcall] = ACTIONS(1352), + [anon_sym___fastcall] = ACTIONS(1352), + [anon_sym___thiscall] = ACTIONS(1352), + [anon_sym___vectorcall] = ACTIONS(1352), + [anon_sym_LBRACE] = ACTIONS(1354), + [anon_sym_signed] = ACTIONS(1352), + [anon_sym_unsigned] = ACTIONS(1352), + [anon_sym_long] = ACTIONS(1352), + [anon_sym_short] = ACTIONS(1352), + [anon_sym_static] = ACTIONS(1352), + [anon_sym_auto] = ACTIONS(1352), + [anon_sym_register] = ACTIONS(1352), + [anon_sym_inline] = ACTIONS(1352), + [anon_sym___inline] = ACTIONS(1352), + [anon_sym___inline__] = ACTIONS(1352), + [anon_sym___forceinline] = ACTIONS(1352), + [anon_sym_thread_local] = ACTIONS(1352), + [anon_sym___thread] = ACTIONS(1352), + [anon_sym_const] = ACTIONS(1352), + [anon_sym_constexpr] = ACTIONS(1352), + [anon_sym_volatile] = ACTIONS(1352), + [anon_sym_restrict] = ACTIONS(1352), + [anon_sym___restrict__] = ACTIONS(1352), + [anon_sym__Atomic] = ACTIONS(1352), + [anon_sym__Noreturn] = ACTIONS(1352), + [anon_sym_noreturn] = ACTIONS(1352), + [sym_primitive_type] = ACTIONS(1352), + [anon_sym_enum] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1352), + [anon_sym_union] = ACTIONS(1352), + [anon_sym_if] = ACTIONS(1352), + [anon_sym_else] = ACTIONS(1352), + [anon_sym_switch] = ACTIONS(1352), + [anon_sym_case] = ACTIONS(1352), + [anon_sym_default] = ACTIONS(1352), + [anon_sym_while] = ACTIONS(1352), + [anon_sym_do] = ACTIONS(1352), + [anon_sym_for] = ACTIONS(1352), + [anon_sym_return] = ACTIONS(1352), + [anon_sym_break] = ACTIONS(1352), + [anon_sym_continue] = ACTIONS(1352), + [anon_sym_goto] = ACTIONS(1352), + [anon_sym___try] = ACTIONS(1352), + [anon_sym___leave] = ACTIONS(1352), + [anon_sym_DASH_DASH] = ACTIONS(1354), + [anon_sym_PLUS_PLUS] = ACTIONS(1354), + [anon_sym_sizeof] = ACTIONS(1352), + [anon_sym___alignof__] = ACTIONS(1352), + [anon_sym___alignof] = ACTIONS(1352), + [anon_sym__alignof] = ACTIONS(1352), + [anon_sym_alignof] = ACTIONS(1352), + [anon_sym__Alignof] = ACTIONS(1352), + [anon_sym_offsetof] = ACTIONS(1352), + [anon_sym__Generic] = ACTIONS(1352), + [anon_sym_asm] = ACTIONS(1352), + [anon_sym___asm__] = ACTIONS(1352), + [sym_number_literal] = ACTIONS(1354), + [anon_sym_L_SQUOTE] = ACTIONS(1354), + [anon_sym_u_SQUOTE] = ACTIONS(1354), + [anon_sym_U_SQUOTE] = ACTIONS(1354), + [anon_sym_u8_SQUOTE] = ACTIONS(1354), + [anon_sym_SQUOTE] = ACTIONS(1354), + [anon_sym_L_DQUOTE] = ACTIONS(1354), + [anon_sym_u_DQUOTE] = ACTIONS(1354), + [anon_sym_U_DQUOTE] = ACTIONS(1354), + [anon_sym_u8_DQUOTE] = ACTIONS(1354), + [anon_sym_DQUOTE] = ACTIONS(1354), + [sym_true] = ACTIONS(1352), + [sym_false] = ACTIONS(1352), + [anon_sym_NULL] = ACTIONS(1352), + [anon_sym_nullptr] = ACTIONS(1352), [sym_comment] = ACTIONS(3), }, [254] = { - [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_LBRACK_LBRACK] = ACTIONS(1327), - [anon_sym___declspec] = 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), - [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_else] = 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), + [ts_builtin_sym_end] = ACTIONS(1322), + [sym_identifier] = ACTIONS(1320), + [aux_sym_preproc_include_token1] = ACTIONS(1320), + [aux_sym_preproc_def_token1] = ACTIONS(1320), + [aux_sym_preproc_if_token1] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1320), + [sym_preproc_directive] = ACTIONS(1320), + [anon_sym_LPAREN2] = ACTIONS(1322), + [anon_sym_BANG] = ACTIONS(1322), + [anon_sym_TILDE] = ACTIONS(1322), + [anon_sym_DASH] = ACTIONS(1320), + [anon_sym_PLUS] = ACTIONS(1320), + [anon_sym_STAR] = ACTIONS(1322), + [anon_sym_AMP] = ACTIONS(1322), + [anon_sym_SEMI] = ACTIONS(1322), + [anon_sym___extension__] = ACTIONS(1320), + [anon_sym_typedef] = ACTIONS(1320), + [anon_sym_extern] = ACTIONS(1320), + [anon_sym___attribute__] = ACTIONS(1320), + [anon_sym___scanf] = ACTIONS(1320), + [anon_sym___printf] = ACTIONS(1320), + [anon_sym___read_mostly] = ACTIONS(1320), + [anon_sym___must_hold] = ACTIONS(1320), + [anon_sym___ro_after_init] = ACTIONS(1320), + [anon_sym___init] = ACTIONS(1320), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1322), + [anon_sym___declspec] = ACTIONS(1320), + [anon_sym___cdecl] = ACTIONS(1320), + [anon_sym___clrcall] = ACTIONS(1320), + [anon_sym___stdcall] = ACTIONS(1320), + [anon_sym___fastcall] = ACTIONS(1320), + [anon_sym___thiscall] = ACTIONS(1320), + [anon_sym___vectorcall] = ACTIONS(1320), + [anon_sym_LBRACE] = ACTIONS(1322), + [anon_sym_signed] = ACTIONS(1320), + [anon_sym_unsigned] = ACTIONS(1320), + [anon_sym_long] = ACTIONS(1320), + [anon_sym_short] = ACTIONS(1320), + [anon_sym_static] = ACTIONS(1320), + [anon_sym_auto] = ACTIONS(1320), + [anon_sym_register] = ACTIONS(1320), + [anon_sym_inline] = ACTIONS(1320), + [anon_sym___inline] = ACTIONS(1320), + [anon_sym___inline__] = ACTIONS(1320), + [anon_sym___forceinline] = ACTIONS(1320), + [anon_sym_thread_local] = ACTIONS(1320), + [anon_sym___thread] = ACTIONS(1320), + [anon_sym_const] = ACTIONS(1320), + [anon_sym_constexpr] = ACTIONS(1320), + [anon_sym_volatile] = ACTIONS(1320), + [anon_sym_restrict] = ACTIONS(1320), + [anon_sym___restrict__] = ACTIONS(1320), + [anon_sym__Atomic] = ACTIONS(1320), + [anon_sym__Noreturn] = ACTIONS(1320), + [anon_sym_noreturn] = ACTIONS(1320), + [sym_primitive_type] = ACTIONS(1320), + [anon_sym_enum] = ACTIONS(1320), + [anon_sym_struct] = ACTIONS(1320), + [anon_sym_union] = ACTIONS(1320), + [anon_sym_if] = ACTIONS(1320), + [anon_sym_else] = ACTIONS(1320), + [anon_sym_switch] = ACTIONS(1320), + [anon_sym_case] = ACTIONS(1320), + [anon_sym_default] = ACTIONS(1320), + [anon_sym_while] = ACTIONS(1320), + [anon_sym_do] = ACTIONS(1320), + [anon_sym_for] = ACTIONS(1320), + [anon_sym_return] = ACTIONS(1320), + [anon_sym_break] = ACTIONS(1320), + [anon_sym_continue] = ACTIONS(1320), + [anon_sym_goto] = ACTIONS(1320), + [anon_sym___try] = ACTIONS(1320), + [anon_sym___leave] = ACTIONS(1320), + [anon_sym_DASH_DASH] = ACTIONS(1322), + [anon_sym_PLUS_PLUS] = ACTIONS(1322), + [anon_sym_sizeof] = ACTIONS(1320), + [anon_sym___alignof__] = ACTIONS(1320), + [anon_sym___alignof] = ACTIONS(1320), + [anon_sym__alignof] = ACTIONS(1320), + [anon_sym_alignof] = ACTIONS(1320), + [anon_sym__Alignof] = ACTIONS(1320), + [anon_sym_offsetof] = ACTIONS(1320), + [anon_sym__Generic] = ACTIONS(1320), + [anon_sym_asm] = ACTIONS(1320), + [anon_sym___asm__] = ACTIONS(1320), + [sym_number_literal] = ACTIONS(1322), + [anon_sym_L_SQUOTE] = ACTIONS(1322), + [anon_sym_u_SQUOTE] = ACTIONS(1322), + [anon_sym_U_SQUOTE] = ACTIONS(1322), + [anon_sym_u8_SQUOTE] = ACTIONS(1322), + [anon_sym_SQUOTE] = ACTIONS(1322), + [anon_sym_L_DQUOTE] = ACTIONS(1322), + [anon_sym_u_DQUOTE] = ACTIONS(1322), + [anon_sym_U_DQUOTE] = ACTIONS(1322), + [anon_sym_u8_DQUOTE] = ACTIONS(1322), + [anon_sym_DQUOTE] = ACTIONS(1322), + [sym_true] = ACTIONS(1320), + [sym_false] = ACTIONS(1320), + [anon_sym_NULL] = ACTIONS(1320), + [anon_sym_nullptr] = ACTIONS(1320), [sym_comment] = ACTIONS(3), }, [255] = { - [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_LBRACK_LBRACK] = ACTIONS(1331), - [anon_sym___declspec] = 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), - [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_else] = 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_identifier] = ACTIONS(1404), + [aux_sym_preproc_include_token1] = ACTIONS(1404), + [aux_sym_preproc_def_token1] = ACTIONS(1404), + [aux_sym_preproc_if_token1] = ACTIONS(1404), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1404), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1404), + [sym_preproc_directive] = ACTIONS(1404), + [anon_sym_LPAREN2] = ACTIONS(1406), + [anon_sym_BANG] = ACTIONS(1406), + [anon_sym_TILDE] = ACTIONS(1406), + [anon_sym_DASH] = ACTIONS(1404), + [anon_sym_PLUS] = ACTIONS(1404), + [anon_sym_STAR] = ACTIONS(1406), + [anon_sym_AMP] = ACTIONS(1406), + [anon_sym_SEMI] = ACTIONS(1406), + [anon_sym___extension__] = ACTIONS(1404), + [anon_sym_typedef] = ACTIONS(1404), + [anon_sym_extern] = ACTIONS(1404), + [anon_sym___attribute__] = ACTIONS(1404), + [anon_sym___scanf] = ACTIONS(1404), + [anon_sym___printf] = ACTIONS(1404), + [anon_sym___read_mostly] = ACTIONS(1404), + [anon_sym___must_hold] = ACTIONS(1404), + [anon_sym___ro_after_init] = ACTIONS(1404), + [anon_sym___init] = ACTIONS(1404), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1406), + [anon_sym___declspec] = ACTIONS(1404), + [anon_sym___cdecl] = ACTIONS(1404), + [anon_sym___clrcall] = ACTIONS(1404), + [anon_sym___stdcall] = ACTIONS(1404), + [anon_sym___fastcall] = ACTIONS(1404), + [anon_sym___thiscall] = ACTIONS(1404), + [anon_sym___vectorcall] = ACTIONS(1404), + [anon_sym_LBRACE] = ACTIONS(1406), + [anon_sym_RBRACE] = ACTIONS(1406), + [anon_sym_signed] = ACTIONS(1404), + [anon_sym_unsigned] = ACTIONS(1404), + [anon_sym_long] = ACTIONS(1404), + [anon_sym_short] = ACTIONS(1404), + [anon_sym_static] = ACTIONS(1404), + [anon_sym_auto] = ACTIONS(1404), + [anon_sym_register] = ACTIONS(1404), + [anon_sym_inline] = ACTIONS(1404), + [anon_sym___inline] = ACTIONS(1404), + [anon_sym___inline__] = ACTIONS(1404), + [anon_sym___forceinline] = ACTIONS(1404), + [anon_sym_thread_local] = ACTIONS(1404), + [anon_sym___thread] = ACTIONS(1404), + [anon_sym_const] = ACTIONS(1404), + [anon_sym_constexpr] = ACTIONS(1404), + [anon_sym_volatile] = ACTIONS(1404), + [anon_sym_restrict] = ACTIONS(1404), + [anon_sym___restrict__] = ACTIONS(1404), + [anon_sym__Atomic] = ACTIONS(1404), + [anon_sym__Noreturn] = ACTIONS(1404), + [anon_sym_noreturn] = ACTIONS(1404), + [sym_primitive_type] = ACTIONS(1404), + [anon_sym_enum] = ACTIONS(1404), + [anon_sym_struct] = ACTIONS(1404), + [anon_sym_union] = ACTIONS(1404), + [anon_sym_if] = ACTIONS(1404), + [anon_sym_else] = ACTIONS(1404), + [anon_sym_switch] = ACTIONS(1404), + [anon_sym_case] = ACTIONS(1404), + [anon_sym_default] = ACTIONS(1404), + [anon_sym_while] = ACTIONS(1404), + [anon_sym_do] = ACTIONS(1404), + [anon_sym_for] = ACTIONS(1404), + [anon_sym_return] = ACTIONS(1404), + [anon_sym_break] = ACTIONS(1404), + [anon_sym_continue] = ACTIONS(1404), + [anon_sym_goto] = ACTIONS(1404), + [anon_sym___try] = ACTIONS(1404), + [anon_sym___leave] = ACTIONS(1404), + [anon_sym_DASH_DASH] = ACTIONS(1406), + [anon_sym_PLUS_PLUS] = ACTIONS(1406), + [anon_sym_sizeof] = ACTIONS(1404), + [anon_sym___alignof__] = ACTIONS(1404), + [anon_sym___alignof] = ACTIONS(1404), + [anon_sym__alignof] = ACTIONS(1404), + [anon_sym_alignof] = ACTIONS(1404), + [anon_sym__Alignof] = ACTIONS(1404), + [anon_sym_offsetof] = ACTIONS(1404), + [anon_sym__Generic] = ACTIONS(1404), + [anon_sym_asm] = ACTIONS(1404), + [anon_sym___asm__] = ACTIONS(1404), + [sym_number_literal] = ACTIONS(1406), + [anon_sym_L_SQUOTE] = ACTIONS(1406), + [anon_sym_u_SQUOTE] = ACTIONS(1406), + [anon_sym_U_SQUOTE] = ACTIONS(1406), + [anon_sym_u8_SQUOTE] = ACTIONS(1406), + [anon_sym_SQUOTE] = ACTIONS(1406), + [anon_sym_L_DQUOTE] = ACTIONS(1406), + [anon_sym_u_DQUOTE] = ACTIONS(1406), + [anon_sym_U_DQUOTE] = ACTIONS(1406), + [anon_sym_u8_DQUOTE] = ACTIONS(1406), + [anon_sym_DQUOTE] = ACTIONS(1406), + [sym_true] = ACTIONS(1404), + [sym_false] = ACTIONS(1404), + [anon_sym_NULL] = ACTIONS(1404), + [anon_sym_nullptr] = ACTIONS(1404), [sym_comment] = ACTIONS(3), }, [256] = { - [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_LBRACK_LBRACK] = ACTIONS(1335), - [anon_sym___declspec] = 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), - [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_else] = 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_identifier] = ACTIONS(1400), + [aux_sym_preproc_include_token1] = ACTIONS(1400), + [aux_sym_preproc_def_token1] = ACTIONS(1400), + [aux_sym_preproc_if_token1] = ACTIONS(1400), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1400), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1400), + [sym_preproc_directive] = ACTIONS(1400), + [anon_sym_LPAREN2] = ACTIONS(1402), + [anon_sym_BANG] = ACTIONS(1402), + [anon_sym_TILDE] = ACTIONS(1402), + [anon_sym_DASH] = ACTIONS(1400), + [anon_sym_PLUS] = ACTIONS(1400), + [anon_sym_STAR] = ACTIONS(1402), + [anon_sym_AMP] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(1402), + [anon_sym___extension__] = ACTIONS(1400), + [anon_sym_typedef] = ACTIONS(1400), + [anon_sym_extern] = ACTIONS(1400), + [anon_sym___attribute__] = ACTIONS(1400), + [anon_sym___scanf] = ACTIONS(1400), + [anon_sym___printf] = ACTIONS(1400), + [anon_sym___read_mostly] = ACTIONS(1400), + [anon_sym___must_hold] = ACTIONS(1400), + [anon_sym___ro_after_init] = ACTIONS(1400), + [anon_sym___init] = ACTIONS(1400), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1402), + [anon_sym___declspec] = ACTIONS(1400), + [anon_sym___cdecl] = ACTIONS(1400), + [anon_sym___clrcall] = ACTIONS(1400), + [anon_sym___stdcall] = ACTIONS(1400), + [anon_sym___fastcall] = ACTIONS(1400), + [anon_sym___thiscall] = ACTIONS(1400), + [anon_sym___vectorcall] = ACTIONS(1400), + [anon_sym_LBRACE] = ACTIONS(1402), + [anon_sym_RBRACE] = ACTIONS(1402), + [anon_sym_signed] = ACTIONS(1400), + [anon_sym_unsigned] = ACTIONS(1400), + [anon_sym_long] = ACTIONS(1400), + [anon_sym_short] = ACTIONS(1400), + [anon_sym_static] = ACTIONS(1400), + [anon_sym_auto] = ACTIONS(1400), + [anon_sym_register] = ACTIONS(1400), + [anon_sym_inline] = ACTIONS(1400), + [anon_sym___inline] = ACTIONS(1400), + [anon_sym___inline__] = ACTIONS(1400), + [anon_sym___forceinline] = ACTIONS(1400), + [anon_sym_thread_local] = ACTIONS(1400), + [anon_sym___thread] = ACTIONS(1400), + [anon_sym_const] = ACTIONS(1400), + [anon_sym_constexpr] = ACTIONS(1400), + [anon_sym_volatile] = ACTIONS(1400), + [anon_sym_restrict] = ACTIONS(1400), + [anon_sym___restrict__] = ACTIONS(1400), + [anon_sym__Atomic] = ACTIONS(1400), + [anon_sym__Noreturn] = ACTIONS(1400), + [anon_sym_noreturn] = ACTIONS(1400), + [sym_primitive_type] = ACTIONS(1400), + [anon_sym_enum] = ACTIONS(1400), + [anon_sym_struct] = ACTIONS(1400), + [anon_sym_union] = ACTIONS(1400), + [anon_sym_if] = ACTIONS(1400), + [anon_sym_else] = ACTIONS(1400), + [anon_sym_switch] = ACTIONS(1400), + [anon_sym_case] = ACTIONS(1400), + [anon_sym_default] = ACTIONS(1400), + [anon_sym_while] = ACTIONS(1400), + [anon_sym_do] = ACTIONS(1400), + [anon_sym_for] = ACTIONS(1400), + [anon_sym_return] = ACTIONS(1400), + [anon_sym_break] = ACTIONS(1400), + [anon_sym_continue] = ACTIONS(1400), + [anon_sym_goto] = ACTIONS(1400), + [anon_sym___try] = ACTIONS(1400), + [anon_sym___leave] = ACTIONS(1400), + [anon_sym_DASH_DASH] = ACTIONS(1402), + [anon_sym_PLUS_PLUS] = ACTIONS(1402), + [anon_sym_sizeof] = ACTIONS(1400), + [anon_sym___alignof__] = ACTIONS(1400), + [anon_sym___alignof] = ACTIONS(1400), + [anon_sym__alignof] = ACTIONS(1400), + [anon_sym_alignof] = ACTIONS(1400), + [anon_sym__Alignof] = ACTIONS(1400), + [anon_sym_offsetof] = ACTIONS(1400), + [anon_sym__Generic] = ACTIONS(1400), + [anon_sym_asm] = ACTIONS(1400), + [anon_sym___asm__] = ACTIONS(1400), + [sym_number_literal] = ACTIONS(1402), + [anon_sym_L_SQUOTE] = ACTIONS(1402), + [anon_sym_u_SQUOTE] = ACTIONS(1402), + [anon_sym_U_SQUOTE] = ACTIONS(1402), + [anon_sym_u8_SQUOTE] = ACTIONS(1402), + [anon_sym_SQUOTE] = ACTIONS(1402), + [anon_sym_L_DQUOTE] = ACTIONS(1402), + [anon_sym_u_DQUOTE] = ACTIONS(1402), + [anon_sym_U_DQUOTE] = ACTIONS(1402), + [anon_sym_u8_DQUOTE] = ACTIONS(1402), + [anon_sym_DQUOTE] = ACTIONS(1402), + [sym_true] = ACTIONS(1400), + [sym_false] = ACTIONS(1400), + [anon_sym_NULL] = ACTIONS(1400), + [anon_sym_nullptr] = ACTIONS(1400), [sym_comment] = ACTIONS(3), }, [257] = { - [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_LBRACK_LBRACK] = ACTIONS(1339), - [anon_sym___declspec] = 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), - [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_else] = 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), + [ts_builtin_sym_end] = ACTIONS(1338), + [sym_identifier] = ACTIONS(1336), + [aux_sym_preproc_include_token1] = ACTIONS(1336), + [aux_sym_preproc_def_token1] = ACTIONS(1336), + [aux_sym_preproc_if_token1] = ACTIONS(1336), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1336), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1336), + [sym_preproc_directive] = ACTIONS(1336), + [anon_sym_LPAREN2] = ACTIONS(1338), + [anon_sym_BANG] = ACTIONS(1338), + [anon_sym_TILDE] = ACTIONS(1338), + [anon_sym_DASH] = ACTIONS(1336), + [anon_sym_PLUS] = ACTIONS(1336), + [anon_sym_STAR] = ACTIONS(1338), + [anon_sym_AMP] = ACTIONS(1338), + [anon_sym_SEMI] = ACTIONS(1338), + [anon_sym___extension__] = ACTIONS(1336), + [anon_sym_typedef] = ACTIONS(1336), + [anon_sym_extern] = ACTIONS(1336), + [anon_sym___attribute__] = ACTIONS(1336), + [anon_sym___scanf] = ACTIONS(1336), + [anon_sym___printf] = ACTIONS(1336), + [anon_sym___read_mostly] = ACTIONS(1336), + [anon_sym___must_hold] = ACTIONS(1336), + [anon_sym___ro_after_init] = ACTIONS(1336), + [anon_sym___init] = ACTIONS(1336), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1338), + [anon_sym___declspec] = ACTIONS(1336), + [anon_sym___cdecl] = ACTIONS(1336), + [anon_sym___clrcall] = ACTIONS(1336), + [anon_sym___stdcall] = ACTIONS(1336), + [anon_sym___fastcall] = ACTIONS(1336), + [anon_sym___thiscall] = ACTIONS(1336), + [anon_sym___vectorcall] = ACTIONS(1336), + [anon_sym_LBRACE] = ACTIONS(1338), + [anon_sym_signed] = ACTIONS(1336), + [anon_sym_unsigned] = ACTIONS(1336), + [anon_sym_long] = ACTIONS(1336), + [anon_sym_short] = ACTIONS(1336), + [anon_sym_static] = ACTIONS(1336), + [anon_sym_auto] = ACTIONS(1336), + [anon_sym_register] = ACTIONS(1336), + [anon_sym_inline] = ACTIONS(1336), + [anon_sym___inline] = ACTIONS(1336), + [anon_sym___inline__] = ACTIONS(1336), + [anon_sym___forceinline] = ACTIONS(1336), + [anon_sym_thread_local] = ACTIONS(1336), + [anon_sym___thread] = ACTIONS(1336), + [anon_sym_const] = ACTIONS(1336), + [anon_sym_constexpr] = ACTIONS(1336), + [anon_sym_volatile] = ACTIONS(1336), + [anon_sym_restrict] = ACTIONS(1336), + [anon_sym___restrict__] = ACTIONS(1336), + [anon_sym__Atomic] = ACTIONS(1336), + [anon_sym__Noreturn] = ACTIONS(1336), + [anon_sym_noreturn] = ACTIONS(1336), + [sym_primitive_type] = ACTIONS(1336), + [anon_sym_enum] = ACTIONS(1336), + [anon_sym_struct] = ACTIONS(1336), + [anon_sym_union] = ACTIONS(1336), + [anon_sym_if] = ACTIONS(1336), + [anon_sym_else] = ACTIONS(1336), + [anon_sym_switch] = ACTIONS(1336), + [anon_sym_case] = ACTIONS(1336), + [anon_sym_default] = ACTIONS(1336), + [anon_sym_while] = ACTIONS(1336), + [anon_sym_do] = ACTIONS(1336), + [anon_sym_for] = ACTIONS(1336), + [anon_sym_return] = ACTIONS(1336), + [anon_sym_break] = ACTIONS(1336), + [anon_sym_continue] = ACTIONS(1336), + [anon_sym_goto] = ACTIONS(1336), + [anon_sym___try] = ACTIONS(1336), + [anon_sym___leave] = ACTIONS(1336), + [anon_sym_DASH_DASH] = ACTIONS(1338), + [anon_sym_PLUS_PLUS] = ACTIONS(1338), + [anon_sym_sizeof] = ACTIONS(1336), + [anon_sym___alignof__] = ACTIONS(1336), + [anon_sym___alignof] = ACTIONS(1336), + [anon_sym__alignof] = ACTIONS(1336), + [anon_sym_alignof] = ACTIONS(1336), + [anon_sym__Alignof] = ACTIONS(1336), + [anon_sym_offsetof] = ACTIONS(1336), + [anon_sym__Generic] = ACTIONS(1336), + [anon_sym_asm] = ACTIONS(1336), + [anon_sym___asm__] = ACTIONS(1336), + [sym_number_literal] = ACTIONS(1338), + [anon_sym_L_SQUOTE] = ACTIONS(1338), + [anon_sym_u_SQUOTE] = ACTIONS(1338), + [anon_sym_U_SQUOTE] = ACTIONS(1338), + [anon_sym_u8_SQUOTE] = ACTIONS(1338), + [anon_sym_SQUOTE] = ACTIONS(1338), + [anon_sym_L_DQUOTE] = ACTIONS(1338), + [anon_sym_u_DQUOTE] = ACTIONS(1338), + [anon_sym_U_DQUOTE] = ACTIONS(1338), + [anon_sym_u8_DQUOTE] = ACTIONS(1338), + [anon_sym_DQUOTE] = ACTIONS(1338), + [sym_true] = ACTIONS(1336), + [sym_false] = ACTIONS(1336), + [anon_sym_NULL] = ACTIONS(1336), + [anon_sym_nullptr] = ACTIONS(1336), [sym_comment] = ACTIONS(3), }, [258] = { - [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_LBRACK_LBRACK] = ACTIONS(1343), - [anon_sym___declspec] = 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), - [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_else] = 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), + [ts_builtin_sym_end] = ACTIONS(1322), + [sym_identifier] = ACTIONS(1320), + [aux_sym_preproc_include_token1] = ACTIONS(1320), + [aux_sym_preproc_def_token1] = ACTIONS(1320), + [aux_sym_preproc_if_token1] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1320), + [sym_preproc_directive] = ACTIONS(1320), + [anon_sym_LPAREN2] = ACTIONS(1322), + [anon_sym_BANG] = ACTIONS(1322), + [anon_sym_TILDE] = ACTIONS(1322), + [anon_sym_DASH] = ACTIONS(1320), + [anon_sym_PLUS] = ACTIONS(1320), + [anon_sym_STAR] = ACTIONS(1322), + [anon_sym_AMP] = ACTIONS(1322), + [anon_sym_SEMI] = ACTIONS(1322), + [anon_sym___extension__] = ACTIONS(1320), + [anon_sym_typedef] = ACTIONS(1320), + [anon_sym_extern] = ACTIONS(1320), + [anon_sym___attribute__] = ACTIONS(1320), + [anon_sym___scanf] = ACTIONS(1320), + [anon_sym___printf] = ACTIONS(1320), + [anon_sym___read_mostly] = ACTIONS(1320), + [anon_sym___must_hold] = ACTIONS(1320), + [anon_sym___ro_after_init] = ACTIONS(1320), + [anon_sym___init] = ACTIONS(1320), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1322), + [anon_sym___declspec] = ACTIONS(1320), + [anon_sym___cdecl] = ACTIONS(1320), + [anon_sym___clrcall] = ACTIONS(1320), + [anon_sym___stdcall] = ACTIONS(1320), + [anon_sym___fastcall] = ACTIONS(1320), + [anon_sym___thiscall] = ACTIONS(1320), + [anon_sym___vectorcall] = ACTIONS(1320), + [anon_sym_LBRACE] = ACTIONS(1322), + [anon_sym_signed] = ACTIONS(1320), + [anon_sym_unsigned] = ACTIONS(1320), + [anon_sym_long] = ACTIONS(1320), + [anon_sym_short] = ACTIONS(1320), + [anon_sym_static] = ACTIONS(1320), + [anon_sym_auto] = ACTIONS(1320), + [anon_sym_register] = ACTIONS(1320), + [anon_sym_inline] = ACTIONS(1320), + [anon_sym___inline] = ACTIONS(1320), + [anon_sym___inline__] = ACTIONS(1320), + [anon_sym___forceinline] = ACTIONS(1320), + [anon_sym_thread_local] = ACTIONS(1320), + [anon_sym___thread] = ACTIONS(1320), + [anon_sym_const] = ACTIONS(1320), + [anon_sym_constexpr] = ACTIONS(1320), + [anon_sym_volatile] = ACTIONS(1320), + [anon_sym_restrict] = ACTIONS(1320), + [anon_sym___restrict__] = ACTIONS(1320), + [anon_sym__Atomic] = ACTIONS(1320), + [anon_sym__Noreturn] = ACTIONS(1320), + [anon_sym_noreturn] = ACTIONS(1320), + [sym_primitive_type] = ACTIONS(1320), + [anon_sym_enum] = ACTIONS(1320), + [anon_sym_struct] = ACTIONS(1320), + [anon_sym_union] = ACTIONS(1320), + [anon_sym_if] = ACTIONS(1320), + [anon_sym_else] = ACTIONS(1320), + [anon_sym_switch] = ACTIONS(1320), + [anon_sym_case] = ACTIONS(1320), + [anon_sym_default] = ACTIONS(1320), + [anon_sym_while] = ACTIONS(1320), + [anon_sym_do] = ACTIONS(1320), + [anon_sym_for] = ACTIONS(1320), + [anon_sym_return] = ACTIONS(1320), + [anon_sym_break] = ACTIONS(1320), + [anon_sym_continue] = ACTIONS(1320), + [anon_sym_goto] = ACTIONS(1320), + [anon_sym___try] = ACTIONS(1320), + [anon_sym___leave] = ACTIONS(1320), + [anon_sym_DASH_DASH] = ACTIONS(1322), + [anon_sym_PLUS_PLUS] = ACTIONS(1322), + [anon_sym_sizeof] = ACTIONS(1320), + [anon_sym___alignof__] = ACTIONS(1320), + [anon_sym___alignof] = ACTIONS(1320), + [anon_sym__alignof] = ACTIONS(1320), + [anon_sym_alignof] = ACTIONS(1320), + [anon_sym__Alignof] = ACTIONS(1320), + [anon_sym_offsetof] = ACTIONS(1320), + [anon_sym__Generic] = ACTIONS(1320), + [anon_sym_asm] = ACTIONS(1320), + [anon_sym___asm__] = ACTIONS(1320), + [sym_number_literal] = ACTIONS(1322), + [anon_sym_L_SQUOTE] = ACTIONS(1322), + [anon_sym_u_SQUOTE] = ACTIONS(1322), + [anon_sym_U_SQUOTE] = ACTIONS(1322), + [anon_sym_u8_SQUOTE] = ACTIONS(1322), + [anon_sym_SQUOTE] = ACTIONS(1322), + [anon_sym_L_DQUOTE] = ACTIONS(1322), + [anon_sym_u_DQUOTE] = ACTIONS(1322), + [anon_sym_U_DQUOTE] = ACTIONS(1322), + [anon_sym_u8_DQUOTE] = ACTIONS(1322), + [anon_sym_DQUOTE] = ACTIONS(1322), + [sym_true] = ACTIONS(1320), + [sym_false] = ACTIONS(1320), + [anon_sym_NULL] = ACTIONS(1320), + [anon_sym_nullptr] = ACTIONS(1320), [sym_comment] = ACTIONS(3), }, [259] = { - [ts_builtin_sym_end] = ACTIONS(1407), - [sym_identifier] = ACTIONS(1405), - [aux_sym_preproc_include_token1] = ACTIONS(1405), - [aux_sym_preproc_def_token1] = ACTIONS(1405), - [aux_sym_preproc_if_token1] = ACTIONS(1405), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1405), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1405), - [sym_preproc_directive] = ACTIONS(1405), - [anon_sym_LPAREN2] = ACTIONS(1407), - [anon_sym_BANG] = ACTIONS(1407), - [anon_sym_TILDE] = ACTIONS(1407), - [anon_sym_DASH] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1405), - [anon_sym_STAR] = ACTIONS(1407), - [anon_sym_AMP] = ACTIONS(1407), - [anon_sym_SEMI] = ACTIONS(1407), - [anon_sym___extension__] = ACTIONS(1405), - [anon_sym_typedef] = ACTIONS(1405), - [anon_sym_extern] = ACTIONS(1405), - [anon_sym___attribute__] = ACTIONS(1405), - [anon_sym___scanf] = ACTIONS(1405), - [anon_sym___printf] = ACTIONS(1405), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1407), - [anon_sym___declspec] = ACTIONS(1405), - [anon_sym___cdecl] = ACTIONS(1405), - [anon_sym___clrcall] = ACTIONS(1405), - [anon_sym___stdcall] = ACTIONS(1405), - [anon_sym___fastcall] = ACTIONS(1405), - [anon_sym___thiscall] = ACTIONS(1405), - [anon_sym___vectorcall] = ACTIONS(1405), - [anon_sym_LBRACE] = ACTIONS(1407), - [anon_sym_signed] = ACTIONS(1405), - [anon_sym_unsigned] = ACTIONS(1405), - [anon_sym_long] = ACTIONS(1405), - [anon_sym_short] = ACTIONS(1405), - [anon_sym_static] = ACTIONS(1405), - [anon_sym_auto] = ACTIONS(1405), - [anon_sym_register] = ACTIONS(1405), - [anon_sym_inline] = ACTIONS(1405), - [anon_sym___inline] = ACTIONS(1405), - [anon_sym___inline__] = ACTIONS(1405), - [anon_sym___forceinline] = ACTIONS(1405), - [anon_sym_thread_local] = ACTIONS(1405), - [anon_sym___thread] = ACTIONS(1405), - [anon_sym_const] = ACTIONS(1405), - [anon_sym_constexpr] = ACTIONS(1405), - [anon_sym_volatile] = ACTIONS(1405), - [anon_sym_restrict] = ACTIONS(1405), - [anon_sym___restrict__] = ACTIONS(1405), - [anon_sym__Atomic] = ACTIONS(1405), - [anon_sym__Noreturn] = ACTIONS(1405), - [anon_sym_noreturn] = ACTIONS(1405), - [sym_primitive_type] = ACTIONS(1405), - [anon_sym_enum] = ACTIONS(1405), - [anon_sym_struct] = ACTIONS(1405), - [anon_sym_union] = ACTIONS(1405), - [anon_sym_if] = ACTIONS(1405), - [anon_sym_else] = ACTIONS(1405), - [anon_sym_switch] = ACTIONS(1405), - [anon_sym_case] = ACTIONS(1405), - [anon_sym_default] = ACTIONS(1405), - [anon_sym_while] = ACTIONS(1405), - [anon_sym_do] = ACTIONS(1405), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_return] = ACTIONS(1405), - [anon_sym_break] = ACTIONS(1405), - [anon_sym_continue] = ACTIONS(1405), - [anon_sym_goto] = ACTIONS(1405), - [anon_sym___try] = ACTIONS(1405), - [anon_sym___leave] = ACTIONS(1405), - [anon_sym_DASH_DASH] = ACTIONS(1407), - [anon_sym_PLUS_PLUS] = ACTIONS(1407), - [anon_sym_sizeof] = ACTIONS(1405), - [anon_sym___alignof__] = ACTIONS(1405), - [anon_sym___alignof] = ACTIONS(1405), - [anon_sym__alignof] = ACTIONS(1405), - [anon_sym_alignof] = ACTIONS(1405), - [anon_sym__Alignof] = ACTIONS(1405), - [anon_sym_offsetof] = ACTIONS(1405), - [anon_sym__Generic] = ACTIONS(1405), - [anon_sym_asm] = ACTIONS(1405), - [anon_sym___asm__] = ACTIONS(1405), - [sym_number_literal] = ACTIONS(1407), - [anon_sym_L_SQUOTE] = ACTIONS(1407), - [anon_sym_u_SQUOTE] = ACTIONS(1407), - [anon_sym_U_SQUOTE] = ACTIONS(1407), - [anon_sym_u8_SQUOTE] = ACTIONS(1407), - [anon_sym_SQUOTE] = ACTIONS(1407), - [anon_sym_L_DQUOTE] = ACTIONS(1407), - [anon_sym_u_DQUOTE] = ACTIONS(1407), - [anon_sym_U_DQUOTE] = ACTIONS(1407), - [anon_sym_u8_DQUOTE] = ACTIONS(1407), - [anon_sym_DQUOTE] = ACTIONS(1407), - [sym_true] = ACTIONS(1405), - [sym_false] = ACTIONS(1405), - [anon_sym_NULL] = ACTIONS(1405), - [anon_sym_nullptr] = ACTIONS(1405), + [ts_builtin_sym_end] = ACTIONS(1322), + [sym_identifier] = ACTIONS(1320), + [aux_sym_preproc_include_token1] = ACTIONS(1320), + [aux_sym_preproc_def_token1] = ACTIONS(1320), + [aux_sym_preproc_if_token1] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1320), + [sym_preproc_directive] = ACTIONS(1320), + [anon_sym_LPAREN2] = ACTIONS(1322), + [anon_sym_BANG] = ACTIONS(1322), + [anon_sym_TILDE] = ACTIONS(1322), + [anon_sym_DASH] = ACTIONS(1320), + [anon_sym_PLUS] = ACTIONS(1320), + [anon_sym_STAR] = ACTIONS(1322), + [anon_sym_AMP] = ACTIONS(1322), + [anon_sym_SEMI] = ACTIONS(1322), + [anon_sym___extension__] = ACTIONS(1320), + [anon_sym_typedef] = ACTIONS(1320), + [anon_sym_extern] = ACTIONS(1320), + [anon_sym___attribute__] = ACTIONS(1320), + [anon_sym___scanf] = ACTIONS(1320), + [anon_sym___printf] = ACTIONS(1320), + [anon_sym___read_mostly] = ACTIONS(1320), + [anon_sym___must_hold] = ACTIONS(1320), + [anon_sym___ro_after_init] = ACTIONS(1320), + [anon_sym___init] = ACTIONS(1320), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1322), + [anon_sym___declspec] = ACTIONS(1320), + [anon_sym___cdecl] = ACTIONS(1320), + [anon_sym___clrcall] = ACTIONS(1320), + [anon_sym___stdcall] = ACTIONS(1320), + [anon_sym___fastcall] = ACTIONS(1320), + [anon_sym___thiscall] = ACTIONS(1320), + [anon_sym___vectorcall] = ACTIONS(1320), + [anon_sym_LBRACE] = ACTIONS(1322), + [anon_sym_signed] = ACTIONS(1320), + [anon_sym_unsigned] = ACTIONS(1320), + [anon_sym_long] = ACTIONS(1320), + [anon_sym_short] = ACTIONS(1320), + [anon_sym_static] = ACTIONS(1320), + [anon_sym_auto] = ACTIONS(1320), + [anon_sym_register] = ACTIONS(1320), + [anon_sym_inline] = ACTIONS(1320), + [anon_sym___inline] = ACTIONS(1320), + [anon_sym___inline__] = ACTIONS(1320), + [anon_sym___forceinline] = ACTIONS(1320), + [anon_sym_thread_local] = ACTIONS(1320), + [anon_sym___thread] = ACTIONS(1320), + [anon_sym_const] = ACTIONS(1320), + [anon_sym_constexpr] = ACTIONS(1320), + [anon_sym_volatile] = ACTIONS(1320), + [anon_sym_restrict] = ACTIONS(1320), + [anon_sym___restrict__] = ACTIONS(1320), + [anon_sym__Atomic] = ACTIONS(1320), + [anon_sym__Noreturn] = ACTIONS(1320), + [anon_sym_noreturn] = ACTIONS(1320), + [sym_primitive_type] = ACTIONS(1320), + [anon_sym_enum] = ACTIONS(1320), + [anon_sym_struct] = ACTIONS(1320), + [anon_sym_union] = ACTIONS(1320), + [anon_sym_if] = ACTIONS(1320), + [anon_sym_else] = ACTIONS(1320), + [anon_sym_switch] = ACTIONS(1320), + [anon_sym_case] = ACTIONS(1320), + [anon_sym_default] = ACTIONS(1320), + [anon_sym_while] = ACTIONS(1320), + [anon_sym_do] = ACTIONS(1320), + [anon_sym_for] = ACTIONS(1320), + [anon_sym_return] = ACTIONS(1320), + [anon_sym_break] = ACTIONS(1320), + [anon_sym_continue] = ACTIONS(1320), + [anon_sym_goto] = ACTIONS(1320), + [anon_sym___try] = ACTIONS(1320), + [anon_sym___leave] = ACTIONS(1320), + [anon_sym_DASH_DASH] = ACTIONS(1322), + [anon_sym_PLUS_PLUS] = ACTIONS(1322), + [anon_sym_sizeof] = ACTIONS(1320), + [anon_sym___alignof__] = ACTIONS(1320), + [anon_sym___alignof] = ACTIONS(1320), + [anon_sym__alignof] = ACTIONS(1320), + [anon_sym_alignof] = ACTIONS(1320), + [anon_sym__Alignof] = ACTIONS(1320), + [anon_sym_offsetof] = ACTIONS(1320), + [anon_sym__Generic] = ACTIONS(1320), + [anon_sym_asm] = ACTIONS(1320), + [anon_sym___asm__] = ACTIONS(1320), + [sym_number_literal] = ACTIONS(1322), + [anon_sym_L_SQUOTE] = ACTIONS(1322), + [anon_sym_u_SQUOTE] = ACTIONS(1322), + [anon_sym_U_SQUOTE] = ACTIONS(1322), + [anon_sym_u8_SQUOTE] = ACTIONS(1322), + [anon_sym_SQUOTE] = ACTIONS(1322), + [anon_sym_L_DQUOTE] = ACTIONS(1322), + [anon_sym_u_DQUOTE] = ACTIONS(1322), + [anon_sym_U_DQUOTE] = ACTIONS(1322), + [anon_sym_u8_DQUOTE] = ACTIONS(1322), + [anon_sym_DQUOTE] = ACTIONS(1322), + [sym_true] = ACTIONS(1320), + [sym_false] = ACTIONS(1320), + [anon_sym_NULL] = ACTIONS(1320), + [anon_sym_nullptr] = ACTIONS(1320), [sym_comment] = ACTIONS(3), }, [260] = { - [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_LBRACK_LBRACK] = ACTIONS(1351), - [anon_sym___declspec] = 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), - [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_else] = 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_identifier] = ACTIONS(1320), + [aux_sym_preproc_include_token1] = ACTIONS(1320), + [aux_sym_preproc_def_token1] = ACTIONS(1320), + [aux_sym_preproc_if_token1] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1320), + [sym_preproc_directive] = ACTIONS(1320), + [anon_sym_LPAREN2] = ACTIONS(1322), + [anon_sym_BANG] = ACTIONS(1322), + [anon_sym_TILDE] = ACTIONS(1322), + [anon_sym_DASH] = ACTIONS(1320), + [anon_sym_PLUS] = ACTIONS(1320), + [anon_sym_STAR] = ACTIONS(1322), + [anon_sym_AMP] = ACTIONS(1322), + [anon_sym_SEMI] = ACTIONS(1322), + [anon_sym___extension__] = ACTIONS(1320), + [anon_sym_typedef] = ACTIONS(1320), + [anon_sym_extern] = ACTIONS(1320), + [anon_sym___attribute__] = ACTIONS(1320), + [anon_sym___scanf] = ACTIONS(1320), + [anon_sym___printf] = ACTIONS(1320), + [anon_sym___read_mostly] = ACTIONS(1320), + [anon_sym___must_hold] = ACTIONS(1320), + [anon_sym___ro_after_init] = ACTIONS(1320), + [anon_sym___init] = ACTIONS(1320), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1322), + [anon_sym___declspec] = ACTIONS(1320), + [anon_sym___cdecl] = ACTIONS(1320), + [anon_sym___clrcall] = ACTIONS(1320), + [anon_sym___stdcall] = ACTIONS(1320), + [anon_sym___fastcall] = ACTIONS(1320), + [anon_sym___thiscall] = ACTIONS(1320), + [anon_sym___vectorcall] = ACTIONS(1320), + [anon_sym_LBRACE] = ACTIONS(1322), + [anon_sym_RBRACE] = ACTIONS(1322), + [anon_sym_signed] = ACTIONS(1320), + [anon_sym_unsigned] = ACTIONS(1320), + [anon_sym_long] = ACTIONS(1320), + [anon_sym_short] = ACTIONS(1320), + [anon_sym_static] = ACTIONS(1320), + [anon_sym_auto] = ACTIONS(1320), + [anon_sym_register] = ACTIONS(1320), + [anon_sym_inline] = ACTIONS(1320), + [anon_sym___inline] = ACTIONS(1320), + [anon_sym___inline__] = ACTIONS(1320), + [anon_sym___forceinline] = ACTIONS(1320), + [anon_sym_thread_local] = ACTIONS(1320), + [anon_sym___thread] = ACTIONS(1320), + [anon_sym_const] = ACTIONS(1320), + [anon_sym_constexpr] = ACTIONS(1320), + [anon_sym_volatile] = ACTIONS(1320), + [anon_sym_restrict] = ACTIONS(1320), + [anon_sym___restrict__] = ACTIONS(1320), + [anon_sym__Atomic] = ACTIONS(1320), + [anon_sym__Noreturn] = ACTIONS(1320), + [anon_sym_noreturn] = ACTIONS(1320), + [sym_primitive_type] = ACTIONS(1320), + [anon_sym_enum] = ACTIONS(1320), + [anon_sym_struct] = ACTIONS(1320), + [anon_sym_union] = ACTIONS(1320), + [anon_sym_if] = ACTIONS(1320), + [anon_sym_else] = ACTIONS(1320), + [anon_sym_switch] = ACTIONS(1320), + [anon_sym_case] = ACTIONS(1320), + [anon_sym_default] = ACTIONS(1320), + [anon_sym_while] = ACTIONS(1320), + [anon_sym_do] = ACTIONS(1320), + [anon_sym_for] = ACTIONS(1320), + [anon_sym_return] = ACTIONS(1320), + [anon_sym_break] = ACTIONS(1320), + [anon_sym_continue] = ACTIONS(1320), + [anon_sym_goto] = ACTIONS(1320), + [anon_sym___try] = ACTIONS(1320), + [anon_sym___leave] = ACTIONS(1320), + [anon_sym_DASH_DASH] = ACTIONS(1322), + [anon_sym_PLUS_PLUS] = ACTIONS(1322), + [anon_sym_sizeof] = ACTIONS(1320), + [anon_sym___alignof__] = ACTIONS(1320), + [anon_sym___alignof] = ACTIONS(1320), + [anon_sym__alignof] = ACTIONS(1320), + [anon_sym_alignof] = ACTIONS(1320), + [anon_sym__Alignof] = ACTIONS(1320), + [anon_sym_offsetof] = ACTIONS(1320), + [anon_sym__Generic] = ACTIONS(1320), + [anon_sym_asm] = ACTIONS(1320), + [anon_sym___asm__] = ACTIONS(1320), + [sym_number_literal] = ACTIONS(1322), + [anon_sym_L_SQUOTE] = ACTIONS(1322), + [anon_sym_u_SQUOTE] = ACTIONS(1322), + [anon_sym_U_SQUOTE] = ACTIONS(1322), + [anon_sym_u8_SQUOTE] = ACTIONS(1322), + [anon_sym_SQUOTE] = ACTIONS(1322), + [anon_sym_L_DQUOTE] = ACTIONS(1322), + [anon_sym_u_DQUOTE] = ACTIONS(1322), + [anon_sym_U_DQUOTE] = ACTIONS(1322), + [anon_sym_u8_DQUOTE] = ACTIONS(1322), + [anon_sym_DQUOTE] = ACTIONS(1322), + [sym_true] = ACTIONS(1320), + [sym_false] = ACTIONS(1320), + [anon_sym_NULL] = ACTIONS(1320), + [anon_sym_nullptr] = ACTIONS(1320), [sym_comment] = ACTIONS(3), }, [261] = { - [ts_builtin_sym_end] = ACTIONS(1411), - [sym_identifier] = ACTIONS(1409), - [aux_sym_preproc_include_token1] = ACTIONS(1409), - [aux_sym_preproc_def_token1] = ACTIONS(1409), - [aux_sym_preproc_if_token1] = ACTIONS(1409), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1409), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1409), - [sym_preproc_directive] = ACTIONS(1409), - [anon_sym_LPAREN2] = ACTIONS(1411), - [anon_sym_BANG] = ACTIONS(1411), - [anon_sym_TILDE] = ACTIONS(1411), - [anon_sym_DASH] = ACTIONS(1409), - [anon_sym_PLUS] = ACTIONS(1409), - [anon_sym_STAR] = ACTIONS(1411), - [anon_sym_AMP] = ACTIONS(1411), - [anon_sym_SEMI] = ACTIONS(1411), - [anon_sym___extension__] = ACTIONS(1409), - [anon_sym_typedef] = ACTIONS(1409), - [anon_sym_extern] = ACTIONS(1409), - [anon_sym___attribute__] = ACTIONS(1409), - [anon_sym___scanf] = ACTIONS(1409), - [anon_sym___printf] = ACTIONS(1409), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1411), - [anon_sym___declspec] = ACTIONS(1409), - [anon_sym___cdecl] = ACTIONS(1409), - [anon_sym___clrcall] = ACTIONS(1409), - [anon_sym___stdcall] = ACTIONS(1409), - [anon_sym___fastcall] = ACTIONS(1409), - [anon_sym___thiscall] = ACTIONS(1409), - [anon_sym___vectorcall] = ACTIONS(1409), - [anon_sym_LBRACE] = ACTIONS(1411), - [anon_sym_signed] = ACTIONS(1409), - [anon_sym_unsigned] = ACTIONS(1409), - [anon_sym_long] = ACTIONS(1409), - [anon_sym_short] = ACTIONS(1409), - [anon_sym_static] = ACTIONS(1409), - [anon_sym_auto] = ACTIONS(1409), - [anon_sym_register] = ACTIONS(1409), - [anon_sym_inline] = ACTIONS(1409), - [anon_sym___inline] = ACTIONS(1409), - [anon_sym___inline__] = ACTIONS(1409), - [anon_sym___forceinline] = ACTIONS(1409), - [anon_sym_thread_local] = ACTIONS(1409), - [anon_sym___thread] = ACTIONS(1409), - [anon_sym_const] = ACTIONS(1409), - [anon_sym_constexpr] = ACTIONS(1409), - [anon_sym_volatile] = ACTIONS(1409), - [anon_sym_restrict] = ACTIONS(1409), - [anon_sym___restrict__] = ACTIONS(1409), - [anon_sym__Atomic] = ACTIONS(1409), - [anon_sym__Noreturn] = ACTIONS(1409), - [anon_sym_noreturn] = ACTIONS(1409), - [sym_primitive_type] = ACTIONS(1409), - [anon_sym_enum] = ACTIONS(1409), - [anon_sym_struct] = ACTIONS(1409), - [anon_sym_union] = ACTIONS(1409), - [anon_sym_if] = ACTIONS(1409), - [anon_sym_else] = ACTIONS(1409), - [anon_sym_switch] = ACTIONS(1409), - [anon_sym_case] = ACTIONS(1409), - [anon_sym_default] = ACTIONS(1409), - [anon_sym_while] = ACTIONS(1409), - [anon_sym_do] = ACTIONS(1409), - [anon_sym_for] = ACTIONS(1409), - [anon_sym_return] = ACTIONS(1409), - [anon_sym_break] = ACTIONS(1409), - [anon_sym_continue] = ACTIONS(1409), - [anon_sym_goto] = ACTIONS(1409), - [anon_sym___try] = ACTIONS(1409), - [anon_sym___leave] = ACTIONS(1409), - [anon_sym_DASH_DASH] = ACTIONS(1411), - [anon_sym_PLUS_PLUS] = ACTIONS(1411), - [anon_sym_sizeof] = ACTIONS(1409), - [anon_sym___alignof__] = ACTIONS(1409), - [anon_sym___alignof] = ACTIONS(1409), - [anon_sym__alignof] = ACTIONS(1409), - [anon_sym_alignof] = ACTIONS(1409), - [anon_sym__Alignof] = ACTIONS(1409), - [anon_sym_offsetof] = ACTIONS(1409), - [anon_sym__Generic] = ACTIONS(1409), - [anon_sym_asm] = ACTIONS(1409), - [anon_sym___asm__] = ACTIONS(1409), - [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(1409), - [sym_false] = ACTIONS(1409), - [anon_sym_NULL] = ACTIONS(1409), - [anon_sym_nullptr] = ACTIONS(1409), + [sym_identifier] = ACTIONS(1348), + [aux_sym_preproc_include_token1] = ACTIONS(1348), + [aux_sym_preproc_def_token1] = ACTIONS(1348), + [aux_sym_preproc_if_token1] = ACTIONS(1348), + [aux_sym_preproc_if_token2] = ACTIONS(1348), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1348), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1348), + [sym_preproc_directive] = ACTIONS(1348), + [anon_sym_LPAREN2] = ACTIONS(1350), + [anon_sym_BANG] = ACTIONS(1350), + [anon_sym_TILDE] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(1348), + [anon_sym_PLUS] = ACTIONS(1348), + [anon_sym_STAR] = ACTIONS(1350), + [anon_sym_AMP] = ACTIONS(1350), + [anon_sym_SEMI] = ACTIONS(1350), + [anon_sym___extension__] = ACTIONS(1348), + [anon_sym_typedef] = ACTIONS(1348), + [anon_sym_extern] = ACTIONS(1348), + [anon_sym___attribute__] = ACTIONS(1348), + [anon_sym___scanf] = ACTIONS(1348), + [anon_sym___printf] = ACTIONS(1348), + [anon_sym___read_mostly] = ACTIONS(1348), + [anon_sym___must_hold] = ACTIONS(1348), + [anon_sym___ro_after_init] = ACTIONS(1348), + [anon_sym___init] = ACTIONS(1348), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1350), + [anon_sym___declspec] = ACTIONS(1348), + [anon_sym___cdecl] = ACTIONS(1348), + [anon_sym___clrcall] = ACTIONS(1348), + [anon_sym___stdcall] = ACTIONS(1348), + [anon_sym___fastcall] = ACTIONS(1348), + [anon_sym___thiscall] = ACTIONS(1348), + [anon_sym___vectorcall] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_signed] = ACTIONS(1348), + [anon_sym_unsigned] = ACTIONS(1348), + [anon_sym_long] = ACTIONS(1348), + [anon_sym_short] = ACTIONS(1348), + [anon_sym_static] = ACTIONS(1348), + [anon_sym_auto] = ACTIONS(1348), + [anon_sym_register] = ACTIONS(1348), + [anon_sym_inline] = ACTIONS(1348), + [anon_sym___inline] = ACTIONS(1348), + [anon_sym___inline__] = ACTIONS(1348), + [anon_sym___forceinline] = ACTIONS(1348), + [anon_sym_thread_local] = ACTIONS(1348), + [anon_sym___thread] = ACTIONS(1348), + [anon_sym_const] = ACTIONS(1348), + [anon_sym_constexpr] = ACTIONS(1348), + [anon_sym_volatile] = ACTIONS(1348), + [anon_sym_restrict] = ACTIONS(1348), + [anon_sym___restrict__] = ACTIONS(1348), + [anon_sym__Atomic] = ACTIONS(1348), + [anon_sym__Noreturn] = ACTIONS(1348), + [anon_sym_noreturn] = ACTIONS(1348), + [sym_primitive_type] = ACTIONS(1348), + [anon_sym_enum] = ACTIONS(1348), + [anon_sym_struct] = ACTIONS(1348), + [anon_sym_union] = ACTIONS(1348), + [anon_sym_if] = ACTIONS(1348), + [anon_sym_else] = ACTIONS(1348), + [anon_sym_switch] = ACTIONS(1348), + [anon_sym_case] = ACTIONS(1348), + [anon_sym_default] = ACTIONS(1348), + [anon_sym_while] = ACTIONS(1348), + [anon_sym_do] = ACTIONS(1348), + [anon_sym_for] = ACTIONS(1348), + [anon_sym_return] = ACTIONS(1348), + [anon_sym_break] = ACTIONS(1348), + [anon_sym_continue] = ACTIONS(1348), + [anon_sym_goto] = ACTIONS(1348), + [anon_sym___try] = ACTIONS(1348), + [anon_sym___leave] = ACTIONS(1348), + [anon_sym_DASH_DASH] = ACTIONS(1350), + [anon_sym_PLUS_PLUS] = ACTIONS(1350), + [anon_sym_sizeof] = ACTIONS(1348), + [anon_sym___alignof__] = ACTIONS(1348), + [anon_sym___alignof] = ACTIONS(1348), + [anon_sym__alignof] = ACTIONS(1348), + [anon_sym_alignof] = ACTIONS(1348), + [anon_sym__Alignof] = ACTIONS(1348), + [anon_sym_offsetof] = ACTIONS(1348), + [anon_sym__Generic] = ACTIONS(1348), + [anon_sym_asm] = ACTIONS(1348), + [anon_sym___asm__] = ACTIONS(1348), + [sym_number_literal] = ACTIONS(1350), + [anon_sym_L_SQUOTE] = ACTIONS(1350), + [anon_sym_u_SQUOTE] = ACTIONS(1350), + [anon_sym_U_SQUOTE] = ACTIONS(1350), + [anon_sym_u8_SQUOTE] = ACTIONS(1350), + [anon_sym_SQUOTE] = ACTIONS(1350), + [anon_sym_L_DQUOTE] = ACTIONS(1350), + [anon_sym_u_DQUOTE] = ACTIONS(1350), + [anon_sym_U_DQUOTE] = ACTIONS(1350), + [anon_sym_u8_DQUOTE] = ACTIONS(1350), + [anon_sym_DQUOTE] = ACTIONS(1350), + [sym_true] = ACTIONS(1348), + [sym_false] = ACTIONS(1348), + [anon_sym_NULL] = ACTIONS(1348), + [anon_sym_nullptr] = ACTIONS(1348), [sym_comment] = ACTIONS(3), }, [262] = { - [ts_builtin_sym_end] = ACTIONS(1399), - [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_LBRACK_LBRACK] = ACTIONS(1399), - [anon_sym___declspec] = 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), - [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_else] = 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_identifier] = ACTIONS(1344), + [aux_sym_preproc_include_token1] = ACTIONS(1344), + [aux_sym_preproc_def_token1] = ACTIONS(1344), + [aux_sym_preproc_if_token1] = ACTIONS(1344), + [aux_sym_preproc_if_token2] = ACTIONS(1344), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1344), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1344), + [sym_preproc_directive] = ACTIONS(1344), + [anon_sym_LPAREN2] = ACTIONS(1346), + [anon_sym_BANG] = ACTIONS(1346), + [anon_sym_TILDE] = ACTIONS(1346), + [anon_sym_DASH] = ACTIONS(1344), + [anon_sym_PLUS] = ACTIONS(1344), + [anon_sym_STAR] = ACTIONS(1346), + [anon_sym_AMP] = ACTIONS(1346), + [anon_sym_SEMI] = ACTIONS(1346), + [anon_sym___extension__] = ACTIONS(1344), + [anon_sym_typedef] = ACTIONS(1344), + [anon_sym_extern] = ACTIONS(1344), + [anon_sym___attribute__] = ACTIONS(1344), + [anon_sym___scanf] = ACTIONS(1344), + [anon_sym___printf] = ACTIONS(1344), + [anon_sym___read_mostly] = ACTIONS(1344), + [anon_sym___must_hold] = ACTIONS(1344), + [anon_sym___ro_after_init] = ACTIONS(1344), + [anon_sym___init] = ACTIONS(1344), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1346), + [anon_sym___declspec] = ACTIONS(1344), + [anon_sym___cdecl] = ACTIONS(1344), + [anon_sym___clrcall] = ACTIONS(1344), + [anon_sym___stdcall] = ACTIONS(1344), + [anon_sym___fastcall] = ACTIONS(1344), + [anon_sym___thiscall] = ACTIONS(1344), + [anon_sym___vectorcall] = ACTIONS(1344), + [anon_sym_LBRACE] = ACTIONS(1346), + [anon_sym_signed] = ACTIONS(1344), + [anon_sym_unsigned] = ACTIONS(1344), + [anon_sym_long] = ACTIONS(1344), + [anon_sym_short] = ACTIONS(1344), + [anon_sym_static] = ACTIONS(1344), + [anon_sym_auto] = ACTIONS(1344), + [anon_sym_register] = ACTIONS(1344), + [anon_sym_inline] = ACTIONS(1344), + [anon_sym___inline] = ACTIONS(1344), + [anon_sym___inline__] = ACTIONS(1344), + [anon_sym___forceinline] = ACTIONS(1344), + [anon_sym_thread_local] = ACTIONS(1344), + [anon_sym___thread] = ACTIONS(1344), + [anon_sym_const] = ACTIONS(1344), + [anon_sym_constexpr] = ACTIONS(1344), + [anon_sym_volatile] = ACTIONS(1344), + [anon_sym_restrict] = ACTIONS(1344), + [anon_sym___restrict__] = ACTIONS(1344), + [anon_sym__Atomic] = ACTIONS(1344), + [anon_sym__Noreturn] = ACTIONS(1344), + [anon_sym_noreturn] = ACTIONS(1344), + [sym_primitive_type] = ACTIONS(1344), + [anon_sym_enum] = ACTIONS(1344), + [anon_sym_struct] = ACTIONS(1344), + [anon_sym_union] = ACTIONS(1344), + [anon_sym_if] = ACTIONS(1344), + [anon_sym_else] = ACTIONS(1344), + [anon_sym_switch] = ACTIONS(1344), + [anon_sym_case] = ACTIONS(1344), + [anon_sym_default] = ACTIONS(1344), + [anon_sym_while] = ACTIONS(1344), + [anon_sym_do] = ACTIONS(1344), + [anon_sym_for] = ACTIONS(1344), + [anon_sym_return] = ACTIONS(1344), + [anon_sym_break] = ACTIONS(1344), + [anon_sym_continue] = ACTIONS(1344), + [anon_sym_goto] = ACTIONS(1344), + [anon_sym___try] = ACTIONS(1344), + [anon_sym___leave] = ACTIONS(1344), + [anon_sym_DASH_DASH] = ACTIONS(1346), + [anon_sym_PLUS_PLUS] = ACTIONS(1346), + [anon_sym_sizeof] = ACTIONS(1344), + [anon_sym___alignof__] = ACTIONS(1344), + [anon_sym___alignof] = ACTIONS(1344), + [anon_sym__alignof] = ACTIONS(1344), + [anon_sym_alignof] = ACTIONS(1344), + [anon_sym__Alignof] = ACTIONS(1344), + [anon_sym_offsetof] = ACTIONS(1344), + [anon_sym__Generic] = ACTIONS(1344), + [anon_sym_asm] = ACTIONS(1344), + [anon_sym___asm__] = ACTIONS(1344), + [sym_number_literal] = ACTIONS(1346), + [anon_sym_L_SQUOTE] = ACTIONS(1346), + [anon_sym_u_SQUOTE] = ACTIONS(1346), + [anon_sym_U_SQUOTE] = ACTIONS(1346), + [anon_sym_u8_SQUOTE] = ACTIONS(1346), + [anon_sym_SQUOTE] = ACTIONS(1346), + [anon_sym_L_DQUOTE] = ACTIONS(1346), + [anon_sym_u_DQUOTE] = ACTIONS(1346), + [anon_sym_U_DQUOTE] = ACTIONS(1346), + [anon_sym_u8_DQUOTE] = ACTIONS(1346), + [anon_sym_DQUOTE] = ACTIONS(1346), + [sym_true] = ACTIONS(1344), + [sym_false] = ACTIONS(1344), + [anon_sym_NULL] = ACTIONS(1344), + [anon_sym_nullptr] = ACTIONS(1344), [sym_comment] = ACTIONS(3), }, [263] = { - [ts_builtin_sym_end] = ACTIONS(1315), - [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_LBRACK_LBRACK] = ACTIONS(1315), - [anon_sym___declspec] = 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), - [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_else] = 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_identifier] = ACTIONS(1340), + [aux_sym_preproc_include_token1] = ACTIONS(1340), + [aux_sym_preproc_def_token1] = ACTIONS(1340), + [aux_sym_preproc_if_token1] = ACTIONS(1340), + [aux_sym_preproc_if_token2] = ACTIONS(1340), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1340), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1340), + [sym_preproc_directive] = ACTIONS(1340), + [anon_sym_LPAREN2] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1342), + [anon_sym_TILDE] = ACTIONS(1342), + [anon_sym_DASH] = ACTIONS(1340), + [anon_sym_PLUS] = ACTIONS(1340), + [anon_sym_STAR] = ACTIONS(1342), + [anon_sym_AMP] = ACTIONS(1342), + [anon_sym_SEMI] = ACTIONS(1342), + [anon_sym___extension__] = ACTIONS(1340), + [anon_sym_typedef] = ACTIONS(1340), + [anon_sym_extern] = ACTIONS(1340), + [anon_sym___attribute__] = ACTIONS(1340), + [anon_sym___scanf] = ACTIONS(1340), + [anon_sym___printf] = ACTIONS(1340), + [anon_sym___read_mostly] = ACTIONS(1340), + [anon_sym___must_hold] = ACTIONS(1340), + [anon_sym___ro_after_init] = ACTIONS(1340), + [anon_sym___init] = ACTIONS(1340), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1342), + [anon_sym___declspec] = ACTIONS(1340), + [anon_sym___cdecl] = ACTIONS(1340), + [anon_sym___clrcall] = ACTIONS(1340), + [anon_sym___stdcall] = ACTIONS(1340), + [anon_sym___fastcall] = ACTIONS(1340), + [anon_sym___thiscall] = ACTIONS(1340), + [anon_sym___vectorcall] = ACTIONS(1340), + [anon_sym_LBRACE] = ACTIONS(1342), + [anon_sym_signed] = ACTIONS(1340), + [anon_sym_unsigned] = ACTIONS(1340), + [anon_sym_long] = ACTIONS(1340), + [anon_sym_short] = ACTIONS(1340), + [anon_sym_static] = ACTIONS(1340), + [anon_sym_auto] = ACTIONS(1340), + [anon_sym_register] = ACTIONS(1340), + [anon_sym_inline] = ACTIONS(1340), + [anon_sym___inline] = ACTIONS(1340), + [anon_sym___inline__] = ACTIONS(1340), + [anon_sym___forceinline] = ACTIONS(1340), + [anon_sym_thread_local] = ACTIONS(1340), + [anon_sym___thread] = ACTIONS(1340), + [anon_sym_const] = ACTIONS(1340), + [anon_sym_constexpr] = ACTIONS(1340), + [anon_sym_volatile] = ACTIONS(1340), + [anon_sym_restrict] = ACTIONS(1340), + [anon_sym___restrict__] = ACTIONS(1340), + [anon_sym__Atomic] = ACTIONS(1340), + [anon_sym__Noreturn] = ACTIONS(1340), + [anon_sym_noreturn] = ACTIONS(1340), + [sym_primitive_type] = ACTIONS(1340), + [anon_sym_enum] = ACTIONS(1340), + [anon_sym_struct] = ACTIONS(1340), + [anon_sym_union] = ACTIONS(1340), + [anon_sym_if] = ACTIONS(1340), + [anon_sym_else] = ACTIONS(1340), + [anon_sym_switch] = ACTIONS(1340), + [anon_sym_case] = ACTIONS(1340), + [anon_sym_default] = ACTIONS(1340), + [anon_sym_while] = ACTIONS(1340), + [anon_sym_do] = ACTIONS(1340), + [anon_sym_for] = ACTIONS(1340), + [anon_sym_return] = ACTIONS(1340), + [anon_sym_break] = ACTIONS(1340), + [anon_sym_continue] = ACTIONS(1340), + [anon_sym_goto] = ACTIONS(1340), + [anon_sym___try] = ACTIONS(1340), + [anon_sym___leave] = ACTIONS(1340), + [anon_sym_DASH_DASH] = ACTIONS(1342), + [anon_sym_PLUS_PLUS] = ACTIONS(1342), + [anon_sym_sizeof] = ACTIONS(1340), + [anon_sym___alignof__] = ACTIONS(1340), + [anon_sym___alignof] = ACTIONS(1340), + [anon_sym__alignof] = ACTIONS(1340), + [anon_sym_alignof] = ACTIONS(1340), + [anon_sym__Alignof] = ACTIONS(1340), + [anon_sym_offsetof] = ACTIONS(1340), + [anon_sym__Generic] = ACTIONS(1340), + [anon_sym_asm] = ACTIONS(1340), + [anon_sym___asm__] = ACTIONS(1340), + [sym_number_literal] = ACTIONS(1342), + [anon_sym_L_SQUOTE] = ACTIONS(1342), + [anon_sym_u_SQUOTE] = ACTIONS(1342), + [anon_sym_U_SQUOTE] = ACTIONS(1342), + [anon_sym_u8_SQUOTE] = ACTIONS(1342), + [anon_sym_SQUOTE] = ACTIONS(1342), + [anon_sym_L_DQUOTE] = ACTIONS(1342), + [anon_sym_u_DQUOTE] = ACTIONS(1342), + [anon_sym_U_DQUOTE] = ACTIONS(1342), + [anon_sym_u8_DQUOTE] = ACTIONS(1342), + [anon_sym_DQUOTE] = ACTIONS(1342), + [sym_true] = ACTIONS(1340), + [sym_false] = ACTIONS(1340), + [anon_sym_NULL] = ACTIONS(1340), + [anon_sym_nullptr] = ACTIONS(1340), [sym_comment] = ACTIONS(3), }, [264] = { - [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_LBRACK_LBRACK] = ACTIONS(1367), - [anon_sym___declspec] = 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), - [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_else] = 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_identifier] = ACTIONS(1320), + [aux_sym_preproc_include_token1] = ACTIONS(1320), + [aux_sym_preproc_def_token1] = ACTIONS(1320), + [aux_sym_preproc_if_token1] = ACTIONS(1320), + [aux_sym_preproc_if_token2] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1320), + [sym_preproc_directive] = ACTIONS(1320), + [anon_sym_LPAREN2] = ACTIONS(1322), + [anon_sym_BANG] = ACTIONS(1322), + [anon_sym_TILDE] = ACTIONS(1322), + [anon_sym_DASH] = ACTIONS(1320), + [anon_sym_PLUS] = ACTIONS(1320), + [anon_sym_STAR] = ACTIONS(1322), + [anon_sym_AMP] = ACTIONS(1322), + [anon_sym_SEMI] = ACTIONS(1322), + [anon_sym___extension__] = ACTIONS(1320), + [anon_sym_typedef] = ACTIONS(1320), + [anon_sym_extern] = ACTIONS(1320), + [anon_sym___attribute__] = ACTIONS(1320), + [anon_sym___scanf] = ACTIONS(1320), + [anon_sym___printf] = ACTIONS(1320), + [anon_sym___read_mostly] = ACTIONS(1320), + [anon_sym___must_hold] = ACTIONS(1320), + [anon_sym___ro_after_init] = ACTIONS(1320), + [anon_sym___init] = ACTIONS(1320), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1322), + [anon_sym___declspec] = ACTIONS(1320), + [anon_sym___cdecl] = ACTIONS(1320), + [anon_sym___clrcall] = ACTIONS(1320), + [anon_sym___stdcall] = ACTIONS(1320), + [anon_sym___fastcall] = ACTIONS(1320), + [anon_sym___thiscall] = ACTIONS(1320), + [anon_sym___vectorcall] = ACTIONS(1320), + [anon_sym_LBRACE] = ACTIONS(1322), + [anon_sym_signed] = ACTIONS(1320), + [anon_sym_unsigned] = ACTIONS(1320), + [anon_sym_long] = ACTIONS(1320), + [anon_sym_short] = ACTIONS(1320), + [anon_sym_static] = ACTIONS(1320), + [anon_sym_auto] = ACTIONS(1320), + [anon_sym_register] = ACTIONS(1320), + [anon_sym_inline] = ACTIONS(1320), + [anon_sym___inline] = ACTIONS(1320), + [anon_sym___inline__] = ACTIONS(1320), + [anon_sym___forceinline] = ACTIONS(1320), + [anon_sym_thread_local] = ACTIONS(1320), + [anon_sym___thread] = ACTIONS(1320), + [anon_sym_const] = ACTIONS(1320), + [anon_sym_constexpr] = ACTIONS(1320), + [anon_sym_volatile] = ACTIONS(1320), + [anon_sym_restrict] = ACTIONS(1320), + [anon_sym___restrict__] = ACTIONS(1320), + [anon_sym__Atomic] = ACTIONS(1320), + [anon_sym__Noreturn] = ACTIONS(1320), + [anon_sym_noreturn] = ACTIONS(1320), + [sym_primitive_type] = ACTIONS(1320), + [anon_sym_enum] = ACTIONS(1320), + [anon_sym_struct] = ACTIONS(1320), + [anon_sym_union] = ACTIONS(1320), + [anon_sym_if] = ACTIONS(1320), + [anon_sym_else] = ACTIONS(1320), + [anon_sym_switch] = ACTIONS(1320), + [anon_sym_case] = ACTIONS(1320), + [anon_sym_default] = ACTIONS(1320), + [anon_sym_while] = ACTIONS(1320), + [anon_sym_do] = ACTIONS(1320), + [anon_sym_for] = ACTIONS(1320), + [anon_sym_return] = ACTIONS(1320), + [anon_sym_break] = ACTIONS(1320), + [anon_sym_continue] = ACTIONS(1320), + [anon_sym_goto] = ACTIONS(1320), + [anon_sym___try] = ACTIONS(1320), + [anon_sym___leave] = ACTIONS(1320), + [anon_sym_DASH_DASH] = ACTIONS(1322), + [anon_sym_PLUS_PLUS] = ACTIONS(1322), + [anon_sym_sizeof] = ACTIONS(1320), + [anon_sym___alignof__] = ACTIONS(1320), + [anon_sym___alignof] = ACTIONS(1320), + [anon_sym__alignof] = ACTIONS(1320), + [anon_sym_alignof] = ACTIONS(1320), + [anon_sym__Alignof] = ACTIONS(1320), + [anon_sym_offsetof] = ACTIONS(1320), + [anon_sym__Generic] = ACTIONS(1320), + [anon_sym_asm] = ACTIONS(1320), + [anon_sym___asm__] = ACTIONS(1320), + [sym_number_literal] = ACTIONS(1322), + [anon_sym_L_SQUOTE] = ACTIONS(1322), + [anon_sym_u_SQUOTE] = ACTIONS(1322), + [anon_sym_U_SQUOTE] = ACTIONS(1322), + [anon_sym_u8_SQUOTE] = ACTIONS(1322), + [anon_sym_SQUOTE] = ACTIONS(1322), + [anon_sym_L_DQUOTE] = ACTIONS(1322), + [anon_sym_u_DQUOTE] = ACTIONS(1322), + [anon_sym_U_DQUOTE] = ACTIONS(1322), + [anon_sym_u8_DQUOTE] = ACTIONS(1322), + [anon_sym_DQUOTE] = ACTIONS(1322), + [sym_true] = ACTIONS(1320), + [sym_false] = ACTIONS(1320), + [anon_sym_NULL] = ACTIONS(1320), + [anon_sym_nullptr] = ACTIONS(1320), [sym_comment] = ACTIONS(3), }, [265] = { - [ts_builtin_sym_end] = ACTIONS(1315), - [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_LBRACK_LBRACK] = ACTIONS(1315), - [anon_sym___declspec] = 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), - [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_else] = 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_identifier] = ACTIONS(1320), + [aux_sym_preproc_include_token1] = ACTIONS(1320), + [aux_sym_preproc_def_token1] = ACTIONS(1320), + [aux_sym_preproc_if_token1] = ACTIONS(1320), + [aux_sym_preproc_if_token2] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1320), + [sym_preproc_directive] = ACTIONS(1320), + [anon_sym_LPAREN2] = ACTIONS(1322), + [anon_sym_BANG] = ACTIONS(1322), + [anon_sym_TILDE] = ACTIONS(1322), + [anon_sym_DASH] = ACTIONS(1320), + [anon_sym_PLUS] = ACTIONS(1320), + [anon_sym_STAR] = ACTIONS(1322), + [anon_sym_AMP] = ACTIONS(1322), + [anon_sym_SEMI] = ACTIONS(1322), + [anon_sym___extension__] = ACTIONS(1320), + [anon_sym_typedef] = ACTIONS(1320), + [anon_sym_extern] = ACTIONS(1320), + [anon_sym___attribute__] = ACTIONS(1320), + [anon_sym___scanf] = ACTIONS(1320), + [anon_sym___printf] = ACTIONS(1320), + [anon_sym___read_mostly] = ACTIONS(1320), + [anon_sym___must_hold] = ACTIONS(1320), + [anon_sym___ro_after_init] = ACTIONS(1320), + [anon_sym___init] = ACTIONS(1320), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1322), + [anon_sym___declspec] = ACTIONS(1320), + [anon_sym___cdecl] = ACTIONS(1320), + [anon_sym___clrcall] = ACTIONS(1320), + [anon_sym___stdcall] = ACTIONS(1320), + [anon_sym___fastcall] = ACTIONS(1320), + [anon_sym___thiscall] = ACTIONS(1320), + [anon_sym___vectorcall] = ACTIONS(1320), + [anon_sym_LBRACE] = ACTIONS(1322), + [anon_sym_signed] = ACTIONS(1320), + [anon_sym_unsigned] = ACTIONS(1320), + [anon_sym_long] = ACTIONS(1320), + [anon_sym_short] = ACTIONS(1320), + [anon_sym_static] = ACTIONS(1320), + [anon_sym_auto] = ACTIONS(1320), + [anon_sym_register] = ACTIONS(1320), + [anon_sym_inline] = ACTIONS(1320), + [anon_sym___inline] = ACTIONS(1320), + [anon_sym___inline__] = ACTIONS(1320), + [anon_sym___forceinline] = ACTIONS(1320), + [anon_sym_thread_local] = ACTIONS(1320), + [anon_sym___thread] = ACTIONS(1320), + [anon_sym_const] = ACTIONS(1320), + [anon_sym_constexpr] = ACTIONS(1320), + [anon_sym_volatile] = ACTIONS(1320), + [anon_sym_restrict] = ACTIONS(1320), + [anon_sym___restrict__] = ACTIONS(1320), + [anon_sym__Atomic] = ACTIONS(1320), + [anon_sym__Noreturn] = ACTIONS(1320), + [anon_sym_noreturn] = ACTIONS(1320), + [sym_primitive_type] = ACTIONS(1320), + [anon_sym_enum] = ACTIONS(1320), + [anon_sym_struct] = ACTIONS(1320), + [anon_sym_union] = ACTIONS(1320), + [anon_sym_if] = ACTIONS(1320), + [anon_sym_else] = ACTIONS(1320), + [anon_sym_switch] = ACTIONS(1320), + [anon_sym_case] = ACTIONS(1320), + [anon_sym_default] = ACTIONS(1320), + [anon_sym_while] = ACTIONS(1320), + [anon_sym_do] = ACTIONS(1320), + [anon_sym_for] = ACTIONS(1320), + [anon_sym_return] = ACTIONS(1320), + [anon_sym_break] = ACTIONS(1320), + [anon_sym_continue] = ACTIONS(1320), + [anon_sym_goto] = ACTIONS(1320), + [anon_sym___try] = ACTIONS(1320), + [anon_sym___leave] = ACTIONS(1320), + [anon_sym_DASH_DASH] = ACTIONS(1322), + [anon_sym_PLUS_PLUS] = ACTIONS(1322), + [anon_sym_sizeof] = ACTIONS(1320), + [anon_sym___alignof__] = ACTIONS(1320), + [anon_sym___alignof] = ACTIONS(1320), + [anon_sym__alignof] = ACTIONS(1320), + [anon_sym_alignof] = ACTIONS(1320), + [anon_sym__Alignof] = ACTIONS(1320), + [anon_sym_offsetof] = ACTIONS(1320), + [anon_sym__Generic] = ACTIONS(1320), + [anon_sym_asm] = ACTIONS(1320), + [anon_sym___asm__] = ACTIONS(1320), + [sym_number_literal] = ACTIONS(1322), + [anon_sym_L_SQUOTE] = ACTIONS(1322), + [anon_sym_u_SQUOTE] = ACTIONS(1322), + [anon_sym_U_SQUOTE] = ACTIONS(1322), + [anon_sym_u8_SQUOTE] = ACTIONS(1322), + [anon_sym_SQUOTE] = ACTIONS(1322), + [anon_sym_L_DQUOTE] = ACTIONS(1322), + [anon_sym_u_DQUOTE] = ACTIONS(1322), + [anon_sym_U_DQUOTE] = ACTIONS(1322), + [anon_sym_u8_DQUOTE] = ACTIONS(1322), + [anon_sym_DQUOTE] = ACTIONS(1322), + [sym_true] = ACTIONS(1320), + [sym_false] = ACTIONS(1320), + [anon_sym_NULL] = ACTIONS(1320), + [anon_sym_nullptr] = ACTIONS(1320), [sym_comment] = ACTIONS(3), }, [266] = { - [ts_builtin_sym_end] = ACTIONS(1315), - [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_LBRACK_LBRACK] = ACTIONS(1315), - [anon_sym___declspec] = 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), - [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_else] = 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_identifier] = ACTIONS(1320), + [aux_sym_preproc_include_token1] = ACTIONS(1320), + [aux_sym_preproc_def_token1] = ACTIONS(1320), + [aux_sym_preproc_if_token1] = ACTIONS(1320), + [aux_sym_preproc_if_token2] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1320), + [sym_preproc_directive] = ACTIONS(1320), + [anon_sym_LPAREN2] = ACTIONS(1322), + [anon_sym_BANG] = ACTIONS(1322), + [anon_sym_TILDE] = ACTIONS(1322), + [anon_sym_DASH] = ACTIONS(1320), + [anon_sym_PLUS] = ACTIONS(1320), + [anon_sym_STAR] = ACTIONS(1322), + [anon_sym_AMP] = ACTIONS(1322), + [anon_sym_SEMI] = ACTIONS(1322), + [anon_sym___extension__] = ACTIONS(1320), + [anon_sym_typedef] = ACTIONS(1320), + [anon_sym_extern] = ACTIONS(1320), + [anon_sym___attribute__] = ACTIONS(1320), + [anon_sym___scanf] = ACTIONS(1320), + [anon_sym___printf] = ACTIONS(1320), + [anon_sym___read_mostly] = ACTIONS(1320), + [anon_sym___must_hold] = ACTIONS(1320), + [anon_sym___ro_after_init] = ACTIONS(1320), + [anon_sym___init] = ACTIONS(1320), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1322), + [anon_sym___declspec] = ACTIONS(1320), + [anon_sym___cdecl] = ACTIONS(1320), + [anon_sym___clrcall] = ACTIONS(1320), + [anon_sym___stdcall] = ACTIONS(1320), + [anon_sym___fastcall] = ACTIONS(1320), + [anon_sym___thiscall] = ACTIONS(1320), + [anon_sym___vectorcall] = ACTIONS(1320), + [anon_sym_LBRACE] = ACTIONS(1322), + [anon_sym_signed] = ACTIONS(1320), + [anon_sym_unsigned] = ACTIONS(1320), + [anon_sym_long] = ACTIONS(1320), + [anon_sym_short] = ACTIONS(1320), + [anon_sym_static] = ACTIONS(1320), + [anon_sym_auto] = ACTIONS(1320), + [anon_sym_register] = ACTIONS(1320), + [anon_sym_inline] = ACTIONS(1320), + [anon_sym___inline] = ACTIONS(1320), + [anon_sym___inline__] = ACTIONS(1320), + [anon_sym___forceinline] = ACTIONS(1320), + [anon_sym_thread_local] = ACTIONS(1320), + [anon_sym___thread] = ACTIONS(1320), + [anon_sym_const] = ACTIONS(1320), + [anon_sym_constexpr] = ACTIONS(1320), + [anon_sym_volatile] = ACTIONS(1320), + [anon_sym_restrict] = ACTIONS(1320), + [anon_sym___restrict__] = ACTIONS(1320), + [anon_sym__Atomic] = ACTIONS(1320), + [anon_sym__Noreturn] = ACTIONS(1320), + [anon_sym_noreturn] = ACTIONS(1320), + [sym_primitive_type] = ACTIONS(1320), + [anon_sym_enum] = ACTIONS(1320), + [anon_sym_struct] = ACTIONS(1320), + [anon_sym_union] = ACTIONS(1320), + [anon_sym_if] = ACTIONS(1320), + [anon_sym_else] = ACTIONS(1320), + [anon_sym_switch] = ACTIONS(1320), + [anon_sym_case] = ACTIONS(1320), + [anon_sym_default] = ACTIONS(1320), + [anon_sym_while] = ACTIONS(1320), + [anon_sym_do] = ACTIONS(1320), + [anon_sym_for] = ACTIONS(1320), + [anon_sym_return] = ACTIONS(1320), + [anon_sym_break] = ACTIONS(1320), + [anon_sym_continue] = ACTIONS(1320), + [anon_sym_goto] = ACTIONS(1320), + [anon_sym___try] = ACTIONS(1320), + [anon_sym___leave] = ACTIONS(1320), + [anon_sym_DASH_DASH] = ACTIONS(1322), + [anon_sym_PLUS_PLUS] = ACTIONS(1322), + [anon_sym_sizeof] = ACTIONS(1320), + [anon_sym___alignof__] = ACTIONS(1320), + [anon_sym___alignof] = ACTIONS(1320), + [anon_sym__alignof] = ACTIONS(1320), + [anon_sym_alignof] = ACTIONS(1320), + [anon_sym__Alignof] = ACTIONS(1320), + [anon_sym_offsetof] = ACTIONS(1320), + [anon_sym__Generic] = ACTIONS(1320), + [anon_sym_asm] = ACTIONS(1320), + [anon_sym___asm__] = ACTIONS(1320), + [sym_number_literal] = ACTIONS(1322), + [anon_sym_L_SQUOTE] = ACTIONS(1322), + [anon_sym_u_SQUOTE] = ACTIONS(1322), + [anon_sym_U_SQUOTE] = ACTIONS(1322), + [anon_sym_u8_SQUOTE] = ACTIONS(1322), + [anon_sym_SQUOTE] = ACTIONS(1322), + [anon_sym_L_DQUOTE] = ACTIONS(1322), + [anon_sym_u_DQUOTE] = ACTIONS(1322), + [anon_sym_U_DQUOTE] = ACTIONS(1322), + [anon_sym_u8_DQUOTE] = ACTIONS(1322), + [anon_sym_DQUOTE] = ACTIONS(1322), + [sym_true] = ACTIONS(1320), + [sym_false] = ACTIONS(1320), + [anon_sym_NULL] = ACTIONS(1320), + [anon_sym_nullptr] = ACTIONS(1320), [sym_comment] = ACTIONS(3), }, [267] = { - [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_LBRACK_LBRACK] = ACTIONS(1375), - [anon_sym___declspec] = 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), - [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_else] = 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_identifier] = ACTIONS(1320), + [aux_sym_preproc_include_token1] = ACTIONS(1320), + [aux_sym_preproc_def_token1] = ACTIONS(1320), + [aux_sym_preproc_if_token1] = ACTIONS(1320), + [aux_sym_preproc_if_token2] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1320), + [sym_preproc_directive] = ACTIONS(1320), + [anon_sym_LPAREN2] = ACTIONS(1322), + [anon_sym_BANG] = ACTIONS(1322), + [anon_sym_TILDE] = ACTIONS(1322), + [anon_sym_DASH] = ACTIONS(1320), + [anon_sym_PLUS] = ACTIONS(1320), + [anon_sym_STAR] = ACTIONS(1322), + [anon_sym_AMP] = ACTIONS(1322), + [anon_sym_SEMI] = ACTIONS(1322), + [anon_sym___extension__] = ACTIONS(1320), + [anon_sym_typedef] = ACTIONS(1320), + [anon_sym_extern] = ACTIONS(1320), + [anon_sym___attribute__] = ACTIONS(1320), + [anon_sym___scanf] = ACTIONS(1320), + [anon_sym___printf] = ACTIONS(1320), + [anon_sym___read_mostly] = ACTIONS(1320), + [anon_sym___must_hold] = ACTIONS(1320), + [anon_sym___ro_after_init] = ACTIONS(1320), + [anon_sym___init] = ACTIONS(1320), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1322), + [anon_sym___declspec] = ACTIONS(1320), + [anon_sym___cdecl] = ACTIONS(1320), + [anon_sym___clrcall] = ACTIONS(1320), + [anon_sym___stdcall] = ACTIONS(1320), + [anon_sym___fastcall] = ACTIONS(1320), + [anon_sym___thiscall] = ACTIONS(1320), + [anon_sym___vectorcall] = ACTIONS(1320), + [anon_sym_LBRACE] = ACTIONS(1322), + [anon_sym_signed] = ACTIONS(1320), + [anon_sym_unsigned] = ACTIONS(1320), + [anon_sym_long] = ACTIONS(1320), + [anon_sym_short] = ACTIONS(1320), + [anon_sym_static] = ACTIONS(1320), + [anon_sym_auto] = ACTIONS(1320), + [anon_sym_register] = ACTIONS(1320), + [anon_sym_inline] = ACTIONS(1320), + [anon_sym___inline] = ACTIONS(1320), + [anon_sym___inline__] = ACTIONS(1320), + [anon_sym___forceinline] = ACTIONS(1320), + [anon_sym_thread_local] = ACTIONS(1320), + [anon_sym___thread] = ACTIONS(1320), + [anon_sym_const] = ACTIONS(1320), + [anon_sym_constexpr] = ACTIONS(1320), + [anon_sym_volatile] = ACTIONS(1320), + [anon_sym_restrict] = ACTIONS(1320), + [anon_sym___restrict__] = ACTIONS(1320), + [anon_sym__Atomic] = ACTIONS(1320), + [anon_sym__Noreturn] = ACTIONS(1320), + [anon_sym_noreturn] = ACTIONS(1320), + [sym_primitive_type] = ACTIONS(1320), + [anon_sym_enum] = ACTIONS(1320), + [anon_sym_struct] = ACTIONS(1320), + [anon_sym_union] = ACTIONS(1320), + [anon_sym_if] = ACTIONS(1320), + [anon_sym_else] = ACTIONS(1320), + [anon_sym_switch] = ACTIONS(1320), + [anon_sym_case] = ACTIONS(1320), + [anon_sym_default] = ACTIONS(1320), + [anon_sym_while] = ACTIONS(1320), + [anon_sym_do] = ACTIONS(1320), + [anon_sym_for] = ACTIONS(1320), + [anon_sym_return] = ACTIONS(1320), + [anon_sym_break] = ACTIONS(1320), + [anon_sym_continue] = ACTIONS(1320), + [anon_sym_goto] = ACTIONS(1320), + [anon_sym___try] = ACTIONS(1320), + [anon_sym___leave] = ACTIONS(1320), + [anon_sym_DASH_DASH] = ACTIONS(1322), + [anon_sym_PLUS_PLUS] = ACTIONS(1322), + [anon_sym_sizeof] = ACTIONS(1320), + [anon_sym___alignof__] = ACTIONS(1320), + [anon_sym___alignof] = ACTIONS(1320), + [anon_sym__alignof] = ACTIONS(1320), + [anon_sym_alignof] = ACTIONS(1320), + [anon_sym__Alignof] = ACTIONS(1320), + [anon_sym_offsetof] = ACTIONS(1320), + [anon_sym__Generic] = ACTIONS(1320), + [anon_sym_asm] = ACTIONS(1320), + [anon_sym___asm__] = ACTIONS(1320), + [sym_number_literal] = ACTIONS(1322), + [anon_sym_L_SQUOTE] = ACTIONS(1322), + [anon_sym_u_SQUOTE] = ACTIONS(1322), + [anon_sym_U_SQUOTE] = ACTIONS(1322), + [anon_sym_u8_SQUOTE] = ACTIONS(1322), + [anon_sym_SQUOTE] = ACTIONS(1322), + [anon_sym_L_DQUOTE] = ACTIONS(1322), + [anon_sym_u_DQUOTE] = ACTIONS(1322), + [anon_sym_U_DQUOTE] = ACTIONS(1322), + [anon_sym_u8_DQUOTE] = ACTIONS(1322), + [anon_sym_DQUOTE] = ACTIONS(1322), + [sym_true] = ACTIONS(1320), + [sym_false] = ACTIONS(1320), + [anon_sym_NULL] = ACTIONS(1320), + [anon_sym_nullptr] = ACTIONS(1320), [sym_comment] = ACTIONS(3), }, [268] = { - [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_LBRACK_LBRACK] = ACTIONS(1395), - [anon_sym___declspec] = 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), - [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_else] = 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), + [ts_builtin_sym_end] = ACTIONS(1322), + [sym_identifier] = ACTIONS(1320), + [aux_sym_preproc_include_token1] = ACTIONS(1320), + [aux_sym_preproc_def_token1] = ACTIONS(1320), + [aux_sym_preproc_if_token1] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1320), + [sym_preproc_directive] = ACTIONS(1320), + [anon_sym_LPAREN2] = ACTIONS(1322), + [anon_sym_BANG] = ACTIONS(1322), + [anon_sym_TILDE] = ACTIONS(1322), + [anon_sym_DASH] = ACTIONS(1320), + [anon_sym_PLUS] = ACTIONS(1320), + [anon_sym_STAR] = ACTIONS(1322), + [anon_sym_AMP] = ACTIONS(1322), + [anon_sym_SEMI] = ACTIONS(1322), + [anon_sym___extension__] = ACTIONS(1320), + [anon_sym_typedef] = ACTIONS(1320), + [anon_sym_extern] = ACTIONS(1320), + [anon_sym___attribute__] = ACTIONS(1320), + [anon_sym___scanf] = ACTIONS(1320), + [anon_sym___printf] = ACTIONS(1320), + [anon_sym___read_mostly] = ACTIONS(1320), + [anon_sym___must_hold] = ACTIONS(1320), + [anon_sym___ro_after_init] = ACTIONS(1320), + [anon_sym___init] = ACTIONS(1320), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1322), + [anon_sym___declspec] = ACTIONS(1320), + [anon_sym___cdecl] = ACTIONS(1320), + [anon_sym___clrcall] = ACTIONS(1320), + [anon_sym___stdcall] = ACTIONS(1320), + [anon_sym___fastcall] = ACTIONS(1320), + [anon_sym___thiscall] = ACTIONS(1320), + [anon_sym___vectorcall] = ACTIONS(1320), + [anon_sym_LBRACE] = ACTIONS(1322), + [anon_sym_signed] = ACTIONS(1320), + [anon_sym_unsigned] = ACTIONS(1320), + [anon_sym_long] = ACTIONS(1320), + [anon_sym_short] = ACTIONS(1320), + [anon_sym_static] = ACTIONS(1320), + [anon_sym_auto] = ACTIONS(1320), + [anon_sym_register] = ACTIONS(1320), + [anon_sym_inline] = ACTIONS(1320), + [anon_sym___inline] = ACTIONS(1320), + [anon_sym___inline__] = ACTIONS(1320), + [anon_sym___forceinline] = ACTIONS(1320), + [anon_sym_thread_local] = ACTIONS(1320), + [anon_sym___thread] = ACTIONS(1320), + [anon_sym_const] = ACTIONS(1320), + [anon_sym_constexpr] = ACTIONS(1320), + [anon_sym_volatile] = ACTIONS(1320), + [anon_sym_restrict] = ACTIONS(1320), + [anon_sym___restrict__] = ACTIONS(1320), + [anon_sym__Atomic] = ACTIONS(1320), + [anon_sym__Noreturn] = ACTIONS(1320), + [anon_sym_noreturn] = ACTIONS(1320), + [sym_primitive_type] = ACTIONS(1320), + [anon_sym_enum] = ACTIONS(1320), + [anon_sym_struct] = ACTIONS(1320), + [anon_sym_union] = ACTIONS(1320), + [anon_sym_if] = ACTIONS(1320), + [anon_sym_else] = ACTIONS(1320), + [anon_sym_switch] = ACTIONS(1320), + [anon_sym_case] = ACTIONS(1320), + [anon_sym_default] = ACTIONS(1320), + [anon_sym_while] = ACTIONS(1320), + [anon_sym_do] = ACTIONS(1320), + [anon_sym_for] = ACTIONS(1320), + [anon_sym_return] = ACTIONS(1320), + [anon_sym_break] = ACTIONS(1320), + [anon_sym_continue] = ACTIONS(1320), + [anon_sym_goto] = ACTIONS(1320), + [anon_sym___try] = ACTIONS(1320), + [anon_sym___leave] = ACTIONS(1320), + [anon_sym_DASH_DASH] = ACTIONS(1322), + [anon_sym_PLUS_PLUS] = ACTIONS(1322), + [anon_sym_sizeof] = ACTIONS(1320), + [anon_sym___alignof__] = ACTIONS(1320), + [anon_sym___alignof] = ACTIONS(1320), + [anon_sym__alignof] = ACTIONS(1320), + [anon_sym_alignof] = ACTIONS(1320), + [anon_sym__Alignof] = ACTIONS(1320), + [anon_sym_offsetof] = ACTIONS(1320), + [anon_sym__Generic] = ACTIONS(1320), + [anon_sym_asm] = ACTIONS(1320), + [anon_sym___asm__] = ACTIONS(1320), + [sym_number_literal] = ACTIONS(1322), + [anon_sym_L_SQUOTE] = ACTIONS(1322), + [anon_sym_u_SQUOTE] = ACTIONS(1322), + [anon_sym_U_SQUOTE] = ACTIONS(1322), + [anon_sym_u8_SQUOTE] = ACTIONS(1322), + [anon_sym_SQUOTE] = ACTIONS(1322), + [anon_sym_L_DQUOTE] = ACTIONS(1322), + [anon_sym_u_DQUOTE] = ACTIONS(1322), + [anon_sym_U_DQUOTE] = ACTIONS(1322), + [anon_sym_u8_DQUOTE] = ACTIONS(1322), + [anon_sym_DQUOTE] = ACTIONS(1322), + [sym_true] = ACTIONS(1320), + [sym_false] = ACTIONS(1320), + [anon_sym_NULL] = ACTIONS(1320), + [anon_sym_nullptr] = ACTIONS(1320), [sym_comment] = ACTIONS(3), }, [269] = { - [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_LBRACK_LBRACK] = ACTIONS(1379), - [anon_sym___declspec] = 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), - [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_else] = 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), + [ts_builtin_sym_end] = ACTIONS(1322), + [sym_identifier] = ACTIONS(1320), + [aux_sym_preproc_include_token1] = ACTIONS(1320), + [aux_sym_preproc_def_token1] = ACTIONS(1320), + [aux_sym_preproc_if_token1] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1320), + [sym_preproc_directive] = ACTIONS(1320), + [anon_sym_LPAREN2] = ACTIONS(1322), + [anon_sym_BANG] = ACTIONS(1322), + [anon_sym_TILDE] = ACTIONS(1322), + [anon_sym_DASH] = ACTIONS(1320), + [anon_sym_PLUS] = ACTIONS(1320), + [anon_sym_STAR] = ACTIONS(1322), + [anon_sym_AMP] = ACTIONS(1322), + [anon_sym_SEMI] = ACTIONS(1322), + [anon_sym___extension__] = ACTIONS(1320), + [anon_sym_typedef] = ACTIONS(1320), + [anon_sym_extern] = ACTIONS(1320), + [anon_sym___attribute__] = ACTIONS(1320), + [anon_sym___scanf] = ACTIONS(1320), + [anon_sym___printf] = ACTIONS(1320), + [anon_sym___read_mostly] = ACTIONS(1320), + [anon_sym___must_hold] = ACTIONS(1320), + [anon_sym___ro_after_init] = ACTIONS(1320), + [anon_sym___init] = ACTIONS(1320), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1322), + [anon_sym___declspec] = ACTIONS(1320), + [anon_sym___cdecl] = ACTIONS(1320), + [anon_sym___clrcall] = ACTIONS(1320), + [anon_sym___stdcall] = ACTIONS(1320), + [anon_sym___fastcall] = ACTIONS(1320), + [anon_sym___thiscall] = ACTIONS(1320), + [anon_sym___vectorcall] = ACTIONS(1320), + [anon_sym_LBRACE] = ACTIONS(1322), + [anon_sym_signed] = ACTIONS(1320), + [anon_sym_unsigned] = ACTIONS(1320), + [anon_sym_long] = ACTIONS(1320), + [anon_sym_short] = ACTIONS(1320), + [anon_sym_static] = ACTIONS(1320), + [anon_sym_auto] = ACTIONS(1320), + [anon_sym_register] = ACTIONS(1320), + [anon_sym_inline] = ACTIONS(1320), + [anon_sym___inline] = ACTIONS(1320), + [anon_sym___inline__] = ACTIONS(1320), + [anon_sym___forceinline] = ACTIONS(1320), + [anon_sym_thread_local] = ACTIONS(1320), + [anon_sym___thread] = ACTIONS(1320), + [anon_sym_const] = ACTIONS(1320), + [anon_sym_constexpr] = ACTIONS(1320), + [anon_sym_volatile] = ACTIONS(1320), + [anon_sym_restrict] = ACTIONS(1320), + [anon_sym___restrict__] = ACTIONS(1320), + [anon_sym__Atomic] = ACTIONS(1320), + [anon_sym__Noreturn] = ACTIONS(1320), + [anon_sym_noreturn] = ACTIONS(1320), + [sym_primitive_type] = ACTIONS(1320), + [anon_sym_enum] = ACTIONS(1320), + [anon_sym_struct] = ACTIONS(1320), + [anon_sym_union] = ACTIONS(1320), + [anon_sym_if] = ACTIONS(1320), + [anon_sym_else] = ACTIONS(1320), + [anon_sym_switch] = ACTIONS(1320), + [anon_sym_case] = ACTIONS(1320), + [anon_sym_default] = ACTIONS(1320), + [anon_sym_while] = ACTIONS(1320), + [anon_sym_do] = ACTIONS(1320), + [anon_sym_for] = ACTIONS(1320), + [anon_sym_return] = ACTIONS(1320), + [anon_sym_break] = ACTIONS(1320), + [anon_sym_continue] = ACTIONS(1320), + [anon_sym_goto] = ACTIONS(1320), + [anon_sym___try] = ACTIONS(1320), + [anon_sym___leave] = ACTIONS(1320), + [anon_sym_DASH_DASH] = ACTIONS(1322), + [anon_sym_PLUS_PLUS] = ACTIONS(1322), + [anon_sym_sizeof] = ACTIONS(1320), + [anon_sym___alignof__] = ACTIONS(1320), + [anon_sym___alignof] = ACTIONS(1320), + [anon_sym__alignof] = ACTIONS(1320), + [anon_sym_alignof] = ACTIONS(1320), + [anon_sym__Alignof] = ACTIONS(1320), + [anon_sym_offsetof] = ACTIONS(1320), + [anon_sym__Generic] = ACTIONS(1320), + [anon_sym_asm] = ACTIONS(1320), + [anon_sym___asm__] = ACTIONS(1320), + [sym_number_literal] = ACTIONS(1322), + [anon_sym_L_SQUOTE] = ACTIONS(1322), + [anon_sym_u_SQUOTE] = ACTIONS(1322), + [anon_sym_U_SQUOTE] = ACTIONS(1322), + [anon_sym_u8_SQUOTE] = ACTIONS(1322), + [anon_sym_SQUOTE] = ACTIONS(1322), + [anon_sym_L_DQUOTE] = ACTIONS(1322), + [anon_sym_u_DQUOTE] = ACTIONS(1322), + [anon_sym_U_DQUOTE] = ACTIONS(1322), + [anon_sym_u8_DQUOTE] = ACTIONS(1322), + [anon_sym_DQUOTE] = ACTIONS(1322), + [sym_true] = ACTIONS(1320), + [sym_false] = ACTIONS(1320), + [anon_sym_NULL] = ACTIONS(1320), + [anon_sym_nullptr] = ACTIONS(1320), [sym_comment] = ACTIONS(3), }, [270] = { - [ts_builtin_sym_end] = ACTIONS(1315), - [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_LBRACK_LBRACK] = ACTIONS(1315), - [anon_sym___declspec] = 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), - [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_else] = 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_identifier] = ACTIONS(1320), + [aux_sym_preproc_include_token1] = ACTIONS(1320), + [aux_sym_preproc_def_token1] = ACTIONS(1320), + [aux_sym_preproc_if_token1] = ACTIONS(1320), + [aux_sym_preproc_if_token2] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1320), + [sym_preproc_directive] = ACTIONS(1320), + [anon_sym_LPAREN2] = ACTIONS(1322), + [anon_sym_BANG] = ACTIONS(1322), + [anon_sym_TILDE] = ACTIONS(1322), + [anon_sym_DASH] = ACTIONS(1320), + [anon_sym_PLUS] = ACTIONS(1320), + [anon_sym_STAR] = ACTIONS(1322), + [anon_sym_AMP] = ACTIONS(1322), + [anon_sym_SEMI] = ACTIONS(1322), + [anon_sym___extension__] = ACTIONS(1320), + [anon_sym_typedef] = ACTIONS(1320), + [anon_sym_extern] = ACTIONS(1320), + [anon_sym___attribute__] = ACTIONS(1320), + [anon_sym___scanf] = ACTIONS(1320), + [anon_sym___printf] = ACTIONS(1320), + [anon_sym___read_mostly] = ACTIONS(1320), + [anon_sym___must_hold] = ACTIONS(1320), + [anon_sym___ro_after_init] = ACTIONS(1320), + [anon_sym___init] = ACTIONS(1320), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1322), + [anon_sym___declspec] = ACTIONS(1320), + [anon_sym___cdecl] = ACTIONS(1320), + [anon_sym___clrcall] = ACTIONS(1320), + [anon_sym___stdcall] = ACTIONS(1320), + [anon_sym___fastcall] = ACTIONS(1320), + [anon_sym___thiscall] = ACTIONS(1320), + [anon_sym___vectorcall] = ACTIONS(1320), + [anon_sym_LBRACE] = ACTIONS(1322), + [anon_sym_signed] = ACTIONS(1320), + [anon_sym_unsigned] = ACTIONS(1320), + [anon_sym_long] = ACTIONS(1320), + [anon_sym_short] = ACTIONS(1320), + [anon_sym_static] = ACTIONS(1320), + [anon_sym_auto] = ACTIONS(1320), + [anon_sym_register] = ACTIONS(1320), + [anon_sym_inline] = ACTIONS(1320), + [anon_sym___inline] = ACTIONS(1320), + [anon_sym___inline__] = ACTIONS(1320), + [anon_sym___forceinline] = ACTIONS(1320), + [anon_sym_thread_local] = ACTIONS(1320), + [anon_sym___thread] = ACTIONS(1320), + [anon_sym_const] = ACTIONS(1320), + [anon_sym_constexpr] = ACTIONS(1320), + [anon_sym_volatile] = ACTIONS(1320), + [anon_sym_restrict] = ACTIONS(1320), + [anon_sym___restrict__] = ACTIONS(1320), + [anon_sym__Atomic] = ACTIONS(1320), + [anon_sym__Noreturn] = ACTIONS(1320), + [anon_sym_noreturn] = ACTIONS(1320), + [sym_primitive_type] = ACTIONS(1320), + [anon_sym_enum] = ACTIONS(1320), + [anon_sym_struct] = ACTIONS(1320), + [anon_sym_union] = ACTIONS(1320), + [anon_sym_if] = ACTIONS(1320), + [anon_sym_else] = ACTIONS(1320), + [anon_sym_switch] = ACTIONS(1320), + [anon_sym_case] = ACTIONS(1320), + [anon_sym_default] = ACTIONS(1320), + [anon_sym_while] = ACTIONS(1320), + [anon_sym_do] = ACTIONS(1320), + [anon_sym_for] = ACTIONS(1320), + [anon_sym_return] = ACTIONS(1320), + [anon_sym_break] = ACTIONS(1320), + [anon_sym_continue] = ACTIONS(1320), + [anon_sym_goto] = ACTIONS(1320), + [anon_sym___try] = ACTIONS(1320), + [anon_sym___leave] = ACTIONS(1320), + [anon_sym_DASH_DASH] = ACTIONS(1322), + [anon_sym_PLUS_PLUS] = ACTIONS(1322), + [anon_sym_sizeof] = ACTIONS(1320), + [anon_sym___alignof__] = ACTIONS(1320), + [anon_sym___alignof] = ACTIONS(1320), + [anon_sym__alignof] = ACTIONS(1320), + [anon_sym_alignof] = ACTIONS(1320), + [anon_sym__Alignof] = ACTIONS(1320), + [anon_sym_offsetof] = ACTIONS(1320), + [anon_sym__Generic] = ACTIONS(1320), + [anon_sym_asm] = ACTIONS(1320), + [anon_sym___asm__] = ACTIONS(1320), + [sym_number_literal] = ACTIONS(1322), + [anon_sym_L_SQUOTE] = ACTIONS(1322), + [anon_sym_u_SQUOTE] = ACTIONS(1322), + [anon_sym_U_SQUOTE] = ACTIONS(1322), + [anon_sym_u8_SQUOTE] = ACTIONS(1322), + [anon_sym_SQUOTE] = ACTIONS(1322), + [anon_sym_L_DQUOTE] = ACTIONS(1322), + [anon_sym_u_DQUOTE] = ACTIONS(1322), + [anon_sym_U_DQUOTE] = ACTIONS(1322), + [anon_sym_u8_DQUOTE] = ACTIONS(1322), + [anon_sym_DQUOTE] = ACTIONS(1322), + [sym_true] = ACTIONS(1320), + [sym_false] = ACTIONS(1320), + [anon_sym_NULL] = ACTIONS(1320), + [anon_sym_nullptr] = ACTIONS(1320), [sym_comment] = ACTIONS(3), }, [271] = { - [ts_builtin_sym_end] = ACTIONS(1315), - [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_LBRACK_LBRACK] = ACTIONS(1315), - [anon_sym___declspec] = 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), - [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_else] = 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_identifier] = ACTIONS(1420), + [aux_sym_preproc_include_token1] = ACTIONS(1420), + [aux_sym_preproc_def_token1] = ACTIONS(1420), + [aux_sym_preproc_if_token1] = ACTIONS(1420), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1420), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1420), + [sym_preproc_directive] = ACTIONS(1420), + [anon_sym_LPAREN2] = ACTIONS(1422), + [anon_sym_BANG] = ACTIONS(1422), + [anon_sym_TILDE] = ACTIONS(1422), + [anon_sym_DASH] = ACTIONS(1420), + [anon_sym_PLUS] = ACTIONS(1420), + [anon_sym_STAR] = ACTIONS(1422), + [anon_sym_AMP] = ACTIONS(1422), + [anon_sym_SEMI] = ACTIONS(1422), + [anon_sym___extension__] = ACTIONS(1420), + [anon_sym_typedef] = ACTIONS(1420), + [anon_sym_extern] = ACTIONS(1420), + [anon_sym___attribute__] = ACTIONS(1420), + [anon_sym___scanf] = ACTIONS(1420), + [anon_sym___printf] = ACTIONS(1420), + [anon_sym___read_mostly] = ACTIONS(1420), + [anon_sym___must_hold] = ACTIONS(1420), + [anon_sym___ro_after_init] = ACTIONS(1420), + [anon_sym___init] = ACTIONS(1420), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1422), + [anon_sym___declspec] = ACTIONS(1420), + [anon_sym___cdecl] = ACTIONS(1420), + [anon_sym___clrcall] = ACTIONS(1420), + [anon_sym___stdcall] = ACTIONS(1420), + [anon_sym___fastcall] = ACTIONS(1420), + [anon_sym___thiscall] = ACTIONS(1420), + [anon_sym___vectorcall] = ACTIONS(1420), + [anon_sym_LBRACE] = ACTIONS(1422), + [anon_sym_RBRACE] = ACTIONS(1422), + [anon_sym_signed] = ACTIONS(1420), + [anon_sym_unsigned] = ACTIONS(1420), + [anon_sym_long] = ACTIONS(1420), + [anon_sym_short] = ACTIONS(1420), + [anon_sym_static] = ACTIONS(1420), + [anon_sym_auto] = ACTIONS(1420), + [anon_sym_register] = ACTIONS(1420), + [anon_sym_inline] = ACTIONS(1420), + [anon_sym___inline] = ACTIONS(1420), + [anon_sym___inline__] = ACTIONS(1420), + [anon_sym___forceinline] = ACTIONS(1420), + [anon_sym_thread_local] = ACTIONS(1420), + [anon_sym___thread] = ACTIONS(1420), + [anon_sym_const] = ACTIONS(1420), + [anon_sym_constexpr] = ACTIONS(1420), + [anon_sym_volatile] = ACTIONS(1420), + [anon_sym_restrict] = ACTIONS(1420), + [anon_sym___restrict__] = ACTIONS(1420), + [anon_sym__Atomic] = ACTIONS(1420), + [anon_sym__Noreturn] = ACTIONS(1420), + [anon_sym_noreturn] = ACTIONS(1420), + [sym_primitive_type] = ACTIONS(1420), + [anon_sym_enum] = ACTIONS(1420), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_union] = ACTIONS(1420), + [anon_sym_if] = ACTIONS(1420), + [anon_sym_else] = ACTIONS(1420), + [anon_sym_switch] = ACTIONS(1420), + [anon_sym_case] = ACTIONS(1420), + [anon_sym_default] = ACTIONS(1420), + [anon_sym_while] = ACTIONS(1420), + [anon_sym_do] = ACTIONS(1420), + [anon_sym_for] = ACTIONS(1420), + [anon_sym_return] = ACTIONS(1420), + [anon_sym_break] = ACTIONS(1420), + [anon_sym_continue] = ACTIONS(1420), + [anon_sym_goto] = ACTIONS(1420), + [anon_sym___try] = ACTIONS(1420), + [anon_sym___leave] = ACTIONS(1420), + [anon_sym_DASH_DASH] = ACTIONS(1422), + [anon_sym_PLUS_PLUS] = ACTIONS(1422), + [anon_sym_sizeof] = ACTIONS(1420), + [anon_sym___alignof__] = ACTIONS(1420), + [anon_sym___alignof] = ACTIONS(1420), + [anon_sym__alignof] = ACTIONS(1420), + [anon_sym_alignof] = ACTIONS(1420), + [anon_sym__Alignof] = ACTIONS(1420), + [anon_sym_offsetof] = ACTIONS(1420), + [anon_sym__Generic] = ACTIONS(1420), + [anon_sym_asm] = ACTIONS(1420), + [anon_sym___asm__] = ACTIONS(1420), + [sym_number_literal] = ACTIONS(1422), + [anon_sym_L_SQUOTE] = ACTIONS(1422), + [anon_sym_u_SQUOTE] = ACTIONS(1422), + [anon_sym_U_SQUOTE] = ACTIONS(1422), + [anon_sym_u8_SQUOTE] = ACTIONS(1422), + [anon_sym_SQUOTE] = ACTIONS(1422), + [anon_sym_L_DQUOTE] = ACTIONS(1422), + [anon_sym_u_DQUOTE] = ACTIONS(1422), + [anon_sym_U_DQUOTE] = ACTIONS(1422), + [anon_sym_u8_DQUOTE] = ACTIONS(1422), + [anon_sym_DQUOTE] = ACTIONS(1422), + [sym_true] = ACTIONS(1420), + [sym_false] = ACTIONS(1420), + [anon_sym_NULL] = ACTIONS(1420), + [anon_sym_nullptr] = ACTIONS(1420), [sym_comment] = ACTIONS(3), }, [272] = { - [ts_builtin_sym_end] = ACTIONS(1315), - [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_LBRACK_LBRACK] = ACTIONS(1315), - [anon_sym___declspec] = 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), - [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_else] = 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_identifier] = ACTIONS(1348), + [aux_sym_preproc_include_token1] = ACTIONS(1348), + [aux_sym_preproc_def_token1] = ACTIONS(1348), + [aux_sym_preproc_if_token1] = ACTIONS(1348), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1348), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1348), + [sym_preproc_directive] = ACTIONS(1348), + [anon_sym_LPAREN2] = ACTIONS(1350), + [anon_sym_BANG] = ACTIONS(1350), + [anon_sym_TILDE] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(1348), + [anon_sym_PLUS] = ACTIONS(1348), + [anon_sym_STAR] = ACTIONS(1350), + [anon_sym_AMP] = ACTIONS(1350), + [anon_sym_SEMI] = ACTIONS(1350), + [anon_sym___extension__] = ACTIONS(1348), + [anon_sym_typedef] = ACTIONS(1348), + [anon_sym_extern] = ACTIONS(1348), + [anon_sym___attribute__] = ACTIONS(1348), + [anon_sym___scanf] = ACTIONS(1348), + [anon_sym___printf] = ACTIONS(1348), + [anon_sym___read_mostly] = ACTIONS(1348), + [anon_sym___must_hold] = ACTIONS(1348), + [anon_sym___ro_after_init] = ACTIONS(1348), + [anon_sym___init] = ACTIONS(1348), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1350), + [anon_sym___declspec] = ACTIONS(1348), + [anon_sym___cdecl] = ACTIONS(1348), + [anon_sym___clrcall] = ACTIONS(1348), + [anon_sym___stdcall] = ACTIONS(1348), + [anon_sym___fastcall] = ACTIONS(1348), + [anon_sym___thiscall] = ACTIONS(1348), + [anon_sym___vectorcall] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_RBRACE] = ACTIONS(1350), + [anon_sym_signed] = ACTIONS(1348), + [anon_sym_unsigned] = ACTIONS(1348), + [anon_sym_long] = ACTIONS(1348), + [anon_sym_short] = ACTIONS(1348), + [anon_sym_static] = ACTIONS(1348), + [anon_sym_auto] = ACTIONS(1348), + [anon_sym_register] = ACTIONS(1348), + [anon_sym_inline] = ACTIONS(1348), + [anon_sym___inline] = ACTIONS(1348), + [anon_sym___inline__] = ACTIONS(1348), + [anon_sym___forceinline] = ACTIONS(1348), + [anon_sym_thread_local] = ACTIONS(1348), + [anon_sym___thread] = ACTIONS(1348), + [anon_sym_const] = ACTIONS(1348), + [anon_sym_constexpr] = ACTIONS(1348), + [anon_sym_volatile] = ACTIONS(1348), + [anon_sym_restrict] = ACTIONS(1348), + [anon_sym___restrict__] = ACTIONS(1348), + [anon_sym__Atomic] = ACTIONS(1348), + [anon_sym__Noreturn] = ACTIONS(1348), + [anon_sym_noreturn] = ACTIONS(1348), + [sym_primitive_type] = ACTIONS(1348), + [anon_sym_enum] = ACTIONS(1348), + [anon_sym_struct] = ACTIONS(1348), + [anon_sym_union] = ACTIONS(1348), + [anon_sym_if] = ACTIONS(1348), + [anon_sym_else] = ACTIONS(1348), + [anon_sym_switch] = ACTIONS(1348), + [anon_sym_case] = ACTIONS(1348), + [anon_sym_default] = ACTIONS(1348), + [anon_sym_while] = ACTIONS(1348), + [anon_sym_do] = ACTIONS(1348), + [anon_sym_for] = ACTIONS(1348), + [anon_sym_return] = ACTIONS(1348), + [anon_sym_break] = ACTIONS(1348), + [anon_sym_continue] = ACTIONS(1348), + [anon_sym_goto] = ACTIONS(1348), + [anon_sym___try] = ACTIONS(1348), + [anon_sym___leave] = ACTIONS(1348), + [anon_sym_DASH_DASH] = ACTIONS(1350), + [anon_sym_PLUS_PLUS] = ACTIONS(1350), + [anon_sym_sizeof] = ACTIONS(1348), + [anon_sym___alignof__] = ACTIONS(1348), + [anon_sym___alignof] = ACTIONS(1348), + [anon_sym__alignof] = ACTIONS(1348), + [anon_sym_alignof] = ACTIONS(1348), + [anon_sym__Alignof] = ACTIONS(1348), + [anon_sym_offsetof] = ACTIONS(1348), + [anon_sym__Generic] = ACTIONS(1348), + [anon_sym_asm] = ACTIONS(1348), + [anon_sym___asm__] = ACTIONS(1348), + [sym_number_literal] = ACTIONS(1350), + [anon_sym_L_SQUOTE] = ACTIONS(1350), + [anon_sym_u_SQUOTE] = ACTIONS(1350), + [anon_sym_U_SQUOTE] = ACTIONS(1350), + [anon_sym_u8_SQUOTE] = ACTIONS(1350), + [anon_sym_SQUOTE] = ACTIONS(1350), + [anon_sym_L_DQUOTE] = ACTIONS(1350), + [anon_sym_u_DQUOTE] = ACTIONS(1350), + [anon_sym_U_DQUOTE] = ACTIONS(1350), + [anon_sym_u8_DQUOTE] = ACTIONS(1350), + [anon_sym_DQUOTE] = ACTIONS(1350), + [sym_true] = ACTIONS(1348), + [sym_false] = ACTIONS(1348), + [anon_sym_NULL] = ACTIONS(1348), + [anon_sym_nullptr] = ACTIONS(1348), [sym_comment] = ACTIONS(3), }, [273] = { - [ts_builtin_sym_end] = ACTIONS(1315), - [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_LBRACK_LBRACK] = ACTIONS(1315), - [anon_sym___declspec] = 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), - [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_else] = 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_identifier] = ACTIONS(1416), + [aux_sym_preproc_include_token1] = ACTIONS(1416), + [aux_sym_preproc_def_token1] = ACTIONS(1416), + [aux_sym_preproc_if_token1] = ACTIONS(1416), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1416), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1416), + [sym_preproc_directive] = ACTIONS(1416), + [anon_sym_LPAREN2] = ACTIONS(1418), + [anon_sym_BANG] = ACTIONS(1418), + [anon_sym_TILDE] = ACTIONS(1418), + [anon_sym_DASH] = ACTIONS(1416), + [anon_sym_PLUS] = ACTIONS(1416), + [anon_sym_STAR] = ACTIONS(1418), + [anon_sym_AMP] = ACTIONS(1418), + [anon_sym_SEMI] = ACTIONS(1418), + [anon_sym___extension__] = ACTIONS(1416), + [anon_sym_typedef] = ACTIONS(1416), + [anon_sym_extern] = ACTIONS(1416), + [anon_sym___attribute__] = ACTIONS(1416), + [anon_sym___scanf] = ACTIONS(1416), + [anon_sym___printf] = ACTIONS(1416), + [anon_sym___read_mostly] = ACTIONS(1416), + [anon_sym___must_hold] = ACTIONS(1416), + [anon_sym___ro_after_init] = ACTIONS(1416), + [anon_sym___init] = ACTIONS(1416), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1418), + [anon_sym___declspec] = ACTIONS(1416), + [anon_sym___cdecl] = ACTIONS(1416), + [anon_sym___clrcall] = ACTIONS(1416), + [anon_sym___stdcall] = ACTIONS(1416), + [anon_sym___fastcall] = ACTIONS(1416), + [anon_sym___thiscall] = ACTIONS(1416), + [anon_sym___vectorcall] = ACTIONS(1416), + [anon_sym_LBRACE] = ACTIONS(1418), + [anon_sym_RBRACE] = ACTIONS(1418), + [anon_sym_signed] = ACTIONS(1416), + [anon_sym_unsigned] = ACTIONS(1416), + [anon_sym_long] = ACTIONS(1416), + [anon_sym_short] = ACTIONS(1416), + [anon_sym_static] = ACTIONS(1416), + [anon_sym_auto] = ACTIONS(1416), + [anon_sym_register] = ACTIONS(1416), + [anon_sym_inline] = ACTIONS(1416), + [anon_sym___inline] = ACTIONS(1416), + [anon_sym___inline__] = ACTIONS(1416), + [anon_sym___forceinline] = ACTIONS(1416), + [anon_sym_thread_local] = ACTIONS(1416), + [anon_sym___thread] = ACTIONS(1416), + [anon_sym_const] = ACTIONS(1416), + [anon_sym_constexpr] = ACTIONS(1416), + [anon_sym_volatile] = ACTIONS(1416), + [anon_sym_restrict] = ACTIONS(1416), + [anon_sym___restrict__] = ACTIONS(1416), + [anon_sym__Atomic] = ACTIONS(1416), + [anon_sym__Noreturn] = ACTIONS(1416), + [anon_sym_noreturn] = ACTIONS(1416), + [sym_primitive_type] = ACTIONS(1416), + [anon_sym_enum] = ACTIONS(1416), + [anon_sym_struct] = ACTIONS(1416), + [anon_sym_union] = ACTIONS(1416), + [anon_sym_if] = ACTIONS(1416), + [anon_sym_else] = ACTIONS(1416), + [anon_sym_switch] = ACTIONS(1416), + [anon_sym_case] = ACTIONS(1416), + [anon_sym_default] = ACTIONS(1416), + [anon_sym_while] = ACTIONS(1416), + [anon_sym_do] = ACTIONS(1416), + [anon_sym_for] = ACTIONS(1416), + [anon_sym_return] = ACTIONS(1416), + [anon_sym_break] = ACTIONS(1416), + [anon_sym_continue] = ACTIONS(1416), + [anon_sym_goto] = ACTIONS(1416), + [anon_sym___try] = ACTIONS(1416), + [anon_sym___leave] = ACTIONS(1416), + [anon_sym_DASH_DASH] = ACTIONS(1418), + [anon_sym_PLUS_PLUS] = ACTIONS(1418), + [anon_sym_sizeof] = ACTIONS(1416), + [anon_sym___alignof__] = ACTIONS(1416), + [anon_sym___alignof] = ACTIONS(1416), + [anon_sym__alignof] = ACTIONS(1416), + [anon_sym_alignof] = ACTIONS(1416), + [anon_sym__Alignof] = ACTIONS(1416), + [anon_sym_offsetof] = ACTIONS(1416), + [anon_sym__Generic] = ACTIONS(1416), + [anon_sym_asm] = ACTIONS(1416), + [anon_sym___asm__] = ACTIONS(1416), + [sym_number_literal] = ACTIONS(1418), + [anon_sym_L_SQUOTE] = ACTIONS(1418), + [anon_sym_u_SQUOTE] = ACTIONS(1418), + [anon_sym_U_SQUOTE] = ACTIONS(1418), + [anon_sym_u8_SQUOTE] = ACTIONS(1418), + [anon_sym_SQUOTE] = ACTIONS(1418), + [anon_sym_L_DQUOTE] = ACTIONS(1418), + [anon_sym_u_DQUOTE] = ACTIONS(1418), + [anon_sym_U_DQUOTE] = ACTIONS(1418), + [anon_sym_u8_DQUOTE] = ACTIONS(1418), + [anon_sym_DQUOTE] = ACTIONS(1418), + [sym_true] = ACTIONS(1416), + [sym_false] = ACTIONS(1416), + [anon_sym_NULL] = ACTIONS(1416), + [anon_sym_nullptr] = ACTIONS(1416), [sym_comment] = ACTIONS(3), }, [274] = { - [ts_builtin_sym_end] = ACTIONS(1315), - [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_LBRACK_LBRACK] = ACTIONS(1315), - [anon_sym___declspec] = 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), - [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_else] = 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), + [ts_builtin_sym_end] = ACTIONS(1422), + [sym_identifier] = ACTIONS(1420), + [aux_sym_preproc_include_token1] = ACTIONS(1420), + [aux_sym_preproc_def_token1] = ACTIONS(1420), + [aux_sym_preproc_if_token1] = ACTIONS(1420), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1420), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1420), + [sym_preproc_directive] = ACTIONS(1420), + [anon_sym_LPAREN2] = ACTIONS(1422), + [anon_sym_BANG] = ACTIONS(1422), + [anon_sym_TILDE] = ACTIONS(1422), + [anon_sym_DASH] = ACTIONS(1420), + [anon_sym_PLUS] = ACTIONS(1420), + [anon_sym_STAR] = ACTIONS(1422), + [anon_sym_AMP] = ACTIONS(1422), + [anon_sym_SEMI] = ACTIONS(1422), + [anon_sym___extension__] = ACTIONS(1420), + [anon_sym_typedef] = ACTIONS(1420), + [anon_sym_extern] = ACTIONS(1420), + [anon_sym___attribute__] = ACTIONS(1420), + [anon_sym___scanf] = ACTIONS(1420), + [anon_sym___printf] = ACTIONS(1420), + [anon_sym___read_mostly] = ACTIONS(1420), + [anon_sym___must_hold] = ACTIONS(1420), + [anon_sym___ro_after_init] = ACTIONS(1420), + [anon_sym___init] = ACTIONS(1420), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1422), + [anon_sym___declspec] = ACTIONS(1420), + [anon_sym___cdecl] = ACTIONS(1420), + [anon_sym___clrcall] = ACTIONS(1420), + [anon_sym___stdcall] = ACTIONS(1420), + [anon_sym___fastcall] = ACTIONS(1420), + [anon_sym___thiscall] = ACTIONS(1420), + [anon_sym___vectorcall] = ACTIONS(1420), + [anon_sym_LBRACE] = ACTIONS(1422), + [anon_sym_signed] = ACTIONS(1420), + [anon_sym_unsigned] = ACTIONS(1420), + [anon_sym_long] = ACTIONS(1420), + [anon_sym_short] = ACTIONS(1420), + [anon_sym_static] = ACTIONS(1420), + [anon_sym_auto] = ACTIONS(1420), + [anon_sym_register] = ACTIONS(1420), + [anon_sym_inline] = ACTIONS(1420), + [anon_sym___inline] = ACTIONS(1420), + [anon_sym___inline__] = ACTIONS(1420), + [anon_sym___forceinline] = ACTIONS(1420), + [anon_sym_thread_local] = ACTIONS(1420), + [anon_sym___thread] = ACTIONS(1420), + [anon_sym_const] = ACTIONS(1420), + [anon_sym_constexpr] = ACTIONS(1420), + [anon_sym_volatile] = ACTIONS(1420), + [anon_sym_restrict] = ACTIONS(1420), + [anon_sym___restrict__] = ACTIONS(1420), + [anon_sym__Atomic] = ACTIONS(1420), + [anon_sym__Noreturn] = ACTIONS(1420), + [anon_sym_noreturn] = ACTIONS(1420), + [sym_primitive_type] = ACTIONS(1420), + [anon_sym_enum] = ACTIONS(1420), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_union] = ACTIONS(1420), + [anon_sym_if] = ACTIONS(1420), + [anon_sym_else] = ACTIONS(1420), + [anon_sym_switch] = ACTIONS(1420), + [anon_sym_case] = ACTIONS(1420), + [anon_sym_default] = ACTIONS(1420), + [anon_sym_while] = ACTIONS(1420), + [anon_sym_do] = ACTIONS(1420), + [anon_sym_for] = ACTIONS(1420), + [anon_sym_return] = ACTIONS(1420), + [anon_sym_break] = ACTIONS(1420), + [anon_sym_continue] = ACTIONS(1420), + [anon_sym_goto] = ACTIONS(1420), + [anon_sym___try] = ACTIONS(1420), + [anon_sym___leave] = ACTIONS(1420), + [anon_sym_DASH_DASH] = ACTIONS(1422), + [anon_sym_PLUS_PLUS] = ACTIONS(1422), + [anon_sym_sizeof] = ACTIONS(1420), + [anon_sym___alignof__] = ACTIONS(1420), + [anon_sym___alignof] = ACTIONS(1420), + [anon_sym__alignof] = ACTIONS(1420), + [anon_sym_alignof] = ACTIONS(1420), + [anon_sym__Alignof] = ACTIONS(1420), + [anon_sym_offsetof] = ACTIONS(1420), + [anon_sym__Generic] = ACTIONS(1420), + [anon_sym_asm] = ACTIONS(1420), + [anon_sym___asm__] = ACTIONS(1420), + [sym_number_literal] = ACTIONS(1422), + [anon_sym_L_SQUOTE] = ACTIONS(1422), + [anon_sym_u_SQUOTE] = ACTIONS(1422), + [anon_sym_U_SQUOTE] = ACTIONS(1422), + [anon_sym_u8_SQUOTE] = ACTIONS(1422), + [anon_sym_SQUOTE] = ACTIONS(1422), + [anon_sym_L_DQUOTE] = ACTIONS(1422), + [anon_sym_u_DQUOTE] = ACTIONS(1422), + [anon_sym_U_DQUOTE] = ACTIONS(1422), + [anon_sym_u8_DQUOTE] = ACTIONS(1422), + [anon_sym_DQUOTE] = ACTIONS(1422), + [sym_true] = ACTIONS(1420), + [sym_false] = ACTIONS(1420), + [anon_sym_NULL] = ACTIONS(1420), + [anon_sym_nullptr] = ACTIONS(1420), [sym_comment] = ACTIONS(3), }, [275] = { - [ts_builtin_sym_end] = ACTIONS(1315), - [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_LBRACK_LBRACK] = ACTIONS(1315), - [anon_sym___declspec] = 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), - [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_else] = 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_identifier] = ACTIONS(1412), + [aux_sym_preproc_include_token1] = ACTIONS(1412), + [aux_sym_preproc_def_token1] = ACTIONS(1412), + [aux_sym_preproc_if_token1] = ACTIONS(1412), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1412), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1412), + [sym_preproc_directive] = ACTIONS(1412), + [anon_sym_LPAREN2] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(1414), + [anon_sym_TILDE] = ACTIONS(1414), + [anon_sym_DASH] = ACTIONS(1412), + [anon_sym_PLUS] = ACTIONS(1412), + [anon_sym_STAR] = ACTIONS(1414), + [anon_sym_AMP] = ACTIONS(1414), + [anon_sym_SEMI] = ACTIONS(1414), + [anon_sym___extension__] = ACTIONS(1412), + [anon_sym_typedef] = ACTIONS(1412), + [anon_sym_extern] = ACTIONS(1412), + [anon_sym___attribute__] = ACTIONS(1412), + [anon_sym___scanf] = ACTIONS(1412), + [anon_sym___printf] = ACTIONS(1412), + [anon_sym___read_mostly] = ACTIONS(1412), + [anon_sym___must_hold] = ACTIONS(1412), + [anon_sym___ro_after_init] = ACTIONS(1412), + [anon_sym___init] = ACTIONS(1412), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1414), + [anon_sym___declspec] = ACTIONS(1412), + [anon_sym___cdecl] = ACTIONS(1412), + [anon_sym___clrcall] = ACTIONS(1412), + [anon_sym___stdcall] = ACTIONS(1412), + [anon_sym___fastcall] = ACTIONS(1412), + [anon_sym___thiscall] = ACTIONS(1412), + [anon_sym___vectorcall] = ACTIONS(1412), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_RBRACE] = ACTIONS(1414), + [anon_sym_signed] = ACTIONS(1412), + [anon_sym_unsigned] = ACTIONS(1412), + [anon_sym_long] = ACTIONS(1412), + [anon_sym_short] = ACTIONS(1412), + [anon_sym_static] = ACTIONS(1412), + [anon_sym_auto] = ACTIONS(1412), + [anon_sym_register] = ACTIONS(1412), + [anon_sym_inline] = ACTIONS(1412), + [anon_sym___inline] = ACTIONS(1412), + [anon_sym___inline__] = ACTIONS(1412), + [anon_sym___forceinline] = ACTIONS(1412), + [anon_sym_thread_local] = ACTIONS(1412), + [anon_sym___thread] = ACTIONS(1412), + [anon_sym_const] = ACTIONS(1412), + [anon_sym_constexpr] = ACTIONS(1412), + [anon_sym_volatile] = ACTIONS(1412), + [anon_sym_restrict] = ACTIONS(1412), + [anon_sym___restrict__] = ACTIONS(1412), + [anon_sym__Atomic] = ACTIONS(1412), + [anon_sym__Noreturn] = ACTIONS(1412), + [anon_sym_noreturn] = ACTIONS(1412), + [sym_primitive_type] = ACTIONS(1412), + [anon_sym_enum] = ACTIONS(1412), + [anon_sym_struct] = ACTIONS(1412), + [anon_sym_union] = ACTIONS(1412), + [anon_sym_if] = ACTIONS(1412), + [anon_sym_else] = ACTIONS(1412), + [anon_sym_switch] = ACTIONS(1412), + [anon_sym_case] = ACTIONS(1412), + [anon_sym_default] = ACTIONS(1412), + [anon_sym_while] = ACTIONS(1412), + [anon_sym_do] = ACTIONS(1412), + [anon_sym_for] = ACTIONS(1412), + [anon_sym_return] = ACTIONS(1412), + [anon_sym_break] = ACTIONS(1412), + [anon_sym_continue] = ACTIONS(1412), + [anon_sym_goto] = ACTIONS(1412), + [anon_sym___try] = ACTIONS(1412), + [anon_sym___leave] = ACTIONS(1412), + [anon_sym_DASH_DASH] = ACTIONS(1414), + [anon_sym_PLUS_PLUS] = ACTIONS(1414), + [anon_sym_sizeof] = ACTIONS(1412), + [anon_sym___alignof__] = ACTIONS(1412), + [anon_sym___alignof] = ACTIONS(1412), + [anon_sym__alignof] = ACTIONS(1412), + [anon_sym_alignof] = ACTIONS(1412), + [anon_sym__Alignof] = ACTIONS(1412), + [anon_sym_offsetof] = ACTIONS(1412), + [anon_sym__Generic] = ACTIONS(1412), + [anon_sym_asm] = ACTIONS(1412), + [anon_sym___asm__] = ACTIONS(1412), + [sym_number_literal] = ACTIONS(1414), + [anon_sym_L_SQUOTE] = ACTIONS(1414), + [anon_sym_u_SQUOTE] = ACTIONS(1414), + [anon_sym_U_SQUOTE] = ACTIONS(1414), + [anon_sym_u8_SQUOTE] = ACTIONS(1414), + [anon_sym_SQUOTE] = ACTIONS(1414), + [anon_sym_L_DQUOTE] = ACTIONS(1414), + [anon_sym_u_DQUOTE] = ACTIONS(1414), + [anon_sym_U_DQUOTE] = ACTIONS(1414), + [anon_sym_u8_DQUOTE] = ACTIONS(1414), + [anon_sym_DQUOTE] = ACTIONS(1414), + [sym_true] = ACTIONS(1412), + [sym_false] = ACTIONS(1412), + [anon_sym_NULL] = ACTIONS(1412), + [anon_sym_nullptr] = ACTIONS(1412), [sym_comment] = ACTIONS(3), }, [276] = { - [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(1403), - [anon_sym_BANG] = ACTIONS(1403), - [anon_sym_TILDE] = ACTIONS(1403), - [anon_sym_DASH] = ACTIONS(1401), - [anon_sym_PLUS] = ACTIONS(1401), - [anon_sym_STAR] = ACTIONS(1403), - [anon_sym_AMP] = ACTIONS(1403), - [anon_sym_SEMI] = ACTIONS(1403), - [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_LBRACK_LBRACK] = ACTIONS(1403), - [anon_sym___declspec] = 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(1403), - [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), - [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_else] = 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(1403), - [anon_sym_PLUS_PLUS] = ACTIONS(1403), - [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(1403), - [anon_sym_L_SQUOTE] = ACTIONS(1403), - [anon_sym_u_SQUOTE] = ACTIONS(1403), - [anon_sym_U_SQUOTE] = ACTIONS(1403), - [anon_sym_u8_SQUOTE] = ACTIONS(1403), - [anon_sym_SQUOTE] = ACTIONS(1403), - [anon_sym_L_DQUOTE] = ACTIONS(1403), - [anon_sym_u_DQUOTE] = ACTIONS(1403), - [anon_sym_U_DQUOTE] = ACTIONS(1403), - [anon_sym_u8_DQUOTE] = ACTIONS(1403), - [anon_sym_DQUOTE] = ACTIONS(1403), - [sym_true] = ACTIONS(1401), - [sym_false] = ACTIONS(1401), - [anon_sym_NULL] = ACTIONS(1401), - [anon_sym_nullptr] = ACTIONS(1401), + [sym_identifier] = ACTIONS(1320), + [aux_sym_preproc_include_token1] = ACTIONS(1320), + [aux_sym_preproc_def_token1] = ACTIONS(1320), + [aux_sym_preproc_if_token1] = ACTIONS(1320), + [aux_sym_preproc_if_token2] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1320), + [sym_preproc_directive] = ACTIONS(1320), + [anon_sym_LPAREN2] = ACTIONS(1322), + [anon_sym_BANG] = ACTIONS(1322), + [anon_sym_TILDE] = ACTIONS(1322), + [anon_sym_DASH] = ACTIONS(1320), + [anon_sym_PLUS] = ACTIONS(1320), + [anon_sym_STAR] = ACTIONS(1322), + [anon_sym_AMP] = ACTIONS(1322), + [anon_sym_SEMI] = ACTIONS(1322), + [anon_sym___extension__] = ACTIONS(1320), + [anon_sym_typedef] = ACTIONS(1320), + [anon_sym_extern] = ACTIONS(1320), + [anon_sym___attribute__] = ACTIONS(1320), + [anon_sym___scanf] = ACTIONS(1320), + [anon_sym___printf] = ACTIONS(1320), + [anon_sym___read_mostly] = ACTIONS(1320), + [anon_sym___must_hold] = ACTIONS(1320), + [anon_sym___ro_after_init] = ACTIONS(1320), + [anon_sym___init] = ACTIONS(1320), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1322), + [anon_sym___declspec] = ACTIONS(1320), + [anon_sym___cdecl] = ACTIONS(1320), + [anon_sym___clrcall] = ACTIONS(1320), + [anon_sym___stdcall] = ACTIONS(1320), + [anon_sym___fastcall] = ACTIONS(1320), + [anon_sym___thiscall] = ACTIONS(1320), + [anon_sym___vectorcall] = ACTIONS(1320), + [anon_sym_LBRACE] = ACTIONS(1322), + [anon_sym_signed] = ACTIONS(1320), + [anon_sym_unsigned] = ACTIONS(1320), + [anon_sym_long] = ACTIONS(1320), + [anon_sym_short] = ACTIONS(1320), + [anon_sym_static] = ACTIONS(1320), + [anon_sym_auto] = ACTIONS(1320), + [anon_sym_register] = ACTIONS(1320), + [anon_sym_inline] = ACTIONS(1320), + [anon_sym___inline] = ACTIONS(1320), + [anon_sym___inline__] = ACTIONS(1320), + [anon_sym___forceinline] = ACTIONS(1320), + [anon_sym_thread_local] = ACTIONS(1320), + [anon_sym___thread] = ACTIONS(1320), + [anon_sym_const] = ACTIONS(1320), + [anon_sym_constexpr] = ACTIONS(1320), + [anon_sym_volatile] = ACTIONS(1320), + [anon_sym_restrict] = ACTIONS(1320), + [anon_sym___restrict__] = ACTIONS(1320), + [anon_sym__Atomic] = ACTIONS(1320), + [anon_sym__Noreturn] = ACTIONS(1320), + [anon_sym_noreturn] = ACTIONS(1320), + [sym_primitive_type] = ACTIONS(1320), + [anon_sym_enum] = ACTIONS(1320), + [anon_sym_struct] = ACTIONS(1320), + [anon_sym_union] = ACTIONS(1320), + [anon_sym_if] = ACTIONS(1320), + [anon_sym_else] = ACTIONS(1320), + [anon_sym_switch] = ACTIONS(1320), + [anon_sym_case] = ACTIONS(1320), + [anon_sym_default] = ACTIONS(1320), + [anon_sym_while] = ACTIONS(1320), + [anon_sym_do] = ACTIONS(1320), + [anon_sym_for] = ACTIONS(1320), + [anon_sym_return] = ACTIONS(1320), + [anon_sym_break] = ACTIONS(1320), + [anon_sym_continue] = ACTIONS(1320), + [anon_sym_goto] = ACTIONS(1320), + [anon_sym___try] = ACTIONS(1320), + [anon_sym___leave] = ACTIONS(1320), + [anon_sym_DASH_DASH] = ACTIONS(1322), + [anon_sym_PLUS_PLUS] = ACTIONS(1322), + [anon_sym_sizeof] = ACTIONS(1320), + [anon_sym___alignof__] = ACTIONS(1320), + [anon_sym___alignof] = ACTIONS(1320), + [anon_sym__alignof] = ACTIONS(1320), + [anon_sym_alignof] = ACTIONS(1320), + [anon_sym__Alignof] = ACTIONS(1320), + [anon_sym_offsetof] = ACTIONS(1320), + [anon_sym__Generic] = ACTIONS(1320), + [anon_sym_asm] = ACTIONS(1320), + [anon_sym___asm__] = ACTIONS(1320), + [sym_number_literal] = ACTIONS(1322), + [anon_sym_L_SQUOTE] = ACTIONS(1322), + [anon_sym_u_SQUOTE] = ACTIONS(1322), + [anon_sym_U_SQUOTE] = ACTIONS(1322), + [anon_sym_u8_SQUOTE] = ACTIONS(1322), + [anon_sym_SQUOTE] = ACTIONS(1322), + [anon_sym_L_DQUOTE] = ACTIONS(1322), + [anon_sym_u_DQUOTE] = ACTIONS(1322), + [anon_sym_U_DQUOTE] = ACTIONS(1322), + [anon_sym_u8_DQUOTE] = ACTIONS(1322), + [anon_sym_DQUOTE] = ACTIONS(1322), + [sym_true] = ACTIONS(1320), + [sym_false] = ACTIONS(1320), + [anon_sym_NULL] = ACTIONS(1320), + [anon_sym_nullptr] = ACTIONS(1320), [sym_comment] = ACTIONS(3), }, [277] = { - [sym_identifier] = ACTIONS(1405), - [aux_sym_preproc_include_token1] = ACTIONS(1405), - [aux_sym_preproc_def_token1] = ACTIONS(1405), - [aux_sym_preproc_if_token1] = ACTIONS(1405), - [aux_sym_preproc_if_token2] = ACTIONS(1405), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1405), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1405), - [sym_preproc_directive] = ACTIONS(1405), - [anon_sym_LPAREN2] = ACTIONS(1407), - [anon_sym_BANG] = ACTIONS(1407), - [anon_sym_TILDE] = ACTIONS(1407), - [anon_sym_DASH] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1405), - [anon_sym_STAR] = ACTIONS(1407), - [anon_sym_AMP] = ACTIONS(1407), - [anon_sym_SEMI] = ACTIONS(1407), - [anon_sym___extension__] = ACTIONS(1405), - [anon_sym_typedef] = ACTIONS(1405), - [anon_sym_extern] = ACTIONS(1405), - [anon_sym___attribute__] = ACTIONS(1405), - [anon_sym___scanf] = ACTIONS(1405), - [anon_sym___printf] = ACTIONS(1405), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1407), - [anon_sym___declspec] = ACTIONS(1405), - [anon_sym___cdecl] = ACTIONS(1405), - [anon_sym___clrcall] = ACTIONS(1405), - [anon_sym___stdcall] = ACTIONS(1405), - [anon_sym___fastcall] = ACTIONS(1405), - [anon_sym___thiscall] = ACTIONS(1405), - [anon_sym___vectorcall] = ACTIONS(1405), - [anon_sym_LBRACE] = ACTIONS(1407), - [anon_sym_signed] = ACTIONS(1405), - [anon_sym_unsigned] = ACTIONS(1405), - [anon_sym_long] = ACTIONS(1405), - [anon_sym_short] = ACTIONS(1405), - [anon_sym_static] = ACTIONS(1405), - [anon_sym_auto] = ACTIONS(1405), - [anon_sym_register] = ACTIONS(1405), - [anon_sym_inline] = ACTIONS(1405), - [anon_sym___inline] = ACTIONS(1405), - [anon_sym___inline__] = ACTIONS(1405), - [anon_sym___forceinline] = ACTIONS(1405), - [anon_sym_thread_local] = ACTIONS(1405), - [anon_sym___thread] = ACTIONS(1405), - [anon_sym_const] = ACTIONS(1405), - [anon_sym_constexpr] = ACTIONS(1405), - [anon_sym_volatile] = ACTIONS(1405), - [anon_sym_restrict] = ACTIONS(1405), - [anon_sym___restrict__] = ACTIONS(1405), - [anon_sym__Atomic] = ACTIONS(1405), - [anon_sym__Noreturn] = ACTIONS(1405), - [anon_sym_noreturn] = ACTIONS(1405), - [sym_primitive_type] = ACTIONS(1405), - [anon_sym_enum] = ACTIONS(1405), - [anon_sym_struct] = ACTIONS(1405), - [anon_sym_union] = ACTIONS(1405), - [anon_sym_if] = ACTIONS(1405), - [anon_sym_else] = ACTIONS(1405), - [anon_sym_switch] = ACTIONS(1405), - [anon_sym_case] = ACTIONS(1405), - [anon_sym_default] = ACTIONS(1405), - [anon_sym_while] = ACTIONS(1405), - [anon_sym_do] = ACTIONS(1405), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_return] = ACTIONS(1405), - [anon_sym_break] = ACTIONS(1405), - [anon_sym_continue] = ACTIONS(1405), - [anon_sym_goto] = ACTIONS(1405), - [anon_sym___try] = ACTIONS(1405), - [anon_sym___leave] = ACTIONS(1405), - [anon_sym_DASH_DASH] = ACTIONS(1407), - [anon_sym_PLUS_PLUS] = ACTIONS(1407), - [anon_sym_sizeof] = ACTIONS(1405), - [anon_sym___alignof__] = ACTIONS(1405), - [anon_sym___alignof] = ACTIONS(1405), - [anon_sym__alignof] = ACTIONS(1405), - [anon_sym_alignof] = ACTIONS(1405), - [anon_sym__Alignof] = ACTIONS(1405), - [anon_sym_offsetof] = ACTIONS(1405), - [anon_sym__Generic] = ACTIONS(1405), - [anon_sym_asm] = ACTIONS(1405), - [anon_sym___asm__] = ACTIONS(1405), - [sym_number_literal] = ACTIONS(1407), - [anon_sym_L_SQUOTE] = ACTIONS(1407), - [anon_sym_u_SQUOTE] = ACTIONS(1407), - [anon_sym_U_SQUOTE] = ACTIONS(1407), - [anon_sym_u8_SQUOTE] = ACTIONS(1407), - [anon_sym_SQUOTE] = ACTIONS(1407), - [anon_sym_L_DQUOTE] = ACTIONS(1407), - [anon_sym_u_DQUOTE] = ACTIONS(1407), - [anon_sym_U_DQUOTE] = ACTIONS(1407), - [anon_sym_u8_DQUOTE] = ACTIONS(1407), - [anon_sym_DQUOTE] = ACTIONS(1407), - [sym_true] = ACTIONS(1405), - [sym_false] = ACTIONS(1405), - [anon_sym_NULL] = ACTIONS(1405), - [anon_sym_nullptr] = ACTIONS(1405), + [sym_identifier] = ACTIONS(1320), + [aux_sym_preproc_include_token1] = ACTIONS(1320), + [aux_sym_preproc_def_token1] = ACTIONS(1320), + [aux_sym_preproc_if_token1] = ACTIONS(1320), + [aux_sym_preproc_if_token2] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1320), + [sym_preproc_directive] = ACTIONS(1320), + [anon_sym_LPAREN2] = ACTIONS(1322), + [anon_sym_BANG] = ACTIONS(1322), + [anon_sym_TILDE] = ACTIONS(1322), + [anon_sym_DASH] = ACTIONS(1320), + [anon_sym_PLUS] = ACTIONS(1320), + [anon_sym_STAR] = ACTIONS(1322), + [anon_sym_AMP] = ACTIONS(1322), + [anon_sym_SEMI] = ACTIONS(1322), + [anon_sym___extension__] = ACTIONS(1320), + [anon_sym_typedef] = ACTIONS(1320), + [anon_sym_extern] = ACTIONS(1320), + [anon_sym___attribute__] = ACTIONS(1320), + [anon_sym___scanf] = ACTIONS(1320), + [anon_sym___printf] = ACTIONS(1320), + [anon_sym___read_mostly] = ACTIONS(1320), + [anon_sym___must_hold] = ACTIONS(1320), + [anon_sym___ro_after_init] = ACTIONS(1320), + [anon_sym___init] = ACTIONS(1320), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1322), + [anon_sym___declspec] = ACTIONS(1320), + [anon_sym___cdecl] = ACTIONS(1320), + [anon_sym___clrcall] = ACTIONS(1320), + [anon_sym___stdcall] = ACTIONS(1320), + [anon_sym___fastcall] = ACTIONS(1320), + [anon_sym___thiscall] = ACTIONS(1320), + [anon_sym___vectorcall] = ACTIONS(1320), + [anon_sym_LBRACE] = ACTIONS(1322), + [anon_sym_signed] = ACTIONS(1320), + [anon_sym_unsigned] = ACTIONS(1320), + [anon_sym_long] = ACTIONS(1320), + [anon_sym_short] = ACTIONS(1320), + [anon_sym_static] = ACTIONS(1320), + [anon_sym_auto] = ACTIONS(1320), + [anon_sym_register] = ACTIONS(1320), + [anon_sym_inline] = ACTIONS(1320), + [anon_sym___inline] = ACTIONS(1320), + [anon_sym___inline__] = ACTIONS(1320), + [anon_sym___forceinline] = ACTIONS(1320), + [anon_sym_thread_local] = ACTIONS(1320), + [anon_sym___thread] = ACTIONS(1320), + [anon_sym_const] = ACTIONS(1320), + [anon_sym_constexpr] = ACTIONS(1320), + [anon_sym_volatile] = ACTIONS(1320), + [anon_sym_restrict] = ACTIONS(1320), + [anon_sym___restrict__] = ACTIONS(1320), + [anon_sym__Atomic] = ACTIONS(1320), + [anon_sym__Noreturn] = ACTIONS(1320), + [anon_sym_noreturn] = ACTIONS(1320), + [sym_primitive_type] = ACTIONS(1320), + [anon_sym_enum] = ACTIONS(1320), + [anon_sym_struct] = ACTIONS(1320), + [anon_sym_union] = ACTIONS(1320), + [anon_sym_if] = ACTIONS(1320), + [anon_sym_else] = ACTIONS(1320), + [anon_sym_switch] = ACTIONS(1320), + [anon_sym_case] = ACTIONS(1320), + [anon_sym_default] = ACTIONS(1320), + [anon_sym_while] = ACTIONS(1320), + [anon_sym_do] = ACTIONS(1320), + [anon_sym_for] = ACTIONS(1320), + [anon_sym_return] = ACTIONS(1320), + [anon_sym_break] = ACTIONS(1320), + [anon_sym_continue] = ACTIONS(1320), + [anon_sym_goto] = ACTIONS(1320), + [anon_sym___try] = ACTIONS(1320), + [anon_sym___leave] = ACTIONS(1320), + [anon_sym_DASH_DASH] = ACTIONS(1322), + [anon_sym_PLUS_PLUS] = ACTIONS(1322), + [anon_sym_sizeof] = ACTIONS(1320), + [anon_sym___alignof__] = ACTIONS(1320), + [anon_sym___alignof] = ACTIONS(1320), + [anon_sym__alignof] = ACTIONS(1320), + [anon_sym_alignof] = ACTIONS(1320), + [anon_sym__Alignof] = ACTIONS(1320), + [anon_sym_offsetof] = ACTIONS(1320), + [anon_sym__Generic] = ACTIONS(1320), + [anon_sym_asm] = ACTIONS(1320), + [anon_sym___asm__] = ACTIONS(1320), + [sym_number_literal] = ACTIONS(1322), + [anon_sym_L_SQUOTE] = ACTIONS(1322), + [anon_sym_u_SQUOTE] = ACTIONS(1322), + [anon_sym_U_SQUOTE] = ACTIONS(1322), + [anon_sym_u8_SQUOTE] = ACTIONS(1322), + [anon_sym_SQUOTE] = ACTIONS(1322), + [anon_sym_L_DQUOTE] = ACTIONS(1322), + [anon_sym_u_DQUOTE] = ACTIONS(1322), + [anon_sym_U_DQUOTE] = ACTIONS(1322), + [anon_sym_u8_DQUOTE] = ACTIONS(1322), + [anon_sym_DQUOTE] = ACTIONS(1322), + [sym_true] = ACTIONS(1320), + [sym_false] = ACTIONS(1320), + [anon_sym_NULL] = ACTIONS(1320), + [anon_sym_nullptr] = ACTIONS(1320), [sym_comment] = ACTIONS(3), }, [278] = { - [ts_builtin_sym_end] = ACTIONS(1315), - [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_LBRACK_LBRACK] = ACTIONS(1315), - [anon_sym___declspec] = 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), - [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_else] = 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_identifier] = ACTIONS(1320), + [aux_sym_preproc_include_token1] = ACTIONS(1320), + [aux_sym_preproc_def_token1] = ACTIONS(1320), + [aux_sym_preproc_if_token1] = ACTIONS(1320), + [aux_sym_preproc_if_token2] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1320), + [sym_preproc_directive] = ACTIONS(1320), + [anon_sym_LPAREN2] = ACTIONS(1322), + [anon_sym_BANG] = ACTIONS(1322), + [anon_sym_TILDE] = ACTIONS(1322), + [anon_sym_DASH] = ACTIONS(1320), + [anon_sym_PLUS] = ACTIONS(1320), + [anon_sym_STAR] = ACTIONS(1322), + [anon_sym_AMP] = ACTIONS(1322), + [anon_sym_SEMI] = ACTIONS(1322), + [anon_sym___extension__] = ACTIONS(1320), + [anon_sym_typedef] = ACTIONS(1320), + [anon_sym_extern] = ACTIONS(1320), + [anon_sym___attribute__] = ACTIONS(1320), + [anon_sym___scanf] = ACTIONS(1320), + [anon_sym___printf] = ACTIONS(1320), + [anon_sym___read_mostly] = ACTIONS(1320), + [anon_sym___must_hold] = ACTIONS(1320), + [anon_sym___ro_after_init] = ACTIONS(1320), + [anon_sym___init] = ACTIONS(1320), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1322), + [anon_sym___declspec] = ACTIONS(1320), + [anon_sym___cdecl] = ACTIONS(1320), + [anon_sym___clrcall] = ACTIONS(1320), + [anon_sym___stdcall] = ACTIONS(1320), + [anon_sym___fastcall] = ACTIONS(1320), + [anon_sym___thiscall] = ACTIONS(1320), + [anon_sym___vectorcall] = ACTIONS(1320), + [anon_sym_LBRACE] = ACTIONS(1322), + [anon_sym_signed] = ACTIONS(1320), + [anon_sym_unsigned] = ACTIONS(1320), + [anon_sym_long] = ACTIONS(1320), + [anon_sym_short] = ACTIONS(1320), + [anon_sym_static] = ACTIONS(1320), + [anon_sym_auto] = ACTIONS(1320), + [anon_sym_register] = ACTIONS(1320), + [anon_sym_inline] = ACTIONS(1320), + [anon_sym___inline] = ACTIONS(1320), + [anon_sym___inline__] = ACTIONS(1320), + [anon_sym___forceinline] = ACTIONS(1320), + [anon_sym_thread_local] = ACTIONS(1320), + [anon_sym___thread] = ACTIONS(1320), + [anon_sym_const] = ACTIONS(1320), + [anon_sym_constexpr] = ACTIONS(1320), + [anon_sym_volatile] = ACTIONS(1320), + [anon_sym_restrict] = ACTIONS(1320), + [anon_sym___restrict__] = ACTIONS(1320), + [anon_sym__Atomic] = ACTIONS(1320), + [anon_sym__Noreturn] = ACTIONS(1320), + [anon_sym_noreturn] = ACTIONS(1320), + [sym_primitive_type] = ACTIONS(1320), + [anon_sym_enum] = ACTIONS(1320), + [anon_sym_struct] = ACTIONS(1320), + [anon_sym_union] = ACTIONS(1320), + [anon_sym_if] = ACTIONS(1320), + [anon_sym_else] = ACTIONS(1320), + [anon_sym_switch] = ACTIONS(1320), + [anon_sym_case] = ACTIONS(1320), + [anon_sym_default] = ACTIONS(1320), + [anon_sym_while] = ACTIONS(1320), + [anon_sym_do] = ACTIONS(1320), + [anon_sym_for] = ACTIONS(1320), + [anon_sym_return] = ACTIONS(1320), + [anon_sym_break] = ACTIONS(1320), + [anon_sym_continue] = ACTIONS(1320), + [anon_sym_goto] = ACTIONS(1320), + [anon_sym___try] = ACTIONS(1320), + [anon_sym___leave] = ACTIONS(1320), + [anon_sym_DASH_DASH] = ACTIONS(1322), + [anon_sym_PLUS_PLUS] = ACTIONS(1322), + [anon_sym_sizeof] = ACTIONS(1320), + [anon_sym___alignof__] = ACTIONS(1320), + [anon_sym___alignof] = ACTIONS(1320), + [anon_sym__alignof] = ACTIONS(1320), + [anon_sym_alignof] = ACTIONS(1320), + [anon_sym__Alignof] = ACTIONS(1320), + [anon_sym_offsetof] = ACTIONS(1320), + [anon_sym__Generic] = ACTIONS(1320), + [anon_sym_asm] = ACTIONS(1320), + [anon_sym___asm__] = ACTIONS(1320), + [sym_number_literal] = ACTIONS(1322), + [anon_sym_L_SQUOTE] = ACTIONS(1322), + [anon_sym_u_SQUOTE] = ACTIONS(1322), + [anon_sym_U_SQUOTE] = ACTIONS(1322), + [anon_sym_u8_SQUOTE] = ACTIONS(1322), + [anon_sym_SQUOTE] = ACTIONS(1322), + [anon_sym_L_DQUOTE] = ACTIONS(1322), + [anon_sym_u_DQUOTE] = ACTIONS(1322), + [anon_sym_U_DQUOTE] = ACTIONS(1322), + [anon_sym_u8_DQUOTE] = ACTIONS(1322), + [anon_sym_DQUOTE] = ACTIONS(1322), + [sym_true] = ACTIONS(1320), + [sym_false] = ACTIONS(1320), + [anon_sym_NULL] = ACTIONS(1320), + [anon_sym_nullptr] = ACTIONS(1320), [sym_comment] = ACTIONS(3), }, [279] = { - [sym_identifier] = ACTIONS(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_LBRACK_LBRACK] = ACTIONS(1351), - [anon_sym___declspec] = 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), - [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_else] = 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), + [ts_builtin_sym_end] = ACTIONS(1322), + [sym_identifier] = ACTIONS(1320), + [aux_sym_preproc_include_token1] = ACTIONS(1320), + [aux_sym_preproc_def_token1] = ACTIONS(1320), + [aux_sym_preproc_if_token1] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1320), + [sym_preproc_directive] = ACTIONS(1320), + [anon_sym_LPAREN2] = ACTIONS(1322), + [anon_sym_BANG] = ACTIONS(1322), + [anon_sym_TILDE] = ACTIONS(1322), + [anon_sym_DASH] = ACTIONS(1320), + [anon_sym_PLUS] = ACTIONS(1320), + [anon_sym_STAR] = ACTIONS(1322), + [anon_sym_AMP] = ACTIONS(1322), + [anon_sym_SEMI] = ACTIONS(1322), + [anon_sym___extension__] = ACTIONS(1320), + [anon_sym_typedef] = ACTIONS(1320), + [anon_sym_extern] = ACTIONS(1320), + [anon_sym___attribute__] = ACTIONS(1320), + [anon_sym___scanf] = ACTIONS(1320), + [anon_sym___printf] = ACTIONS(1320), + [anon_sym___read_mostly] = ACTIONS(1320), + [anon_sym___must_hold] = ACTIONS(1320), + [anon_sym___ro_after_init] = ACTIONS(1320), + [anon_sym___init] = ACTIONS(1320), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1322), + [anon_sym___declspec] = ACTIONS(1320), + [anon_sym___cdecl] = ACTIONS(1320), + [anon_sym___clrcall] = ACTIONS(1320), + [anon_sym___stdcall] = ACTIONS(1320), + [anon_sym___fastcall] = ACTIONS(1320), + [anon_sym___thiscall] = ACTIONS(1320), + [anon_sym___vectorcall] = ACTIONS(1320), + [anon_sym_LBRACE] = ACTIONS(1322), + [anon_sym_signed] = ACTIONS(1320), + [anon_sym_unsigned] = ACTIONS(1320), + [anon_sym_long] = ACTIONS(1320), + [anon_sym_short] = ACTIONS(1320), + [anon_sym_static] = ACTIONS(1320), + [anon_sym_auto] = ACTIONS(1320), + [anon_sym_register] = ACTIONS(1320), + [anon_sym_inline] = ACTIONS(1320), + [anon_sym___inline] = ACTIONS(1320), + [anon_sym___inline__] = ACTIONS(1320), + [anon_sym___forceinline] = ACTIONS(1320), + [anon_sym_thread_local] = ACTIONS(1320), + [anon_sym___thread] = ACTIONS(1320), + [anon_sym_const] = ACTIONS(1320), + [anon_sym_constexpr] = ACTIONS(1320), + [anon_sym_volatile] = ACTIONS(1320), + [anon_sym_restrict] = ACTIONS(1320), + [anon_sym___restrict__] = ACTIONS(1320), + [anon_sym__Atomic] = ACTIONS(1320), + [anon_sym__Noreturn] = ACTIONS(1320), + [anon_sym_noreturn] = ACTIONS(1320), + [sym_primitive_type] = ACTIONS(1320), + [anon_sym_enum] = ACTIONS(1320), + [anon_sym_struct] = ACTIONS(1320), + [anon_sym_union] = ACTIONS(1320), + [anon_sym_if] = ACTIONS(1320), + [anon_sym_else] = ACTIONS(1320), + [anon_sym_switch] = ACTIONS(1320), + [anon_sym_case] = ACTIONS(1320), + [anon_sym_default] = ACTIONS(1320), + [anon_sym_while] = ACTIONS(1320), + [anon_sym_do] = ACTIONS(1320), + [anon_sym_for] = ACTIONS(1320), + [anon_sym_return] = ACTIONS(1320), + [anon_sym_break] = ACTIONS(1320), + [anon_sym_continue] = ACTIONS(1320), + [anon_sym_goto] = ACTIONS(1320), + [anon_sym___try] = ACTIONS(1320), + [anon_sym___leave] = ACTIONS(1320), + [anon_sym_DASH_DASH] = ACTIONS(1322), + [anon_sym_PLUS_PLUS] = ACTIONS(1322), + [anon_sym_sizeof] = ACTIONS(1320), + [anon_sym___alignof__] = ACTIONS(1320), + [anon_sym___alignof] = ACTIONS(1320), + [anon_sym__alignof] = ACTIONS(1320), + [anon_sym_alignof] = ACTIONS(1320), + [anon_sym__Alignof] = ACTIONS(1320), + [anon_sym_offsetof] = ACTIONS(1320), + [anon_sym__Generic] = ACTIONS(1320), + [anon_sym_asm] = ACTIONS(1320), + [anon_sym___asm__] = ACTIONS(1320), + [sym_number_literal] = ACTIONS(1322), + [anon_sym_L_SQUOTE] = ACTIONS(1322), + [anon_sym_u_SQUOTE] = ACTIONS(1322), + [anon_sym_U_SQUOTE] = ACTIONS(1322), + [anon_sym_u8_SQUOTE] = ACTIONS(1322), + [anon_sym_SQUOTE] = ACTIONS(1322), + [anon_sym_L_DQUOTE] = ACTIONS(1322), + [anon_sym_u_DQUOTE] = ACTIONS(1322), + [anon_sym_U_DQUOTE] = ACTIONS(1322), + [anon_sym_u8_DQUOTE] = ACTIONS(1322), + [anon_sym_DQUOTE] = ACTIONS(1322), + [sym_true] = ACTIONS(1320), + [sym_false] = ACTIONS(1320), + [anon_sym_NULL] = ACTIONS(1320), + [anon_sym_nullptr] = ACTIONS(1320), [sym_comment] = ACTIONS(3), }, [280] = { - [ts_builtin_sym_end] = ACTIONS(1315), - [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_LBRACK_LBRACK] = ACTIONS(1315), - [anon_sym___declspec] = 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), - [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_else] = 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), + [ts_builtin_sym_end] = ACTIONS(1418), + [sym_identifier] = ACTIONS(1416), + [aux_sym_preproc_include_token1] = ACTIONS(1416), + [aux_sym_preproc_def_token1] = ACTIONS(1416), + [aux_sym_preproc_if_token1] = ACTIONS(1416), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1416), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1416), + [sym_preproc_directive] = ACTIONS(1416), + [anon_sym_LPAREN2] = ACTIONS(1418), + [anon_sym_BANG] = ACTIONS(1418), + [anon_sym_TILDE] = ACTIONS(1418), + [anon_sym_DASH] = ACTIONS(1416), + [anon_sym_PLUS] = ACTIONS(1416), + [anon_sym_STAR] = ACTIONS(1418), + [anon_sym_AMP] = ACTIONS(1418), + [anon_sym_SEMI] = ACTIONS(1418), + [anon_sym___extension__] = ACTIONS(1416), + [anon_sym_typedef] = ACTIONS(1416), + [anon_sym_extern] = ACTIONS(1416), + [anon_sym___attribute__] = ACTIONS(1416), + [anon_sym___scanf] = ACTIONS(1416), + [anon_sym___printf] = ACTIONS(1416), + [anon_sym___read_mostly] = ACTIONS(1416), + [anon_sym___must_hold] = ACTIONS(1416), + [anon_sym___ro_after_init] = ACTIONS(1416), + [anon_sym___init] = ACTIONS(1416), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1418), + [anon_sym___declspec] = ACTIONS(1416), + [anon_sym___cdecl] = ACTIONS(1416), + [anon_sym___clrcall] = ACTIONS(1416), + [anon_sym___stdcall] = ACTIONS(1416), + [anon_sym___fastcall] = ACTIONS(1416), + [anon_sym___thiscall] = ACTIONS(1416), + [anon_sym___vectorcall] = ACTIONS(1416), + [anon_sym_LBRACE] = ACTIONS(1418), + [anon_sym_signed] = ACTIONS(1416), + [anon_sym_unsigned] = ACTIONS(1416), + [anon_sym_long] = ACTIONS(1416), + [anon_sym_short] = ACTIONS(1416), + [anon_sym_static] = ACTIONS(1416), + [anon_sym_auto] = ACTIONS(1416), + [anon_sym_register] = ACTIONS(1416), + [anon_sym_inline] = ACTIONS(1416), + [anon_sym___inline] = ACTIONS(1416), + [anon_sym___inline__] = ACTIONS(1416), + [anon_sym___forceinline] = ACTIONS(1416), + [anon_sym_thread_local] = ACTIONS(1416), + [anon_sym___thread] = ACTIONS(1416), + [anon_sym_const] = ACTIONS(1416), + [anon_sym_constexpr] = ACTIONS(1416), + [anon_sym_volatile] = ACTIONS(1416), + [anon_sym_restrict] = ACTIONS(1416), + [anon_sym___restrict__] = ACTIONS(1416), + [anon_sym__Atomic] = ACTIONS(1416), + [anon_sym__Noreturn] = ACTIONS(1416), + [anon_sym_noreturn] = ACTIONS(1416), + [sym_primitive_type] = ACTIONS(1416), + [anon_sym_enum] = ACTIONS(1416), + [anon_sym_struct] = ACTIONS(1416), + [anon_sym_union] = ACTIONS(1416), + [anon_sym_if] = ACTIONS(1416), + [anon_sym_else] = ACTIONS(1416), + [anon_sym_switch] = ACTIONS(1416), + [anon_sym_case] = ACTIONS(1416), + [anon_sym_default] = ACTIONS(1416), + [anon_sym_while] = ACTIONS(1416), + [anon_sym_do] = ACTIONS(1416), + [anon_sym_for] = ACTIONS(1416), + [anon_sym_return] = ACTIONS(1416), + [anon_sym_break] = ACTIONS(1416), + [anon_sym_continue] = ACTIONS(1416), + [anon_sym_goto] = ACTIONS(1416), + [anon_sym___try] = ACTIONS(1416), + [anon_sym___leave] = ACTIONS(1416), + [anon_sym_DASH_DASH] = ACTIONS(1418), + [anon_sym_PLUS_PLUS] = ACTIONS(1418), + [anon_sym_sizeof] = ACTIONS(1416), + [anon_sym___alignof__] = ACTIONS(1416), + [anon_sym___alignof] = ACTIONS(1416), + [anon_sym__alignof] = ACTIONS(1416), + [anon_sym_alignof] = ACTIONS(1416), + [anon_sym__Alignof] = ACTIONS(1416), + [anon_sym_offsetof] = ACTIONS(1416), + [anon_sym__Generic] = ACTIONS(1416), + [anon_sym_asm] = ACTIONS(1416), + [anon_sym___asm__] = ACTIONS(1416), + [sym_number_literal] = ACTIONS(1418), + [anon_sym_L_SQUOTE] = ACTIONS(1418), + [anon_sym_u_SQUOTE] = ACTIONS(1418), + [anon_sym_U_SQUOTE] = ACTIONS(1418), + [anon_sym_u8_SQUOTE] = ACTIONS(1418), + [anon_sym_SQUOTE] = ACTIONS(1418), + [anon_sym_L_DQUOTE] = ACTIONS(1418), + [anon_sym_u_DQUOTE] = ACTIONS(1418), + [anon_sym_U_DQUOTE] = ACTIONS(1418), + [anon_sym_u8_DQUOTE] = ACTIONS(1418), + [anon_sym_DQUOTE] = ACTIONS(1418), + [sym_true] = ACTIONS(1416), + [sym_false] = ACTIONS(1416), + [anon_sym_NULL] = ACTIONS(1416), + [anon_sym_nullptr] = ACTIONS(1416), [sym_comment] = ACTIONS(3), }, [281] = { - [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_LBRACK_LBRACK] = ACTIONS(1399), - [anon_sym___declspec] = 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), - [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_else] = 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_identifier] = ACTIONS(1320), + [aux_sym_preproc_include_token1] = ACTIONS(1320), + [aux_sym_preproc_def_token1] = ACTIONS(1320), + [aux_sym_preproc_if_token1] = ACTIONS(1320), + [aux_sym_preproc_if_token2] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1320), + [sym_preproc_directive] = ACTIONS(1320), + [anon_sym_LPAREN2] = ACTIONS(1322), + [anon_sym_BANG] = ACTIONS(1322), + [anon_sym_TILDE] = ACTIONS(1322), + [anon_sym_DASH] = ACTIONS(1320), + [anon_sym_PLUS] = ACTIONS(1320), + [anon_sym_STAR] = ACTIONS(1322), + [anon_sym_AMP] = ACTIONS(1322), + [anon_sym_SEMI] = ACTIONS(1322), + [anon_sym___extension__] = ACTIONS(1320), + [anon_sym_typedef] = ACTIONS(1320), + [anon_sym_extern] = ACTIONS(1320), + [anon_sym___attribute__] = ACTIONS(1320), + [anon_sym___scanf] = ACTIONS(1320), + [anon_sym___printf] = ACTIONS(1320), + [anon_sym___read_mostly] = ACTIONS(1320), + [anon_sym___must_hold] = ACTIONS(1320), + [anon_sym___ro_after_init] = ACTIONS(1320), + [anon_sym___init] = ACTIONS(1320), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1322), + [anon_sym___declspec] = ACTIONS(1320), + [anon_sym___cdecl] = ACTIONS(1320), + [anon_sym___clrcall] = ACTIONS(1320), + [anon_sym___stdcall] = ACTIONS(1320), + [anon_sym___fastcall] = ACTIONS(1320), + [anon_sym___thiscall] = ACTIONS(1320), + [anon_sym___vectorcall] = ACTIONS(1320), + [anon_sym_LBRACE] = ACTIONS(1322), + [anon_sym_signed] = ACTIONS(1320), + [anon_sym_unsigned] = ACTIONS(1320), + [anon_sym_long] = ACTIONS(1320), + [anon_sym_short] = ACTIONS(1320), + [anon_sym_static] = ACTIONS(1320), + [anon_sym_auto] = ACTIONS(1320), + [anon_sym_register] = ACTIONS(1320), + [anon_sym_inline] = ACTIONS(1320), + [anon_sym___inline] = ACTIONS(1320), + [anon_sym___inline__] = ACTIONS(1320), + [anon_sym___forceinline] = ACTIONS(1320), + [anon_sym_thread_local] = ACTIONS(1320), + [anon_sym___thread] = ACTIONS(1320), + [anon_sym_const] = ACTIONS(1320), + [anon_sym_constexpr] = ACTIONS(1320), + [anon_sym_volatile] = ACTIONS(1320), + [anon_sym_restrict] = ACTIONS(1320), + [anon_sym___restrict__] = ACTIONS(1320), + [anon_sym__Atomic] = ACTIONS(1320), + [anon_sym__Noreturn] = ACTIONS(1320), + [anon_sym_noreturn] = ACTIONS(1320), + [sym_primitive_type] = ACTIONS(1320), + [anon_sym_enum] = ACTIONS(1320), + [anon_sym_struct] = ACTIONS(1320), + [anon_sym_union] = ACTIONS(1320), + [anon_sym_if] = ACTIONS(1320), + [anon_sym_else] = ACTIONS(1320), + [anon_sym_switch] = ACTIONS(1320), + [anon_sym_case] = ACTIONS(1320), + [anon_sym_default] = ACTIONS(1320), + [anon_sym_while] = ACTIONS(1320), + [anon_sym_do] = ACTIONS(1320), + [anon_sym_for] = ACTIONS(1320), + [anon_sym_return] = ACTIONS(1320), + [anon_sym_break] = ACTIONS(1320), + [anon_sym_continue] = ACTIONS(1320), + [anon_sym_goto] = ACTIONS(1320), + [anon_sym___try] = ACTIONS(1320), + [anon_sym___leave] = ACTIONS(1320), + [anon_sym_DASH_DASH] = ACTIONS(1322), + [anon_sym_PLUS_PLUS] = ACTIONS(1322), + [anon_sym_sizeof] = ACTIONS(1320), + [anon_sym___alignof__] = ACTIONS(1320), + [anon_sym___alignof] = ACTIONS(1320), + [anon_sym__alignof] = ACTIONS(1320), + [anon_sym_alignof] = ACTIONS(1320), + [anon_sym__Alignof] = ACTIONS(1320), + [anon_sym_offsetof] = ACTIONS(1320), + [anon_sym__Generic] = ACTIONS(1320), + [anon_sym_asm] = ACTIONS(1320), + [anon_sym___asm__] = ACTIONS(1320), + [sym_number_literal] = ACTIONS(1322), + [anon_sym_L_SQUOTE] = ACTIONS(1322), + [anon_sym_u_SQUOTE] = ACTIONS(1322), + [anon_sym_U_SQUOTE] = ACTIONS(1322), + [anon_sym_u8_SQUOTE] = ACTIONS(1322), + [anon_sym_SQUOTE] = ACTIONS(1322), + [anon_sym_L_DQUOTE] = ACTIONS(1322), + [anon_sym_u_DQUOTE] = ACTIONS(1322), + [anon_sym_U_DQUOTE] = ACTIONS(1322), + [anon_sym_u8_DQUOTE] = ACTIONS(1322), + [anon_sym_DQUOTE] = ACTIONS(1322), + [sym_true] = ACTIONS(1320), + [sym_false] = ACTIONS(1320), + [anon_sym_NULL] = ACTIONS(1320), + [anon_sym_nullptr] = ACTIONS(1320), [sym_comment] = ACTIONS(3), }, [282] = { - [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_LBRACK_LBRACK] = ACTIONS(1315), - [anon_sym___declspec] = 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), - [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_else] = 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), + [ts_builtin_sym_end] = ACTIONS(1414), + [sym_identifier] = ACTIONS(1412), + [aux_sym_preproc_include_token1] = ACTIONS(1412), + [aux_sym_preproc_def_token1] = ACTIONS(1412), + [aux_sym_preproc_if_token1] = ACTIONS(1412), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1412), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1412), + [sym_preproc_directive] = ACTIONS(1412), + [anon_sym_LPAREN2] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(1414), + [anon_sym_TILDE] = ACTIONS(1414), + [anon_sym_DASH] = ACTIONS(1412), + [anon_sym_PLUS] = ACTIONS(1412), + [anon_sym_STAR] = ACTIONS(1414), + [anon_sym_AMP] = ACTIONS(1414), + [anon_sym_SEMI] = ACTIONS(1414), + [anon_sym___extension__] = ACTIONS(1412), + [anon_sym_typedef] = ACTIONS(1412), + [anon_sym_extern] = ACTIONS(1412), + [anon_sym___attribute__] = ACTIONS(1412), + [anon_sym___scanf] = ACTIONS(1412), + [anon_sym___printf] = ACTIONS(1412), + [anon_sym___read_mostly] = ACTIONS(1412), + [anon_sym___must_hold] = ACTIONS(1412), + [anon_sym___ro_after_init] = ACTIONS(1412), + [anon_sym___init] = ACTIONS(1412), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1414), + [anon_sym___declspec] = ACTIONS(1412), + [anon_sym___cdecl] = ACTIONS(1412), + [anon_sym___clrcall] = ACTIONS(1412), + [anon_sym___stdcall] = ACTIONS(1412), + [anon_sym___fastcall] = ACTIONS(1412), + [anon_sym___thiscall] = ACTIONS(1412), + [anon_sym___vectorcall] = ACTIONS(1412), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_signed] = ACTIONS(1412), + [anon_sym_unsigned] = ACTIONS(1412), + [anon_sym_long] = ACTIONS(1412), + [anon_sym_short] = ACTIONS(1412), + [anon_sym_static] = ACTIONS(1412), + [anon_sym_auto] = ACTIONS(1412), + [anon_sym_register] = ACTIONS(1412), + [anon_sym_inline] = ACTIONS(1412), + [anon_sym___inline] = ACTIONS(1412), + [anon_sym___inline__] = ACTIONS(1412), + [anon_sym___forceinline] = ACTIONS(1412), + [anon_sym_thread_local] = ACTIONS(1412), + [anon_sym___thread] = ACTIONS(1412), + [anon_sym_const] = ACTIONS(1412), + [anon_sym_constexpr] = ACTIONS(1412), + [anon_sym_volatile] = ACTIONS(1412), + [anon_sym_restrict] = ACTIONS(1412), + [anon_sym___restrict__] = ACTIONS(1412), + [anon_sym__Atomic] = ACTIONS(1412), + [anon_sym__Noreturn] = ACTIONS(1412), + [anon_sym_noreturn] = ACTIONS(1412), + [sym_primitive_type] = ACTIONS(1412), + [anon_sym_enum] = ACTIONS(1412), + [anon_sym_struct] = ACTIONS(1412), + [anon_sym_union] = ACTIONS(1412), + [anon_sym_if] = ACTIONS(1412), + [anon_sym_else] = ACTIONS(1412), + [anon_sym_switch] = ACTIONS(1412), + [anon_sym_case] = ACTIONS(1412), + [anon_sym_default] = ACTIONS(1412), + [anon_sym_while] = ACTIONS(1412), + [anon_sym_do] = ACTIONS(1412), + [anon_sym_for] = ACTIONS(1412), + [anon_sym_return] = ACTIONS(1412), + [anon_sym_break] = ACTIONS(1412), + [anon_sym_continue] = ACTIONS(1412), + [anon_sym_goto] = ACTIONS(1412), + [anon_sym___try] = ACTIONS(1412), + [anon_sym___leave] = ACTIONS(1412), + [anon_sym_DASH_DASH] = ACTIONS(1414), + [anon_sym_PLUS_PLUS] = ACTIONS(1414), + [anon_sym_sizeof] = ACTIONS(1412), + [anon_sym___alignof__] = ACTIONS(1412), + [anon_sym___alignof] = ACTIONS(1412), + [anon_sym__alignof] = ACTIONS(1412), + [anon_sym_alignof] = ACTIONS(1412), + [anon_sym__Alignof] = ACTIONS(1412), + [anon_sym_offsetof] = ACTIONS(1412), + [anon_sym__Generic] = ACTIONS(1412), + [anon_sym_asm] = ACTIONS(1412), + [anon_sym___asm__] = ACTIONS(1412), + [sym_number_literal] = ACTIONS(1414), + [anon_sym_L_SQUOTE] = ACTIONS(1414), + [anon_sym_u_SQUOTE] = ACTIONS(1414), + [anon_sym_U_SQUOTE] = ACTIONS(1414), + [anon_sym_u8_SQUOTE] = ACTIONS(1414), + [anon_sym_SQUOTE] = ACTIONS(1414), + [anon_sym_L_DQUOTE] = ACTIONS(1414), + [anon_sym_u_DQUOTE] = ACTIONS(1414), + [anon_sym_U_DQUOTE] = ACTIONS(1414), + [anon_sym_u8_DQUOTE] = ACTIONS(1414), + [anon_sym_DQUOTE] = ACTIONS(1414), + [sym_true] = ACTIONS(1412), + [sym_false] = ACTIONS(1412), + [anon_sym_NULL] = ACTIONS(1412), + [anon_sym_nullptr] = ACTIONS(1412), [sym_comment] = ACTIONS(3), }, [283] = { - [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_LBRACK_LBRACK] = ACTIONS(1315), - [anon_sym___declspec] = 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), - [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_else] = 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), + [ts_builtin_sym_end] = ACTIONS(1354), + [sym_identifier] = ACTIONS(1352), + [aux_sym_preproc_include_token1] = ACTIONS(1352), + [aux_sym_preproc_def_token1] = ACTIONS(1352), + [aux_sym_preproc_if_token1] = ACTIONS(1352), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1352), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1352), + [sym_preproc_directive] = ACTIONS(1352), + [anon_sym_LPAREN2] = ACTIONS(1354), + [anon_sym_BANG] = ACTIONS(1354), + [anon_sym_TILDE] = ACTIONS(1354), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_PLUS] = ACTIONS(1352), + [anon_sym_STAR] = ACTIONS(1354), + [anon_sym_AMP] = ACTIONS(1354), + [anon_sym_SEMI] = ACTIONS(1354), + [anon_sym___extension__] = ACTIONS(1352), + [anon_sym_typedef] = ACTIONS(1352), + [anon_sym_extern] = ACTIONS(1352), + [anon_sym___attribute__] = ACTIONS(1352), + [anon_sym___scanf] = ACTIONS(1352), + [anon_sym___printf] = ACTIONS(1352), + [anon_sym___read_mostly] = ACTIONS(1352), + [anon_sym___must_hold] = ACTIONS(1352), + [anon_sym___ro_after_init] = ACTIONS(1352), + [anon_sym___init] = ACTIONS(1352), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1354), + [anon_sym___declspec] = ACTIONS(1352), + [anon_sym___cdecl] = ACTIONS(1352), + [anon_sym___clrcall] = ACTIONS(1352), + [anon_sym___stdcall] = ACTIONS(1352), + [anon_sym___fastcall] = ACTIONS(1352), + [anon_sym___thiscall] = ACTIONS(1352), + [anon_sym___vectorcall] = ACTIONS(1352), + [anon_sym_LBRACE] = ACTIONS(1354), + [anon_sym_signed] = ACTIONS(1352), + [anon_sym_unsigned] = ACTIONS(1352), + [anon_sym_long] = ACTIONS(1352), + [anon_sym_short] = ACTIONS(1352), + [anon_sym_static] = ACTIONS(1352), + [anon_sym_auto] = ACTIONS(1352), + [anon_sym_register] = ACTIONS(1352), + [anon_sym_inline] = ACTIONS(1352), + [anon_sym___inline] = ACTIONS(1352), + [anon_sym___inline__] = ACTIONS(1352), + [anon_sym___forceinline] = ACTIONS(1352), + [anon_sym_thread_local] = ACTIONS(1352), + [anon_sym___thread] = ACTIONS(1352), + [anon_sym_const] = ACTIONS(1352), + [anon_sym_constexpr] = ACTIONS(1352), + [anon_sym_volatile] = ACTIONS(1352), + [anon_sym_restrict] = ACTIONS(1352), + [anon_sym___restrict__] = ACTIONS(1352), + [anon_sym__Atomic] = ACTIONS(1352), + [anon_sym__Noreturn] = ACTIONS(1352), + [anon_sym_noreturn] = ACTIONS(1352), + [sym_primitive_type] = ACTIONS(1352), + [anon_sym_enum] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1352), + [anon_sym_union] = ACTIONS(1352), + [anon_sym_if] = ACTIONS(1352), + [anon_sym_else] = ACTIONS(1352), + [anon_sym_switch] = ACTIONS(1352), + [anon_sym_case] = ACTIONS(1352), + [anon_sym_default] = ACTIONS(1352), + [anon_sym_while] = ACTIONS(1352), + [anon_sym_do] = ACTIONS(1352), + [anon_sym_for] = ACTIONS(1352), + [anon_sym_return] = ACTIONS(1352), + [anon_sym_break] = ACTIONS(1352), + [anon_sym_continue] = ACTIONS(1352), + [anon_sym_goto] = ACTIONS(1352), + [anon_sym___try] = ACTIONS(1352), + [anon_sym___leave] = ACTIONS(1352), + [anon_sym_DASH_DASH] = ACTIONS(1354), + [anon_sym_PLUS_PLUS] = ACTIONS(1354), + [anon_sym_sizeof] = ACTIONS(1352), + [anon_sym___alignof__] = ACTIONS(1352), + [anon_sym___alignof] = ACTIONS(1352), + [anon_sym__alignof] = ACTIONS(1352), + [anon_sym_alignof] = ACTIONS(1352), + [anon_sym__Alignof] = ACTIONS(1352), + [anon_sym_offsetof] = ACTIONS(1352), + [anon_sym__Generic] = ACTIONS(1352), + [anon_sym_asm] = ACTIONS(1352), + [anon_sym___asm__] = ACTIONS(1352), + [sym_number_literal] = ACTIONS(1354), + [anon_sym_L_SQUOTE] = ACTIONS(1354), + [anon_sym_u_SQUOTE] = ACTIONS(1354), + [anon_sym_U_SQUOTE] = ACTIONS(1354), + [anon_sym_u8_SQUOTE] = ACTIONS(1354), + [anon_sym_SQUOTE] = ACTIONS(1354), + [anon_sym_L_DQUOTE] = ACTIONS(1354), + [anon_sym_u_DQUOTE] = ACTIONS(1354), + [anon_sym_U_DQUOTE] = ACTIONS(1354), + [anon_sym_u8_DQUOTE] = ACTIONS(1354), + [anon_sym_DQUOTE] = ACTIONS(1354), + [sym_true] = ACTIONS(1352), + [sym_false] = ACTIONS(1352), + [anon_sym_NULL] = ACTIONS(1352), + [anon_sym_nullptr] = ACTIONS(1352), [sym_comment] = ACTIONS(3), }, [284] = { - [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_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_LBRACK_LBRACK] = ACTIONS(1327), - [anon_sym___declspec] = 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), - [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_else] = 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), + [ts_builtin_sym_end] = ACTIONS(1326), + [sym_identifier] = ACTIONS(1324), + [aux_sym_preproc_include_token1] = ACTIONS(1324), + [aux_sym_preproc_def_token1] = ACTIONS(1324), + [aux_sym_preproc_if_token1] = ACTIONS(1324), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1324), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1324), + [sym_preproc_directive] = ACTIONS(1324), + [anon_sym_LPAREN2] = ACTIONS(1326), + [anon_sym_BANG] = ACTIONS(1326), + [anon_sym_TILDE] = ACTIONS(1326), + [anon_sym_DASH] = ACTIONS(1324), + [anon_sym_PLUS] = ACTIONS(1324), + [anon_sym_STAR] = ACTIONS(1326), + [anon_sym_AMP] = ACTIONS(1326), + [anon_sym_SEMI] = ACTIONS(1326), + [anon_sym___extension__] = ACTIONS(1324), + [anon_sym_typedef] = ACTIONS(1324), + [anon_sym_extern] = ACTIONS(1324), + [anon_sym___attribute__] = ACTIONS(1324), + [anon_sym___scanf] = ACTIONS(1324), + [anon_sym___printf] = ACTIONS(1324), + [anon_sym___read_mostly] = ACTIONS(1324), + [anon_sym___must_hold] = ACTIONS(1324), + [anon_sym___ro_after_init] = ACTIONS(1324), + [anon_sym___init] = ACTIONS(1324), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1326), + [anon_sym___declspec] = ACTIONS(1324), + [anon_sym___cdecl] = ACTIONS(1324), + [anon_sym___clrcall] = ACTIONS(1324), + [anon_sym___stdcall] = ACTIONS(1324), + [anon_sym___fastcall] = ACTIONS(1324), + [anon_sym___thiscall] = ACTIONS(1324), + [anon_sym___vectorcall] = ACTIONS(1324), + [anon_sym_LBRACE] = ACTIONS(1326), + [anon_sym_signed] = ACTIONS(1324), + [anon_sym_unsigned] = ACTIONS(1324), + [anon_sym_long] = ACTIONS(1324), + [anon_sym_short] = ACTIONS(1324), + [anon_sym_static] = ACTIONS(1324), + [anon_sym_auto] = ACTIONS(1324), + [anon_sym_register] = ACTIONS(1324), + [anon_sym_inline] = ACTIONS(1324), + [anon_sym___inline] = ACTIONS(1324), + [anon_sym___inline__] = ACTIONS(1324), + [anon_sym___forceinline] = ACTIONS(1324), + [anon_sym_thread_local] = ACTIONS(1324), + [anon_sym___thread] = ACTIONS(1324), + [anon_sym_const] = ACTIONS(1324), + [anon_sym_constexpr] = ACTIONS(1324), + [anon_sym_volatile] = ACTIONS(1324), + [anon_sym_restrict] = ACTIONS(1324), + [anon_sym___restrict__] = ACTIONS(1324), + [anon_sym__Atomic] = ACTIONS(1324), + [anon_sym__Noreturn] = ACTIONS(1324), + [anon_sym_noreturn] = ACTIONS(1324), + [sym_primitive_type] = ACTIONS(1324), + [anon_sym_enum] = ACTIONS(1324), + [anon_sym_struct] = ACTIONS(1324), + [anon_sym_union] = ACTIONS(1324), + [anon_sym_if] = ACTIONS(1324), + [anon_sym_else] = ACTIONS(1324), + [anon_sym_switch] = ACTIONS(1324), + [anon_sym_case] = ACTIONS(1324), + [anon_sym_default] = ACTIONS(1324), + [anon_sym_while] = ACTIONS(1324), + [anon_sym_do] = ACTIONS(1324), + [anon_sym_for] = ACTIONS(1324), + [anon_sym_return] = ACTIONS(1324), + [anon_sym_break] = ACTIONS(1324), + [anon_sym_continue] = ACTIONS(1324), + [anon_sym_goto] = ACTIONS(1324), + [anon_sym___try] = ACTIONS(1324), + [anon_sym___leave] = ACTIONS(1324), + [anon_sym_DASH_DASH] = ACTIONS(1326), + [anon_sym_PLUS_PLUS] = ACTIONS(1326), + [anon_sym_sizeof] = ACTIONS(1324), + [anon_sym___alignof__] = ACTIONS(1324), + [anon_sym___alignof] = ACTIONS(1324), + [anon_sym__alignof] = ACTIONS(1324), + [anon_sym_alignof] = ACTIONS(1324), + [anon_sym__Alignof] = ACTIONS(1324), + [anon_sym_offsetof] = ACTIONS(1324), + [anon_sym__Generic] = ACTIONS(1324), + [anon_sym_asm] = ACTIONS(1324), + [anon_sym___asm__] = ACTIONS(1324), + [sym_number_literal] = ACTIONS(1326), + [anon_sym_L_SQUOTE] = ACTIONS(1326), + [anon_sym_u_SQUOTE] = ACTIONS(1326), + [anon_sym_U_SQUOTE] = ACTIONS(1326), + [anon_sym_u8_SQUOTE] = ACTIONS(1326), + [anon_sym_SQUOTE] = ACTIONS(1326), + [anon_sym_L_DQUOTE] = ACTIONS(1326), + [anon_sym_u_DQUOTE] = ACTIONS(1326), + [anon_sym_U_DQUOTE] = ACTIONS(1326), + [anon_sym_u8_DQUOTE] = ACTIONS(1326), + [anon_sym_DQUOTE] = ACTIONS(1326), + [sym_true] = ACTIONS(1324), + [sym_false] = ACTIONS(1324), + [anon_sym_NULL] = ACTIONS(1324), + [anon_sym_nullptr] = ACTIONS(1324), [sym_comment] = ACTIONS(3), }, [285] = { - [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_LBRACK_LBRACK] = ACTIONS(1315), - [anon_sym___declspec] = 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), - [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_else] = 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_identifier] = ACTIONS(1320), + [aux_sym_preproc_include_token1] = ACTIONS(1320), + [aux_sym_preproc_def_token1] = ACTIONS(1320), + [aux_sym_preproc_if_token1] = ACTIONS(1320), + [aux_sym_preproc_if_token2] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1320), + [sym_preproc_directive] = ACTIONS(1320), + [anon_sym_LPAREN2] = ACTIONS(1322), + [anon_sym_BANG] = ACTIONS(1322), + [anon_sym_TILDE] = ACTIONS(1322), + [anon_sym_DASH] = ACTIONS(1320), + [anon_sym_PLUS] = ACTIONS(1320), + [anon_sym_STAR] = ACTIONS(1322), + [anon_sym_AMP] = ACTIONS(1322), + [anon_sym_SEMI] = ACTIONS(1322), + [anon_sym___extension__] = ACTIONS(1320), + [anon_sym_typedef] = ACTIONS(1320), + [anon_sym_extern] = ACTIONS(1320), + [anon_sym___attribute__] = ACTIONS(1320), + [anon_sym___scanf] = ACTIONS(1320), + [anon_sym___printf] = ACTIONS(1320), + [anon_sym___read_mostly] = ACTIONS(1320), + [anon_sym___must_hold] = ACTIONS(1320), + [anon_sym___ro_after_init] = ACTIONS(1320), + [anon_sym___init] = ACTIONS(1320), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1322), + [anon_sym___declspec] = ACTIONS(1320), + [anon_sym___cdecl] = ACTIONS(1320), + [anon_sym___clrcall] = ACTIONS(1320), + [anon_sym___stdcall] = ACTIONS(1320), + [anon_sym___fastcall] = ACTIONS(1320), + [anon_sym___thiscall] = ACTIONS(1320), + [anon_sym___vectorcall] = ACTIONS(1320), + [anon_sym_LBRACE] = ACTIONS(1322), + [anon_sym_signed] = ACTIONS(1320), + [anon_sym_unsigned] = ACTIONS(1320), + [anon_sym_long] = ACTIONS(1320), + [anon_sym_short] = ACTIONS(1320), + [anon_sym_static] = ACTIONS(1320), + [anon_sym_auto] = ACTIONS(1320), + [anon_sym_register] = ACTIONS(1320), + [anon_sym_inline] = ACTIONS(1320), + [anon_sym___inline] = ACTIONS(1320), + [anon_sym___inline__] = ACTIONS(1320), + [anon_sym___forceinline] = ACTIONS(1320), + [anon_sym_thread_local] = ACTIONS(1320), + [anon_sym___thread] = ACTIONS(1320), + [anon_sym_const] = ACTIONS(1320), + [anon_sym_constexpr] = ACTIONS(1320), + [anon_sym_volatile] = ACTIONS(1320), + [anon_sym_restrict] = ACTIONS(1320), + [anon_sym___restrict__] = ACTIONS(1320), + [anon_sym__Atomic] = ACTIONS(1320), + [anon_sym__Noreturn] = ACTIONS(1320), + [anon_sym_noreturn] = ACTIONS(1320), + [sym_primitive_type] = ACTIONS(1320), + [anon_sym_enum] = ACTIONS(1320), + [anon_sym_struct] = ACTIONS(1320), + [anon_sym_union] = ACTIONS(1320), + [anon_sym_if] = ACTIONS(1320), + [anon_sym_else] = ACTIONS(1320), + [anon_sym_switch] = ACTIONS(1320), + [anon_sym_case] = ACTIONS(1320), + [anon_sym_default] = ACTIONS(1320), + [anon_sym_while] = ACTIONS(1320), + [anon_sym_do] = ACTIONS(1320), + [anon_sym_for] = ACTIONS(1320), + [anon_sym_return] = ACTIONS(1320), + [anon_sym_break] = ACTIONS(1320), + [anon_sym_continue] = ACTIONS(1320), + [anon_sym_goto] = ACTIONS(1320), + [anon_sym___try] = ACTIONS(1320), + [anon_sym___leave] = ACTIONS(1320), + [anon_sym_DASH_DASH] = ACTIONS(1322), + [anon_sym_PLUS_PLUS] = ACTIONS(1322), + [anon_sym_sizeof] = ACTIONS(1320), + [anon_sym___alignof__] = ACTIONS(1320), + [anon_sym___alignof] = ACTIONS(1320), + [anon_sym__alignof] = ACTIONS(1320), + [anon_sym_alignof] = ACTIONS(1320), + [anon_sym__Alignof] = ACTIONS(1320), + [anon_sym_offsetof] = ACTIONS(1320), + [anon_sym__Generic] = ACTIONS(1320), + [anon_sym_asm] = ACTIONS(1320), + [anon_sym___asm__] = ACTIONS(1320), + [sym_number_literal] = ACTIONS(1322), + [anon_sym_L_SQUOTE] = ACTIONS(1322), + [anon_sym_u_SQUOTE] = ACTIONS(1322), + [anon_sym_U_SQUOTE] = ACTIONS(1322), + [anon_sym_u8_SQUOTE] = ACTIONS(1322), + [anon_sym_SQUOTE] = ACTIONS(1322), + [anon_sym_L_DQUOTE] = ACTIONS(1322), + [anon_sym_u_DQUOTE] = ACTIONS(1322), + [anon_sym_U_DQUOTE] = ACTIONS(1322), + [anon_sym_u8_DQUOTE] = ACTIONS(1322), + [anon_sym_DQUOTE] = ACTIONS(1322), + [sym_true] = ACTIONS(1320), + [sym_false] = ACTIONS(1320), + [anon_sym_NULL] = ACTIONS(1320), + [anon_sym_nullptr] = ACTIONS(1320), [sym_comment] = ACTIONS(3), }, [286] = { - [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_LBRACK_LBRACK] = ACTIONS(1315), - [anon_sym___declspec] = 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), - [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_else] = 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_identifier] = ACTIONS(1320), + [aux_sym_preproc_include_token1] = ACTIONS(1320), + [aux_sym_preproc_def_token1] = ACTIONS(1320), + [aux_sym_preproc_if_token1] = ACTIONS(1320), + [aux_sym_preproc_if_token2] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1320), + [sym_preproc_directive] = ACTIONS(1320), + [anon_sym_LPAREN2] = ACTIONS(1322), + [anon_sym_BANG] = ACTIONS(1322), + [anon_sym_TILDE] = ACTIONS(1322), + [anon_sym_DASH] = ACTIONS(1320), + [anon_sym_PLUS] = ACTIONS(1320), + [anon_sym_STAR] = ACTIONS(1322), + [anon_sym_AMP] = ACTIONS(1322), + [anon_sym_SEMI] = ACTIONS(1322), + [anon_sym___extension__] = ACTIONS(1320), + [anon_sym_typedef] = ACTIONS(1320), + [anon_sym_extern] = ACTIONS(1320), + [anon_sym___attribute__] = ACTIONS(1320), + [anon_sym___scanf] = ACTIONS(1320), + [anon_sym___printf] = ACTIONS(1320), + [anon_sym___read_mostly] = ACTIONS(1320), + [anon_sym___must_hold] = ACTIONS(1320), + [anon_sym___ro_after_init] = ACTIONS(1320), + [anon_sym___init] = ACTIONS(1320), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1322), + [anon_sym___declspec] = ACTIONS(1320), + [anon_sym___cdecl] = ACTIONS(1320), + [anon_sym___clrcall] = ACTIONS(1320), + [anon_sym___stdcall] = ACTIONS(1320), + [anon_sym___fastcall] = ACTIONS(1320), + [anon_sym___thiscall] = ACTIONS(1320), + [anon_sym___vectorcall] = ACTIONS(1320), + [anon_sym_LBRACE] = ACTIONS(1322), + [anon_sym_signed] = ACTIONS(1320), + [anon_sym_unsigned] = ACTIONS(1320), + [anon_sym_long] = ACTIONS(1320), + [anon_sym_short] = ACTIONS(1320), + [anon_sym_static] = ACTIONS(1320), + [anon_sym_auto] = ACTIONS(1320), + [anon_sym_register] = ACTIONS(1320), + [anon_sym_inline] = ACTIONS(1320), + [anon_sym___inline] = ACTIONS(1320), + [anon_sym___inline__] = ACTIONS(1320), + [anon_sym___forceinline] = ACTIONS(1320), + [anon_sym_thread_local] = ACTIONS(1320), + [anon_sym___thread] = ACTIONS(1320), + [anon_sym_const] = ACTIONS(1320), + [anon_sym_constexpr] = ACTIONS(1320), + [anon_sym_volatile] = ACTIONS(1320), + [anon_sym_restrict] = ACTIONS(1320), + [anon_sym___restrict__] = ACTIONS(1320), + [anon_sym__Atomic] = ACTIONS(1320), + [anon_sym__Noreturn] = ACTIONS(1320), + [anon_sym_noreturn] = ACTIONS(1320), + [sym_primitive_type] = ACTIONS(1320), + [anon_sym_enum] = ACTIONS(1320), + [anon_sym_struct] = ACTIONS(1320), + [anon_sym_union] = ACTIONS(1320), + [anon_sym_if] = ACTIONS(1320), + [anon_sym_else] = ACTIONS(1320), + [anon_sym_switch] = ACTIONS(1320), + [anon_sym_case] = ACTIONS(1320), + [anon_sym_default] = ACTIONS(1320), + [anon_sym_while] = ACTIONS(1320), + [anon_sym_do] = ACTIONS(1320), + [anon_sym_for] = ACTIONS(1320), + [anon_sym_return] = ACTIONS(1320), + [anon_sym_break] = ACTIONS(1320), + [anon_sym_continue] = ACTIONS(1320), + [anon_sym_goto] = ACTIONS(1320), + [anon_sym___try] = ACTIONS(1320), + [anon_sym___leave] = ACTIONS(1320), + [anon_sym_DASH_DASH] = ACTIONS(1322), + [anon_sym_PLUS_PLUS] = ACTIONS(1322), + [anon_sym_sizeof] = ACTIONS(1320), + [anon_sym___alignof__] = ACTIONS(1320), + [anon_sym___alignof] = ACTIONS(1320), + [anon_sym__alignof] = ACTIONS(1320), + [anon_sym_alignof] = ACTIONS(1320), + [anon_sym__Alignof] = ACTIONS(1320), + [anon_sym_offsetof] = ACTIONS(1320), + [anon_sym__Generic] = ACTIONS(1320), + [anon_sym_asm] = ACTIONS(1320), + [anon_sym___asm__] = ACTIONS(1320), + [sym_number_literal] = ACTIONS(1322), + [anon_sym_L_SQUOTE] = ACTIONS(1322), + [anon_sym_u_SQUOTE] = ACTIONS(1322), + [anon_sym_U_SQUOTE] = ACTIONS(1322), + [anon_sym_u8_SQUOTE] = ACTIONS(1322), + [anon_sym_SQUOTE] = ACTIONS(1322), + [anon_sym_L_DQUOTE] = ACTIONS(1322), + [anon_sym_u_DQUOTE] = ACTIONS(1322), + [anon_sym_U_DQUOTE] = ACTIONS(1322), + [anon_sym_u8_DQUOTE] = ACTIONS(1322), + [anon_sym_DQUOTE] = ACTIONS(1322), + [sym_true] = ACTIONS(1320), + [sym_false] = ACTIONS(1320), + [anon_sym_NULL] = ACTIONS(1320), + [anon_sym_nullptr] = ACTIONS(1320), [sym_comment] = ACTIONS(3), }, [287] = { - [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_LBRACK_LBRACK] = ACTIONS(1315), - [anon_sym___declspec] = 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), - [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_else] = 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), + [ts_builtin_sym_end] = ACTIONS(1394), + [sym_identifier] = ACTIONS(1392), + [aux_sym_preproc_include_token1] = ACTIONS(1392), + [aux_sym_preproc_def_token1] = ACTIONS(1392), + [aux_sym_preproc_if_token1] = ACTIONS(1392), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1392), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1392), + [sym_preproc_directive] = ACTIONS(1392), + [anon_sym_LPAREN2] = ACTIONS(1394), + [anon_sym_BANG] = ACTIONS(1394), + [anon_sym_TILDE] = ACTIONS(1394), + [anon_sym_DASH] = ACTIONS(1392), + [anon_sym_PLUS] = ACTIONS(1392), + [anon_sym_STAR] = ACTIONS(1394), + [anon_sym_AMP] = ACTIONS(1394), + [anon_sym_SEMI] = ACTIONS(1394), + [anon_sym___extension__] = ACTIONS(1392), + [anon_sym_typedef] = ACTIONS(1392), + [anon_sym_extern] = ACTIONS(1392), + [anon_sym___attribute__] = ACTIONS(1392), + [anon_sym___scanf] = ACTIONS(1392), + [anon_sym___printf] = ACTIONS(1392), + [anon_sym___read_mostly] = ACTIONS(1392), + [anon_sym___must_hold] = ACTIONS(1392), + [anon_sym___ro_after_init] = ACTIONS(1392), + [anon_sym___init] = ACTIONS(1392), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1394), + [anon_sym___declspec] = ACTIONS(1392), + [anon_sym___cdecl] = ACTIONS(1392), + [anon_sym___clrcall] = ACTIONS(1392), + [anon_sym___stdcall] = ACTIONS(1392), + [anon_sym___fastcall] = ACTIONS(1392), + [anon_sym___thiscall] = ACTIONS(1392), + [anon_sym___vectorcall] = ACTIONS(1392), + [anon_sym_LBRACE] = ACTIONS(1394), + [anon_sym_signed] = ACTIONS(1392), + [anon_sym_unsigned] = ACTIONS(1392), + [anon_sym_long] = ACTIONS(1392), + [anon_sym_short] = ACTIONS(1392), + [anon_sym_static] = ACTIONS(1392), + [anon_sym_auto] = ACTIONS(1392), + [anon_sym_register] = ACTIONS(1392), + [anon_sym_inline] = ACTIONS(1392), + [anon_sym___inline] = ACTIONS(1392), + [anon_sym___inline__] = ACTIONS(1392), + [anon_sym___forceinline] = ACTIONS(1392), + [anon_sym_thread_local] = ACTIONS(1392), + [anon_sym___thread] = ACTIONS(1392), + [anon_sym_const] = ACTIONS(1392), + [anon_sym_constexpr] = ACTIONS(1392), + [anon_sym_volatile] = ACTIONS(1392), + [anon_sym_restrict] = ACTIONS(1392), + [anon_sym___restrict__] = ACTIONS(1392), + [anon_sym__Atomic] = ACTIONS(1392), + [anon_sym__Noreturn] = ACTIONS(1392), + [anon_sym_noreturn] = ACTIONS(1392), + [sym_primitive_type] = ACTIONS(1392), + [anon_sym_enum] = ACTIONS(1392), + [anon_sym_struct] = ACTIONS(1392), + [anon_sym_union] = ACTIONS(1392), + [anon_sym_if] = ACTIONS(1392), + [anon_sym_else] = ACTIONS(1392), + [anon_sym_switch] = ACTIONS(1392), + [anon_sym_case] = ACTIONS(1392), + [anon_sym_default] = ACTIONS(1392), + [anon_sym_while] = ACTIONS(1392), + [anon_sym_do] = ACTIONS(1392), + [anon_sym_for] = ACTIONS(1392), + [anon_sym_return] = ACTIONS(1392), + [anon_sym_break] = ACTIONS(1392), + [anon_sym_continue] = ACTIONS(1392), + [anon_sym_goto] = ACTIONS(1392), + [anon_sym___try] = ACTIONS(1392), + [anon_sym___leave] = ACTIONS(1392), + [anon_sym_DASH_DASH] = ACTIONS(1394), + [anon_sym_PLUS_PLUS] = ACTIONS(1394), + [anon_sym_sizeof] = ACTIONS(1392), + [anon_sym___alignof__] = ACTIONS(1392), + [anon_sym___alignof] = ACTIONS(1392), + [anon_sym__alignof] = ACTIONS(1392), + [anon_sym_alignof] = ACTIONS(1392), + [anon_sym__Alignof] = ACTIONS(1392), + [anon_sym_offsetof] = ACTIONS(1392), + [anon_sym__Generic] = ACTIONS(1392), + [anon_sym_asm] = ACTIONS(1392), + [anon_sym___asm__] = ACTIONS(1392), + [sym_number_literal] = ACTIONS(1394), + [anon_sym_L_SQUOTE] = ACTIONS(1394), + [anon_sym_u_SQUOTE] = ACTIONS(1394), + [anon_sym_U_SQUOTE] = ACTIONS(1394), + [anon_sym_u8_SQUOTE] = ACTIONS(1394), + [anon_sym_SQUOTE] = ACTIONS(1394), + [anon_sym_L_DQUOTE] = ACTIONS(1394), + [anon_sym_u_DQUOTE] = ACTIONS(1394), + [anon_sym_U_DQUOTE] = ACTIONS(1394), + [anon_sym_u8_DQUOTE] = ACTIONS(1394), + [anon_sym_DQUOTE] = ACTIONS(1394), + [sym_true] = ACTIONS(1392), + [sym_false] = ACTIONS(1392), + [anon_sym_NULL] = ACTIONS(1392), + [anon_sym_nullptr] = ACTIONS(1392), [sym_comment] = ACTIONS(3), }, [288] = { - [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_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_LBRACK_LBRACK] = ACTIONS(1331), - [anon_sym___declspec] = 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), - [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_else] = 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_identifier] = ACTIONS(1320), + [aux_sym_preproc_include_token1] = ACTIONS(1320), + [aux_sym_preproc_def_token1] = ACTIONS(1320), + [aux_sym_preproc_if_token1] = ACTIONS(1320), + [aux_sym_preproc_if_token2] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1320), + [sym_preproc_directive] = ACTIONS(1320), + [anon_sym_LPAREN2] = ACTIONS(1322), + [anon_sym_BANG] = ACTIONS(1322), + [anon_sym_TILDE] = ACTIONS(1322), + [anon_sym_DASH] = ACTIONS(1320), + [anon_sym_PLUS] = ACTIONS(1320), + [anon_sym_STAR] = ACTIONS(1322), + [anon_sym_AMP] = ACTIONS(1322), + [anon_sym_SEMI] = ACTIONS(1322), + [anon_sym___extension__] = ACTIONS(1320), + [anon_sym_typedef] = ACTIONS(1320), + [anon_sym_extern] = ACTIONS(1320), + [anon_sym___attribute__] = ACTIONS(1320), + [anon_sym___scanf] = ACTIONS(1320), + [anon_sym___printf] = ACTIONS(1320), + [anon_sym___read_mostly] = ACTIONS(1320), + [anon_sym___must_hold] = ACTIONS(1320), + [anon_sym___ro_after_init] = ACTIONS(1320), + [anon_sym___init] = ACTIONS(1320), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1322), + [anon_sym___declspec] = ACTIONS(1320), + [anon_sym___cdecl] = ACTIONS(1320), + [anon_sym___clrcall] = ACTIONS(1320), + [anon_sym___stdcall] = ACTIONS(1320), + [anon_sym___fastcall] = ACTIONS(1320), + [anon_sym___thiscall] = ACTIONS(1320), + [anon_sym___vectorcall] = ACTIONS(1320), + [anon_sym_LBRACE] = ACTIONS(1322), + [anon_sym_signed] = ACTIONS(1320), + [anon_sym_unsigned] = ACTIONS(1320), + [anon_sym_long] = ACTIONS(1320), + [anon_sym_short] = ACTIONS(1320), + [anon_sym_static] = ACTIONS(1320), + [anon_sym_auto] = ACTIONS(1320), + [anon_sym_register] = ACTIONS(1320), + [anon_sym_inline] = ACTIONS(1320), + [anon_sym___inline] = ACTIONS(1320), + [anon_sym___inline__] = ACTIONS(1320), + [anon_sym___forceinline] = ACTIONS(1320), + [anon_sym_thread_local] = ACTIONS(1320), + [anon_sym___thread] = ACTIONS(1320), + [anon_sym_const] = ACTIONS(1320), + [anon_sym_constexpr] = ACTIONS(1320), + [anon_sym_volatile] = ACTIONS(1320), + [anon_sym_restrict] = ACTIONS(1320), + [anon_sym___restrict__] = ACTIONS(1320), + [anon_sym__Atomic] = ACTIONS(1320), + [anon_sym__Noreturn] = ACTIONS(1320), + [anon_sym_noreturn] = ACTIONS(1320), + [sym_primitive_type] = ACTIONS(1320), + [anon_sym_enum] = ACTIONS(1320), + [anon_sym_struct] = ACTIONS(1320), + [anon_sym_union] = ACTIONS(1320), + [anon_sym_if] = ACTIONS(1320), + [anon_sym_else] = ACTIONS(1320), + [anon_sym_switch] = ACTIONS(1320), + [anon_sym_case] = ACTIONS(1320), + [anon_sym_default] = ACTIONS(1320), + [anon_sym_while] = ACTIONS(1320), + [anon_sym_do] = ACTIONS(1320), + [anon_sym_for] = ACTIONS(1320), + [anon_sym_return] = ACTIONS(1320), + [anon_sym_break] = ACTIONS(1320), + [anon_sym_continue] = ACTIONS(1320), + [anon_sym_goto] = ACTIONS(1320), + [anon_sym___try] = ACTIONS(1320), + [anon_sym___leave] = ACTIONS(1320), + [anon_sym_DASH_DASH] = ACTIONS(1322), + [anon_sym_PLUS_PLUS] = ACTIONS(1322), + [anon_sym_sizeof] = ACTIONS(1320), + [anon_sym___alignof__] = ACTIONS(1320), + [anon_sym___alignof] = ACTIONS(1320), + [anon_sym__alignof] = ACTIONS(1320), + [anon_sym_alignof] = ACTIONS(1320), + [anon_sym__Alignof] = ACTIONS(1320), + [anon_sym_offsetof] = ACTIONS(1320), + [anon_sym__Generic] = ACTIONS(1320), + [anon_sym_asm] = ACTIONS(1320), + [anon_sym___asm__] = ACTIONS(1320), + [sym_number_literal] = ACTIONS(1322), + [anon_sym_L_SQUOTE] = ACTIONS(1322), + [anon_sym_u_SQUOTE] = ACTIONS(1322), + [anon_sym_U_SQUOTE] = ACTIONS(1322), + [anon_sym_u8_SQUOTE] = ACTIONS(1322), + [anon_sym_SQUOTE] = ACTIONS(1322), + [anon_sym_L_DQUOTE] = ACTIONS(1322), + [anon_sym_u_DQUOTE] = ACTIONS(1322), + [anon_sym_U_DQUOTE] = ACTIONS(1322), + [anon_sym_u8_DQUOTE] = ACTIONS(1322), + [anon_sym_DQUOTE] = ACTIONS(1322), + [sym_true] = ACTIONS(1320), + [sym_false] = ACTIONS(1320), + [anon_sym_NULL] = ACTIONS(1320), + [anon_sym_nullptr] = ACTIONS(1320), [sym_comment] = ACTIONS(3), }, [289] = { - [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_LBRACK_LBRACK] = ACTIONS(1315), - [anon_sym___declspec] = 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), - [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_else] = 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_identifier] = ACTIONS(1320), + [aux_sym_preproc_include_token1] = ACTIONS(1320), + [aux_sym_preproc_def_token1] = ACTIONS(1320), + [aux_sym_preproc_if_token1] = ACTIONS(1320), + [aux_sym_preproc_if_token2] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1320), + [sym_preproc_directive] = ACTIONS(1320), + [anon_sym_LPAREN2] = ACTIONS(1322), + [anon_sym_BANG] = ACTIONS(1322), + [anon_sym_TILDE] = ACTIONS(1322), + [anon_sym_DASH] = ACTIONS(1320), + [anon_sym_PLUS] = ACTIONS(1320), + [anon_sym_STAR] = ACTIONS(1322), + [anon_sym_AMP] = ACTIONS(1322), + [anon_sym_SEMI] = ACTIONS(1322), + [anon_sym___extension__] = ACTIONS(1320), + [anon_sym_typedef] = ACTIONS(1320), + [anon_sym_extern] = ACTIONS(1320), + [anon_sym___attribute__] = ACTIONS(1320), + [anon_sym___scanf] = ACTIONS(1320), + [anon_sym___printf] = ACTIONS(1320), + [anon_sym___read_mostly] = ACTIONS(1320), + [anon_sym___must_hold] = ACTIONS(1320), + [anon_sym___ro_after_init] = ACTIONS(1320), + [anon_sym___init] = ACTIONS(1320), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1322), + [anon_sym___declspec] = ACTIONS(1320), + [anon_sym___cdecl] = ACTIONS(1320), + [anon_sym___clrcall] = ACTIONS(1320), + [anon_sym___stdcall] = ACTIONS(1320), + [anon_sym___fastcall] = ACTIONS(1320), + [anon_sym___thiscall] = ACTIONS(1320), + [anon_sym___vectorcall] = ACTIONS(1320), + [anon_sym_LBRACE] = ACTIONS(1322), + [anon_sym_signed] = ACTIONS(1320), + [anon_sym_unsigned] = ACTIONS(1320), + [anon_sym_long] = ACTIONS(1320), + [anon_sym_short] = ACTIONS(1320), + [anon_sym_static] = ACTIONS(1320), + [anon_sym_auto] = ACTIONS(1320), + [anon_sym_register] = ACTIONS(1320), + [anon_sym_inline] = ACTIONS(1320), + [anon_sym___inline] = ACTIONS(1320), + [anon_sym___inline__] = ACTIONS(1320), + [anon_sym___forceinline] = ACTIONS(1320), + [anon_sym_thread_local] = ACTIONS(1320), + [anon_sym___thread] = ACTIONS(1320), + [anon_sym_const] = ACTIONS(1320), + [anon_sym_constexpr] = ACTIONS(1320), + [anon_sym_volatile] = ACTIONS(1320), + [anon_sym_restrict] = ACTIONS(1320), + [anon_sym___restrict__] = ACTIONS(1320), + [anon_sym__Atomic] = ACTIONS(1320), + [anon_sym__Noreturn] = ACTIONS(1320), + [anon_sym_noreturn] = ACTIONS(1320), + [sym_primitive_type] = ACTIONS(1320), + [anon_sym_enum] = ACTIONS(1320), + [anon_sym_struct] = ACTIONS(1320), + [anon_sym_union] = ACTIONS(1320), + [anon_sym_if] = ACTIONS(1320), + [anon_sym_else] = ACTIONS(1320), + [anon_sym_switch] = ACTIONS(1320), + [anon_sym_case] = ACTIONS(1320), + [anon_sym_default] = ACTIONS(1320), + [anon_sym_while] = ACTIONS(1320), + [anon_sym_do] = ACTIONS(1320), + [anon_sym_for] = ACTIONS(1320), + [anon_sym_return] = ACTIONS(1320), + [anon_sym_break] = ACTIONS(1320), + [anon_sym_continue] = ACTIONS(1320), + [anon_sym_goto] = ACTIONS(1320), + [anon_sym___try] = ACTIONS(1320), + [anon_sym___leave] = ACTIONS(1320), + [anon_sym_DASH_DASH] = ACTIONS(1322), + [anon_sym_PLUS_PLUS] = ACTIONS(1322), + [anon_sym_sizeof] = ACTIONS(1320), + [anon_sym___alignof__] = ACTIONS(1320), + [anon_sym___alignof] = ACTIONS(1320), + [anon_sym__alignof] = ACTIONS(1320), + [anon_sym_alignof] = ACTIONS(1320), + [anon_sym__Alignof] = ACTIONS(1320), + [anon_sym_offsetof] = ACTIONS(1320), + [anon_sym__Generic] = ACTIONS(1320), + [anon_sym_asm] = ACTIONS(1320), + [anon_sym___asm__] = ACTIONS(1320), + [sym_number_literal] = ACTIONS(1322), + [anon_sym_L_SQUOTE] = ACTIONS(1322), + [anon_sym_u_SQUOTE] = ACTIONS(1322), + [anon_sym_U_SQUOTE] = ACTIONS(1322), + [anon_sym_u8_SQUOTE] = ACTIONS(1322), + [anon_sym_SQUOTE] = ACTIONS(1322), + [anon_sym_L_DQUOTE] = ACTIONS(1322), + [anon_sym_u_DQUOTE] = ACTIONS(1322), + [anon_sym_U_DQUOTE] = ACTIONS(1322), + [anon_sym_u8_DQUOTE] = ACTIONS(1322), + [anon_sym_DQUOTE] = ACTIONS(1322), + [sym_true] = ACTIONS(1320), + [sym_false] = ACTIONS(1320), + [anon_sym_NULL] = ACTIONS(1320), + [anon_sym_nullptr] = ACTIONS(1320), [sym_comment] = ACTIONS(3), }, [290] = { - [ts_builtin_sym_end] = ACTIONS(1315), - [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_LBRACK_LBRACK] = ACTIONS(1315), - [anon_sym___declspec] = 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), - [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_else] = 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_identifier] = ACTIONS(1408), + [aux_sym_preproc_include_token1] = ACTIONS(1408), + [aux_sym_preproc_def_token1] = ACTIONS(1408), + [aux_sym_preproc_if_token1] = ACTIONS(1408), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1408), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1408), + [sym_preproc_directive] = ACTIONS(1408), + [anon_sym_LPAREN2] = ACTIONS(1410), + [anon_sym_BANG] = ACTIONS(1410), + [anon_sym_TILDE] = ACTIONS(1410), + [anon_sym_DASH] = ACTIONS(1408), + [anon_sym_PLUS] = ACTIONS(1408), + [anon_sym_STAR] = ACTIONS(1410), + [anon_sym_AMP] = ACTIONS(1410), + [anon_sym_SEMI] = ACTIONS(1410), + [anon_sym___extension__] = ACTIONS(1408), + [anon_sym_typedef] = ACTIONS(1408), + [anon_sym_extern] = ACTIONS(1408), + [anon_sym___attribute__] = ACTIONS(1408), + [anon_sym___scanf] = ACTIONS(1408), + [anon_sym___printf] = ACTIONS(1408), + [anon_sym___read_mostly] = ACTIONS(1408), + [anon_sym___must_hold] = ACTIONS(1408), + [anon_sym___ro_after_init] = ACTIONS(1408), + [anon_sym___init] = ACTIONS(1408), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1410), + [anon_sym___declspec] = ACTIONS(1408), + [anon_sym___cdecl] = ACTIONS(1408), + [anon_sym___clrcall] = ACTIONS(1408), + [anon_sym___stdcall] = ACTIONS(1408), + [anon_sym___fastcall] = ACTIONS(1408), + [anon_sym___thiscall] = ACTIONS(1408), + [anon_sym___vectorcall] = ACTIONS(1408), + [anon_sym_LBRACE] = ACTIONS(1410), + [anon_sym_RBRACE] = ACTIONS(1410), + [anon_sym_signed] = ACTIONS(1408), + [anon_sym_unsigned] = ACTIONS(1408), + [anon_sym_long] = ACTIONS(1408), + [anon_sym_short] = ACTIONS(1408), + [anon_sym_static] = ACTIONS(1408), + [anon_sym_auto] = ACTIONS(1408), + [anon_sym_register] = ACTIONS(1408), + [anon_sym_inline] = ACTIONS(1408), + [anon_sym___inline] = ACTIONS(1408), + [anon_sym___inline__] = ACTIONS(1408), + [anon_sym___forceinline] = ACTIONS(1408), + [anon_sym_thread_local] = ACTIONS(1408), + [anon_sym___thread] = ACTIONS(1408), + [anon_sym_const] = ACTIONS(1408), + [anon_sym_constexpr] = ACTIONS(1408), + [anon_sym_volatile] = ACTIONS(1408), + [anon_sym_restrict] = ACTIONS(1408), + [anon_sym___restrict__] = ACTIONS(1408), + [anon_sym__Atomic] = ACTIONS(1408), + [anon_sym__Noreturn] = ACTIONS(1408), + [anon_sym_noreturn] = ACTIONS(1408), + [sym_primitive_type] = ACTIONS(1408), + [anon_sym_enum] = ACTIONS(1408), + [anon_sym_struct] = ACTIONS(1408), + [anon_sym_union] = ACTIONS(1408), + [anon_sym_if] = ACTIONS(1408), + [anon_sym_else] = ACTIONS(1408), + [anon_sym_switch] = ACTIONS(1408), + [anon_sym_case] = ACTIONS(1408), + [anon_sym_default] = ACTIONS(1408), + [anon_sym_while] = ACTIONS(1408), + [anon_sym_do] = ACTIONS(1408), + [anon_sym_for] = ACTIONS(1408), + [anon_sym_return] = ACTIONS(1408), + [anon_sym_break] = ACTIONS(1408), + [anon_sym_continue] = ACTIONS(1408), + [anon_sym_goto] = ACTIONS(1408), + [anon_sym___try] = ACTIONS(1408), + [anon_sym___leave] = ACTIONS(1408), + [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_PLUS_PLUS] = ACTIONS(1410), + [anon_sym_sizeof] = ACTIONS(1408), + [anon_sym___alignof__] = ACTIONS(1408), + [anon_sym___alignof] = ACTIONS(1408), + [anon_sym__alignof] = ACTIONS(1408), + [anon_sym_alignof] = ACTIONS(1408), + [anon_sym__Alignof] = ACTIONS(1408), + [anon_sym_offsetof] = ACTIONS(1408), + [anon_sym__Generic] = ACTIONS(1408), + [anon_sym_asm] = ACTIONS(1408), + [anon_sym___asm__] = ACTIONS(1408), + [sym_number_literal] = ACTIONS(1410), + [anon_sym_L_SQUOTE] = ACTIONS(1410), + [anon_sym_u_SQUOTE] = ACTIONS(1410), + [anon_sym_U_SQUOTE] = ACTIONS(1410), + [anon_sym_u8_SQUOTE] = ACTIONS(1410), + [anon_sym_SQUOTE] = ACTIONS(1410), + [anon_sym_L_DQUOTE] = ACTIONS(1410), + [anon_sym_u_DQUOTE] = ACTIONS(1410), + [anon_sym_U_DQUOTE] = ACTIONS(1410), + [anon_sym_u8_DQUOTE] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(1410), + [sym_true] = ACTIONS(1408), + [sym_false] = ACTIONS(1408), + [anon_sym_NULL] = ACTIONS(1408), + [anon_sym_nullptr] = ACTIONS(1408), [sym_comment] = ACTIONS(3), }, [291] = { - [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_LBRACK_LBRACK] = ACTIONS(1315), - [anon_sym___declspec] = 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), - [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_else] = 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), + [ts_builtin_sym_end] = ACTIONS(1390), + [sym_identifier] = ACTIONS(1388), + [aux_sym_preproc_include_token1] = ACTIONS(1388), + [aux_sym_preproc_def_token1] = ACTIONS(1388), + [aux_sym_preproc_if_token1] = ACTIONS(1388), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1388), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1388), + [sym_preproc_directive] = ACTIONS(1388), + [anon_sym_LPAREN2] = ACTIONS(1390), + [anon_sym_BANG] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1390), + [anon_sym_DASH] = ACTIONS(1388), + [anon_sym_PLUS] = ACTIONS(1388), + [anon_sym_STAR] = ACTIONS(1390), + [anon_sym_AMP] = ACTIONS(1390), + [anon_sym_SEMI] = ACTIONS(1390), + [anon_sym___extension__] = ACTIONS(1388), + [anon_sym_typedef] = ACTIONS(1388), + [anon_sym_extern] = ACTIONS(1388), + [anon_sym___attribute__] = ACTIONS(1388), + [anon_sym___scanf] = ACTIONS(1388), + [anon_sym___printf] = ACTIONS(1388), + [anon_sym___read_mostly] = ACTIONS(1388), + [anon_sym___must_hold] = ACTIONS(1388), + [anon_sym___ro_after_init] = ACTIONS(1388), + [anon_sym___init] = ACTIONS(1388), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1390), + [anon_sym___declspec] = ACTIONS(1388), + [anon_sym___cdecl] = ACTIONS(1388), + [anon_sym___clrcall] = ACTIONS(1388), + [anon_sym___stdcall] = ACTIONS(1388), + [anon_sym___fastcall] = ACTIONS(1388), + [anon_sym___thiscall] = ACTIONS(1388), + [anon_sym___vectorcall] = ACTIONS(1388), + [anon_sym_LBRACE] = ACTIONS(1390), + [anon_sym_signed] = ACTIONS(1388), + [anon_sym_unsigned] = ACTIONS(1388), + [anon_sym_long] = ACTIONS(1388), + [anon_sym_short] = ACTIONS(1388), + [anon_sym_static] = ACTIONS(1388), + [anon_sym_auto] = ACTIONS(1388), + [anon_sym_register] = ACTIONS(1388), + [anon_sym_inline] = ACTIONS(1388), + [anon_sym___inline] = ACTIONS(1388), + [anon_sym___inline__] = ACTIONS(1388), + [anon_sym___forceinline] = ACTIONS(1388), + [anon_sym_thread_local] = ACTIONS(1388), + [anon_sym___thread] = ACTIONS(1388), + [anon_sym_const] = ACTIONS(1388), + [anon_sym_constexpr] = ACTIONS(1388), + [anon_sym_volatile] = ACTIONS(1388), + [anon_sym_restrict] = ACTIONS(1388), + [anon_sym___restrict__] = ACTIONS(1388), + [anon_sym__Atomic] = ACTIONS(1388), + [anon_sym__Noreturn] = ACTIONS(1388), + [anon_sym_noreturn] = ACTIONS(1388), + [sym_primitive_type] = ACTIONS(1388), + [anon_sym_enum] = ACTIONS(1388), + [anon_sym_struct] = ACTIONS(1388), + [anon_sym_union] = ACTIONS(1388), + [anon_sym_if] = ACTIONS(1388), + [anon_sym_else] = ACTIONS(1388), + [anon_sym_switch] = ACTIONS(1388), + [anon_sym_case] = ACTIONS(1388), + [anon_sym_default] = ACTIONS(1388), + [anon_sym_while] = ACTIONS(1388), + [anon_sym_do] = ACTIONS(1388), + [anon_sym_for] = ACTIONS(1388), + [anon_sym_return] = ACTIONS(1388), + [anon_sym_break] = ACTIONS(1388), + [anon_sym_continue] = ACTIONS(1388), + [anon_sym_goto] = ACTIONS(1388), + [anon_sym___try] = ACTIONS(1388), + [anon_sym___leave] = ACTIONS(1388), + [anon_sym_DASH_DASH] = ACTIONS(1390), + [anon_sym_PLUS_PLUS] = ACTIONS(1390), + [anon_sym_sizeof] = ACTIONS(1388), + [anon_sym___alignof__] = ACTIONS(1388), + [anon_sym___alignof] = ACTIONS(1388), + [anon_sym__alignof] = ACTIONS(1388), + [anon_sym_alignof] = ACTIONS(1388), + [anon_sym__Alignof] = ACTIONS(1388), + [anon_sym_offsetof] = ACTIONS(1388), + [anon_sym__Generic] = ACTIONS(1388), + [anon_sym_asm] = ACTIONS(1388), + [anon_sym___asm__] = ACTIONS(1388), + [sym_number_literal] = ACTIONS(1390), + [anon_sym_L_SQUOTE] = ACTIONS(1390), + [anon_sym_u_SQUOTE] = ACTIONS(1390), + [anon_sym_U_SQUOTE] = ACTIONS(1390), + [anon_sym_u8_SQUOTE] = ACTIONS(1390), + [anon_sym_SQUOTE] = ACTIONS(1390), + [anon_sym_L_DQUOTE] = ACTIONS(1390), + [anon_sym_u_DQUOTE] = ACTIONS(1390), + [anon_sym_U_DQUOTE] = ACTIONS(1390), + [anon_sym_u8_DQUOTE] = ACTIONS(1390), + [anon_sym_DQUOTE] = ACTIONS(1390), + [sym_true] = ACTIONS(1388), + [sym_false] = ACTIONS(1388), + [anon_sym_NULL] = ACTIONS(1388), + [anon_sym_nullptr] = ACTIONS(1388), [sym_comment] = ACTIONS(3), }, [292] = { - [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_LBRACK_LBRACK] = ACTIONS(1315), - [anon_sym___declspec] = 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), - [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_else] = 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_identifier] = ACTIONS(1320), + [aux_sym_preproc_include_token1] = ACTIONS(1320), + [aux_sym_preproc_def_token1] = ACTIONS(1320), + [aux_sym_preproc_if_token1] = ACTIONS(1320), + [aux_sym_preproc_if_token2] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1320), + [sym_preproc_directive] = ACTIONS(1320), + [anon_sym_LPAREN2] = ACTIONS(1322), + [anon_sym_BANG] = ACTIONS(1322), + [anon_sym_TILDE] = ACTIONS(1322), + [anon_sym_DASH] = ACTIONS(1320), + [anon_sym_PLUS] = ACTIONS(1320), + [anon_sym_STAR] = ACTIONS(1322), + [anon_sym_AMP] = ACTIONS(1322), + [anon_sym_SEMI] = ACTIONS(1322), + [anon_sym___extension__] = ACTIONS(1320), + [anon_sym_typedef] = ACTIONS(1320), + [anon_sym_extern] = ACTIONS(1320), + [anon_sym___attribute__] = ACTIONS(1320), + [anon_sym___scanf] = ACTIONS(1320), + [anon_sym___printf] = ACTIONS(1320), + [anon_sym___read_mostly] = ACTIONS(1320), + [anon_sym___must_hold] = ACTIONS(1320), + [anon_sym___ro_after_init] = ACTIONS(1320), + [anon_sym___init] = ACTIONS(1320), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1322), + [anon_sym___declspec] = ACTIONS(1320), + [anon_sym___cdecl] = ACTIONS(1320), + [anon_sym___clrcall] = ACTIONS(1320), + [anon_sym___stdcall] = ACTIONS(1320), + [anon_sym___fastcall] = ACTIONS(1320), + [anon_sym___thiscall] = ACTIONS(1320), + [anon_sym___vectorcall] = ACTIONS(1320), + [anon_sym_LBRACE] = ACTIONS(1322), + [anon_sym_signed] = ACTIONS(1320), + [anon_sym_unsigned] = ACTIONS(1320), + [anon_sym_long] = ACTIONS(1320), + [anon_sym_short] = ACTIONS(1320), + [anon_sym_static] = ACTIONS(1320), + [anon_sym_auto] = ACTIONS(1320), + [anon_sym_register] = ACTIONS(1320), + [anon_sym_inline] = ACTIONS(1320), + [anon_sym___inline] = ACTIONS(1320), + [anon_sym___inline__] = ACTIONS(1320), + [anon_sym___forceinline] = ACTIONS(1320), + [anon_sym_thread_local] = ACTIONS(1320), + [anon_sym___thread] = ACTIONS(1320), + [anon_sym_const] = ACTIONS(1320), + [anon_sym_constexpr] = ACTIONS(1320), + [anon_sym_volatile] = ACTIONS(1320), + [anon_sym_restrict] = ACTIONS(1320), + [anon_sym___restrict__] = ACTIONS(1320), + [anon_sym__Atomic] = ACTIONS(1320), + [anon_sym__Noreturn] = ACTIONS(1320), + [anon_sym_noreturn] = ACTIONS(1320), + [sym_primitive_type] = ACTIONS(1320), + [anon_sym_enum] = ACTIONS(1320), + [anon_sym_struct] = ACTIONS(1320), + [anon_sym_union] = ACTIONS(1320), + [anon_sym_if] = ACTIONS(1320), + [anon_sym_else] = ACTIONS(1320), + [anon_sym_switch] = ACTIONS(1320), + [anon_sym_case] = ACTIONS(1320), + [anon_sym_default] = ACTIONS(1320), + [anon_sym_while] = ACTIONS(1320), + [anon_sym_do] = ACTIONS(1320), + [anon_sym_for] = ACTIONS(1320), + [anon_sym_return] = ACTIONS(1320), + [anon_sym_break] = ACTIONS(1320), + [anon_sym_continue] = ACTIONS(1320), + [anon_sym_goto] = ACTIONS(1320), + [anon_sym___try] = ACTIONS(1320), + [anon_sym___leave] = ACTIONS(1320), + [anon_sym_DASH_DASH] = ACTIONS(1322), + [anon_sym_PLUS_PLUS] = ACTIONS(1322), + [anon_sym_sizeof] = ACTIONS(1320), + [anon_sym___alignof__] = ACTIONS(1320), + [anon_sym___alignof] = ACTIONS(1320), + [anon_sym__alignof] = ACTIONS(1320), + [anon_sym_alignof] = ACTIONS(1320), + [anon_sym__Alignof] = ACTIONS(1320), + [anon_sym_offsetof] = ACTIONS(1320), + [anon_sym__Generic] = ACTIONS(1320), + [anon_sym_asm] = ACTIONS(1320), + [anon_sym___asm__] = ACTIONS(1320), + [sym_number_literal] = ACTIONS(1322), + [anon_sym_L_SQUOTE] = ACTIONS(1322), + [anon_sym_u_SQUOTE] = ACTIONS(1322), + [anon_sym_U_SQUOTE] = ACTIONS(1322), + [anon_sym_u8_SQUOTE] = ACTIONS(1322), + [anon_sym_SQUOTE] = ACTIONS(1322), + [anon_sym_L_DQUOTE] = ACTIONS(1322), + [anon_sym_u_DQUOTE] = ACTIONS(1322), + [anon_sym_U_DQUOTE] = ACTIONS(1322), + [anon_sym_u8_DQUOTE] = ACTIONS(1322), + [anon_sym_DQUOTE] = ACTIONS(1322), + [sym_true] = ACTIONS(1320), + [sym_false] = ACTIONS(1320), + [anon_sym_NULL] = ACTIONS(1320), + [anon_sym_nullptr] = ACTIONS(1320), [sym_comment] = ACTIONS(3), }, [293] = { - [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_LBRACK_LBRACK] = ACTIONS(1315), - [anon_sym___declspec] = 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), - [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_else] = 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_identifier] = ACTIONS(1320), + [aux_sym_preproc_include_token1] = ACTIONS(1320), + [aux_sym_preproc_def_token1] = ACTIONS(1320), + [aux_sym_preproc_if_token1] = ACTIONS(1320), + [aux_sym_preproc_if_token2] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1320), + [sym_preproc_directive] = ACTIONS(1320), + [anon_sym_LPAREN2] = ACTIONS(1322), + [anon_sym_BANG] = ACTIONS(1322), + [anon_sym_TILDE] = ACTIONS(1322), + [anon_sym_DASH] = ACTIONS(1320), + [anon_sym_PLUS] = ACTIONS(1320), + [anon_sym_STAR] = ACTIONS(1322), + [anon_sym_AMP] = ACTIONS(1322), + [anon_sym_SEMI] = ACTIONS(1322), + [anon_sym___extension__] = ACTIONS(1320), + [anon_sym_typedef] = ACTIONS(1320), + [anon_sym_extern] = ACTIONS(1320), + [anon_sym___attribute__] = ACTIONS(1320), + [anon_sym___scanf] = ACTIONS(1320), + [anon_sym___printf] = ACTIONS(1320), + [anon_sym___read_mostly] = ACTIONS(1320), + [anon_sym___must_hold] = ACTIONS(1320), + [anon_sym___ro_after_init] = ACTIONS(1320), + [anon_sym___init] = ACTIONS(1320), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1322), + [anon_sym___declspec] = ACTIONS(1320), + [anon_sym___cdecl] = ACTIONS(1320), + [anon_sym___clrcall] = ACTIONS(1320), + [anon_sym___stdcall] = ACTIONS(1320), + [anon_sym___fastcall] = ACTIONS(1320), + [anon_sym___thiscall] = ACTIONS(1320), + [anon_sym___vectorcall] = ACTIONS(1320), + [anon_sym_LBRACE] = ACTIONS(1322), + [anon_sym_signed] = ACTIONS(1320), + [anon_sym_unsigned] = ACTIONS(1320), + [anon_sym_long] = ACTIONS(1320), + [anon_sym_short] = ACTIONS(1320), + [anon_sym_static] = ACTIONS(1320), + [anon_sym_auto] = ACTIONS(1320), + [anon_sym_register] = ACTIONS(1320), + [anon_sym_inline] = ACTIONS(1320), + [anon_sym___inline] = ACTIONS(1320), + [anon_sym___inline__] = ACTIONS(1320), + [anon_sym___forceinline] = ACTIONS(1320), + [anon_sym_thread_local] = ACTIONS(1320), + [anon_sym___thread] = ACTIONS(1320), + [anon_sym_const] = ACTIONS(1320), + [anon_sym_constexpr] = ACTIONS(1320), + [anon_sym_volatile] = ACTIONS(1320), + [anon_sym_restrict] = ACTIONS(1320), + [anon_sym___restrict__] = ACTIONS(1320), + [anon_sym__Atomic] = ACTIONS(1320), + [anon_sym__Noreturn] = ACTIONS(1320), + [anon_sym_noreturn] = ACTIONS(1320), + [sym_primitive_type] = ACTIONS(1320), + [anon_sym_enum] = ACTIONS(1320), + [anon_sym_struct] = ACTIONS(1320), + [anon_sym_union] = ACTIONS(1320), + [anon_sym_if] = ACTIONS(1320), + [anon_sym_else] = ACTIONS(1320), + [anon_sym_switch] = ACTIONS(1320), + [anon_sym_case] = ACTIONS(1320), + [anon_sym_default] = ACTIONS(1320), + [anon_sym_while] = ACTIONS(1320), + [anon_sym_do] = ACTIONS(1320), + [anon_sym_for] = ACTIONS(1320), + [anon_sym_return] = ACTIONS(1320), + [anon_sym_break] = ACTIONS(1320), + [anon_sym_continue] = ACTIONS(1320), + [anon_sym_goto] = ACTIONS(1320), + [anon_sym___try] = ACTIONS(1320), + [anon_sym___leave] = ACTIONS(1320), + [anon_sym_DASH_DASH] = ACTIONS(1322), + [anon_sym_PLUS_PLUS] = ACTIONS(1322), + [anon_sym_sizeof] = ACTIONS(1320), + [anon_sym___alignof__] = ACTIONS(1320), + [anon_sym___alignof] = ACTIONS(1320), + [anon_sym__alignof] = ACTIONS(1320), + [anon_sym_alignof] = ACTIONS(1320), + [anon_sym__Alignof] = ACTIONS(1320), + [anon_sym_offsetof] = ACTIONS(1320), + [anon_sym__Generic] = ACTIONS(1320), + [anon_sym_asm] = ACTIONS(1320), + [anon_sym___asm__] = ACTIONS(1320), + [sym_number_literal] = ACTIONS(1322), + [anon_sym_L_SQUOTE] = ACTIONS(1322), + [anon_sym_u_SQUOTE] = ACTIONS(1322), + [anon_sym_U_SQUOTE] = ACTIONS(1322), + [anon_sym_u8_SQUOTE] = ACTIONS(1322), + [anon_sym_SQUOTE] = ACTIONS(1322), + [anon_sym_L_DQUOTE] = ACTIONS(1322), + [anon_sym_u_DQUOTE] = ACTIONS(1322), + [anon_sym_U_DQUOTE] = ACTIONS(1322), + [anon_sym_u8_DQUOTE] = ACTIONS(1322), + [anon_sym_DQUOTE] = ACTIONS(1322), + [sym_true] = ACTIONS(1320), + [sym_false] = ACTIONS(1320), + [anon_sym_NULL] = ACTIONS(1320), + [anon_sym_nullptr] = ACTIONS(1320), [sym_comment] = ACTIONS(3), }, [294] = { - [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_LBRACK_LBRACK] = ACTIONS(1315), - [anon_sym___declspec] = 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), - [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_else] = 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_identifier] = ACTIONS(1320), + [aux_sym_preproc_include_token1] = ACTIONS(1320), + [aux_sym_preproc_def_token1] = ACTIONS(1320), + [aux_sym_preproc_if_token1] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1320), + [sym_preproc_directive] = ACTIONS(1320), + [anon_sym_LPAREN2] = ACTIONS(1322), + [anon_sym_BANG] = ACTIONS(1322), + [anon_sym_TILDE] = ACTIONS(1322), + [anon_sym_DASH] = ACTIONS(1320), + [anon_sym_PLUS] = ACTIONS(1320), + [anon_sym_STAR] = ACTIONS(1322), + [anon_sym_AMP] = ACTIONS(1322), + [anon_sym_SEMI] = ACTIONS(1322), + [anon_sym___extension__] = ACTIONS(1320), + [anon_sym_typedef] = ACTIONS(1320), + [anon_sym_extern] = ACTIONS(1320), + [anon_sym___attribute__] = ACTIONS(1320), + [anon_sym___scanf] = ACTIONS(1320), + [anon_sym___printf] = ACTIONS(1320), + [anon_sym___read_mostly] = ACTIONS(1320), + [anon_sym___must_hold] = ACTIONS(1320), + [anon_sym___ro_after_init] = ACTIONS(1320), + [anon_sym___init] = ACTIONS(1320), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1322), + [anon_sym___declspec] = ACTIONS(1320), + [anon_sym___cdecl] = ACTIONS(1320), + [anon_sym___clrcall] = ACTIONS(1320), + [anon_sym___stdcall] = ACTIONS(1320), + [anon_sym___fastcall] = ACTIONS(1320), + [anon_sym___thiscall] = ACTIONS(1320), + [anon_sym___vectorcall] = ACTIONS(1320), + [anon_sym_LBRACE] = ACTIONS(1322), + [anon_sym_RBRACE] = ACTIONS(1322), + [anon_sym_signed] = ACTIONS(1320), + [anon_sym_unsigned] = ACTIONS(1320), + [anon_sym_long] = ACTIONS(1320), + [anon_sym_short] = ACTIONS(1320), + [anon_sym_static] = ACTIONS(1320), + [anon_sym_auto] = ACTIONS(1320), + [anon_sym_register] = ACTIONS(1320), + [anon_sym_inline] = ACTIONS(1320), + [anon_sym___inline] = ACTIONS(1320), + [anon_sym___inline__] = ACTIONS(1320), + [anon_sym___forceinline] = ACTIONS(1320), + [anon_sym_thread_local] = ACTIONS(1320), + [anon_sym___thread] = ACTIONS(1320), + [anon_sym_const] = ACTIONS(1320), + [anon_sym_constexpr] = ACTIONS(1320), + [anon_sym_volatile] = ACTIONS(1320), + [anon_sym_restrict] = ACTIONS(1320), + [anon_sym___restrict__] = ACTIONS(1320), + [anon_sym__Atomic] = ACTIONS(1320), + [anon_sym__Noreturn] = ACTIONS(1320), + [anon_sym_noreturn] = ACTIONS(1320), + [sym_primitive_type] = ACTIONS(1320), + [anon_sym_enum] = ACTIONS(1320), + [anon_sym_struct] = ACTIONS(1320), + [anon_sym_union] = ACTIONS(1320), + [anon_sym_if] = ACTIONS(1320), + [anon_sym_else] = ACTIONS(1320), + [anon_sym_switch] = ACTIONS(1320), + [anon_sym_case] = ACTIONS(1320), + [anon_sym_default] = ACTIONS(1320), + [anon_sym_while] = ACTIONS(1320), + [anon_sym_do] = ACTIONS(1320), + [anon_sym_for] = ACTIONS(1320), + [anon_sym_return] = ACTIONS(1320), + [anon_sym_break] = ACTIONS(1320), + [anon_sym_continue] = ACTIONS(1320), + [anon_sym_goto] = ACTIONS(1320), + [anon_sym___try] = ACTIONS(1320), + [anon_sym___leave] = ACTIONS(1320), + [anon_sym_DASH_DASH] = ACTIONS(1322), + [anon_sym_PLUS_PLUS] = ACTIONS(1322), + [anon_sym_sizeof] = ACTIONS(1320), + [anon_sym___alignof__] = ACTIONS(1320), + [anon_sym___alignof] = ACTIONS(1320), + [anon_sym__alignof] = ACTIONS(1320), + [anon_sym_alignof] = ACTIONS(1320), + [anon_sym__Alignof] = ACTIONS(1320), + [anon_sym_offsetof] = ACTIONS(1320), + [anon_sym__Generic] = ACTIONS(1320), + [anon_sym_asm] = ACTIONS(1320), + [anon_sym___asm__] = ACTIONS(1320), + [sym_number_literal] = ACTIONS(1322), + [anon_sym_L_SQUOTE] = ACTIONS(1322), + [anon_sym_u_SQUOTE] = ACTIONS(1322), + [anon_sym_U_SQUOTE] = ACTIONS(1322), + [anon_sym_u8_SQUOTE] = ACTIONS(1322), + [anon_sym_SQUOTE] = ACTIONS(1322), + [anon_sym_L_DQUOTE] = ACTIONS(1322), + [anon_sym_u_DQUOTE] = ACTIONS(1322), + [anon_sym_U_DQUOTE] = ACTIONS(1322), + [anon_sym_u8_DQUOTE] = ACTIONS(1322), + [anon_sym_DQUOTE] = ACTIONS(1322), + [sym_true] = ACTIONS(1320), + [sym_false] = ACTIONS(1320), + [anon_sym_NULL] = ACTIONS(1320), + [anon_sym_nullptr] = ACTIONS(1320), [sym_comment] = ACTIONS(3), }, [295] = { - [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_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_LBRACK_LBRACK] = ACTIONS(1335), - [anon_sym___declspec] = 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), - [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_else] = 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_identifier] = ACTIONS(1320), + [aux_sym_preproc_include_token1] = ACTIONS(1320), + [aux_sym_preproc_def_token1] = ACTIONS(1320), + [aux_sym_preproc_if_token1] = ACTIONS(1320), + [aux_sym_preproc_if_token2] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1320), + [sym_preproc_directive] = ACTIONS(1320), + [anon_sym_LPAREN2] = ACTIONS(1322), + [anon_sym_BANG] = ACTIONS(1322), + [anon_sym_TILDE] = ACTIONS(1322), + [anon_sym_DASH] = ACTIONS(1320), + [anon_sym_PLUS] = ACTIONS(1320), + [anon_sym_STAR] = ACTIONS(1322), + [anon_sym_AMP] = ACTIONS(1322), + [anon_sym_SEMI] = ACTIONS(1322), + [anon_sym___extension__] = ACTIONS(1320), + [anon_sym_typedef] = ACTIONS(1320), + [anon_sym_extern] = ACTIONS(1320), + [anon_sym___attribute__] = ACTIONS(1320), + [anon_sym___scanf] = ACTIONS(1320), + [anon_sym___printf] = ACTIONS(1320), + [anon_sym___read_mostly] = ACTIONS(1320), + [anon_sym___must_hold] = ACTIONS(1320), + [anon_sym___ro_after_init] = ACTIONS(1320), + [anon_sym___init] = ACTIONS(1320), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1322), + [anon_sym___declspec] = ACTIONS(1320), + [anon_sym___cdecl] = ACTIONS(1320), + [anon_sym___clrcall] = ACTIONS(1320), + [anon_sym___stdcall] = ACTIONS(1320), + [anon_sym___fastcall] = ACTIONS(1320), + [anon_sym___thiscall] = ACTIONS(1320), + [anon_sym___vectorcall] = ACTIONS(1320), + [anon_sym_LBRACE] = ACTIONS(1322), + [anon_sym_signed] = ACTIONS(1320), + [anon_sym_unsigned] = ACTIONS(1320), + [anon_sym_long] = ACTIONS(1320), + [anon_sym_short] = ACTIONS(1320), + [anon_sym_static] = ACTIONS(1320), + [anon_sym_auto] = ACTIONS(1320), + [anon_sym_register] = ACTIONS(1320), + [anon_sym_inline] = ACTIONS(1320), + [anon_sym___inline] = ACTIONS(1320), + [anon_sym___inline__] = ACTIONS(1320), + [anon_sym___forceinline] = ACTIONS(1320), + [anon_sym_thread_local] = ACTIONS(1320), + [anon_sym___thread] = ACTIONS(1320), + [anon_sym_const] = ACTIONS(1320), + [anon_sym_constexpr] = ACTIONS(1320), + [anon_sym_volatile] = ACTIONS(1320), + [anon_sym_restrict] = ACTIONS(1320), + [anon_sym___restrict__] = ACTIONS(1320), + [anon_sym__Atomic] = ACTIONS(1320), + [anon_sym__Noreturn] = ACTIONS(1320), + [anon_sym_noreturn] = ACTIONS(1320), + [sym_primitive_type] = ACTIONS(1320), + [anon_sym_enum] = ACTIONS(1320), + [anon_sym_struct] = ACTIONS(1320), + [anon_sym_union] = ACTIONS(1320), + [anon_sym_if] = ACTIONS(1320), + [anon_sym_else] = ACTIONS(1320), + [anon_sym_switch] = ACTIONS(1320), + [anon_sym_case] = ACTIONS(1320), + [anon_sym_default] = ACTIONS(1320), + [anon_sym_while] = ACTIONS(1320), + [anon_sym_do] = ACTIONS(1320), + [anon_sym_for] = ACTIONS(1320), + [anon_sym_return] = ACTIONS(1320), + [anon_sym_break] = ACTIONS(1320), + [anon_sym_continue] = ACTIONS(1320), + [anon_sym_goto] = ACTIONS(1320), + [anon_sym___try] = ACTIONS(1320), + [anon_sym___leave] = ACTIONS(1320), + [anon_sym_DASH_DASH] = ACTIONS(1322), + [anon_sym_PLUS_PLUS] = ACTIONS(1322), + [anon_sym_sizeof] = ACTIONS(1320), + [anon_sym___alignof__] = ACTIONS(1320), + [anon_sym___alignof] = ACTIONS(1320), + [anon_sym__alignof] = ACTIONS(1320), + [anon_sym_alignof] = ACTIONS(1320), + [anon_sym__Alignof] = ACTIONS(1320), + [anon_sym_offsetof] = ACTIONS(1320), + [anon_sym__Generic] = ACTIONS(1320), + [anon_sym_asm] = ACTIONS(1320), + [anon_sym___asm__] = ACTIONS(1320), + [sym_number_literal] = ACTIONS(1322), + [anon_sym_L_SQUOTE] = ACTIONS(1322), + [anon_sym_u_SQUOTE] = ACTIONS(1322), + [anon_sym_U_SQUOTE] = ACTIONS(1322), + [anon_sym_u8_SQUOTE] = ACTIONS(1322), + [anon_sym_SQUOTE] = ACTIONS(1322), + [anon_sym_L_DQUOTE] = ACTIONS(1322), + [anon_sym_u_DQUOTE] = ACTIONS(1322), + [anon_sym_U_DQUOTE] = ACTIONS(1322), + [anon_sym_u8_DQUOTE] = ACTIONS(1322), + [anon_sym_DQUOTE] = ACTIONS(1322), + [sym_true] = ACTIONS(1320), + [sym_false] = ACTIONS(1320), + [anon_sym_NULL] = ACTIONS(1320), + [anon_sym_nullptr] = ACTIONS(1320), [sym_comment] = ACTIONS(3), }, [296] = { - [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_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_LBRACK_LBRACK] = ACTIONS(1339), - [anon_sym___declspec] = 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), - [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_else] = 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_identifier] = ACTIONS(1364), + [aux_sym_preproc_include_token1] = ACTIONS(1364), + [aux_sym_preproc_def_token1] = ACTIONS(1364), + [aux_sym_preproc_if_token1] = ACTIONS(1364), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1364), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1364), + [sym_preproc_directive] = ACTIONS(1364), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(1366), + [anon_sym_TILDE] = ACTIONS(1366), + [anon_sym_DASH] = ACTIONS(1364), + [anon_sym_PLUS] = ACTIONS(1364), + [anon_sym_STAR] = ACTIONS(1366), + [anon_sym_AMP] = ACTIONS(1366), + [anon_sym_SEMI] = ACTIONS(1366), + [anon_sym___extension__] = ACTIONS(1364), + [anon_sym_typedef] = ACTIONS(1364), + [anon_sym_extern] = ACTIONS(1364), + [anon_sym___attribute__] = ACTIONS(1364), + [anon_sym___scanf] = ACTIONS(1364), + [anon_sym___printf] = ACTIONS(1364), + [anon_sym___read_mostly] = ACTIONS(1364), + [anon_sym___must_hold] = ACTIONS(1364), + [anon_sym___ro_after_init] = ACTIONS(1364), + [anon_sym___init] = ACTIONS(1364), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1366), + [anon_sym___declspec] = ACTIONS(1364), + [anon_sym___cdecl] = ACTIONS(1364), + [anon_sym___clrcall] = ACTIONS(1364), + [anon_sym___stdcall] = ACTIONS(1364), + [anon_sym___fastcall] = ACTIONS(1364), + [anon_sym___thiscall] = ACTIONS(1364), + [anon_sym___vectorcall] = ACTIONS(1364), + [anon_sym_LBRACE] = ACTIONS(1366), + [anon_sym_RBRACE] = ACTIONS(1366), + [anon_sym_signed] = ACTIONS(1364), + [anon_sym_unsigned] = ACTIONS(1364), + [anon_sym_long] = ACTIONS(1364), + [anon_sym_short] = ACTIONS(1364), + [anon_sym_static] = ACTIONS(1364), + [anon_sym_auto] = ACTIONS(1364), + [anon_sym_register] = ACTIONS(1364), + [anon_sym_inline] = ACTIONS(1364), + [anon_sym___inline] = ACTIONS(1364), + [anon_sym___inline__] = ACTIONS(1364), + [anon_sym___forceinline] = ACTIONS(1364), + [anon_sym_thread_local] = ACTIONS(1364), + [anon_sym___thread] = ACTIONS(1364), + [anon_sym_const] = ACTIONS(1364), + [anon_sym_constexpr] = ACTIONS(1364), + [anon_sym_volatile] = ACTIONS(1364), + [anon_sym_restrict] = ACTIONS(1364), + [anon_sym___restrict__] = ACTIONS(1364), + [anon_sym__Atomic] = ACTIONS(1364), + [anon_sym__Noreturn] = ACTIONS(1364), + [anon_sym_noreturn] = ACTIONS(1364), + [sym_primitive_type] = ACTIONS(1364), + [anon_sym_enum] = ACTIONS(1364), + [anon_sym_struct] = ACTIONS(1364), + [anon_sym_union] = ACTIONS(1364), + [anon_sym_if] = ACTIONS(1364), + [anon_sym_else] = ACTIONS(1364), + [anon_sym_switch] = ACTIONS(1364), + [anon_sym_case] = ACTIONS(1364), + [anon_sym_default] = ACTIONS(1364), + [anon_sym_while] = ACTIONS(1364), + [anon_sym_do] = ACTIONS(1364), + [anon_sym_for] = ACTIONS(1364), + [anon_sym_return] = ACTIONS(1364), + [anon_sym_break] = ACTIONS(1364), + [anon_sym_continue] = ACTIONS(1364), + [anon_sym_goto] = ACTIONS(1364), + [anon_sym___try] = ACTIONS(1364), + [anon_sym___leave] = ACTIONS(1364), + [anon_sym_DASH_DASH] = ACTIONS(1366), + [anon_sym_PLUS_PLUS] = ACTIONS(1366), + [anon_sym_sizeof] = ACTIONS(1364), + [anon_sym___alignof__] = ACTIONS(1364), + [anon_sym___alignof] = ACTIONS(1364), + [anon_sym__alignof] = ACTIONS(1364), + [anon_sym_alignof] = ACTIONS(1364), + [anon_sym__Alignof] = ACTIONS(1364), + [anon_sym_offsetof] = ACTIONS(1364), + [anon_sym__Generic] = ACTIONS(1364), + [anon_sym_asm] = ACTIONS(1364), + [anon_sym___asm__] = ACTIONS(1364), + [sym_number_literal] = ACTIONS(1366), + [anon_sym_L_SQUOTE] = ACTIONS(1366), + [anon_sym_u_SQUOTE] = ACTIONS(1366), + [anon_sym_U_SQUOTE] = ACTIONS(1366), + [anon_sym_u8_SQUOTE] = ACTIONS(1366), + [anon_sym_SQUOTE] = ACTIONS(1366), + [anon_sym_L_DQUOTE] = ACTIONS(1366), + [anon_sym_u_DQUOTE] = ACTIONS(1366), + [anon_sym_U_DQUOTE] = ACTIONS(1366), + [anon_sym_u8_DQUOTE] = ACTIONS(1366), + [anon_sym_DQUOTE] = ACTIONS(1366), + [sym_true] = ACTIONS(1364), + [sym_false] = ACTIONS(1364), + [anon_sym_NULL] = ACTIONS(1364), + [anon_sym_nullptr] = ACTIONS(1364), [sym_comment] = ACTIONS(3), }, [297] = { - [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_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_LBRACK_LBRACK] = ACTIONS(1363), - [anon_sym___declspec] = 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), - [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_else] = 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_identifier] = ACTIONS(1356), + [aux_sym_preproc_include_token1] = ACTIONS(1356), + [aux_sym_preproc_def_token1] = ACTIONS(1356), + [aux_sym_preproc_if_token1] = ACTIONS(1356), + [aux_sym_preproc_if_token2] = ACTIONS(1356), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1356), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1356), + [sym_preproc_directive] = ACTIONS(1356), + [anon_sym_LPAREN2] = ACTIONS(1358), + [anon_sym_BANG] = ACTIONS(1358), + [anon_sym_TILDE] = ACTIONS(1358), + [anon_sym_DASH] = ACTIONS(1356), + [anon_sym_PLUS] = ACTIONS(1356), + [anon_sym_STAR] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1358), + [anon_sym_SEMI] = ACTIONS(1358), + [anon_sym___extension__] = ACTIONS(1356), + [anon_sym_typedef] = ACTIONS(1356), + [anon_sym_extern] = ACTIONS(1356), + [anon_sym___attribute__] = ACTIONS(1356), + [anon_sym___scanf] = ACTIONS(1356), + [anon_sym___printf] = ACTIONS(1356), + [anon_sym___read_mostly] = ACTIONS(1356), + [anon_sym___must_hold] = ACTIONS(1356), + [anon_sym___ro_after_init] = ACTIONS(1356), + [anon_sym___init] = ACTIONS(1356), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1358), + [anon_sym___declspec] = ACTIONS(1356), + [anon_sym___cdecl] = ACTIONS(1356), + [anon_sym___clrcall] = ACTIONS(1356), + [anon_sym___stdcall] = ACTIONS(1356), + [anon_sym___fastcall] = ACTIONS(1356), + [anon_sym___thiscall] = ACTIONS(1356), + [anon_sym___vectorcall] = ACTIONS(1356), + [anon_sym_LBRACE] = ACTIONS(1358), + [anon_sym_signed] = ACTIONS(1356), + [anon_sym_unsigned] = ACTIONS(1356), + [anon_sym_long] = ACTIONS(1356), + [anon_sym_short] = ACTIONS(1356), + [anon_sym_static] = ACTIONS(1356), + [anon_sym_auto] = ACTIONS(1356), + [anon_sym_register] = ACTIONS(1356), + [anon_sym_inline] = ACTIONS(1356), + [anon_sym___inline] = ACTIONS(1356), + [anon_sym___inline__] = ACTIONS(1356), + [anon_sym___forceinline] = ACTIONS(1356), + [anon_sym_thread_local] = ACTIONS(1356), + [anon_sym___thread] = ACTIONS(1356), + [anon_sym_const] = ACTIONS(1356), + [anon_sym_constexpr] = ACTIONS(1356), + [anon_sym_volatile] = ACTIONS(1356), + [anon_sym_restrict] = ACTIONS(1356), + [anon_sym___restrict__] = ACTIONS(1356), + [anon_sym__Atomic] = ACTIONS(1356), + [anon_sym__Noreturn] = ACTIONS(1356), + [anon_sym_noreturn] = ACTIONS(1356), + [sym_primitive_type] = ACTIONS(1356), + [anon_sym_enum] = ACTIONS(1356), + [anon_sym_struct] = ACTIONS(1356), + [anon_sym_union] = ACTIONS(1356), + [anon_sym_if] = ACTIONS(1356), + [anon_sym_else] = ACTIONS(1356), + [anon_sym_switch] = ACTIONS(1356), + [anon_sym_case] = ACTIONS(1356), + [anon_sym_default] = ACTIONS(1356), + [anon_sym_while] = ACTIONS(1356), + [anon_sym_do] = ACTIONS(1356), + [anon_sym_for] = ACTIONS(1356), + [anon_sym_return] = ACTIONS(1356), + [anon_sym_break] = ACTIONS(1356), + [anon_sym_continue] = ACTIONS(1356), + [anon_sym_goto] = ACTIONS(1356), + [anon_sym___try] = ACTIONS(1356), + [anon_sym___leave] = ACTIONS(1356), + [anon_sym_DASH_DASH] = ACTIONS(1358), + [anon_sym_PLUS_PLUS] = ACTIONS(1358), + [anon_sym_sizeof] = ACTIONS(1356), + [anon_sym___alignof__] = ACTIONS(1356), + [anon_sym___alignof] = ACTIONS(1356), + [anon_sym__alignof] = ACTIONS(1356), + [anon_sym_alignof] = ACTIONS(1356), + [anon_sym__Alignof] = ACTIONS(1356), + [anon_sym_offsetof] = ACTIONS(1356), + [anon_sym__Generic] = ACTIONS(1356), + [anon_sym_asm] = ACTIONS(1356), + [anon_sym___asm__] = ACTIONS(1356), + [sym_number_literal] = ACTIONS(1358), + [anon_sym_L_SQUOTE] = ACTIONS(1358), + [anon_sym_u_SQUOTE] = ACTIONS(1358), + [anon_sym_U_SQUOTE] = ACTIONS(1358), + [anon_sym_u8_SQUOTE] = ACTIONS(1358), + [anon_sym_SQUOTE] = ACTIONS(1358), + [anon_sym_L_DQUOTE] = ACTIONS(1358), + [anon_sym_u_DQUOTE] = ACTIONS(1358), + [anon_sym_U_DQUOTE] = ACTIONS(1358), + [anon_sym_u8_DQUOTE] = ACTIONS(1358), + [anon_sym_DQUOTE] = ACTIONS(1358), + [sym_true] = ACTIONS(1356), + [sym_false] = ACTIONS(1356), + [anon_sym_NULL] = ACTIONS(1356), + [anon_sym_nullptr] = ACTIONS(1356), [sym_comment] = ACTIONS(3), }, [298] = { - [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_LBRACK_LBRACK] = ACTIONS(1355), - [anon_sym___declspec] = 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), - [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_else] = 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), + [ts_builtin_sym_end] = ACTIONS(1386), + [sym_identifier] = ACTIONS(1384), + [aux_sym_preproc_include_token1] = ACTIONS(1384), + [aux_sym_preproc_def_token1] = ACTIONS(1384), + [aux_sym_preproc_if_token1] = ACTIONS(1384), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1384), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1384), + [sym_preproc_directive] = ACTIONS(1384), + [anon_sym_LPAREN2] = ACTIONS(1386), + [anon_sym_BANG] = ACTIONS(1386), + [anon_sym_TILDE] = ACTIONS(1386), + [anon_sym_DASH] = ACTIONS(1384), + [anon_sym_PLUS] = ACTIONS(1384), + [anon_sym_STAR] = ACTIONS(1386), + [anon_sym_AMP] = ACTIONS(1386), + [anon_sym_SEMI] = ACTIONS(1386), + [anon_sym___extension__] = ACTIONS(1384), + [anon_sym_typedef] = ACTIONS(1384), + [anon_sym_extern] = ACTIONS(1384), + [anon_sym___attribute__] = ACTIONS(1384), + [anon_sym___scanf] = ACTIONS(1384), + [anon_sym___printf] = ACTIONS(1384), + [anon_sym___read_mostly] = ACTIONS(1384), + [anon_sym___must_hold] = ACTIONS(1384), + [anon_sym___ro_after_init] = ACTIONS(1384), + [anon_sym___init] = ACTIONS(1384), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1386), + [anon_sym___declspec] = ACTIONS(1384), + [anon_sym___cdecl] = ACTIONS(1384), + [anon_sym___clrcall] = ACTIONS(1384), + [anon_sym___stdcall] = ACTIONS(1384), + [anon_sym___fastcall] = ACTIONS(1384), + [anon_sym___thiscall] = ACTIONS(1384), + [anon_sym___vectorcall] = ACTIONS(1384), + [anon_sym_LBRACE] = ACTIONS(1386), + [anon_sym_signed] = ACTIONS(1384), + [anon_sym_unsigned] = ACTIONS(1384), + [anon_sym_long] = ACTIONS(1384), + [anon_sym_short] = ACTIONS(1384), + [anon_sym_static] = ACTIONS(1384), + [anon_sym_auto] = ACTIONS(1384), + [anon_sym_register] = ACTIONS(1384), + [anon_sym_inline] = ACTIONS(1384), + [anon_sym___inline] = ACTIONS(1384), + [anon_sym___inline__] = ACTIONS(1384), + [anon_sym___forceinline] = ACTIONS(1384), + [anon_sym_thread_local] = ACTIONS(1384), + [anon_sym___thread] = ACTIONS(1384), + [anon_sym_const] = ACTIONS(1384), + [anon_sym_constexpr] = ACTIONS(1384), + [anon_sym_volatile] = ACTIONS(1384), + [anon_sym_restrict] = ACTIONS(1384), + [anon_sym___restrict__] = ACTIONS(1384), + [anon_sym__Atomic] = ACTIONS(1384), + [anon_sym__Noreturn] = ACTIONS(1384), + [anon_sym_noreturn] = ACTIONS(1384), + [sym_primitive_type] = ACTIONS(1384), + [anon_sym_enum] = ACTIONS(1384), + [anon_sym_struct] = ACTIONS(1384), + [anon_sym_union] = ACTIONS(1384), + [anon_sym_if] = ACTIONS(1384), + [anon_sym_else] = ACTIONS(1384), + [anon_sym_switch] = ACTIONS(1384), + [anon_sym_case] = ACTIONS(1384), + [anon_sym_default] = ACTIONS(1384), + [anon_sym_while] = ACTIONS(1384), + [anon_sym_do] = ACTIONS(1384), + [anon_sym_for] = ACTIONS(1384), + [anon_sym_return] = ACTIONS(1384), + [anon_sym_break] = ACTIONS(1384), + [anon_sym_continue] = ACTIONS(1384), + [anon_sym_goto] = ACTIONS(1384), + [anon_sym___try] = ACTIONS(1384), + [anon_sym___leave] = ACTIONS(1384), + [anon_sym_DASH_DASH] = ACTIONS(1386), + [anon_sym_PLUS_PLUS] = ACTIONS(1386), + [anon_sym_sizeof] = ACTIONS(1384), + [anon_sym___alignof__] = ACTIONS(1384), + [anon_sym___alignof] = ACTIONS(1384), + [anon_sym__alignof] = ACTIONS(1384), + [anon_sym_alignof] = ACTIONS(1384), + [anon_sym__Alignof] = ACTIONS(1384), + [anon_sym_offsetof] = ACTIONS(1384), + [anon_sym__Generic] = ACTIONS(1384), + [anon_sym_asm] = ACTIONS(1384), + [anon_sym___asm__] = ACTIONS(1384), + [sym_number_literal] = ACTIONS(1386), + [anon_sym_L_SQUOTE] = ACTIONS(1386), + [anon_sym_u_SQUOTE] = ACTIONS(1386), + [anon_sym_U_SQUOTE] = ACTIONS(1386), + [anon_sym_u8_SQUOTE] = ACTIONS(1386), + [anon_sym_SQUOTE] = ACTIONS(1386), + [anon_sym_L_DQUOTE] = ACTIONS(1386), + [anon_sym_u_DQUOTE] = ACTIONS(1386), + [anon_sym_U_DQUOTE] = ACTIONS(1386), + [anon_sym_u8_DQUOTE] = ACTIONS(1386), + [anon_sym_DQUOTE] = ACTIONS(1386), + [sym_true] = ACTIONS(1384), + [sym_false] = ACTIONS(1384), + [anon_sym_NULL] = ACTIONS(1384), + [anon_sym_nullptr] = ACTIONS(1384), [sym_comment] = ACTIONS(3), }, [299] = { - [ts_builtin_sym_end] = ACTIONS(1315), - [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_LBRACK_LBRACK] = ACTIONS(1315), - [anon_sym___declspec] = 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), - [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_else] = 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), + [ts_builtin_sym_end] = ACTIONS(1382), + [sym_identifier] = ACTIONS(1380), + [aux_sym_preproc_include_token1] = ACTIONS(1380), + [aux_sym_preproc_def_token1] = ACTIONS(1380), + [aux_sym_preproc_if_token1] = ACTIONS(1380), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1380), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1380), + [sym_preproc_directive] = ACTIONS(1380), + [anon_sym_LPAREN2] = ACTIONS(1382), + [anon_sym_BANG] = ACTIONS(1382), + [anon_sym_TILDE] = ACTIONS(1382), + [anon_sym_DASH] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1380), + [anon_sym_STAR] = ACTIONS(1382), + [anon_sym_AMP] = ACTIONS(1382), + [anon_sym_SEMI] = ACTIONS(1382), + [anon_sym___extension__] = ACTIONS(1380), + [anon_sym_typedef] = ACTIONS(1380), + [anon_sym_extern] = ACTIONS(1380), + [anon_sym___attribute__] = ACTIONS(1380), + [anon_sym___scanf] = ACTIONS(1380), + [anon_sym___printf] = ACTIONS(1380), + [anon_sym___read_mostly] = ACTIONS(1380), + [anon_sym___must_hold] = ACTIONS(1380), + [anon_sym___ro_after_init] = ACTIONS(1380), + [anon_sym___init] = ACTIONS(1380), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1382), + [anon_sym___declspec] = ACTIONS(1380), + [anon_sym___cdecl] = ACTIONS(1380), + [anon_sym___clrcall] = ACTIONS(1380), + [anon_sym___stdcall] = ACTIONS(1380), + [anon_sym___fastcall] = ACTIONS(1380), + [anon_sym___thiscall] = ACTIONS(1380), + [anon_sym___vectorcall] = ACTIONS(1380), + [anon_sym_LBRACE] = ACTIONS(1382), + [anon_sym_signed] = ACTIONS(1380), + [anon_sym_unsigned] = ACTIONS(1380), + [anon_sym_long] = ACTIONS(1380), + [anon_sym_short] = ACTIONS(1380), + [anon_sym_static] = ACTIONS(1380), + [anon_sym_auto] = ACTIONS(1380), + [anon_sym_register] = ACTIONS(1380), + [anon_sym_inline] = ACTIONS(1380), + [anon_sym___inline] = ACTIONS(1380), + [anon_sym___inline__] = ACTIONS(1380), + [anon_sym___forceinline] = ACTIONS(1380), + [anon_sym_thread_local] = ACTIONS(1380), + [anon_sym___thread] = ACTIONS(1380), + [anon_sym_const] = ACTIONS(1380), + [anon_sym_constexpr] = ACTIONS(1380), + [anon_sym_volatile] = ACTIONS(1380), + [anon_sym_restrict] = ACTIONS(1380), + [anon_sym___restrict__] = ACTIONS(1380), + [anon_sym__Atomic] = ACTIONS(1380), + [anon_sym__Noreturn] = ACTIONS(1380), + [anon_sym_noreturn] = ACTIONS(1380), + [sym_primitive_type] = ACTIONS(1380), + [anon_sym_enum] = ACTIONS(1380), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_union] = ACTIONS(1380), + [anon_sym_if] = ACTIONS(1380), + [anon_sym_else] = ACTIONS(1380), + [anon_sym_switch] = ACTIONS(1380), + [anon_sym_case] = ACTIONS(1380), + [anon_sym_default] = ACTIONS(1380), + [anon_sym_while] = ACTIONS(1380), + [anon_sym_do] = ACTIONS(1380), + [anon_sym_for] = ACTIONS(1380), + [anon_sym_return] = ACTIONS(1380), + [anon_sym_break] = ACTIONS(1380), + [anon_sym_continue] = ACTIONS(1380), + [anon_sym_goto] = ACTIONS(1380), + [anon_sym___try] = ACTIONS(1380), + [anon_sym___leave] = ACTIONS(1380), + [anon_sym_DASH_DASH] = ACTIONS(1382), + [anon_sym_PLUS_PLUS] = ACTIONS(1382), + [anon_sym_sizeof] = ACTIONS(1380), + [anon_sym___alignof__] = ACTIONS(1380), + [anon_sym___alignof] = ACTIONS(1380), + [anon_sym__alignof] = ACTIONS(1380), + [anon_sym_alignof] = ACTIONS(1380), + [anon_sym__Alignof] = ACTIONS(1380), + [anon_sym_offsetof] = ACTIONS(1380), + [anon_sym__Generic] = ACTIONS(1380), + [anon_sym_asm] = ACTIONS(1380), + [anon_sym___asm__] = ACTIONS(1380), + [sym_number_literal] = ACTIONS(1382), + [anon_sym_L_SQUOTE] = ACTIONS(1382), + [anon_sym_u_SQUOTE] = ACTIONS(1382), + [anon_sym_U_SQUOTE] = ACTIONS(1382), + [anon_sym_u8_SQUOTE] = ACTIONS(1382), + [anon_sym_SQUOTE] = ACTIONS(1382), + [anon_sym_L_DQUOTE] = ACTIONS(1382), + [anon_sym_u_DQUOTE] = ACTIONS(1382), + [anon_sym_U_DQUOTE] = ACTIONS(1382), + [anon_sym_u8_DQUOTE] = ACTIONS(1382), + [anon_sym_DQUOTE] = ACTIONS(1382), + [sym_true] = ACTIONS(1380), + [sym_false] = ACTIONS(1380), + [anon_sym_NULL] = ACTIONS(1380), + [anon_sym_nullptr] = ACTIONS(1380), [sym_comment] = ACTIONS(3), }, [300] = { - [ts_builtin_sym_end] = ACTIONS(1315), - [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_LBRACK_LBRACK] = ACTIONS(1315), - [anon_sym___declspec] = 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), - [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_else] = 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_identifier] = ACTIONS(1320), + [aux_sym_preproc_include_token1] = ACTIONS(1320), + [aux_sym_preproc_def_token1] = ACTIONS(1320), + [aux_sym_preproc_if_token1] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1320), + [sym_preproc_directive] = ACTIONS(1320), + [anon_sym_LPAREN2] = ACTIONS(1322), + [anon_sym_BANG] = ACTIONS(1322), + [anon_sym_TILDE] = ACTIONS(1322), + [anon_sym_DASH] = ACTIONS(1320), + [anon_sym_PLUS] = ACTIONS(1320), + [anon_sym_STAR] = ACTIONS(1322), + [anon_sym_AMP] = ACTIONS(1322), + [anon_sym_SEMI] = ACTIONS(1322), + [anon_sym___extension__] = ACTIONS(1320), + [anon_sym_typedef] = ACTIONS(1320), + [anon_sym_extern] = ACTIONS(1320), + [anon_sym___attribute__] = ACTIONS(1320), + [anon_sym___scanf] = ACTIONS(1320), + [anon_sym___printf] = ACTIONS(1320), + [anon_sym___read_mostly] = ACTIONS(1320), + [anon_sym___must_hold] = ACTIONS(1320), + [anon_sym___ro_after_init] = ACTIONS(1320), + [anon_sym___init] = ACTIONS(1320), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1322), + [anon_sym___declspec] = ACTIONS(1320), + [anon_sym___cdecl] = ACTIONS(1320), + [anon_sym___clrcall] = ACTIONS(1320), + [anon_sym___stdcall] = ACTIONS(1320), + [anon_sym___fastcall] = ACTIONS(1320), + [anon_sym___thiscall] = ACTIONS(1320), + [anon_sym___vectorcall] = ACTIONS(1320), + [anon_sym_LBRACE] = ACTIONS(1322), + [anon_sym_RBRACE] = ACTIONS(1322), + [anon_sym_signed] = ACTIONS(1320), + [anon_sym_unsigned] = ACTIONS(1320), + [anon_sym_long] = ACTIONS(1320), + [anon_sym_short] = ACTIONS(1320), + [anon_sym_static] = ACTIONS(1320), + [anon_sym_auto] = ACTIONS(1320), + [anon_sym_register] = ACTIONS(1320), + [anon_sym_inline] = ACTIONS(1320), + [anon_sym___inline] = ACTIONS(1320), + [anon_sym___inline__] = ACTIONS(1320), + [anon_sym___forceinline] = ACTIONS(1320), + [anon_sym_thread_local] = ACTIONS(1320), + [anon_sym___thread] = ACTIONS(1320), + [anon_sym_const] = ACTIONS(1320), + [anon_sym_constexpr] = ACTIONS(1320), + [anon_sym_volatile] = ACTIONS(1320), + [anon_sym_restrict] = ACTIONS(1320), + [anon_sym___restrict__] = ACTIONS(1320), + [anon_sym__Atomic] = ACTIONS(1320), + [anon_sym__Noreturn] = ACTIONS(1320), + [anon_sym_noreturn] = ACTIONS(1320), + [sym_primitive_type] = ACTIONS(1320), + [anon_sym_enum] = ACTIONS(1320), + [anon_sym_struct] = ACTIONS(1320), + [anon_sym_union] = ACTIONS(1320), + [anon_sym_if] = ACTIONS(1320), + [anon_sym_else] = ACTIONS(1320), + [anon_sym_switch] = ACTIONS(1320), + [anon_sym_case] = ACTIONS(1320), + [anon_sym_default] = ACTIONS(1320), + [anon_sym_while] = ACTIONS(1320), + [anon_sym_do] = ACTIONS(1320), + [anon_sym_for] = ACTIONS(1320), + [anon_sym_return] = ACTIONS(1320), + [anon_sym_break] = ACTIONS(1320), + [anon_sym_continue] = ACTIONS(1320), + [anon_sym_goto] = ACTIONS(1320), + [anon_sym___try] = ACTIONS(1320), + [anon_sym___leave] = ACTIONS(1320), + [anon_sym_DASH_DASH] = ACTIONS(1322), + [anon_sym_PLUS_PLUS] = ACTIONS(1322), + [anon_sym_sizeof] = ACTIONS(1320), + [anon_sym___alignof__] = ACTIONS(1320), + [anon_sym___alignof] = ACTIONS(1320), + [anon_sym__alignof] = ACTIONS(1320), + [anon_sym_alignof] = ACTIONS(1320), + [anon_sym__Alignof] = ACTIONS(1320), + [anon_sym_offsetof] = ACTIONS(1320), + [anon_sym__Generic] = ACTIONS(1320), + [anon_sym_asm] = ACTIONS(1320), + [anon_sym___asm__] = ACTIONS(1320), + [sym_number_literal] = ACTIONS(1322), + [anon_sym_L_SQUOTE] = ACTIONS(1322), + [anon_sym_u_SQUOTE] = ACTIONS(1322), + [anon_sym_U_SQUOTE] = ACTIONS(1322), + [anon_sym_u8_SQUOTE] = ACTIONS(1322), + [anon_sym_SQUOTE] = ACTIONS(1322), + [anon_sym_L_DQUOTE] = ACTIONS(1322), + [anon_sym_u_DQUOTE] = ACTIONS(1322), + [anon_sym_U_DQUOTE] = ACTIONS(1322), + [anon_sym_u8_DQUOTE] = ACTIONS(1322), + [anon_sym_DQUOTE] = ACTIONS(1322), + [sym_true] = ACTIONS(1320), + [sym_false] = ACTIONS(1320), + [anon_sym_NULL] = ACTIONS(1320), + [anon_sym_nullptr] = ACTIONS(1320), [sym_comment] = ACTIONS(3), }, [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_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_LBRACK_LBRACK] = ACTIONS(1315), - [anon_sym___declspec] = 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), - [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_else] = 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_identifier] = ACTIONS(1328), + [aux_sym_preproc_include_token1] = ACTIONS(1328), + [aux_sym_preproc_def_token1] = ACTIONS(1328), + [aux_sym_preproc_if_token1] = ACTIONS(1328), + [aux_sym_preproc_if_token2] = ACTIONS(1328), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1328), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1328), + [sym_preproc_directive] = ACTIONS(1328), + [anon_sym_LPAREN2] = ACTIONS(1330), + [anon_sym_BANG] = ACTIONS(1330), + [anon_sym_TILDE] = ACTIONS(1330), + [anon_sym_DASH] = ACTIONS(1328), + [anon_sym_PLUS] = ACTIONS(1328), + [anon_sym_STAR] = ACTIONS(1330), + [anon_sym_AMP] = ACTIONS(1330), + [anon_sym_SEMI] = ACTIONS(1330), + [anon_sym___extension__] = ACTIONS(1328), + [anon_sym_typedef] = ACTIONS(1328), + [anon_sym_extern] = ACTIONS(1328), + [anon_sym___attribute__] = ACTIONS(1328), + [anon_sym___scanf] = ACTIONS(1328), + [anon_sym___printf] = ACTIONS(1328), + [anon_sym___read_mostly] = ACTIONS(1328), + [anon_sym___must_hold] = ACTIONS(1328), + [anon_sym___ro_after_init] = ACTIONS(1328), + [anon_sym___init] = ACTIONS(1328), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1330), + [anon_sym___declspec] = ACTIONS(1328), + [anon_sym___cdecl] = ACTIONS(1328), + [anon_sym___clrcall] = ACTIONS(1328), + [anon_sym___stdcall] = ACTIONS(1328), + [anon_sym___fastcall] = ACTIONS(1328), + [anon_sym___thiscall] = ACTIONS(1328), + [anon_sym___vectorcall] = ACTIONS(1328), + [anon_sym_LBRACE] = ACTIONS(1330), + [anon_sym_signed] = ACTIONS(1328), + [anon_sym_unsigned] = ACTIONS(1328), + [anon_sym_long] = ACTIONS(1328), + [anon_sym_short] = ACTIONS(1328), + [anon_sym_static] = ACTIONS(1328), + [anon_sym_auto] = ACTIONS(1328), + [anon_sym_register] = ACTIONS(1328), + [anon_sym_inline] = ACTIONS(1328), + [anon_sym___inline] = ACTIONS(1328), + [anon_sym___inline__] = ACTIONS(1328), + [anon_sym___forceinline] = ACTIONS(1328), + [anon_sym_thread_local] = ACTIONS(1328), + [anon_sym___thread] = ACTIONS(1328), + [anon_sym_const] = ACTIONS(1328), + [anon_sym_constexpr] = ACTIONS(1328), + [anon_sym_volatile] = ACTIONS(1328), + [anon_sym_restrict] = ACTIONS(1328), + [anon_sym___restrict__] = ACTIONS(1328), + [anon_sym__Atomic] = ACTIONS(1328), + [anon_sym__Noreturn] = ACTIONS(1328), + [anon_sym_noreturn] = ACTIONS(1328), + [sym_primitive_type] = ACTIONS(1328), + [anon_sym_enum] = ACTIONS(1328), + [anon_sym_struct] = ACTIONS(1328), + [anon_sym_union] = ACTIONS(1328), + [anon_sym_if] = ACTIONS(1328), + [anon_sym_else] = ACTIONS(1328), + [anon_sym_switch] = ACTIONS(1328), + [anon_sym_case] = ACTIONS(1328), + [anon_sym_default] = ACTIONS(1328), + [anon_sym_while] = ACTIONS(1328), + [anon_sym_do] = ACTIONS(1328), + [anon_sym_for] = ACTIONS(1328), + [anon_sym_return] = ACTIONS(1328), + [anon_sym_break] = ACTIONS(1328), + [anon_sym_continue] = ACTIONS(1328), + [anon_sym_goto] = ACTIONS(1328), + [anon_sym___try] = ACTIONS(1328), + [anon_sym___leave] = ACTIONS(1328), + [anon_sym_DASH_DASH] = ACTIONS(1330), + [anon_sym_PLUS_PLUS] = ACTIONS(1330), + [anon_sym_sizeof] = ACTIONS(1328), + [anon_sym___alignof__] = ACTIONS(1328), + [anon_sym___alignof] = ACTIONS(1328), + [anon_sym__alignof] = ACTIONS(1328), + [anon_sym_alignof] = ACTIONS(1328), + [anon_sym__Alignof] = ACTIONS(1328), + [anon_sym_offsetof] = ACTIONS(1328), + [anon_sym__Generic] = ACTIONS(1328), + [anon_sym_asm] = ACTIONS(1328), + [anon_sym___asm__] = ACTIONS(1328), + [sym_number_literal] = ACTIONS(1330), + [anon_sym_L_SQUOTE] = ACTIONS(1330), + [anon_sym_u_SQUOTE] = ACTIONS(1330), + [anon_sym_U_SQUOTE] = ACTIONS(1330), + [anon_sym_u8_SQUOTE] = ACTIONS(1330), + [anon_sym_SQUOTE] = ACTIONS(1330), + [anon_sym_L_DQUOTE] = ACTIONS(1330), + [anon_sym_u_DQUOTE] = ACTIONS(1330), + [anon_sym_U_DQUOTE] = ACTIONS(1330), + [anon_sym_u8_DQUOTE] = ACTIONS(1330), + [anon_sym_DQUOTE] = ACTIONS(1330), + [sym_true] = ACTIONS(1328), + [sym_false] = ACTIONS(1328), + [anon_sym_NULL] = ACTIONS(1328), + [anon_sym_nullptr] = ACTIONS(1328), [sym_comment] = ACTIONS(3), }, [302] = { - [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_LBRACK_LBRACK] = ACTIONS(1315), - [anon_sym___declspec] = 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), - [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_else] = 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), + [ts_builtin_sym_end] = ACTIONS(1362), + [sym_identifier] = ACTIONS(1360), + [aux_sym_preproc_include_token1] = ACTIONS(1360), + [aux_sym_preproc_def_token1] = ACTIONS(1360), + [aux_sym_preproc_if_token1] = ACTIONS(1360), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1360), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1360), + [sym_preproc_directive] = ACTIONS(1360), + [anon_sym_LPAREN2] = ACTIONS(1362), + [anon_sym_BANG] = ACTIONS(1362), + [anon_sym_TILDE] = ACTIONS(1362), + [anon_sym_DASH] = ACTIONS(1360), + [anon_sym_PLUS] = ACTIONS(1360), + [anon_sym_STAR] = ACTIONS(1362), + [anon_sym_AMP] = ACTIONS(1362), + [anon_sym_SEMI] = ACTIONS(1362), + [anon_sym___extension__] = ACTIONS(1360), + [anon_sym_typedef] = ACTIONS(1360), + [anon_sym_extern] = ACTIONS(1360), + [anon_sym___attribute__] = ACTIONS(1360), + [anon_sym___scanf] = ACTIONS(1360), + [anon_sym___printf] = ACTIONS(1360), + [anon_sym___read_mostly] = ACTIONS(1360), + [anon_sym___must_hold] = ACTIONS(1360), + [anon_sym___ro_after_init] = ACTIONS(1360), + [anon_sym___init] = ACTIONS(1360), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1362), + [anon_sym___declspec] = ACTIONS(1360), + [anon_sym___cdecl] = ACTIONS(1360), + [anon_sym___clrcall] = ACTIONS(1360), + [anon_sym___stdcall] = ACTIONS(1360), + [anon_sym___fastcall] = ACTIONS(1360), + [anon_sym___thiscall] = ACTIONS(1360), + [anon_sym___vectorcall] = ACTIONS(1360), + [anon_sym_LBRACE] = ACTIONS(1362), + [anon_sym_signed] = ACTIONS(1360), + [anon_sym_unsigned] = ACTIONS(1360), + [anon_sym_long] = ACTIONS(1360), + [anon_sym_short] = ACTIONS(1360), + [anon_sym_static] = ACTIONS(1360), + [anon_sym_auto] = ACTIONS(1360), + [anon_sym_register] = ACTIONS(1360), + [anon_sym_inline] = ACTIONS(1360), + [anon_sym___inline] = ACTIONS(1360), + [anon_sym___inline__] = ACTIONS(1360), + [anon_sym___forceinline] = ACTIONS(1360), + [anon_sym_thread_local] = ACTIONS(1360), + [anon_sym___thread] = ACTIONS(1360), + [anon_sym_const] = ACTIONS(1360), + [anon_sym_constexpr] = ACTIONS(1360), + [anon_sym_volatile] = ACTIONS(1360), + [anon_sym_restrict] = ACTIONS(1360), + [anon_sym___restrict__] = ACTIONS(1360), + [anon_sym__Atomic] = ACTIONS(1360), + [anon_sym__Noreturn] = ACTIONS(1360), + [anon_sym_noreturn] = ACTIONS(1360), + [sym_primitive_type] = ACTIONS(1360), + [anon_sym_enum] = ACTIONS(1360), + [anon_sym_struct] = ACTIONS(1360), + [anon_sym_union] = ACTIONS(1360), + [anon_sym_if] = ACTIONS(1360), + [anon_sym_else] = ACTIONS(1360), + [anon_sym_switch] = ACTIONS(1360), + [anon_sym_case] = ACTIONS(1360), + [anon_sym_default] = ACTIONS(1360), + [anon_sym_while] = ACTIONS(1360), + [anon_sym_do] = ACTIONS(1360), + [anon_sym_for] = ACTIONS(1360), + [anon_sym_return] = ACTIONS(1360), + [anon_sym_break] = ACTIONS(1360), + [anon_sym_continue] = ACTIONS(1360), + [anon_sym_goto] = ACTIONS(1360), + [anon_sym___try] = ACTIONS(1360), + [anon_sym___leave] = ACTIONS(1360), + [anon_sym_DASH_DASH] = ACTIONS(1362), + [anon_sym_PLUS_PLUS] = ACTIONS(1362), + [anon_sym_sizeof] = ACTIONS(1360), + [anon_sym___alignof__] = ACTIONS(1360), + [anon_sym___alignof] = ACTIONS(1360), + [anon_sym__alignof] = ACTIONS(1360), + [anon_sym_alignof] = ACTIONS(1360), + [anon_sym__Alignof] = ACTIONS(1360), + [anon_sym_offsetof] = ACTIONS(1360), + [anon_sym__Generic] = ACTIONS(1360), + [anon_sym_asm] = ACTIONS(1360), + [anon_sym___asm__] = ACTIONS(1360), + [sym_number_literal] = ACTIONS(1362), + [anon_sym_L_SQUOTE] = ACTIONS(1362), + [anon_sym_u_SQUOTE] = ACTIONS(1362), + [anon_sym_U_SQUOTE] = ACTIONS(1362), + [anon_sym_u8_SQUOTE] = ACTIONS(1362), + [anon_sym_SQUOTE] = ACTIONS(1362), + [anon_sym_L_DQUOTE] = ACTIONS(1362), + [anon_sym_u_DQUOTE] = ACTIONS(1362), + [anon_sym_U_DQUOTE] = ACTIONS(1362), + [anon_sym_u8_DQUOTE] = ACTIONS(1362), + [anon_sym_DQUOTE] = ACTIONS(1362), + [sym_true] = ACTIONS(1360), + [sym_false] = ACTIONS(1360), + [anon_sym_NULL] = ACTIONS(1360), + [anon_sym_nullptr] = ACTIONS(1360), [sym_comment] = ACTIONS(3), }, [303] = { - [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_LBRACK_LBRACK] = ACTIONS(1315), - [anon_sym___declspec] = 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), - [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_else] = 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_identifier] = ACTIONS(1320), + [aux_sym_preproc_include_token1] = ACTIONS(1320), + [aux_sym_preproc_def_token1] = ACTIONS(1320), + [aux_sym_preproc_if_token1] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1320), + [sym_preproc_directive] = ACTIONS(1320), + [anon_sym_LPAREN2] = ACTIONS(1322), + [anon_sym_BANG] = ACTIONS(1322), + [anon_sym_TILDE] = ACTIONS(1322), + [anon_sym_DASH] = ACTIONS(1320), + [anon_sym_PLUS] = ACTIONS(1320), + [anon_sym_STAR] = ACTIONS(1322), + [anon_sym_AMP] = ACTIONS(1322), + [anon_sym_SEMI] = ACTIONS(1322), + [anon_sym___extension__] = ACTIONS(1320), + [anon_sym_typedef] = ACTIONS(1320), + [anon_sym_extern] = ACTIONS(1320), + [anon_sym___attribute__] = ACTIONS(1320), + [anon_sym___scanf] = ACTIONS(1320), + [anon_sym___printf] = ACTIONS(1320), + [anon_sym___read_mostly] = ACTIONS(1320), + [anon_sym___must_hold] = ACTIONS(1320), + [anon_sym___ro_after_init] = ACTIONS(1320), + [anon_sym___init] = ACTIONS(1320), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1322), + [anon_sym___declspec] = ACTIONS(1320), + [anon_sym___cdecl] = ACTIONS(1320), + [anon_sym___clrcall] = ACTIONS(1320), + [anon_sym___stdcall] = ACTIONS(1320), + [anon_sym___fastcall] = ACTIONS(1320), + [anon_sym___thiscall] = ACTIONS(1320), + [anon_sym___vectorcall] = ACTIONS(1320), + [anon_sym_LBRACE] = ACTIONS(1322), + [anon_sym_RBRACE] = ACTIONS(1322), + [anon_sym_signed] = ACTIONS(1320), + [anon_sym_unsigned] = ACTIONS(1320), + [anon_sym_long] = ACTIONS(1320), + [anon_sym_short] = ACTIONS(1320), + [anon_sym_static] = ACTIONS(1320), + [anon_sym_auto] = ACTIONS(1320), + [anon_sym_register] = ACTIONS(1320), + [anon_sym_inline] = ACTIONS(1320), + [anon_sym___inline] = ACTIONS(1320), + [anon_sym___inline__] = ACTIONS(1320), + [anon_sym___forceinline] = ACTIONS(1320), + [anon_sym_thread_local] = ACTIONS(1320), + [anon_sym___thread] = ACTIONS(1320), + [anon_sym_const] = ACTIONS(1320), + [anon_sym_constexpr] = ACTIONS(1320), + [anon_sym_volatile] = ACTIONS(1320), + [anon_sym_restrict] = ACTIONS(1320), + [anon_sym___restrict__] = ACTIONS(1320), + [anon_sym__Atomic] = ACTIONS(1320), + [anon_sym__Noreturn] = ACTIONS(1320), + [anon_sym_noreturn] = ACTIONS(1320), + [sym_primitive_type] = ACTIONS(1320), + [anon_sym_enum] = ACTIONS(1320), + [anon_sym_struct] = ACTIONS(1320), + [anon_sym_union] = ACTIONS(1320), + [anon_sym_if] = ACTIONS(1320), + [anon_sym_else] = ACTIONS(1320), + [anon_sym_switch] = ACTIONS(1320), + [anon_sym_case] = ACTIONS(1320), + [anon_sym_default] = ACTIONS(1320), + [anon_sym_while] = ACTIONS(1320), + [anon_sym_do] = ACTIONS(1320), + [anon_sym_for] = ACTIONS(1320), + [anon_sym_return] = ACTIONS(1320), + [anon_sym_break] = ACTIONS(1320), + [anon_sym_continue] = ACTIONS(1320), + [anon_sym_goto] = ACTIONS(1320), + [anon_sym___try] = ACTIONS(1320), + [anon_sym___leave] = ACTIONS(1320), + [anon_sym_DASH_DASH] = ACTIONS(1322), + [anon_sym_PLUS_PLUS] = ACTIONS(1322), + [anon_sym_sizeof] = ACTIONS(1320), + [anon_sym___alignof__] = ACTIONS(1320), + [anon_sym___alignof] = ACTIONS(1320), + [anon_sym__alignof] = ACTIONS(1320), + [anon_sym_alignof] = ACTIONS(1320), + [anon_sym__Alignof] = ACTIONS(1320), + [anon_sym_offsetof] = ACTIONS(1320), + [anon_sym__Generic] = ACTIONS(1320), + [anon_sym_asm] = ACTIONS(1320), + [anon_sym___asm__] = ACTIONS(1320), + [sym_number_literal] = ACTIONS(1322), + [anon_sym_L_SQUOTE] = ACTIONS(1322), + [anon_sym_u_SQUOTE] = ACTIONS(1322), + [anon_sym_U_SQUOTE] = ACTIONS(1322), + [anon_sym_u8_SQUOTE] = ACTIONS(1322), + [anon_sym_SQUOTE] = ACTIONS(1322), + [anon_sym_L_DQUOTE] = ACTIONS(1322), + [anon_sym_u_DQUOTE] = ACTIONS(1322), + [anon_sym_U_DQUOTE] = ACTIONS(1322), + [anon_sym_u8_DQUOTE] = ACTIONS(1322), + [anon_sym_DQUOTE] = ACTIONS(1322), + [sym_true] = ACTIONS(1320), + [sym_false] = ACTIONS(1320), + [anon_sym_NULL] = ACTIONS(1320), + [anon_sym_nullptr] = ACTIONS(1320), [sym_comment] = ACTIONS(3), }, [304] = { - [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_LBRACK_LBRACK] = ACTIONS(1315), - [anon_sym___declspec] = 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), - [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_else] = 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_identifier] = ACTIONS(1320), + [aux_sym_preproc_include_token1] = ACTIONS(1320), + [aux_sym_preproc_def_token1] = ACTIONS(1320), + [aux_sym_preproc_if_token1] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1320), + [sym_preproc_directive] = ACTIONS(1320), + [anon_sym_LPAREN2] = ACTIONS(1322), + [anon_sym_BANG] = ACTIONS(1322), + [anon_sym_TILDE] = ACTIONS(1322), + [anon_sym_DASH] = ACTIONS(1320), + [anon_sym_PLUS] = ACTIONS(1320), + [anon_sym_STAR] = ACTIONS(1322), + [anon_sym_AMP] = ACTIONS(1322), + [anon_sym_SEMI] = ACTIONS(1322), + [anon_sym___extension__] = ACTIONS(1320), + [anon_sym_typedef] = ACTIONS(1320), + [anon_sym_extern] = ACTIONS(1320), + [anon_sym___attribute__] = ACTIONS(1320), + [anon_sym___scanf] = ACTIONS(1320), + [anon_sym___printf] = ACTIONS(1320), + [anon_sym___read_mostly] = ACTIONS(1320), + [anon_sym___must_hold] = ACTIONS(1320), + [anon_sym___ro_after_init] = ACTIONS(1320), + [anon_sym___init] = ACTIONS(1320), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1322), + [anon_sym___declspec] = ACTIONS(1320), + [anon_sym___cdecl] = ACTIONS(1320), + [anon_sym___clrcall] = ACTIONS(1320), + [anon_sym___stdcall] = ACTIONS(1320), + [anon_sym___fastcall] = ACTIONS(1320), + [anon_sym___thiscall] = ACTIONS(1320), + [anon_sym___vectorcall] = ACTIONS(1320), + [anon_sym_LBRACE] = ACTIONS(1322), + [anon_sym_RBRACE] = ACTIONS(1322), + [anon_sym_signed] = ACTIONS(1320), + [anon_sym_unsigned] = ACTIONS(1320), + [anon_sym_long] = ACTIONS(1320), + [anon_sym_short] = ACTIONS(1320), + [anon_sym_static] = ACTIONS(1320), + [anon_sym_auto] = ACTIONS(1320), + [anon_sym_register] = ACTIONS(1320), + [anon_sym_inline] = ACTIONS(1320), + [anon_sym___inline] = ACTIONS(1320), + [anon_sym___inline__] = ACTIONS(1320), + [anon_sym___forceinline] = ACTIONS(1320), + [anon_sym_thread_local] = ACTIONS(1320), + [anon_sym___thread] = ACTIONS(1320), + [anon_sym_const] = ACTIONS(1320), + [anon_sym_constexpr] = ACTIONS(1320), + [anon_sym_volatile] = ACTIONS(1320), + [anon_sym_restrict] = ACTIONS(1320), + [anon_sym___restrict__] = ACTIONS(1320), + [anon_sym__Atomic] = ACTIONS(1320), + [anon_sym__Noreturn] = ACTIONS(1320), + [anon_sym_noreturn] = ACTIONS(1320), + [sym_primitive_type] = ACTIONS(1320), + [anon_sym_enum] = ACTIONS(1320), + [anon_sym_struct] = ACTIONS(1320), + [anon_sym_union] = ACTIONS(1320), + [anon_sym_if] = ACTIONS(1320), + [anon_sym_else] = ACTIONS(1320), + [anon_sym_switch] = ACTIONS(1320), + [anon_sym_case] = ACTIONS(1320), + [anon_sym_default] = ACTIONS(1320), + [anon_sym_while] = ACTIONS(1320), + [anon_sym_do] = ACTIONS(1320), + [anon_sym_for] = ACTIONS(1320), + [anon_sym_return] = ACTIONS(1320), + [anon_sym_break] = ACTIONS(1320), + [anon_sym_continue] = ACTIONS(1320), + [anon_sym_goto] = ACTIONS(1320), + [anon_sym___try] = ACTIONS(1320), + [anon_sym___leave] = ACTIONS(1320), + [anon_sym_DASH_DASH] = ACTIONS(1322), + [anon_sym_PLUS_PLUS] = ACTIONS(1322), + [anon_sym_sizeof] = ACTIONS(1320), + [anon_sym___alignof__] = ACTIONS(1320), + [anon_sym___alignof] = ACTIONS(1320), + [anon_sym__alignof] = ACTIONS(1320), + [anon_sym_alignof] = ACTIONS(1320), + [anon_sym__Alignof] = ACTIONS(1320), + [anon_sym_offsetof] = ACTIONS(1320), + [anon_sym__Generic] = ACTIONS(1320), + [anon_sym_asm] = ACTIONS(1320), + [anon_sym___asm__] = ACTIONS(1320), + [sym_number_literal] = ACTIONS(1322), + [anon_sym_L_SQUOTE] = ACTIONS(1322), + [anon_sym_u_SQUOTE] = ACTIONS(1322), + [anon_sym_U_SQUOTE] = ACTIONS(1322), + [anon_sym_u8_SQUOTE] = ACTIONS(1322), + [anon_sym_SQUOTE] = ACTIONS(1322), + [anon_sym_L_DQUOTE] = ACTIONS(1322), + [anon_sym_u_DQUOTE] = ACTIONS(1322), + [anon_sym_U_DQUOTE] = ACTIONS(1322), + [anon_sym_u8_DQUOTE] = ACTIONS(1322), + [anon_sym_DQUOTE] = ACTIONS(1322), + [sym_true] = ACTIONS(1320), + [sym_false] = ACTIONS(1320), + [anon_sym_NULL] = ACTIONS(1320), + [anon_sym_nullptr] = ACTIONS(1320), [sym_comment] = ACTIONS(3), }, [305] = { - [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_LBRACK_LBRACK] = ACTIONS(1315), - [anon_sym___declspec] = 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), - [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_else] = 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_identifier] = ACTIONS(1320), + [aux_sym_preproc_include_token1] = ACTIONS(1320), + [aux_sym_preproc_def_token1] = ACTIONS(1320), + [aux_sym_preproc_if_token1] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1320), + [sym_preproc_directive] = ACTIONS(1320), + [anon_sym_LPAREN2] = ACTIONS(1322), + [anon_sym_BANG] = ACTIONS(1322), + [anon_sym_TILDE] = ACTIONS(1322), + [anon_sym_DASH] = ACTIONS(1320), + [anon_sym_PLUS] = ACTIONS(1320), + [anon_sym_STAR] = ACTIONS(1322), + [anon_sym_AMP] = ACTIONS(1322), + [anon_sym_SEMI] = ACTIONS(1322), + [anon_sym___extension__] = ACTIONS(1320), + [anon_sym_typedef] = ACTIONS(1320), + [anon_sym_extern] = ACTIONS(1320), + [anon_sym___attribute__] = ACTIONS(1320), + [anon_sym___scanf] = ACTIONS(1320), + [anon_sym___printf] = ACTIONS(1320), + [anon_sym___read_mostly] = ACTIONS(1320), + [anon_sym___must_hold] = ACTIONS(1320), + [anon_sym___ro_after_init] = ACTIONS(1320), + [anon_sym___init] = ACTIONS(1320), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1322), + [anon_sym___declspec] = ACTIONS(1320), + [anon_sym___cdecl] = ACTIONS(1320), + [anon_sym___clrcall] = ACTIONS(1320), + [anon_sym___stdcall] = ACTIONS(1320), + [anon_sym___fastcall] = ACTIONS(1320), + [anon_sym___thiscall] = ACTIONS(1320), + [anon_sym___vectorcall] = ACTIONS(1320), + [anon_sym_LBRACE] = ACTIONS(1322), + [anon_sym_RBRACE] = ACTIONS(1322), + [anon_sym_signed] = ACTIONS(1320), + [anon_sym_unsigned] = ACTIONS(1320), + [anon_sym_long] = ACTIONS(1320), + [anon_sym_short] = ACTIONS(1320), + [anon_sym_static] = ACTIONS(1320), + [anon_sym_auto] = ACTIONS(1320), + [anon_sym_register] = ACTIONS(1320), + [anon_sym_inline] = ACTIONS(1320), + [anon_sym___inline] = ACTIONS(1320), + [anon_sym___inline__] = ACTIONS(1320), + [anon_sym___forceinline] = ACTIONS(1320), + [anon_sym_thread_local] = ACTIONS(1320), + [anon_sym___thread] = ACTIONS(1320), + [anon_sym_const] = ACTIONS(1320), + [anon_sym_constexpr] = ACTIONS(1320), + [anon_sym_volatile] = ACTIONS(1320), + [anon_sym_restrict] = ACTIONS(1320), + [anon_sym___restrict__] = ACTIONS(1320), + [anon_sym__Atomic] = ACTIONS(1320), + [anon_sym__Noreturn] = ACTIONS(1320), + [anon_sym_noreturn] = ACTIONS(1320), + [sym_primitive_type] = ACTIONS(1320), + [anon_sym_enum] = ACTIONS(1320), + [anon_sym_struct] = ACTIONS(1320), + [anon_sym_union] = ACTIONS(1320), + [anon_sym_if] = ACTIONS(1320), + [anon_sym_else] = ACTIONS(1320), + [anon_sym_switch] = ACTIONS(1320), + [anon_sym_case] = ACTIONS(1320), + [anon_sym_default] = ACTIONS(1320), + [anon_sym_while] = ACTIONS(1320), + [anon_sym_do] = ACTIONS(1320), + [anon_sym_for] = ACTIONS(1320), + [anon_sym_return] = ACTIONS(1320), + [anon_sym_break] = ACTIONS(1320), + [anon_sym_continue] = ACTIONS(1320), + [anon_sym_goto] = ACTIONS(1320), + [anon_sym___try] = ACTIONS(1320), + [anon_sym___leave] = ACTIONS(1320), + [anon_sym_DASH_DASH] = ACTIONS(1322), + [anon_sym_PLUS_PLUS] = ACTIONS(1322), + [anon_sym_sizeof] = ACTIONS(1320), + [anon_sym___alignof__] = ACTIONS(1320), + [anon_sym___alignof] = ACTIONS(1320), + [anon_sym__alignof] = ACTIONS(1320), + [anon_sym_alignof] = ACTIONS(1320), + [anon_sym__Alignof] = ACTIONS(1320), + [anon_sym_offsetof] = ACTIONS(1320), + [anon_sym__Generic] = ACTIONS(1320), + [anon_sym_asm] = ACTIONS(1320), + [anon_sym___asm__] = ACTIONS(1320), + [sym_number_literal] = ACTIONS(1322), + [anon_sym_L_SQUOTE] = ACTIONS(1322), + [anon_sym_u_SQUOTE] = ACTIONS(1322), + [anon_sym_U_SQUOTE] = ACTIONS(1322), + [anon_sym_u8_SQUOTE] = ACTIONS(1322), + [anon_sym_SQUOTE] = ACTIONS(1322), + [anon_sym_L_DQUOTE] = ACTIONS(1322), + [anon_sym_u_DQUOTE] = ACTIONS(1322), + [anon_sym_U_DQUOTE] = ACTIONS(1322), + [anon_sym_u8_DQUOTE] = ACTIONS(1322), + [anon_sym_DQUOTE] = ACTIONS(1322), + [sym_true] = ACTIONS(1320), + [sym_false] = ACTIONS(1320), + [anon_sym_NULL] = ACTIONS(1320), + [anon_sym_nullptr] = ACTIONS(1320), [sym_comment] = ACTIONS(3), }, [306] = { - [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_LBRACK_LBRACK] = ACTIONS(1315), - [anon_sym___declspec] = 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), - [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_else] = 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_identifier] = ACTIONS(1320), + [aux_sym_preproc_include_token1] = ACTIONS(1320), + [aux_sym_preproc_def_token1] = ACTIONS(1320), + [aux_sym_preproc_if_token1] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1320), + [sym_preproc_directive] = ACTIONS(1320), + [anon_sym_LPAREN2] = ACTIONS(1322), + [anon_sym_BANG] = ACTIONS(1322), + [anon_sym_TILDE] = ACTIONS(1322), + [anon_sym_DASH] = ACTIONS(1320), + [anon_sym_PLUS] = ACTIONS(1320), + [anon_sym_STAR] = ACTIONS(1322), + [anon_sym_AMP] = ACTIONS(1322), + [anon_sym_SEMI] = ACTIONS(1322), + [anon_sym___extension__] = ACTIONS(1320), + [anon_sym_typedef] = ACTIONS(1320), + [anon_sym_extern] = ACTIONS(1320), + [anon_sym___attribute__] = ACTIONS(1320), + [anon_sym___scanf] = ACTIONS(1320), + [anon_sym___printf] = ACTIONS(1320), + [anon_sym___read_mostly] = ACTIONS(1320), + [anon_sym___must_hold] = ACTIONS(1320), + [anon_sym___ro_after_init] = ACTIONS(1320), + [anon_sym___init] = ACTIONS(1320), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1322), + [anon_sym___declspec] = ACTIONS(1320), + [anon_sym___cdecl] = ACTIONS(1320), + [anon_sym___clrcall] = ACTIONS(1320), + [anon_sym___stdcall] = ACTIONS(1320), + [anon_sym___fastcall] = ACTIONS(1320), + [anon_sym___thiscall] = ACTIONS(1320), + [anon_sym___vectorcall] = ACTIONS(1320), + [anon_sym_LBRACE] = ACTIONS(1322), + [anon_sym_RBRACE] = ACTIONS(1322), + [anon_sym_signed] = ACTIONS(1320), + [anon_sym_unsigned] = ACTIONS(1320), + [anon_sym_long] = ACTIONS(1320), + [anon_sym_short] = ACTIONS(1320), + [anon_sym_static] = ACTIONS(1320), + [anon_sym_auto] = ACTIONS(1320), + [anon_sym_register] = ACTIONS(1320), + [anon_sym_inline] = ACTIONS(1320), + [anon_sym___inline] = ACTIONS(1320), + [anon_sym___inline__] = ACTIONS(1320), + [anon_sym___forceinline] = ACTIONS(1320), + [anon_sym_thread_local] = ACTIONS(1320), + [anon_sym___thread] = ACTIONS(1320), + [anon_sym_const] = ACTIONS(1320), + [anon_sym_constexpr] = ACTIONS(1320), + [anon_sym_volatile] = ACTIONS(1320), + [anon_sym_restrict] = ACTIONS(1320), + [anon_sym___restrict__] = ACTIONS(1320), + [anon_sym__Atomic] = ACTIONS(1320), + [anon_sym__Noreturn] = ACTIONS(1320), + [anon_sym_noreturn] = ACTIONS(1320), + [sym_primitive_type] = ACTIONS(1320), + [anon_sym_enum] = ACTIONS(1320), + [anon_sym_struct] = ACTIONS(1320), + [anon_sym_union] = ACTIONS(1320), + [anon_sym_if] = ACTIONS(1320), + [anon_sym_else] = ACTIONS(1320), + [anon_sym_switch] = ACTIONS(1320), + [anon_sym_case] = ACTIONS(1320), + [anon_sym_default] = ACTIONS(1320), + [anon_sym_while] = ACTIONS(1320), + [anon_sym_do] = ACTIONS(1320), + [anon_sym_for] = ACTIONS(1320), + [anon_sym_return] = ACTIONS(1320), + [anon_sym_break] = ACTIONS(1320), + [anon_sym_continue] = ACTIONS(1320), + [anon_sym_goto] = ACTIONS(1320), + [anon_sym___try] = ACTIONS(1320), + [anon_sym___leave] = ACTIONS(1320), + [anon_sym_DASH_DASH] = ACTIONS(1322), + [anon_sym_PLUS_PLUS] = ACTIONS(1322), + [anon_sym_sizeof] = ACTIONS(1320), + [anon_sym___alignof__] = ACTIONS(1320), + [anon_sym___alignof] = ACTIONS(1320), + [anon_sym__alignof] = ACTIONS(1320), + [anon_sym_alignof] = ACTIONS(1320), + [anon_sym__Alignof] = ACTIONS(1320), + [anon_sym_offsetof] = ACTIONS(1320), + [anon_sym__Generic] = ACTIONS(1320), + [anon_sym_asm] = ACTIONS(1320), + [anon_sym___asm__] = ACTIONS(1320), + [sym_number_literal] = ACTIONS(1322), + [anon_sym_L_SQUOTE] = ACTIONS(1322), + [anon_sym_u_SQUOTE] = ACTIONS(1322), + [anon_sym_U_SQUOTE] = ACTIONS(1322), + [anon_sym_u8_SQUOTE] = ACTIONS(1322), + [anon_sym_SQUOTE] = ACTIONS(1322), + [anon_sym_L_DQUOTE] = ACTIONS(1322), + [anon_sym_u_DQUOTE] = ACTIONS(1322), + [anon_sym_U_DQUOTE] = ACTIONS(1322), + [anon_sym_u8_DQUOTE] = ACTIONS(1322), + [anon_sym_DQUOTE] = ACTIONS(1322), + [sym_true] = ACTIONS(1320), + [sym_false] = ACTIONS(1320), + [anon_sym_NULL] = ACTIONS(1320), + [anon_sym_nullptr] = ACTIONS(1320), [sym_comment] = ACTIONS(3), }, [307] = { - [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_LBRACK_LBRACK] = ACTIONS(1315), - [anon_sym___declspec] = 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), - [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_else] = 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_identifier] = ACTIONS(1372), + [aux_sym_preproc_include_token1] = ACTIONS(1372), + [aux_sym_preproc_def_token1] = ACTIONS(1372), + [aux_sym_preproc_if_token1] = ACTIONS(1372), + [aux_sym_preproc_if_token2] = ACTIONS(1372), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1372), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1372), + [sym_preproc_directive] = ACTIONS(1372), + [anon_sym_LPAREN2] = ACTIONS(1374), + [anon_sym_BANG] = ACTIONS(1374), + [anon_sym_TILDE] = ACTIONS(1374), + [anon_sym_DASH] = ACTIONS(1372), + [anon_sym_PLUS] = ACTIONS(1372), + [anon_sym_STAR] = ACTIONS(1374), + [anon_sym_AMP] = ACTIONS(1374), + [anon_sym_SEMI] = ACTIONS(1374), + [anon_sym___extension__] = ACTIONS(1372), + [anon_sym_typedef] = ACTIONS(1372), + [anon_sym_extern] = ACTIONS(1372), + [anon_sym___attribute__] = ACTIONS(1372), + [anon_sym___scanf] = ACTIONS(1372), + [anon_sym___printf] = ACTIONS(1372), + [anon_sym___read_mostly] = ACTIONS(1372), + [anon_sym___must_hold] = ACTIONS(1372), + [anon_sym___ro_after_init] = ACTIONS(1372), + [anon_sym___init] = ACTIONS(1372), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), + [anon_sym___declspec] = ACTIONS(1372), + [anon_sym___cdecl] = ACTIONS(1372), + [anon_sym___clrcall] = ACTIONS(1372), + [anon_sym___stdcall] = ACTIONS(1372), + [anon_sym___fastcall] = ACTIONS(1372), + [anon_sym___thiscall] = ACTIONS(1372), + [anon_sym___vectorcall] = ACTIONS(1372), + [anon_sym_LBRACE] = ACTIONS(1374), + [anon_sym_signed] = ACTIONS(1372), + [anon_sym_unsigned] = ACTIONS(1372), + [anon_sym_long] = ACTIONS(1372), + [anon_sym_short] = ACTIONS(1372), + [anon_sym_static] = ACTIONS(1372), + [anon_sym_auto] = ACTIONS(1372), + [anon_sym_register] = ACTIONS(1372), + [anon_sym_inline] = ACTIONS(1372), + [anon_sym___inline] = ACTIONS(1372), + [anon_sym___inline__] = ACTIONS(1372), + [anon_sym___forceinline] = ACTIONS(1372), + [anon_sym_thread_local] = ACTIONS(1372), + [anon_sym___thread] = ACTIONS(1372), + [anon_sym_const] = ACTIONS(1372), + [anon_sym_constexpr] = ACTIONS(1372), + [anon_sym_volatile] = ACTIONS(1372), + [anon_sym_restrict] = ACTIONS(1372), + [anon_sym___restrict__] = ACTIONS(1372), + [anon_sym__Atomic] = ACTIONS(1372), + [anon_sym__Noreturn] = ACTIONS(1372), + [anon_sym_noreturn] = ACTIONS(1372), + [sym_primitive_type] = ACTIONS(1372), + [anon_sym_enum] = ACTIONS(1372), + [anon_sym_struct] = ACTIONS(1372), + [anon_sym_union] = ACTIONS(1372), + [anon_sym_if] = ACTIONS(1372), + [anon_sym_else] = ACTIONS(1372), + [anon_sym_switch] = ACTIONS(1372), + [anon_sym_case] = ACTIONS(1372), + [anon_sym_default] = ACTIONS(1372), + [anon_sym_while] = ACTIONS(1372), + [anon_sym_do] = ACTIONS(1372), + [anon_sym_for] = ACTIONS(1372), + [anon_sym_return] = ACTIONS(1372), + [anon_sym_break] = ACTIONS(1372), + [anon_sym_continue] = ACTIONS(1372), + [anon_sym_goto] = ACTIONS(1372), + [anon_sym___try] = ACTIONS(1372), + [anon_sym___leave] = ACTIONS(1372), + [anon_sym_DASH_DASH] = ACTIONS(1374), + [anon_sym_PLUS_PLUS] = ACTIONS(1374), + [anon_sym_sizeof] = ACTIONS(1372), + [anon_sym___alignof__] = ACTIONS(1372), + [anon_sym___alignof] = ACTIONS(1372), + [anon_sym__alignof] = ACTIONS(1372), + [anon_sym_alignof] = ACTIONS(1372), + [anon_sym__Alignof] = ACTIONS(1372), + [anon_sym_offsetof] = ACTIONS(1372), + [anon_sym__Generic] = ACTIONS(1372), + [anon_sym_asm] = ACTIONS(1372), + [anon_sym___asm__] = ACTIONS(1372), + [sym_number_literal] = ACTIONS(1374), + [anon_sym_L_SQUOTE] = ACTIONS(1374), + [anon_sym_u_SQUOTE] = ACTIONS(1374), + [anon_sym_U_SQUOTE] = ACTIONS(1374), + [anon_sym_u8_SQUOTE] = ACTIONS(1374), + [anon_sym_SQUOTE] = ACTIONS(1374), + [anon_sym_L_DQUOTE] = ACTIONS(1374), + [anon_sym_u_DQUOTE] = ACTIONS(1374), + [anon_sym_U_DQUOTE] = ACTIONS(1374), + [anon_sym_u8_DQUOTE] = ACTIONS(1374), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_true] = ACTIONS(1372), + [sym_false] = ACTIONS(1372), + [anon_sym_NULL] = ACTIONS(1372), + [anon_sym_nullptr] = ACTIONS(1372), [sym_comment] = ACTIONS(3), }, [308] = { - [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_LBRACK_LBRACK] = ACTIONS(1315), - [anon_sym___declspec] = 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), - [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_else] = 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_identifier] = ACTIONS(1320), + [aux_sym_preproc_include_token1] = ACTIONS(1320), + [aux_sym_preproc_def_token1] = ACTIONS(1320), + [aux_sym_preproc_if_token1] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1320), + [sym_preproc_directive] = ACTIONS(1320), + [anon_sym_LPAREN2] = ACTIONS(1322), + [anon_sym_BANG] = ACTIONS(1322), + [anon_sym_TILDE] = ACTIONS(1322), + [anon_sym_DASH] = ACTIONS(1320), + [anon_sym_PLUS] = ACTIONS(1320), + [anon_sym_STAR] = ACTIONS(1322), + [anon_sym_AMP] = ACTIONS(1322), + [anon_sym_SEMI] = ACTIONS(1322), + [anon_sym___extension__] = ACTIONS(1320), + [anon_sym_typedef] = ACTIONS(1320), + [anon_sym_extern] = ACTIONS(1320), + [anon_sym___attribute__] = ACTIONS(1320), + [anon_sym___scanf] = ACTIONS(1320), + [anon_sym___printf] = ACTIONS(1320), + [anon_sym___read_mostly] = ACTIONS(1320), + [anon_sym___must_hold] = ACTIONS(1320), + [anon_sym___ro_after_init] = ACTIONS(1320), + [anon_sym___init] = ACTIONS(1320), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1322), + [anon_sym___declspec] = ACTIONS(1320), + [anon_sym___cdecl] = ACTIONS(1320), + [anon_sym___clrcall] = ACTIONS(1320), + [anon_sym___stdcall] = ACTIONS(1320), + [anon_sym___fastcall] = ACTIONS(1320), + [anon_sym___thiscall] = ACTIONS(1320), + [anon_sym___vectorcall] = ACTIONS(1320), + [anon_sym_LBRACE] = ACTIONS(1322), + [anon_sym_RBRACE] = ACTIONS(1322), + [anon_sym_signed] = ACTIONS(1320), + [anon_sym_unsigned] = ACTIONS(1320), + [anon_sym_long] = ACTIONS(1320), + [anon_sym_short] = ACTIONS(1320), + [anon_sym_static] = ACTIONS(1320), + [anon_sym_auto] = ACTIONS(1320), + [anon_sym_register] = ACTIONS(1320), + [anon_sym_inline] = ACTIONS(1320), + [anon_sym___inline] = ACTIONS(1320), + [anon_sym___inline__] = ACTIONS(1320), + [anon_sym___forceinline] = ACTIONS(1320), + [anon_sym_thread_local] = ACTIONS(1320), + [anon_sym___thread] = ACTIONS(1320), + [anon_sym_const] = ACTIONS(1320), + [anon_sym_constexpr] = ACTIONS(1320), + [anon_sym_volatile] = ACTIONS(1320), + [anon_sym_restrict] = ACTIONS(1320), + [anon_sym___restrict__] = ACTIONS(1320), + [anon_sym__Atomic] = ACTIONS(1320), + [anon_sym__Noreturn] = ACTIONS(1320), + [anon_sym_noreturn] = ACTIONS(1320), + [sym_primitive_type] = ACTIONS(1320), + [anon_sym_enum] = ACTIONS(1320), + [anon_sym_struct] = ACTIONS(1320), + [anon_sym_union] = ACTIONS(1320), + [anon_sym_if] = ACTIONS(1320), + [anon_sym_else] = ACTIONS(1320), + [anon_sym_switch] = ACTIONS(1320), + [anon_sym_case] = ACTIONS(1320), + [anon_sym_default] = ACTIONS(1320), + [anon_sym_while] = ACTIONS(1320), + [anon_sym_do] = ACTIONS(1320), + [anon_sym_for] = ACTIONS(1320), + [anon_sym_return] = ACTIONS(1320), + [anon_sym_break] = ACTIONS(1320), + [anon_sym_continue] = ACTIONS(1320), + [anon_sym_goto] = ACTIONS(1320), + [anon_sym___try] = ACTIONS(1320), + [anon_sym___leave] = ACTIONS(1320), + [anon_sym_DASH_DASH] = ACTIONS(1322), + [anon_sym_PLUS_PLUS] = ACTIONS(1322), + [anon_sym_sizeof] = ACTIONS(1320), + [anon_sym___alignof__] = ACTIONS(1320), + [anon_sym___alignof] = ACTIONS(1320), + [anon_sym__alignof] = ACTIONS(1320), + [anon_sym_alignof] = ACTIONS(1320), + [anon_sym__Alignof] = ACTIONS(1320), + [anon_sym_offsetof] = ACTIONS(1320), + [anon_sym__Generic] = ACTIONS(1320), + [anon_sym_asm] = ACTIONS(1320), + [anon_sym___asm__] = ACTIONS(1320), + [sym_number_literal] = ACTIONS(1322), + [anon_sym_L_SQUOTE] = ACTIONS(1322), + [anon_sym_u_SQUOTE] = ACTIONS(1322), + [anon_sym_U_SQUOTE] = ACTIONS(1322), + [anon_sym_u8_SQUOTE] = ACTIONS(1322), + [anon_sym_SQUOTE] = ACTIONS(1322), + [anon_sym_L_DQUOTE] = ACTIONS(1322), + [anon_sym_u_DQUOTE] = ACTIONS(1322), + [anon_sym_U_DQUOTE] = ACTIONS(1322), + [anon_sym_u8_DQUOTE] = ACTIONS(1322), + [anon_sym_DQUOTE] = ACTIONS(1322), + [sym_true] = ACTIONS(1320), + [sym_false] = ACTIONS(1320), + [anon_sym_NULL] = ACTIONS(1320), + [anon_sym_nullptr] = ACTIONS(1320), [sym_comment] = ACTIONS(3), }, [309] = { - [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_LBRACK_LBRACK] = ACTIONS(1315), - [anon_sym___declspec] = 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), - [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_else] = 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_identifier] = ACTIONS(1340), + [aux_sym_preproc_include_token1] = ACTIONS(1340), + [aux_sym_preproc_def_token1] = ACTIONS(1340), + [aux_sym_preproc_if_token1] = ACTIONS(1340), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1340), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1340), + [sym_preproc_directive] = ACTIONS(1340), + [anon_sym_LPAREN2] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1342), + [anon_sym_TILDE] = ACTIONS(1342), + [anon_sym_DASH] = ACTIONS(1340), + [anon_sym_PLUS] = ACTIONS(1340), + [anon_sym_STAR] = ACTIONS(1342), + [anon_sym_AMP] = ACTIONS(1342), + [anon_sym_SEMI] = ACTIONS(1342), + [anon_sym___extension__] = ACTIONS(1340), + [anon_sym_typedef] = ACTIONS(1340), + [anon_sym_extern] = ACTIONS(1340), + [anon_sym___attribute__] = ACTIONS(1340), + [anon_sym___scanf] = ACTIONS(1340), + [anon_sym___printf] = ACTIONS(1340), + [anon_sym___read_mostly] = ACTIONS(1340), + [anon_sym___must_hold] = ACTIONS(1340), + [anon_sym___ro_after_init] = ACTIONS(1340), + [anon_sym___init] = ACTIONS(1340), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1342), + [anon_sym___declspec] = ACTIONS(1340), + [anon_sym___cdecl] = ACTIONS(1340), + [anon_sym___clrcall] = ACTIONS(1340), + [anon_sym___stdcall] = ACTIONS(1340), + [anon_sym___fastcall] = ACTIONS(1340), + [anon_sym___thiscall] = ACTIONS(1340), + [anon_sym___vectorcall] = ACTIONS(1340), + [anon_sym_LBRACE] = ACTIONS(1342), + [anon_sym_RBRACE] = ACTIONS(1342), + [anon_sym_signed] = ACTIONS(1340), + [anon_sym_unsigned] = ACTIONS(1340), + [anon_sym_long] = ACTIONS(1340), + [anon_sym_short] = ACTIONS(1340), + [anon_sym_static] = ACTIONS(1340), + [anon_sym_auto] = ACTIONS(1340), + [anon_sym_register] = ACTIONS(1340), + [anon_sym_inline] = ACTIONS(1340), + [anon_sym___inline] = ACTIONS(1340), + [anon_sym___inline__] = ACTIONS(1340), + [anon_sym___forceinline] = ACTIONS(1340), + [anon_sym_thread_local] = ACTIONS(1340), + [anon_sym___thread] = ACTIONS(1340), + [anon_sym_const] = ACTIONS(1340), + [anon_sym_constexpr] = ACTIONS(1340), + [anon_sym_volatile] = ACTIONS(1340), + [anon_sym_restrict] = ACTIONS(1340), + [anon_sym___restrict__] = ACTIONS(1340), + [anon_sym__Atomic] = ACTIONS(1340), + [anon_sym__Noreturn] = ACTIONS(1340), + [anon_sym_noreturn] = ACTIONS(1340), + [sym_primitive_type] = ACTIONS(1340), + [anon_sym_enum] = ACTIONS(1340), + [anon_sym_struct] = ACTIONS(1340), + [anon_sym_union] = ACTIONS(1340), + [anon_sym_if] = ACTIONS(1340), + [anon_sym_else] = ACTIONS(1340), + [anon_sym_switch] = ACTIONS(1340), + [anon_sym_case] = ACTIONS(1340), + [anon_sym_default] = ACTIONS(1340), + [anon_sym_while] = ACTIONS(1340), + [anon_sym_do] = ACTIONS(1340), + [anon_sym_for] = ACTIONS(1340), + [anon_sym_return] = ACTIONS(1340), + [anon_sym_break] = ACTIONS(1340), + [anon_sym_continue] = ACTIONS(1340), + [anon_sym_goto] = ACTIONS(1340), + [anon_sym___try] = ACTIONS(1340), + [anon_sym___leave] = ACTIONS(1340), + [anon_sym_DASH_DASH] = ACTIONS(1342), + [anon_sym_PLUS_PLUS] = ACTIONS(1342), + [anon_sym_sizeof] = ACTIONS(1340), + [anon_sym___alignof__] = ACTIONS(1340), + [anon_sym___alignof] = ACTIONS(1340), + [anon_sym__alignof] = ACTIONS(1340), + [anon_sym_alignof] = ACTIONS(1340), + [anon_sym__Alignof] = ACTIONS(1340), + [anon_sym_offsetof] = ACTIONS(1340), + [anon_sym__Generic] = ACTIONS(1340), + [anon_sym_asm] = ACTIONS(1340), + [anon_sym___asm__] = ACTIONS(1340), + [sym_number_literal] = ACTIONS(1342), + [anon_sym_L_SQUOTE] = ACTIONS(1342), + [anon_sym_u_SQUOTE] = ACTIONS(1342), + [anon_sym_U_SQUOTE] = ACTIONS(1342), + [anon_sym_u8_SQUOTE] = ACTIONS(1342), + [anon_sym_SQUOTE] = ACTIONS(1342), + [anon_sym_L_DQUOTE] = ACTIONS(1342), + [anon_sym_u_DQUOTE] = ACTIONS(1342), + [anon_sym_U_DQUOTE] = ACTIONS(1342), + [anon_sym_u8_DQUOTE] = ACTIONS(1342), + [anon_sym_DQUOTE] = ACTIONS(1342), + [sym_true] = ACTIONS(1340), + [sym_false] = ACTIONS(1340), + [anon_sym_NULL] = ACTIONS(1340), + [anon_sym_nullptr] = ACTIONS(1340), [sym_comment] = ACTIONS(3), }, [310] = { - [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_LBRACK_LBRACK] = ACTIONS(1315), - [anon_sym___declspec] = 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), - [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_else] = 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), + [ts_builtin_sym_end] = ACTIONS(1370), + [sym_identifier] = ACTIONS(1368), + [aux_sym_preproc_include_token1] = ACTIONS(1368), + [aux_sym_preproc_def_token1] = ACTIONS(1368), + [aux_sym_preproc_if_token1] = ACTIONS(1368), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1368), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1368), + [sym_preproc_directive] = ACTIONS(1368), + [anon_sym_LPAREN2] = ACTIONS(1370), + [anon_sym_BANG] = ACTIONS(1370), + [anon_sym_TILDE] = ACTIONS(1370), + [anon_sym_DASH] = ACTIONS(1368), + [anon_sym_PLUS] = ACTIONS(1368), + [anon_sym_STAR] = ACTIONS(1370), + [anon_sym_AMP] = ACTIONS(1370), + [anon_sym_SEMI] = ACTIONS(1370), + [anon_sym___extension__] = ACTIONS(1368), + [anon_sym_typedef] = ACTIONS(1368), + [anon_sym_extern] = ACTIONS(1368), + [anon_sym___attribute__] = ACTIONS(1368), + [anon_sym___scanf] = ACTIONS(1368), + [anon_sym___printf] = ACTIONS(1368), + [anon_sym___read_mostly] = ACTIONS(1368), + [anon_sym___must_hold] = ACTIONS(1368), + [anon_sym___ro_after_init] = ACTIONS(1368), + [anon_sym___init] = ACTIONS(1368), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1370), + [anon_sym___declspec] = ACTIONS(1368), + [anon_sym___cdecl] = ACTIONS(1368), + [anon_sym___clrcall] = ACTIONS(1368), + [anon_sym___stdcall] = ACTIONS(1368), + [anon_sym___fastcall] = ACTIONS(1368), + [anon_sym___thiscall] = ACTIONS(1368), + [anon_sym___vectorcall] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_signed] = ACTIONS(1368), + [anon_sym_unsigned] = ACTIONS(1368), + [anon_sym_long] = ACTIONS(1368), + [anon_sym_short] = ACTIONS(1368), + [anon_sym_static] = ACTIONS(1368), + [anon_sym_auto] = ACTIONS(1368), + [anon_sym_register] = ACTIONS(1368), + [anon_sym_inline] = ACTIONS(1368), + [anon_sym___inline] = ACTIONS(1368), + [anon_sym___inline__] = ACTIONS(1368), + [anon_sym___forceinline] = ACTIONS(1368), + [anon_sym_thread_local] = ACTIONS(1368), + [anon_sym___thread] = ACTIONS(1368), + [anon_sym_const] = ACTIONS(1368), + [anon_sym_constexpr] = ACTIONS(1368), + [anon_sym_volatile] = ACTIONS(1368), + [anon_sym_restrict] = ACTIONS(1368), + [anon_sym___restrict__] = ACTIONS(1368), + [anon_sym__Atomic] = ACTIONS(1368), + [anon_sym__Noreturn] = ACTIONS(1368), + [anon_sym_noreturn] = ACTIONS(1368), + [sym_primitive_type] = ACTIONS(1368), + [anon_sym_enum] = ACTIONS(1368), + [anon_sym_struct] = ACTIONS(1368), + [anon_sym_union] = ACTIONS(1368), + [anon_sym_if] = ACTIONS(1368), + [anon_sym_else] = ACTIONS(1368), + [anon_sym_switch] = ACTIONS(1368), + [anon_sym_case] = ACTIONS(1368), + [anon_sym_default] = ACTIONS(1368), + [anon_sym_while] = ACTIONS(1368), + [anon_sym_do] = ACTIONS(1368), + [anon_sym_for] = ACTIONS(1368), + [anon_sym_return] = ACTIONS(1368), + [anon_sym_break] = ACTIONS(1368), + [anon_sym_continue] = ACTIONS(1368), + [anon_sym_goto] = ACTIONS(1368), + [anon_sym___try] = ACTIONS(1368), + [anon_sym___leave] = ACTIONS(1368), + [anon_sym_DASH_DASH] = ACTIONS(1370), + [anon_sym_PLUS_PLUS] = ACTIONS(1370), + [anon_sym_sizeof] = ACTIONS(1368), + [anon_sym___alignof__] = ACTIONS(1368), + [anon_sym___alignof] = ACTIONS(1368), + [anon_sym__alignof] = ACTIONS(1368), + [anon_sym_alignof] = ACTIONS(1368), + [anon_sym__Alignof] = ACTIONS(1368), + [anon_sym_offsetof] = ACTIONS(1368), + [anon_sym__Generic] = ACTIONS(1368), + [anon_sym_asm] = ACTIONS(1368), + [anon_sym___asm__] = ACTIONS(1368), + [sym_number_literal] = ACTIONS(1370), + [anon_sym_L_SQUOTE] = ACTIONS(1370), + [anon_sym_u_SQUOTE] = ACTIONS(1370), + [anon_sym_U_SQUOTE] = ACTIONS(1370), + [anon_sym_u8_SQUOTE] = ACTIONS(1370), + [anon_sym_SQUOTE] = ACTIONS(1370), + [anon_sym_L_DQUOTE] = ACTIONS(1370), + [anon_sym_u_DQUOTE] = ACTIONS(1370), + [anon_sym_U_DQUOTE] = ACTIONS(1370), + [anon_sym_u8_DQUOTE] = ACTIONS(1370), + [anon_sym_DQUOTE] = ACTIONS(1370), + [sym_true] = ACTIONS(1368), + [sym_false] = ACTIONS(1368), + [anon_sym_NULL] = ACTIONS(1368), + [anon_sym_nullptr] = ACTIONS(1368), [sym_comment] = ACTIONS(3), }, [311] = { - [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_LBRACK_LBRACK] = ACTIONS(1315), - [anon_sym___declspec] = 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), - [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_else] = 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_identifier] = ACTIONS(1344), + [aux_sym_preproc_include_token1] = ACTIONS(1344), + [aux_sym_preproc_def_token1] = ACTIONS(1344), + [aux_sym_preproc_if_token1] = ACTIONS(1344), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1344), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1344), + [sym_preproc_directive] = ACTIONS(1344), + [anon_sym_LPAREN2] = ACTIONS(1346), + [anon_sym_BANG] = ACTIONS(1346), + [anon_sym_TILDE] = ACTIONS(1346), + [anon_sym_DASH] = ACTIONS(1344), + [anon_sym_PLUS] = ACTIONS(1344), + [anon_sym_STAR] = ACTIONS(1346), + [anon_sym_AMP] = ACTIONS(1346), + [anon_sym_SEMI] = ACTIONS(1346), + [anon_sym___extension__] = ACTIONS(1344), + [anon_sym_typedef] = ACTIONS(1344), + [anon_sym_extern] = ACTIONS(1344), + [anon_sym___attribute__] = ACTIONS(1344), + [anon_sym___scanf] = ACTIONS(1344), + [anon_sym___printf] = ACTIONS(1344), + [anon_sym___read_mostly] = ACTIONS(1344), + [anon_sym___must_hold] = ACTIONS(1344), + [anon_sym___ro_after_init] = ACTIONS(1344), + [anon_sym___init] = ACTIONS(1344), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1346), + [anon_sym___declspec] = ACTIONS(1344), + [anon_sym___cdecl] = ACTIONS(1344), + [anon_sym___clrcall] = ACTIONS(1344), + [anon_sym___stdcall] = ACTIONS(1344), + [anon_sym___fastcall] = ACTIONS(1344), + [anon_sym___thiscall] = ACTIONS(1344), + [anon_sym___vectorcall] = ACTIONS(1344), + [anon_sym_LBRACE] = ACTIONS(1346), + [anon_sym_RBRACE] = ACTIONS(1346), + [anon_sym_signed] = ACTIONS(1344), + [anon_sym_unsigned] = ACTIONS(1344), + [anon_sym_long] = ACTIONS(1344), + [anon_sym_short] = ACTIONS(1344), + [anon_sym_static] = ACTIONS(1344), + [anon_sym_auto] = ACTIONS(1344), + [anon_sym_register] = ACTIONS(1344), + [anon_sym_inline] = ACTIONS(1344), + [anon_sym___inline] = ACTIONS(1344), + [anon_sym___inline__] = ACTIONS(1344), + [anon_sym___forceinline] = ACTIONS(1344), + [anon_sym_thread_local] = ACTIONS(1344), + [anon_sym___thread] = ACTIONS(1344), + [anon_sym_const] = ACTIONS(1344), + [anon_sym_constexpr] = ACTIONS(1344), + [anon_sym_volatile] = ACTIONS(1344), + [anon_sym_restrict] = ACTIONS(1344), + [anon_sym___restrict__] = ACTIONS(1344), + [anon_sym__Atomic] = ACTIONS(1344), + [anon_sym__Noreturn] = ACTIONS(1344), + [anon_sym_noreturn] = ACTIONS(1344), + [sym_primitive_type] = ACTIONS(1344), + [anon_sym_enum] = ACTIONS(1344), + [anon_sym_struct] = ACTIONS(1344), + [anon_sym_union] = ACTIONS(1344), + [anon_sym_if] = ACTIONS(1344), + [anon_sym_else] = ACTIONS(1344), + [anon_sym_switch] = ACTIONS(1344), + [anon_sym_case] = ACTIONS(1344), + [anon_sym_default] = ACTIONS(1344), + [anon_sym_while] = ACTIONS(1344), + [anon_sym_do] = ACTIONS(1344), + [anon_sym_for] = ACTIONS(1344), + [anon_sym_return] = ACTIONS(1344), + [anon_sym_break] = ACTIONS(1344), + [anon_sym_continue] = ACTIONS(1344), + [anon_sym_goto] = ACTIONS(1344), + [anon_sym___try] = ACTIONS(1344), + [anon_sym___leave] = ACTIONS(1344), + [anon_sym_DASH_DASH] = ACTIONS(1346), + [anon_sym_PLUS_PLUS] = ACTIONS(1346), + [anon_sym_sizeof] = ACTIONS(1344), + [anon_sym___alignof__] = ACTIONS(1344), + [anon_sym___alignof] = ACTIONS(1344), + [anon_sym__alignof] = ACTIONS(1344), + [anon_sym_alignof] = ACTIONS(1344), + [anon_sym__Alignof] = ACTIONS(1344), + [anon_sym_offsetof] = ACTIONS(1344), + [anon_sym__Generic] = ACTIONS(1344), + [anon_sym_asm] = ACTIONS(1344), + [anon_sym___asm__] = ACTIONS(1344), + [sym_number_literal] = ACTIONS(1346), + [anon_sym_L_SQUOTE] = ACTIONS(1346), + [anon_sym_u_SQUOTE] = ACTIONS(1346), + [anon_sym_U_SQUOTE] = ACTIONS(1346), + [anon_sym_u8_SQUOTE] = ACTIONS(1346), + [anon_sym_SQUOTE] = ACTIONS(1346), + [anon_sym_L_DQUOTE] = ACTIONS(1346), + [anon_sym_u_DQUOTE] = ACTIONS(1346), + [anon_sym_U_DQUOTE] = ACTIONS(1346), + [anon_sym_u8_DQUOTE] = ACTIONS(1346), + [anon_sym_DQUOTE] = ACTIONS(1346), + [sym_true] = ACTIONS(1344), + [sym_false] = ACTIONS(1344), + [anon_sym_NULL] = ACTIONS(1344), + [anon_sym_nullptr] = ACTIONS(1344), [sym_comment] = ACTIONS(3), }, [312] = { - [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_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_LBRACK_LBRACK] = ACTIONS(1343), - [anon_sym___declspec] = 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), - [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_else] = 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), + [ts_builtin_sym_end] = ACTIONS(1350), + [sym_identifier] = ACTIONS(1348), + [aux_sym_preproc_include_token1] = ACTIONS(1348), + [aux_sym_preproc_def_token1] = ACTIONS(1348), + [aux_sym_preproc_if_token1] = ACTIONS(1348), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1348), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1348), + [sym_preproc_directive] = ACTIONS(1348), + [anon_sym_LPAREN2] = ACTIONS(1350), + [anon_sym_BANG] = ACTIONS(1350), + [anon_sym_TILDE] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(1348), + [anon_sym_PLUS] = ACTIONS(1348), + [anon_sym_STAR] = ACTIONS(1350), + [anon_sym_AMP] = ACTIONS(1350), + [anon_sym_SEMI] = ACTIONS(1350), + [anon_sym___extension__] = ACTIONS(1348), + [anon_sym_typedef] = ACTIONS(1348), + [anon_sym_extern] = ACTIONS(1348), + [anon_sym___attribute__] = ACTIONS(1348), + [anon_sym___scanf] = ACTIONS(1348), + [anon_sym___printf] = ACTIONS(1348), + [anon_sym___read_mostly] = ACTIONS(1348), + [anon_sym___must_hold] = ACTIONS(1348), + [anon_sym___ro_after_init] = ACTIONS(1348), + [anon_sym___init] = ACTIONS(1348), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1350), + [anon_sym___declspec] = ACTIONS(1348), + [anon_sym___cdecl] = ACTIONS(1348), + [anon_sym___clrcall] = ACTIONS(1348), + [anon_sym___stdcall] = ACTIONS(1348), + [anon_sym___fastcall] = ACTIONS(1348), + [anon_sym___thiscall] = ACTIONS(1348), + [anon_sym___vectorcall] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_signed] = ACTIONS(1348), + [anon_sym_unsigned] = ACTIONS(1348), + [anon_sym_long] = ACTIONS(1348), + [anon_sym_short] = ACTIONS(1348), + [anon_sym_static] = ACTIONS(1348), + [anon_sym_auto] = ACTIONS(1348), + [anon_sym_register] = ACTIONS(1348), + [anon_sym_inline] = ACTIONS(1348), + [anon_sym___inline] = ACTIONS(1348), + [anon_sym___inline__] = ACTIONS(1348), + [anon_sym___forceinline] = ACTIONS(1348), + [anon_sym_thread_local] = ACTIONS(1348), + [anon_sym___thread] = ACTIONS(1348), + [anon_sym_const] = ACTIONS(1348), + [anon_sym_constexpr] = ACTIONS(1348), + [anon_sym_volatile] = ACTIONS(1348), + [anon_sym_restrict] = ACTIONS(1348), + [anon_sym___restrict__] = ACTIONS(1348), + [anon_sym__Atomic] = ACTIONS(1348), + [anon_sym__Noreturn] = ACTIONS(1348), + [anon_sym_noreturn] = ACTIONS(1348), + [sym_primitive_type] = ACTIONS(1348), + [anon_sym_enum] = ACTIONS(1348), + [anon_sym_struct] = ACTIONS(1348), + [anon_sym_union] = ACTIONS(1348), + [anon_sym_if] = ACTIONS(1348), + [anon_sym_else] = ACTIONS(1348), + [anon_sym_switch] = ACTIONS(1348), + [anon_sym_case] = ACTIONS(1348), + [anon_sym_default] = ACTIONS(1348), + [anon_sym_while] = ACTIONS(1348), + [anon_sym_do] = ACTIONS(1348), + [anon_sym_for] = ACTIONS(1348), + [anon_sym_return] = ACTIONS(1348), + [anon_sym_break] = ACTIONS(1348), + [anon_sym_continue] = ACTIONS(1348), + [anon_sym_goto] = ACTIONS(1348), + [anon_sym___try] = ACTIONS(1348), + [anon_sym___leave] = ACTIONS(1348), + [anon_sym_DASH_DASH] = ACTIONS(1350), + [anon_sym_PLUS_PLUS] = ACTIONS(1350), + [anon_sym_sizeof] = ACTIONS(1348), + [anon_sym___alignof__] = ACTIONS(1348), + [anon_sym___alignof] = ACTIONS(1348), + [anon_sym__alignof] = ACTIONS(1348), + [anon_sym_alignof] = ACTIONS(1348), + [anon_sym__Alignof] = ACTIONS(1348), + [anon_sym_offsetof] = ACTIONS(1348), + [anon_sym__Generic] = ACTIONS(1348), + [anon_sym_asm] = ACTIONS(1348), + [anon_sym___asm__] = ACTIONS(1348), + [sym_number_literal] = ACTIONS(1350), + [anon_sym_L_SQUOTE] = ACTIONS(1350), + [anon_sym_u_SQUOTE] = ACTIONS(1350), + [anon_sym_U_SQUOTE] = ACTIONS(1350), + [anon_sym_u8_SQUOTE] = ACTIONS(1350), + [anon_sym_SQUOTE] = ACTIONS(1350), + [anon_sym_L_DQUOTE] = ACTIONS(1350), + [anon_sym_u_DQUOTE] = ACTIONS(1350), + [anon_sym_U_DQUOTE] = ACTIONS(1350), + [anon_sym_u8_DQUOTE] = ACTIONS(1350), + [anon_sym_DQUOTE] = ACTIONS(1350), + [sym_true] = ACTIONS(1348), + [sym_false] = ACTIONS(1348), + [anon_sym_NULL] = ACTIONS(1348), + [anon_sym_nullptr] = ACTIONS(1348), [sym_comment] = ACTIONS(3), }, [313] = { - [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_LBRACK_LBRACK] = ACTIONS(1315), - [anon_sym___declspec] = 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), - [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_else] = 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_identifier] = ACTIONS(1352), + [aux_sym_preproc_include_token1] = ACTIONS(1352), + [aux_sym_preproc_def_token1] = ACTIONS(1352), + [aux_sym_preproc_if_token1] = ACTIONS(1352), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1352), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1352), + [sym_preproc_directive] = ACTIONS(1352), + [anon_sym_LPAREN2] = ACTIONS(1354), + [anon_sym_BANG] = ACTIONS(1354), + [anon_sym_TILDE] = ACTIONS(1354), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_PLUS] = ACTIONS(1352), + [anon_sym_STAR] = ACTIONS(1354), + [anon_sym_AMP] = ACTIONS(1354), + [anon_sym_SEMI] = ACTIONS(1354), + [anon_sym___extension__] = ACTIONS(1352), + [anon_sym_typedef] = ACTIONS(1352), + [anon_sym_extern] = ACTIONS(1352), + [anon_sym___attribute__] = ACTIONS(1352), + [anon_sym___scanf] = ACTIONS(1352), + [anon_sym___printf] = ACTIONS(1352), + [anon_sym___read_mostly] = ACTIONS(1352), + [anon_sym___must_hold] = ACTIONS(1352), + [anon_sym___ro_after_init] = ACTIONS(1352), + [anon_sym___init] = ACTIONS(1352), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1354), + [anon_sym___declspec] = ACTIONS(1352), + [anon_sym___cdecl] = ACTIONS(1352), + [anon_sym___clrcall] = ACTIONS(1352), + [anon_sym___stdcall] = ACTIONS(1352), + [anon_sym___fastcall] = ACTIONS(1352), + [anon_sym___thiscall] = ACTIONS(1352), + [anon_sym___vectorcall] = ACTIONS(1352), + [anon_sym_LBRACE] = ACTIONS(1354), + [anon_sym_RBRACE] = ACTIONS(1354), + [anon_sym_signed] = ACTIONS(1352), + [anon_sym_unsigned] = ACTIONS(1352), + [anon_sym_long] = ACTIONS(1352), + [anon_sym_short] = ACTIONS(1352), + [anon_sym_static] = ACTIONS(1352), + [anon_sym_auto] = ACTIONS(1352), + [anon_sym_register] = ACTIONS(1352), + [anon_sym_inline] = ACTIONS(1352), + [anon_sym___inline] = ACTIONS(1352), + [anon_sym___inline__] = ACTIONS(1352), + [anon_sym___forceinline] = ACTIONS(1352), + [anon_sym_thread_local] = ACTIONS(1352), + [anon_sym___thread] = ACTIONS(1352), + [anon_sym_const] = ACTIONS(1352), + [anon_sym_constexpr] = ACTIONS(1352), + [anon_sym_volatile] = ACTIONS(1352), + [anon_sym_restrict] = ACTIONS(1352), + [anon_sym___restrict__] = ACTIONS(1352), + [anon_sym__Atomic] = ACTIONS(1352), + [anon_sym__Noreturn] = ACTIONS(1352), + [anon_sym_noreturn] = ACTIONS(1352), + [sym_primitive_type] = ACTIONS(1352), + [anon_sym_enum] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1352), + [anon_sym_union] = ACTIONS(1352), + [anon_sym_if] = ACTIONS(1352), + [anon_sym_else] = ACTIONS(1352), + [anon_sym_switch] = ACTIONS(1352), + [anon_sym_case] = ACTIONS(1352), + [anon_sym_default] = ACTIONS(1352), + [anon_sym_while] = ACTIONS(1352), + [anon_sym_do] = ACTIONS(1352), + [anon_sym_for] = ACTIONS(1352), + [anon_sym_return] = ACTIONS(1352), + [anon_sym_break] = ACTIONS(1352), + [anon_sym_continue] = ACTIONS(1352), + [anon_sym_goto] = ACTIONS(1352), + [anon_sym___try] = ACTIONS(1352), + [anon_sym___leave] = ACTIONS(1352), + [anon_sym_DASH_DASH] = ACTIONS(1354), + [anon_sym_PLUS_PLUS] = ACTIONS(1354), + [anon_sym_sizeof] = ACTIONS(1352), + [anon_sym___alignof__] = ACTIONS(1352), + [anon_sym___alignof] = ACTIONS(1352), + [anon_sym__alignof] = ACTIONS(1352), + [anon_sym_alignof] = ACTIONS(1352), + [anon_sym__Alignof] = ACTIONS(1352), + [anon_sym_offsetof] = ACTIONS(1352), + [anon_sym__Generic] = ACTIONS(1352), + [anon_sym_asm] = ACTIONS(1352), + [anon_sym___asm__] = ACTIONS(1352), + [sym_number_literal] = ACTIONS(1354), + [anon_sym_L_SQUOTE] = ACTIONS(1354), + [anon_sym_u_SQUOTE] = ACTIONS(1354), + [anon_sym_U_SQUOTE] = ACTIONS(1354), + [anon_sym_u8_SQUOTE] = ACTIONS(1354), + [anon_sym_SQUOTE] = ACTIONS(1354), + [anon_sym_L_DQUOTE] = ACTIONS(1354), + [anon_sym_u_DQUOTE] = ACTIONS(1354), + [anon_sym_U_DQUOTE] = ACTIONS(1354), + [anon_sym_u8_DQUOTE] = ACTIONS(1354), + [anon_sym_DQUOTE] = ACTIONS(1354), + [sym_true] = ACTIONS(1352), + [sym_false] = ACTIONS(1352), + [anon_sym_NULL] = ACTIONS(1352), + [anon_sym_nullptr] = ACTIONS(1352), [sym_comment] = ACTIONS(3), }, [314] = { - [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_LBRACK_LBRACK] = ACTIONS(1315), - [anon_sym___declspec] = 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), - [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_else] = 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), + [ts_builtin_sym_end] = ACTIONS(1410), + [sym_identifier] = ACTIONS(1408), + [aux_sym_preproc_include_token1] = ACTIONS(1408), + [aux_sym_preproc_def_token1] = ACTIONS(1408), + [aux_sym_preproc_if_token1] = ACTIONS(1408), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1408), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1408), + [sym_preproc_directive] = ACTIONS(1408), + [anon_sym_LPAREN2] = ACTIONS(1410), + [anon_sym_BANG] = ACTIONS(1410), + [anon_sym_TILDE] = ACTIONS(1410), + [anon_sym_DASH] = ACTIONS(1408), + [anon_sym_PLUS] = ACTIONS(1408), + [anon_sym_STAR] = ACTIONS(1410), + [anon_sym_AMP] = ACTIONS(1410), + [anon_sym_SEMI] = ACTIONS(1410), + [anon_sym___extension__] = ACTIONS(1408), + [anon_sym_typedef] = ACTIONS(1408), + [anon_sym_extern] = ACTIONS(1408), + [anon_sym___attribute__] = ACTIONS(1408), + [anon_sym___scanf] = ACTIONS(1408), + [anon_sym___printf] = ACTIONS(1408), + [anon_sym___read_mostly] = ACTIONS(1408), + [anon_sym___must_hold] = ACTIONS(1408), + [anon_sym___ro_after_init] = ACTIONS(1408), + [anon_sym___init] = ACTIONS(1408), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1410), + [anon_sym___declspec] = ACTIONS(1408), + [anon_sym___cdecl] = ACTIONS(1408), + [anon_sym___clrcall] = ACTIONS(1408), + [anon_sym___stdcall] = ACTIONS(1408), + [anon_sym___fastcall] = ACTIONS(1408), + [anon_sym___thiscall] = ACTIONS(1408), + [anon_sym___vectorcall] = ACTIONS(1408), + [anon_sym_LBRACE] = ACTIONS(1410), + [anon_sym_signed] = ACTIONS(1408), + [anon_sym_unsigned] = ACTIONS(1408), + [anon_sym_long] = ACTIONS(1408), + [anon_sym_short] = ACTIONS(1408), + [anon_sym_static] = ACTIONS(1408), + [anon_sym_auto] = ACTIONS(1408), + [anon_sym_register] = ACTIONS(1408), + [anon_sym_inline] = ACTIONS(1408), + [anon_sym___inline] = ACTIONS(1408), + [anon_sym___inline__] = ACTIONS(1408), + [anon_sym___forceinline] = ACTIONS(1408), + [anon_sym_thread_local] = ACTIONS(1408), + [anon_sym___thread] = ACTIONS(1408), + [anon_sym_const] = ACTIONS(1408), + [anon_sym_constexpr] = ACTIONS(1408), + [anon_sym_volatile] = ACTIONS(1408), + [anon_sym_restrict] = ACTIONS(1408), + [anon_sym___restrict__] = ACTIONS(1408), + [anon_sym__Atomic] = ACTIONS(1408), + [anon_sym__Noreturn] = ACTIONS(1408), + [anon_sym_noreturn] = ACTIONS(1408), + [sym_primitive_type] = ACTIONS(1408), + [anon_sym_enum] = ACTIONS(1408), + [anon_sym_struct] = ACTIONS(1408), + [anon_sym_union] = ACTIONS(1408), + [anon_sym_if] = ACTIONS(1408), + [anon_sym_else] = ACTIONS(1408), + [anon_sym_switch] = ACTIONS(1408), + [anon_sym_case] = ACTIONS(1408), + [anon_sym_default] = ACTIONS(1408), + [anon_sym_while] = ACTIONS(1408), + [anon_sym_do] = ACTIONS(1408), + [anon_sym_for] = ACTIONS(1408), + [anon_sym_return] = ACTIONS(1408), + [anon_sym_break] = ACTIONS(1408), + [anon_sym_continue] = ACTIONS(1408), + [anon_sym_goto] = ACTIONS(1408), + [anon_sym___try] = ACTIONS(1408), + [anon_sym___leave] = ACTIONS(1408), + [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_PLUS_PLUS] = ACTIONS(1410), + [anon_sym_sizeof] = ACTIONS(1408), + [anon_sym___alignof__] = ACTIONS(1408), + [anon_sym___alignof] = ACTIONS(1408), + [anon_sym__alignof] = ACTIONS(1408), + [anon_sym_alignof] = ACTIONS(1408), + [anon_sym__Alignof] = ACTIONS(1408), + [anon_sym_offsetof] = ACTIONS(1408), + [anon_sym__Generic] = ACTIONS(1408), + [anon_sym_asm] = ACTIONS(1408), + [anon_sym___asm__] = ACTIONS(1408), + [sym_number_literal] = ACTIONS(1410), + [anon_sym_L_SQUOTE] = ACTIONS(1410), + [anon_sym_u_SQUOTE] = ACTIONS(1410), + [anon_sym_U_SQUOTE] = ACTIONS(1410), + [anon_sym_u8_SQUOTE] = ACTIONS(1410), + [anon_sym_SQUOTE] = ACTIONS(1410), + [anon_sym_L_DQUOTE] = ACTIONS(1410), + [anon_sym_u_DQUOTE] = ACTIONS(1410), + [anon_sym_U_DQUOTE] = ACTIONS(1410), + [anon_sym_u8_DQUOTE] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(1410), + [sym_true] = ACTIONS(1408), + [sym_false] = ACTIONS(1408), + [anon_sym_NULL] = ACTIONS(1408), + [anon_sym_nullptr] = ACTIONS(1408), [sym_comment] = ACTIONS(3), }, [315] = { - [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_LBRACK_LBRACK] = ACTIONS(1315), - [anon_sym___declspec] = 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), - [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_else] = 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), + [ts_builtin_sym_end] = ACTIONS(1378), + [sym_identifier] = ACTIONS(1376), + [aux_sym_preproc_include_token1] = ACTIONS(1376), + [aux_sym_preproc_def_token1] = ACTIONS(1376), + [aux_sym_preproc_if_token1] = ACTIONS(1376), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1376), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1376), + [sym_preproc_directive] = ACTIONS(1376), + [anon_sym_LPAREN2] = ACTIONS(1378), + [anon_sym_BANG] = ACTIONS(1378), + [anon_sym_TILDE] = ACTIONS(1378), + [anon_sym_DASH] = ACTIONS(1376), + [anon_sym_PLUS] = ACTIONS(1376), + [anon_sym_STAR] = ACTIONS(1378), + [anon_sym_AMP] = ACTIONS(1378), + [anon_sym_SEMI] = ACTIONS(1378), + [anon_sym___extension__] = ACTIONS(1376), + [anon_sym_typedef] = ACTIONS(1376), + [anon_sym_extern] = ACTIONS(1376), + [anon_sym___attribute__] = ACTIONS(1376), + [anon_sym___scanf] = ACTIONS(1376), + [anon_sym___printf] = ACTIONS(1376), + [anon_sym___read_mostly] = ACTIONS(1376), + [anon_sym___must_hold] = ACTIONS(1376), + [anon_sym___ro_after_init] = ACTIONS(1376), + [anon_sym___init] = ACTIONS(1376), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1378), + [anon_sym___declspec] = ACTIONS(1376), + [anon_sym___cdecl] = ACTIONS(1376), + [anon_sym___clrcall] = ACTIONS(1376), + [anon_sym___stdcall] = ACTIONS(1376), + [anon_sym___fastcall] = ACTIONS(1376), + [anon_sym___thiscall] = ACTIONS(1376), + [anon_sym___vectorcall] = ACTIONS(1376), + [anon_sym_LBRACE] = ACTIONS(1378), + [anon_sym_signed] = ACTIONS(1376), + [anon_sym_unsigned] = ACTIONS(1376), + [anon_sym_long] = ACTIONS(1376), + [anon_sym_short] = ACTIONS(1376), + [anon_sym_static] = ACTIONS(1376), + [anon_sym_auto] = ACTIONS(1376), + [anon_sym_register] = ACTIONS(1376), + [anon_sym_inline] = ACTIONS(1376), + [anon_sym___inline] = ACTIONS(1376), + [anon_sym___inline__] = ACTIONS(1376), + [anon_sym___forceinline] = ACTIONS(1376), + [anon_sym_thread_local] = ACTIONS(1376), + [anon_sym___thread] = ACTIONS(1376), + [anon_sym_const] = ACTIONS(1376), + [anon_sym_constexpr] = ACTIONS(1376), + [anon_sym_volatile] = ACTIONS(1376), + [anon_sym_restrict] = ACTIONS(1376), + [anon_sym___restrict__] = ACTIONS(1376), + [anon_sym__Atomic] = ACTIONS(1376), + [anon_sym__Noreturn] = ACTIONS(1376), + [anon_sym_noreturn] = ACTIONS(1376), + [sym_primitive_type] = ACTIONS(1376), + [anon_sym_enum] = ACTIONS(1376), + [anon_sym_struct] = ACTIONS(1376), + [anon_sym_union] = ACTIONS(1376), + [anon_sym_if] = ACTIONS(1376), + [anon_sym_else] = ACTIONS(1376), + [anon_sym_switch] = ACTIONS(1376), + [anon_sym_case] = ACTIONS(1376), + [anon_sym_default] = ACTIONS(1376), + [anon_sym_while] = ACTIONS(1376), + [anon_sym_do] = ACTIONS(1376), + [anon_sym_for] = ACTIONS(1376), + [anon_sym_return] = ACTIONS(1376), + [anon_sym_break] = ACTIONS(1376), + [anon_sym_continue] = ACTIONS(1376), + [anon_sym_goto] = ACTIONS(1376), + [anon_sym___try] = ACTIONS(1376), + [anon_sym___leave] = ACTIONS(1376), + [anon_sym_DASH_DASH] = ACTIONS(1378), + [anon_sym_PLUS_PLUS] = ACTIONS(1378), + [anon_sym_sizeof] = ACTIONS(1376), + [anon_sym___alignof__] = ACTIONS(1376), + [anon_sym___alignof] = ACTIONS(1376), + [anon_sym__alignof] = ACTIONS(1376), + [anon_sym_alignof] = ACTIONS(1376), + [anon_sym__Alignof] = ACTIONS(1376), + [anon_sym_offsetof] = ACTIONS(1376), + [anon_sym__Generic] = ACTIONS(1376), + [anon_sym_asm] = ACTIONS(1376), + [anon_sym___asm__] = ACTIONS(1376), + [sym_number_literal] = ACTIONS(1378), + [anon_sym_L_SQUOTE] = ACTIONS(1378), + [anon_sym_u_SQUOTE] = ACTIONS(1378), + [anon_sym_U_SQUOTE] = ACTIONS(1378), + [anon_sym_u8_SQUOTE] = ACTIONS(1378), + [anon_sym_SQUOTE] = ACTIONS(1378), + [anon_sym_L_DQUOTE] = ACTIONS(1378), + [anon_sym_u_DQUOTE] = ACTIONS(1378), + [anon_sym_U_DQUOTE] = ACTIONS(1378), + [anon_sym_u8_DQUOTE] = ACTIONS(1378), + [anon_sym_DQUOTE] = ACTIONS(1378), + [sym_true] = ACTIONS(1376), + [sym_false] = ACTIONS(1376), + [anon_sym_NULL] = ACTIONS(1376), + [anon_sym_nullptr] = ACTIONS(1376), [sym_comment] = ACTIONS(3), }, [316] = { - [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_LBRACK_LBRACK] = ACTIONS(1315), - [anon_sym___declspec] = 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), - [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_else] = 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_identifier] = ACTIONS(1324), + [aux_sym_preproc_include_token1] = ACTIONS(1324), + [aux_sym_preproc_def_token1] = ACTIONS(1324), + [aux_sym_preproc_if_token1] = ACTIONS(1324), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1324), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1324), + [sym_preproc_directive] = ACTIONS(1324), + [anon_sym_LPAREN2] = ACTIONS(1326), + [anon_sym_BANG] = ACTIONS(1326), + [anon_sym_TILDE] = ACTIONS(1326), + [anon_sym_DASH] = ACTIONS(1324), + [anon_sym_PLUS] = ACTIONS(1324), + [anon_sym_STAR] = ACTIONS(1326), + [anon_sym_AMP] = ACTIONS(1326), + [anon_sym_SEMI] = ACTIONS(1326), + [anon_sym___extension__] = ACTIONS(1324), + [anon_sym_typedef] = ACTIONS(1324), + [anon_sym_extern] = ACTIONS(1324), + [anon_sym___attribute__] = ACTIONS(1324), + [anon_sym___scanf] = ACTIONS(1324), + [anon_sym___printf] = ACTIONS(1324), + [anon_sym___read_mostly] = ACTIONS(1324), + [anon_sym___must_hold] = ACTIONS(1324), + [anon_sym___ro_after_init] = ACTIONS(1324), + [anon_sym___init] = ACTIONS(1324), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1326), + [anon_sym___declspec] = ACTIONS(1324), + [anon_sym___cdecl] = ACTIONS(1324), + [anon_sym___clrcall] = ACTIONS(1324), + [anon_sym___stdcall] = ACTIONS(1324), + [anon_sym___fastcall] = ACTIONS(1324), + [anon_sym___thiscall] = ACTIONS(1324), + [anon_sym___vectorcall] = ACTIONS(1324), + [anon_sym_LBRACE] = ACTIONS(1326), + [anon_sym_RBRACE] = ACTIONS(1326), + [anon_sym_signed] = ACTIONS(1324), + [anon_sym_unsigned] = ACTIONS(1324), + [anon_sym_long] = ACTIONS(1324), + [anon_sym_short] = ACTIONS(1324), + [anon_sym_static] = ACTIONS(1324), + [anon_sym_auto] = ACTIONS(1324), + [anon_sym_register] = ACTIONS(1324), + [anon_sym_inline] = ACTIONS(1324), + [anon_sym___inline] = ACTIONS(1324), + [anon_sym___inline__] = ACTIONS(1324), + [anon_sym___forceinline] = ACTIONS(1324), + [anon_sym_thread_local] = ACTIONS(1324), + [anon_sym___thread] = ACTIONS(1324), + [anon_sym_const] = ACTIONS(1324), + [anon_sym_constexpr] = ACTIONS(1324), + [anon_sym_volatile] = ACTIONS(1324), + [anon_sym_restrict] = ACTIONS(1324), + [anon_sym___restrict__] = ACTIONS(1324), + [anon_sym__Atomic] = ACTIONS(1324), + [anon_sym__Noreturn] = ACTIONS(1324), + [anon_sym_noreturn] = ACTIONS(1324), + [sym_primitive_type] = ACTIONS(1324), + [anon_sym_enum] = ACTIONS(1324), + [anon_sym_struct] = ACTIONS(1324), + [anon_sym_union] = ACTIONS(1324), + [anon_sym_if] = ACTIONS(1324), + [anon_sym_else] = ACTIONS(1324), + [anon_sym_switch] = ACTIONS(1324), + [anon_sym_case] = ACTIONS(1324), + [anon_sym_default] = ACTIONS(1324), + [anon_sym_while] = ACTIONS(1324), + [anon_sym_do] = ACTIONS(1324), + [anon_sym_for] = ACTIONS(1324), + [anon_sym_return] = ACTIONS(1324), + [anon_sym_break] = ACTIONS(1324), + [anon_sym_continue] = ACTIONS(1324), + [anon_sym_goto] = ACTIONS(1324), + [anon_sym___try] = ACTIONS(1324), + [anon_sym___leave] = ACTIONS(1324), + [anon_sym_DASH_DASH] = ACTIONS(1326), + [anon_sym_PLUS_PLUS] = ACTIONS(1326), + [anon_sym_sizeof] = ACTIONS(1324), + [anon_sym___alignof__] = ACTIONS(1324), + [anon_sym___alignof] = ACTIONS(1324), + [anon_sym__alignof] = ACTIONS(1324), + [anon_sym_alignof] = ACTIONS(1324), + [anon_sym__Alignof] = ACTIONS(1324), + [anon_sym_offsetof] = ACTIONS(1324), + [anon_sym__Generic] = ACTIONS(1324), + [anon_sym_asm] = ACTIONS(1324), + [anon_sym___asm__] = ACTIONS(1324), + [sym_number_literal] = ACTIONS(1326), + [anon_sym_L_SQUOTE] = ACTIONS(1326), + [anon_sym_u_SQUOTE] = ACTIONS(1326), + [anon_sym_U_SQUOTE] = ACTIONS(1326), + [anon_sym_u8_SQUOTE] = ACTIONS(1326), + [anon_sym_SQUOTE] = ACTIONS(1326), + [anon_sym_L_DQUOTE] = ACTIONS(1326), + [anon_sym_u_DQUOTE] = ACTIONS(1326), + [anon_sym_U_DQUOTE] = ACTIONS(1326), + [anon_sym_u8_DQUOTE] = ACTIONS(1326), + [anon_sym_DQUOTE] = ACTIONS(1326), + [sym_true] = ACTIONS(1324), + [sym_false] = ACTIONS(1324), + [anon_sym_NULL] = ACTIONS(1324), + [anon_sym_nullptr] = ACTIONS(1324), [sym_comment] = ACTIONS(3), }, [317] = { - [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_LBRACK_LBRACK] = ACTIONS(1315), - [anon_sym___declspec] = 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), - [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_else] = 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), + [ts_builtin_sym_end] = ACTIONS(1358), + [sym_identifier] = ACTIONS(1356), + [aux_sym_preproc_include_token1] = ACTIONS(1356), + [aux_sym_preproc_def_token1] = ACTIONS(1356), + [aux_sym_preproc_if_token1] = ACTIONS(1356), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1356), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1356), + [sym_preproc_directive] = ACTIONS(1356), + [anon_sym_LPAREN2] = ACTIONS(1358), + [anon_sym_BANG] = ACTIONS(1358), + [anon_sym_TILDE] = ACTIONS(1358), + [anon_sym_DASH] = ACTIONS(1356), + [anon_sym_PLUS] = ACTIONS(1356), + [anon_sym_STAR] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1358), + [anon_sym_SEMI] = ACTIONS(1358), + [anon_sym___extension__] = ACTIONS(1356), + [anon_sym_typedef] = ACTIONS(1356), + [anon_sym_extern] = ACTIONS(1356), + [anon_sym___attribute__] = ACTIONS(1356), + [anon_sym___scanf] = ACTIONS(1356), + [anon_sym___printf] = ACTIONS(1356), + [anon_sym___read_mostly] = ACTIONS(1356), + [anon_sym___must_hold] = ACTIONS(1356), + [anon_sym___ro_after_init] = ACTIONS(1356), + [anon_sym___init] = ACTIONS(1356), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1358), + [anon_sym___declspec] = ACTIONS(1356), + [anon_sym___cdecl] = ACTIONS(1356), + [anon_sym___clrcall] = ACTIONS(1356), + [anon_sym___stdcall] = ACTIONS(1356), + [anon_sym___fastcall] = ACTIONS(1356), + [anon_sym___thiscall] = ACTIONS(1356), + [anon_sym___vectorcall] = ACTIONS(1356), + [anon_sym_LBRACE] = ACTIONS(1358), + [anon_sym_signed] = ACTIONS(1356), + [anon_sym_unsigned] = ACTIONS(1356), + [anon_sym_long] = ACTIONS(1356), + [anon_sym_short] = ACTIONS(1356), + [anon_sym_static] = ACTIONS(1356), + [anon_sym_auto] = ACTIONS(1356), + [anon_sym_register] = ACTIONS(1356), + [anon_sym_inline] = ACTIONS(1356), + [anon_sym___inline] = ACTIONS(1356), + [anon_sym___inline__] = ACTIONS(1356), + [anon_sym___forceinline] = ACTIONS(1356), + [anon_sym_thread_local] = ACTIONS(1356), + [anon_sym___thread] = ACTIONS(1356), + [anon_sym_const] = ACTIONS(1356), + [anon_sym_constexpr] = ACTIONS(1356), + [anon_sym_volatile] = ACTIONS(1356), + [anon_sym_restrict] = ACTIONS(1356), + [anon_sym___restrict__] = ACTIONS(1356), + [anon_sym__Atomic] = ACTIONS(1356), + [anon_sym__Noreturn] = ACTIONS(1356), + [anon_sym_noreturn] = ACTIONS(1356), + [sym_primitive_type] = ACTIONS(1356), + [anon_sym_enum] = ACTIONS(1356), + [anon_sym_struct] = ACTIONS(1356), + [anon_sym_union] = ACTIONS(1356), + [anon_sym_if] = ACTIONS(1356), + [anon_sym_else] = ACTIONS(1356), + [anon_sym_switch] = ACTIONS(1356), + [anon_sym_case] = ACTIONS(1356), + [anon_sym_default] = ACTIONS(1356), + [anon_sym_while] = ACTIONS(1356), + [anon_sym_do] = ACTIONS(1356), + [anon_sym_for] = ACTIONS(1356), + [anon_sym_return] = ACTIONS(1356), + [anon_sym_break] = ACTIONS(1356), + [anon_sym_continue] = ACTIONS(1356), + [anon_sym_goto] = ACTIONS(1356), + [anon_sym___try] = ACTIONS(1356), + [anon_sym___leave] = ACTIONS(1356), + [anon_sym_DASH_DASH] = ACTIONS(1358), + [anon_sym_PLUS_PLUS] = ACTIONS(1358), + [anon_sym_sizeof] = ACTIONS(1356), + [anon_sym___alignof__] = ACTIONS(1356), + [anon_sym___alignof] = ACTIONS(1356), + [anon_sym__alignof] = ACTIONS(1356), + [anon_sym_alignof] = ACTIONS(1356), + [anon_sym__Alignof] = ACTIONS(1356), + [anon_sym_offsetof] = ACTIONS(1356), + [anon_sym__Generic] = ACTIONS(1356), + [anon_sym_asm] = ACTIONS(1356), + [anon_sym___asm__] = ACTIONS(1356), + [sym_number_literal] = ACTIONS(1358), + [anon_sym_L_SQUOTE] = ACTIONS(1358), + [anon_sym_u_SQUOTE] = ACTIONS(1358), + [anon_sym_U_SQUOTE] = ACTIONS(1358), + [anon_sym_u8_SQUOTE] = ACTIONS(1358), + [anon_sym_SQUOTE] = ACTIONS(1358), + [anon_sym_L_DQUOTE] = ACTIONS(1358), + [anon_sym_u_DQUOTE] = ACTIONS(1358), + [anon_sym_U_DQUOTE] = ACTIONS(1358), + [anon_sym_u8_DQUOTE] = ACTIONS(1358), + [anon_sym_DQUOTE] = ACTIONS(1358), + [sym_true] = ACTIONS(1356), + [sym_false] = ACTIONS(1356), + [anon_sym_NULL] = ACTIONS(1356), + [anon_sym_nullptr] = ACTIONS(1356), [sym_comment] = ACTIONS(3), }, [318] = { - [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_LBRACK_LBRACK] = ACTIONS(1399), - [anon_sym___declspec] = 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), - [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_else] = 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), + [ts_builtin_sym_end] = ACTIONS(1406), + [sym_identifier] = ACTIONS(1404), + [aux_sym_preproc_include_token1] = ACTIONS(1404), + [aux_sym_preproc_def_token1] = ACTIONS(1404), + [aux_sym_preproc_if_token1] = ACTIONS(1404), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1404), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1404), + [sym_preproc_directive] = ACTIONS(1404), + [anon_sym_LPAREN2] = ACTIONS(1406), + [anon_sym_BANG] = ACTIONS(1406), + [anon_sym_TILDE] = ACTIONS(1406), + [anon_sym_DASH] = ACTIONS(1404), + [anon_sym_PLUS] = ACTIONS(1404), + [anon_sym_STAR] = ACTIONS(1406), + [anon_sym_AMP] = ACTIONS(1406), + [anon_sym_SEMI] = ACTIONS(1406), + [anon_sym___extension__] = ACTIONS(1404), + [anon_sym_typedef] = ACTIONS(1404), + [anon_sym_extern] = ACTIONS(1404), + [anon_sym___attribute__] = ACTIONS(1404), + [anon_sym___scanf] = ACTIONS(1404), + [anon_sym___printf] = ACTIONS(1404), + [anon_sym___read_mostly] = ACTIONS(1404), + [anon_sym___must_hold] = ACTIONS(1404), + [anon_sym___ro_after_init] = ACTIONS(1404), + [anon_sym___init] = ACTIONS(1404), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1406), + [anon_sym___declspec] = ACTIONS(1404), + [anon_sym___cdecl] = ACTIONS(1404), + [anon_sym___clrcall] = ACTIONS(1404), + [anon_sym___stdcall] = ACTIONS(1404), + [anon_sym___fastcall] = ACTIONS(1404), + [anon_sym___thiscall] = ACTIONS(1404), + [anon_sym___vectorcall] = ACTIONS(1404), + [anon_sym_LBRACE] = ACTIONS(1406), + [anon_sym_signed] = ACTIONS(1404), + [anon_sym_unsigned] = ACTIONS(1404), + [anon_sym_long] = ACTIONS(1404), + [anon_sym_short] = ACTIONS(1404), + [anon_sym_static] = ACTIONS(1404), + [anon_sym_auto] = ACTIONS(1404), + [anon_sym_register] = ACTIONS(1404), + [anon_sym_inline] = ACTIONS(1404), + [anon_sym___inline] = ACTIONS(1404), + [anon_sym___inline__] = ACTIONS(1404), + [anon_sym___forceinline] = ACTIONS(1404), + [anon_sym_thread_local] = ACTIONS(1404), + [anon_sym___thread] = ACTIONS(1404), + [anon_sym_const] = ACTIONS(1404), + [anon_sym_constexpr] = ACTIONS(1404), + [anon_sym_volatile] = ACTIONS(1404), + [anon_sym_restrict] = ACTIONS(1404), + [anon_sym___restrict__] = ACTIONS(1404), + [anon_sym__Atomic] = ACTIONS(1404), + [anon_sym__Noreturn] = ACTIONS(1404), + [anon_sym_noreturn] = ACTIONS(1404), + [sym_primitive_type] = ACTIONS(1404), + [anon_sym_enum] = ACTIONS(1404), + [anon_sym_struct] = ACTIONS(1404), + [anon_sym_union] = ACTIONS(1404), + [anon_sym_if] = ACTIONS(1404), + [anon_sym_else] = ACTIONS(1404), + [anon_sym_switch] = ACTIONS(1404), + [anon_sym_case] = ACTIONS(1404), + [anon_sym_default] = ACTIONS(1404), + [anon_sym_while] = ACTIONS(1404), + [anon_sym_do] = ACTIONS(1404), + [anon_sym_for] = ACTIONS(1404), + [anon_sym_return] = ACTIONS(1404), + [anon_sym_break] = ACTIONS(1404), + [anon_sym_continue] = ACTIONS(1404), + [anon_sym_goto] = ACTIONS(1404), + [anon_sym___try] = ACTIONS(1404), + [anon_sym___leave] = ACTIONS(1404), + [anon_sym_DASH_DASH] = ACTIONS(1406), + [anon_sym_PLUS_PLUS] = ACTIONS(1406), + [anon_sym_sizeof] = ACTIONS(1404), + [anon_sym___alignof__] = ACTIONS(1404), + [anon_sym___alignof] = ACTIONS(1404), + [anon_sym__alignof] = ACTIONS(1404), + [anon_sym_alignof] = ACTIONS(1404), + [anon_sym__Alignof] = ACTIONS(1404), + [anon_sym_offsetof] = ACTIONS(1404), + [anon_sym__Generic] = ACTIONS(1404), + [anon_sym_asm] = ACTIONS(1404), + [anon_sym___asm__] = ACTIONS(1404), + [sym_number_literal] = ACTIONS(1406), + [anon_sym_L_SQUOTE] = ACTIONS(1406), + [anon_sym_u_SQUOTE] = ACTIONS(1406), + [anon_sym_U_SQUOTE] = ACTIONS(1406), + [anon_sym_u8_SQUOTE] = ACTIONS(1406), + [anon_sym_SQUOTE] = ACTIONS(1406), + [anon_sym_L_DQUOTE] = ACTIONS(1406), + [anon_sym_u_DQUOTE] = ACTIONS(1406), + [anon_sym_U_DQUOTE] = ACTIONS(1406), + [anon_sym_u8_DQUOTE] = ACTIONS(1406), + [anon_sym_DQUOTE] = ACTIONS(1406), + [sym_true] = ACTIONS(1404), + [sym_false] = ACTIONS(1404), + [anon_sym_NULL] = ACTIONS(1404), + [anon_sym_nullptr] = ACTIONS(1404), [sym_comment] = ACTIONS(3), }, [319] = { - [sym_identifier] = ACTIONS(1409), - [aux_sym_preproc_include_token1] = ACTIONS(1409), - [aux_sym_preproc_def_token1] = ACTIONS(1409), - [aux_sym_preproc_if_token1] = ACTIONS(1409), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1409), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1409), - [sym_preproc_directive] = ACTIONS(1409), - [anon_sym_LPAREN2] = ACTIONS(1411), - [anon_sym_BANG] = ACTIONS(1411), - [anon_sym_TILDE] = ACTIONS(1411), - [anon_sym_DASH] = ACTIONS(1409), - [anon_sym_PLUS] = ACTIONS(1409), - [anon_sym_STAR] = ACTIONS(1411), - [anon_sym_AMP] = ACTIONS(1411), - [anon_sym_SEMI] = ACTIONS(1411), - [anon_sym___extension__] = ACTIONS(1409), - [anon_sym_typedef] = ACTIONS(1409), - [anon_sym_extern] = ACTIONS(1409), - [anon_sym___attribute__] = ACTIONS(1409), - [anon_sym___scanf] = ACTIONS(1409), - [anon_sym___printf] = ACTIONS(1409), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1411), - [anon_sym___declspec] = ACTIONS(1409), - [anon_sym___cdecl] = ACTIONS(1409), - [anon_sym___clrcall] = ACTIONS(1409), - [anon_sym___stdcall] = ACTIONS(1409), - [anon_sym___fastcall] = ACTIONS(1409), - [anon_sym___thiscall] = ACTIONS(1409), - [anon_sym___vectorcall] = ACTIONS(1409), - [anon_sym_LBRACE] = ACTIONS(1411), - [anon_sym_RBRACE] = ACTIONS(1411), - [anon_sym_signed] = ACTIONS(1409), - [anon_sym_unsigned] = ACTIONS(1409), - [anon_sym_long] = ACTIONS(1409), - [anon_sym_short] = ACTIONS(1409), - [anon_sym_static] = ACTIONS(1409), - [anon_sym_auto] = ACTIONS(1409), - [anon_sym_register] = ACTIONS(1409), - [anon_sym_inline] = ACTIONS(1409), - [anon_sym___inline] = ACTIONS(1409), - [anon_sym___inline__] = ACTIONS(1409), - [anon_sym___forceinline] = ACTIONS(1409), - [anon_sym_thread_local] = ACTIONS(1409), - [anon_sym___thread] = ACTIONS(1409), - [anon_sym_const] = ACTIONS(1409), - [anon_sym_constexpr] = ACTIONS(1409), - [anon_sym_volatile] = ACTIONS(1409), - [anon_sym_restrict] = ACTIONS(1409), - [anon_sym___restrict__] = ACTIONS(1409), - [anon_sym__Atomic] = ACTIONS(1409), - [anon_sym__Noreturn] = ACTIONS(1409), - [anon_sym_noreturn] = ACTIONS(1409), - [sym_primitive_type] = ACTIONS(1409), - [anon_sym_enum] = ACTIONS(1409), - [anon_sym_struct] = ACTIONS(1409), - [anon_sym_union] = ACTIONS(1409), - [anon_sym_if] = ACTIONS(1409), - [anon_sym_else] = ACTIONS(1409), - [anon_sym_switch] = ACTIONS(1409), - [anon_sym_case] = ACTIONS(1409), - [anon_sym_default] = ACTIONS(1409), - [anon_sym_while] = ACTIONS(1409), - [anon_sym_do] = ACTIONS(1409), - [anon_sym_for] = ACTIONS(1409), - [anon_sym_return] = ACTIONS(1409), - [anon_sym_break] = ACTIONS(1409), - [anon_sym_continue] = ACTIONS(1409), - [anon_sym_goto] = ACTIONS(1409), - [anon_sym___try] = ACTIONS(1409), - [anon_sym___leave] = ACTIONS(1409), - [anon_sym_DASH_DASH] = ACTIONS(1411), - [anon_sym_PLUS_PLUS] = ACTIONS(1411), - [anon_sym_sizeof] = ACTIONS(1409), - [anon_sym___alignof__] = ACTIONS(1409), - [anon_sym___alignof] = ACTIONS(1409), - [anon_sym__alignof] = ACTIONS(1409), - [anon_sym_alignof] = ACTIONS(1409), - [anon_sym__Alignof] = ACTIONS(1409), - [anon_sym_offsetof] = ACTIONS(1409), - [anon_sym__Generic] = ACTIONS(1409), - [anon_sym_asm] = ACTIONS(1409), - [anon_sym___asm__] = ACTIONS(1409), - [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(1409), - [sym_false] = ACTIONS(1409), - [anon_sym_NULL] = ACTIONS(1409), - [anon_sym_nullptr] = ACTIONS(1409), + [sym_identifier] = ACTIONS(1320), + [aux_sym_preproc_include_token1] = ACTIONS(1320), + [aux_sym_preproc_def_token1] = ACTIONS(1320), + [aux_sym_preproc_if_token1] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1320), + [sym_preproc_directive] = ACTIONS(1320), + [anon_sym_LPAREN2] = ACTIONS(1322), + [anon_sym_BANG] = ACTIONS(1322), + [anon_sym_TILDE] = ACTIONS(1322), + [anon_sym_DASH] = ACTIONS(1320), + [anon_sym_PLUS] = ACTIONS(1320), + [anon_sym_STAR] = ACTIONS(1322), + [anon_sym_AMP] = ACTIONS(1322), + [anon_sym_SEMI] = ACTIONS(1322), + [anon_sym___extension__] = ACTIONS(1320), + [anon_sym_typedef] = ACTIONS(1320), + [anon_sym_extern] = ACTIONS(1320), + [anon_sym___attribute__] = ACTIONS(1320), + [anon_sym___scanf] = ACTIONS(1320), + [anon_sym___printf] = ACTIONS(1320), + [anon_sym___read_mostly] = ACTIONS(1320), + [anon_sym___must_hold] = ACTIONS(1320), + [anon_sym___ro_after_init] = ACTIONS(1320), + [anon_sym___init] = ACTIONS(1320), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1322), + [anon_sym___declspec] = ACTIONS(1320), + [anon_sym___cdecl] = ACTIONS(1320), + [anon_sym___clrcall] = ACTIONS(1320), + [anon_sym___stdcall] = ACTIONS(1320), + [anon_sym___fastcall] = ACTIONS(1320), + [anon_sym___thiscall] = ACTIONS(1320), + [anon_sym___vectorcall] = ACTIONS(1320), + [anon_sym_LBRACE] = ACTIONS(1322), + [anon_sym_RBRACE] = ACTIONS(1322), + [anon_sym_signed] = ACTIONS(1320), + [anon_sym_unsigned] = ACTIONS(1320), + [anon_sym_long] = ACTIONS(1320), + [anon_sym_short] = ACTIONS(1320), + [anon_sym_static] = ACTIONS(1320), + [anon_sym_auto] = ACTIONS(1320), + [anon_sym_register] = ACTIONS(1320), + [anon_sym_inline] = ACTIONS(1320), + [anon_sym___inline] = ACTIONS(1320), + [anon_sym___inline__] = ACTIONS(1320), + [anon_sym___forceinline] = ACTIONS(1320), + [anon_sym_thread_local] = ACTIONS(1320), + [anon_sym___thread] = ACTIONS(1320), + [anon_sym_const] = ACTIONS(1320), + [anon_sym_constexpr] = ACTIONS(1320), + [anon_sym_volatile] = ACTIONS(1320), + [anon_sym_restrict] = ACTIONS(1320), + [anon_sym___restrict__] = ACTIONS(1320), + [anon_sym__Atomic] = ACTIONS(1320), + [anon_sym__Noreturn] = ACTIONS(1320), + [anon_sym_noreturn] = ACTIONS(1320), + [sym_primitive_type] = ACTIONS(1320), + [anon_sym_enum] = ACTIONS(1320), + [anon_sym_struct] = ACTIONS(1320), + [anon_sym_union] = ACTIONS(1320), + [anon_sym_if] = ACTIONS(1320), + [anon_sym_else] = ACTIONS(1320), + [anon_sym_switch] = ACTIONS(1320), + [anon_sym_case] = ACTIONS(1320), + [anon_sym_default] = ACTIONS(1320), + [anon_sym_while] = ACTIONS(1320), + [anon_sym_do] = ACTIONS(1320), + [anon_sym_for] = ACTIONS(1320), + [anon_sym_return] = ACTIONS(1320), + [anon_sym_break] = ACTIONS(1320), + [anon_sym_continue] = ACTIONS(1320), + [anon_sym_goto] = ACTIONS(1320), + [anon_sym___try] = ACTIONS(1320), + [anon_sym___leave] = ACTIONS(1320), + [anon_sym_DASH_DASH] = ACTIONS(1322), + [anon_sym_PLUS_PLUS] = ACTIONS(1322), + [anon_sym_sizeof] = ACTIONS(1320), + [anon_sym___alignof__] = ACTIONS(1320), + [anon_sym___alignof] = ACTIONS(1320), + [anon_sym__alignof] = ACTIONS(1320), + [anon_sym_alignof] = ACTIONS(1320), + [anon_sym__Alignof] = ACTIONS(1320), + [anon_sym_offsetof] = ACTIONS(1320), + [anon_sym__Generic] = ACTIONS(1320), + [anon_sym_asm] = ACTIONS(1320), + [anon_sym___asm__] = ACTIONS(1320), + [sym_number_literal] = ACTIONS(1322), + [anon_sym_L_SQUOTE] = ACTIONS(1322), + [anon_sym_u_SQUOTE] = ACTIONS(1322), + [anon_sym_U_SQUOTE] = ACTIONS(1322), + [anon_sym_u8_SQUOTE] = ACTIONS(1322), + [anon_sym_SQUOTE] = ACTIONS(1322), + [anon_sym_L_DQUOTE] = ACTIONS(1322), + [anon_sym_u_DQUOTE] = ACTIONS(1322), + [anon_sym_U_DQUOTE] = ACTIONS(1322), + [anon_sym_u8_DQUOTE] = ACTIONS(1322), + [anon_sym_DQUOTE] = ACTIONS(1322), + [sym_true] = ACTIONS(1320), + [sym_false] = ACTIONS(1320), + [anon_sym_NULL] = ACTIONS(1320), + [anon_sym_nullptr] = ACTIONS(1320), [sym_comment] = ACTIONS(3), }, [320] = { - [ts_builtin_sym_end] = ACTIONS(1315), - [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_LBRACK_LBRACK] = ACTIONS(1315), - [anon_sym___declspec] = 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), - [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_else] = 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), + [ts_builtin_sym_end] = ACTIONS(1402), + [sym_identifier] = ACTIONS(1400), + [aux_sym_preproc_include_token1] = ACTIONS(1400), + [aux_sym_preproc_def_token1] = ACTIONS(1400), + [aux_sym_preproc_if_token1] = ACTIONS(1400), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1400), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1400), + [sym_preproc_directive] = ACTIONS(1400), + [anon_sym_LPAREN2] = ACTIONS(1402), + [anon_sym_BANG] = ACTIONS(1402), + [anon_sym_TILDE] = ACTIONS(1402), + [anon_sym_DASH] = ACTIONS(1400), + [anon_sym_PLUS] = ACTIONS(1400), + [anon_sym_STAR] = ACTIONS(1402), + [anon_sym_AMP] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(1402), + [anon_sym___extension__] = ACTIONS(1400), + [anon_sym_typedef] = ACTIONS(1400), + [anon_sym_extern] = ACTIONS(1400), + [anon_sym___attribute__] = ACTIONS(1400), + [anon_sym___scanf] = ACTIONS(1400), + [anon_sym___printf] = ACTIONS(1400), + [anon_sym___read_mostly] = ACTIONS(1400), + [anon_sym___must_hold] = ACTIONS(1400), + [anon_sym___ro_after_init] = ACTIONS(1400), + [anon_sym___init] = ACTIONS(1400), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1402), + [anon_sym___declspec] = ACTIONS(1400), + [anon_sym___cdecl] = ACTIONS(1400), + [anon_sym___clrcall] = ACTIONS(1400), + [anon_sym___stdcall] = ACTIONS(1400), + [anon_sym___fastcall] = ACTIONS(1400), + [anon_sym___thiscall] = ACTIONS(1400), + [anon_sym___vectorcall] = ACTIONS(1400), + [anon_sym_LBRACE] = ACTIONS(1402), + [anon_sym_signed] = ACTIONS(1400), + [anon_sym_unsigned] = ACTIONS(1400), + [anon_sym_long] = ACTIONS(1400), + [anon_sym_short] = ACTIONS(1400), + [anon_sym_static] = ACTIONS(1400), + [anon_sym_auto] = ACTIONS(1400), + [anon_sym_register] = ACTIONS(1400), + [anon_sym_inline] = ACTIONS(1400), + [anon_sym___inline] = ACTIONS(1400), + [anon_sym___inline__] = ACTIONS(1400), + [anon_sym___forceinline] = ACTIONS(1400), + [anon_sym_thread_local] = ACTIONS(1400), + [anon_sym___thread] = ACTIONS(1400), + [anon_sym_const] = ACTIONS(1400), + [anon_sym_constexpr] = ACTIONS(1400), + [anon_sym_volatile] = ACTIONS(1400), + [anon_sym_restrict] = ACTIONS(1400), + [anon_sym___restrict__] = ACTIONS(1400), + [anon_sym__Atomic] = ACTIONS(1400), + [anon_sym__Noreturn] = ACTIONS(1400), + [anon_sym_noreturn] = ACTIONS(1400), + [sym_primitive_type] = ACTIONS(1400), + [anon_sym_enum] = ACTIONS(1400), + [anon_sym_struct] = ACTIONS(1400), + [anon_sym_union] = ACTIONS(1400), + [anon_sym_if] = ACTIONS(1400), + [anon_sym_else] = ACTIONS(1400), + [anon_sym_switch] = ACTIONS(1400), + [anon_sym_case] = ACTIONS(1400), + [anon_sym_default] = ACTIONS(1400), + [anon_sym_while] = ACTIONS(1400), + [anon_sym_do] = ACTIONS(1400), + [anon_sym_for] = ACTIONS(1400), + [anon_sym_return] = ACTIONS(1400), + [anon_sym_break] = ACTIONS(1400), + [anon_sym_continue] = ACTIONS(1400), + [anon_sym_goto] = ACTIONS(1400), + [anon_sym___try] = ACTIONS(1400), + [anon_sym___leave] = ACTIONS(1400), + [anon_sym_DASH_DASH] = ACTIONS(1402), + [anon_sym_PLUS_PLUS] = ACTIONS(1402), + [anon_sym_sizeof] = ACTIONS(1400), + [anon_sym___alignof__] = ACTIONS(1400), + [anon_sym___alignof] = ACTIONS(1400), + [anon_sym__alignof] = ACTIONS(1400), + [anon_sym_alignof] = ACTIONS(1400), + [anon_sym__Alignof] = ACTIONS(1400), + [anon_sym_offsetof] = ACTIONS(1400), + [anon_sym__Generic] = ACTIONS(1400), + [anon_sym_asm] = ACTIONS(1400), + [anon_sym___asm__] = ACTIONS(1400), + [sym_number_literal] = ACTIONS(1402), + [anon_sym_L_SQUOTE] = ACTIONS(1402), + [anon_sym_u_SQUOTE] = ACTIONS(1402), + [anon_sym_U_SQUOTE] = ACTIONS(1402), + [anon_sym_u8_SQUOTE] = ACTIONS(1402), + [anon_sym_SQUOTE] = ACTIONS(1402), + [anon_sym_L_DQUOTE] = ACTIONS(1402), + [anon_sym_u_DQUOTE] = ACTIONS(1402), + [anon_sym_U_DQUOTE] = ACTIONS(1402), + [anon_sym_u8_DQUOTE] = ACTIONS(1402), + [anon_sym_DQUOTE] = ACTIONS(1402), + [sym_true] = ACTIONS(1400), + [sym_false] = ACTIONS(1400), + [anon_sym_NULL] = ACTIONS(1400), + [anon_sym_nullptr] = ACTIONS(1400), [sym_comment] = ACTIONS(3), }, [321] = { - [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_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_LBRACK_LBRACK] = ACTIONS(1347), - [anon_sym___declspec] = 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), - [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_else] = 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_identifier] = ACTIONS(1396), + [aux_sym_preproc_include_token1] = ACTIONS(1396), + [aux_sym_preproc_def_token1] = ACTIONS(1396), + [aux_sym_preproc_if_token1] = ACTIONS(1396), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1396), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1396), + [anon_sym_LPAREN2] = ACTIONS(1398), + [anon_sym_BANG] = ACTIONS(1398), + [anon_sym_TILDE] = ACTIONS(1398), + [anon_sym_DASH] = ACTIONS(1396), + [anon_sym_PLUS] = ACTIONS(1396), + [anon_sym_STAR] = ACTIONS(1398), + [anon_sym_AMP] = ACTIONS(1398), + [anon_sym_SEMI] = ACTIONS(1398), + [anon_sym___extension__] = ACTIONS(1396), + [anon_sym_typedef] = ACTIONS(1396), + [anon_sym_extern] = ACTIONS(1396), + [anon_sym___attribute__] = ACTIONS(1396), + [anon_sym___scanf] = ACTIONS(1396), + [anon_sym___printf] = ACTIONS(1396), + [anon_sym___read_mostly] = ACTIONS(1396), + [anon_sym___must_hold] = ACTIONS(1396), + [anon_sym___ro_after_init] = ACTIONS(1396), + [anon_sym___init] = ACTIONS(1396), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1398), + [anon_sym___declspec] = ACTIONS(1396), + [anon_sym___cdecl] = ACTIONS(1396), + [anon_sym___clrcall] = ACTIONS(1396), + [anon_sym___stdcall] = ACTIONS(1396), + [anon_sym___fastcall] = ACTIONS(1396), + [anon_sym___thiscall] = ACTIONS(1396), + [anon_sym___vectorcall] = ACTIONS(1396), + [anon_sym_LBRACE] = ACTIONS(1398), + [anon_sym_RBRACE] = ACTIONS(1398), + [anon_sym_signed] = ACTIONS(1396), + [anon_sym_unsigned] = ACTIONS(1396), + [anon_sym_long] = ACTIONS(1396), + [anon_sym_short] = ACTIONS(1396), + [anon_sym_static] = ACTIONS(1396), + [anon_sym_auto] = ACTIONS(1396), + [anon_sym_register] = ACTIONS(1396), + [anon_sym_inline] = ACTIONS(1396), + [anon_sym___inline] = ACTIONS(1396), + [anon_sym___inline__] = ACTIONS(1396), + [anon_sym___forceinline] = ACTIONS(1396), + [anon_sym_thread_local] = ACTIONS(1396), + [anon_sym___thread] = ACTIONS(1396), + [anon_sym_const] = ACTIONS(1396), + [anon_sym_constexpr] = ACTIONS(1396), + [anon_sym_volatile] = ACTIONS(1396), + [anon_sym_restrict] = ACTIONS(1396), + [anon_sym___restrict__] = ACTIONS(1396), + [anon_sym__Atomic] = ACTIONS(1396), + [anon_sym__Noreturn] = ACTIONS(1396), + [anon_sym_noreturn] = ACTIONS(1396), + [sym_primitive_type] = ACTIONS(1396), + [anon_sym_enum] = ACTIONS(1396), + [anon_sym_struct] = ACTIONS(1396), + [anon_sym_union] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1396), + [anon_sym_else] = ACTIONS(1396), + [anon_sym_switch] = ACTIONS(1396), + [anon_sym_case] = ACTIONS(1396), + [anon_sym_default] = ACTIONS(1396), + [anon_sym_while] = ACTIONS(1396), + [anon_sym_do] = ACTIONS(1396), + [anon_sym_for] = ACTIONS(1396), + [anon_sym_return] = ACTIONS(1396), + [anon_sym_break] = ACTIONS(1396), + [anon_sym_continue] = ACTIONS(1396), + [anon_sym_goto] = ACTIONS(1396), + [anon_sym___try] = ACTIONS(1396), + [anon_sym___leave] = ACTIONS(1396), + [anon_sym_DASH_DASH] = ACTIONS(1398), + [anon_sym_PLUS_PLUS] = ACTIONS(1398), + [anon_sym_sizeof] = ACTIONS(1396), + [anon_sym___alignof__] = ACTIONS(1396), + [anon_sym___alignof] = ACTIONS(1396), + [anon_sym__alignof] = ACTIONS(1396), + [anon_sym_alignof] = ACTIONS(1396), + [anon_sym__Alignof] = ACTIONS(1396), + [anon_sym_offsetof] = ACTIONS(1396), + [anon_sym__Generic] = ACTIONS(1396), + [anon_sym_asm] = ACTIONS(1396), + [anon_sym___asm__] = ACTIONS(1396), + [sym_number_literal] = ACTIONS(1398), + [anon_sym_L_SQUOTE] = ACTIONS(1398), + [anon_sym_u_SQUOTE] = ACTIONS(1398), + [anon_sym_U_SQUOTE] = ACTIONS(1398), + [anon_sym_u8_SQUOTE] = ACTIONS(1398), + [anon_sym_SQUOTE] = ACTIONS(1398), + [anon_sym_L_DQUOTE] = ACTIONS(1398), + [anon_sym_u_DQUOTE] = ACTIONS(1398), + [anon_sym_U_DQUOTE] = ACTIONS(1398), + [anon_sym_u8_DQUOTE] = ACTIONS(1398), + [anon_sym_DQUOTE] = ACTIONS(1398), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [anon_sym_NULL] = ACTIONS(1396), + [anon_sym_nullptr] = ACTIONS(1396), [sym_comment] = ACTIONS(3), }, [322] = { - [ts_builtin_sym_end] = ACTIONS(1315), - [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_LBRACK_LBRACK] = ACTIONS(1315), - [anon_sym___declspec] = 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), - [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_else] = 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_identifier] = ACTIONS(1328), + [aux_sym_preproc_include_token1] = ACTIONS(1328), + [aux_sym_preproc_def_token1] = ACTIONS(1328), + [aux_sym_preproc_if_token1] = ACTIONS(1328), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1328), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1328), + [sym_preproc_directive] = ACTIONS(1328), + [anon_sym_LPAREN2] = ACTIONS(1330), + [anon_sym_BANG] = ACTIONS(1330), + [anon_sym_TILDE] = ACTIONS(1330), + [anon_sym_DASH] = ACTIONS(1328), + [anon_sym_PLUS] = ACTIONS(1328), + [anon_sym_STAR] = ACTIONS(1330), + [anon_sym_AMP] = ACTIONS(1330), + [anon_sym_SEMI] = ACTIONS(1330), + [anon_sym___extension__] = ACTIONS(1328), + [anon_sym_typedef] = ACTIONS(1328), + [anon_sym_extern] = ACTIONS(1328), + [anon_sym___attribute__] = ACTIONS(1328), + [anon_sym___scanf] = ACTIONS(1328), + [anon_sym___printf] = ACTIONS(1328), + [anon_sym___read_mostly] = ACTIONS(1328), + [anon_sym___must_hold] = ACTIONS(1328), + [anon_sym___ro_after_init] = ACTIONS(1328), + [anon_sym___init] = ACTIONS(1328), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1330), + [anon_sym___declspec] = ACTIONS(1328), + [anon_sym___cdecl] = ACTIONS(1328), + [anon_sym___clrcall] = ACTIONS(1328), + [anon_sym___stdcall] = ACTIONS(1328), + [anon_sym___fastcall] = ACTIONS(1328), + [anon_sym___thiscall] = ACTIONS(1328), + [anon_sym___vectorcall] = ACTIONS(1328), + [anon_sym_LBRACE] = ACTIONS(1330), + [anon_sym_RBRACE] = ACTIONS(1330), + [anon_sym_signed] = ACTIONS(1328), + [anon_sym_unsigned] = ACTIONS(1328), + [anon_sym_long] = ACTIONS(1328), + [anon_sym_short] = ACTIONS(1328), + [anon_sym_static] = ACTIONS(1328), + [anon_sym_auto] = ACTIONS(1328), + [anon_sym_register] = ACTIONS(1328), + [anon_sym_inline] = ACTIONS(1328), + [anon_sym___inline] = ACTIONS(1328), + [anon_sym___inline__] = ACTIONS(1328), + [anon_sym___forceinline] = ACTIONS(1328), + [anon_sym_thread_local] = ACTIONS(1328), + [anon_sym___thread] = ACTIONS(1328), + [anon_sym_const] = ACTIONS(1328), + [anon_sym_constexpr] = ACTIONS(1328), + [anon_sym_volatile] = ACTIONS(1328), + [anon_sym_restrict] = ACTIONS(1328), + [anon_sym___restrict__] = ACTIONS(1328), + [anon_sym__Atomic] = ACTIONS(1328), + [anon_sym__Noreturn] = ACTIONS(1328), + [anon_sym_noreturn] = ACTIONS(1328), + [sym_primitive_type] = ACTIONS(1328), + [anon_sym_enum] = ACTIONS(1328), + [anon_sym_struct] = ACTIONS(1328), + [anon_sym_union] = ACTIONS(1328), + [anon_sym_if] = ACTIONS(1328), + [anon_sym_else] = ACTIONS(1328), + [anon_sym_switch] = ACTIONS(1328), + [anon_sym_case] = ACTIONS(1328), + [anon_sym_default] = ACTIONS(1328), + [anon_sym_while] = ACTIONS(1328), + [anon_sym_do] = ACTIONS(1328), + [anon_sym_for] = ACTIONS(1328), + [anon_sym_return] = ACTIONS(1328), + [anon_sym_break] = ACTIONS(1328), + [anon_sym_continue] = ACTIONS(1328), + [anon_sym_goto] = ACTIONS(1328), + [anon_sym___try] = ACTIONS(1328), + [anon_sym___leave] = ACTIONS(1328), + [anon_sym_DASH_DASH] = ACTIONS(1330), + [anon_sym_PLUS_PLUS] = ACTIONS(1330), + [anon_sym_sizeof] = ACTIONS(1328), + [anon_sym___alignof__] = ACTIONS(1328), + [anon_sym___alignof] = ACTIONS(1328), + [anon_sym__alignof] = ACTIONS(1328), + [anon_sym_alignof] = ACTIONS(1328), + [anon_sym__Alignof] = ACTIONS(1328), + [anon_sym_offsetof] = ACTIONS(1328), + [anon_sym__Generic] = ACTIONS(1328), + [anon_sym_asm] = ACTIONS(1328), + [anon_sym___asm__] = ACTIONS(1328), + [sym_number_literal] = ACTIONS(1330), + [anon_sym_L_SQUOTE] = ACTIONS(1330), + [anon_sym_u_SQUOTE] = ACTIONS(1330), + [anon_sym_U_SQUOTE] = ACTIONS(1330), + [anon_sym_u8_SQUOTE] = ACTIONS(1330), + [anon_sym_SQUOTE] = ACTIONS(1330), + [anon_sym_L_DQUOTE] = ACTIONS(1330), + [anon_sym_u_DQUOTE] = ACTIONS(1330), + [anon_sym_U_DQUOTE] = ACTIONS(1330), + [anon_sym_u8_DQUOTE] = ACTIONS(1330), + [anon_sym_DQUOTE] = ACTIONS(1330), + [sym_true] = ACTIONS(1328), + [sym_false] = ACTIONS(1328), + [anon_sym_NULL] = ACTIONS(1328), + [anon_sym_nullptr] = ACTIONS(1328), [sym_comment] = ACTIONS(3), }, [323] = { - [sym_identifier] = ACTIONS(1405), - [aux_sym_preproc_include_token1] = ACTIONS(1405), - [aux_sym_preproc_def_token1] = ACTIONS(1405), - [aux_sym_preproc_if_token1] = ACTIONS(1405), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1405), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1405), - [sym_preproc_directive] = ACTIONS(1405), - [anon_sym_LPAREN2] = ACTIONS(1407), - [anon_sym_BANG] = ACTIONS(1407), - [anon_sym_TILDE] = ACTIONS(1407), - [anon_sym_DASH] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1405), - [anon_sym_STAR] = ACTIONS(1407), - [anon_sym_AMP] = ACTIONS(1407), - [anon_sym_SEMI] = ACTIONS(1407), - [anon_sym___extension__] = ACTIONS(1405), - [anon_sym_typedef] = ACTIONS(1405), - [anon_sym_extern] = ACTIONS(1405), - [anon_sym___attribute__] = ACTIONS(1405), - [anon_sym___scanf] = ACTIONS(1405), - [anon_sym___printf] = ACTIONS(1405), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1407), - [anon_sym___declspec] = ACTIONS(1405), - [anon_sym___cdecl] = ACTIONS(1405), - [anon_sym___clrcall] = ACTIONS(1405), - [anon_sym___stdcall] = ACTIONS(1405), - [anon_sym___fastcall] = ACTIONS(1405), - [anon_sym___thiscall] = ACTIONS(1405), - [anon_sym___vectorcall] = ACTIONS(1405), - [anon_sym_LBRACE] = ACTIONS(1407), - [anon_sym_RBRACE] = ACTIONS(1407), - [anon_sym_signed] = ACTIONS(1405), - [anon_sym_unsigned] = ACTIONS(1405), - [anon_sym_long] = ACTIONS(1405), - [anon_sym_short] = ACTIONS(1405), - [anon_sym_static] = ACTIONS(1405), - [anon_sym_auto] = ACTIONS(1405), - [anon_sym_register] = ACTIONS(1405), - [anon_sym_inline] = ACTIONS(1405), - [anon_sym___inline] = ACTIONS(1405), - [anon_sym___inline__] = ACTIONS(1405), - [anon_sym___forceinline] = ACTIONS(1405), - [anon_sym_thread_local] = ACTIONS(1405), - [anon_sym___thread] = ACTIONS(1405), - [anon_sym_const] = ACTIONS(1405), - [anon_sym_constexpr] = ACTIONS(1405), - [anon_sym_volatile] = ACTIONS(1405), - [anon_sym_restrict] = ACTIONS(1405), - [anon_sym___restrict__] = ACTIONS(1405), - [anon_sym__Atomic] = ACTIONS(1405), - [anon_sym__Noreturn] = ACTIONS(1405), - [anon_sym_noreturn] = ACTIONS(1405), - [sym_primitive_type] = ACTIONS(1405), - [anon_sym_enum] = ACTIONS(1405), - [anon_sym_struct] = ACTIONS(1405), - [anon_sym_union] = ACTIONS(1405), - [anon_sym_if] = ACTIONS(1405), - [anon_sym_else] = ACTIONS(1405), - [anon_sym_switch] = ACTIONS(1405), - [anon_sym_case] = ACTIONS(1405), - [anon_sym_default] = ACTIONS(1405), - [anon_sym_while] = ACTIONS(1405), - [anon_sym_do] = ACTIONS(1405), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_return] = ACTIONS(1405), - [anon_sym_break] = ACTIONS(1405), - [anon_sym_continue] = ACTIONS(1405), - [anon_sym_goto] = ACTIONS(1405), - [anon_sym___try] = ACTIONS(1405), - [anon_sym___leave] = ACTIONS(1405), - [anon_sym_DASH_DASH] = ACTIONS(1407), - [anon_sym_PLUS_PLUS] = ACTIONS(1407), - [anon_sym_sizeof] = ACTIONS(1405), - [anon_sym___alignof__] = ACTIONS(1405), - [anon_sym___alignof] = ACTIONS(1405), - [anon_sym__alignof] = ACTIONS(1405), - [anon_sym_alignof] = ACTIONS(1405), - [anon_sym__Alignof] = ACTIONS(1405), - [anon_sym_offsetof] = ACTIONS(1405), - [anon_sym__Generic] = ACTIONS(1405), - [anon_sym_asm] = ACTIONS(1405), - [anon_sym___asm__] = ACTIONS(1405), - [sym_number_literal] = ACTIONS(1407), - [anon_sym_L_SQUOTE] = ACTIONS(1407), - [anon_sym_u_SQUOTE] = ACTIONS(1407), - [anon_sym_U_SQUOTE] = ACTIONS(1407), - [anon_sym_u8_SQUOTE] = ACTIONS(1407), - [anon_sym_SQUOTE] = ACTIONS(1407), - [anon_sym_L_DQUOTE] = ACTIONS(1407), - [anon_sym_u_DQUOTE] = ACTIONS(1407), - [anon_sym_U_DQUOTE] = ACTIONS(1407), - [anon_sym_u8_DQUOTE] = ACTIONS(1407), - [anon_sym_DQUOTE] = ACTIONS(1407), - [sym_true] = ACTIONS(1405), - [sym_false] = ACTIONS(1405), - [anon_sym_NULL] = ACTIONS(1405), - [anon_sym_nullptr] = ACTIONS(1405), + [sym_identifier] = ACTIONS(1320), + [aux_sym_preproc_include_token1] = ACTIONS(1320), + [aux_sym_preproc_def_token1] = ACTIONS(1320), + [aux_sym_preproc_if_token1] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1320), + [sym_preproc_directive] = ACTIONS(1320), + [anon_sym_LPAREN2] = ACTIONS(1322), + [anon_sym_BANG] = ACTIONS(1322), + [anon_sym_TILDE] = ACTIONS(1322), + [anon_sym_DASH] = ACTIONS(1320), + [anon_sym_PLUS] = ACTIONS(1320), + [anon_sym_STAR] = ACTIONS(1322), + [anon_sym_AMP] = ACTIONS(1322), + [anon_sym_SEMI] = ACTIONS(1322), + [anon_sym___extension__] = ACTIONS(1320), + [anon_sym_typedef] = ACTIONS(1320), + [anon_sym_extern] = ACTIONS(1320), + [anon_sym___attribute__] = ACTIONS(1320), + [anon_sym___scanf] = ACTIONS(1320), + [anon_sym___printf] = ACTIONS(1320), + [anon_sym___read_mostly] = ACTIONS(1320), + [anon_sym___must_hold] = ACTIONS(1320), + [anon_sym___ro_after_init] = ACTIONS(1320), + [anon_sym___init] = ACTIONS(1320), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1322), + [anon_sym___declspec] = ACTIONS(1320), + [anon_sym___cdecl] = ACTIONS(1320), + [anon_sym___clrcall] = ACTIONS(1320), + [anon_sym___stdcall] = ACTIONS(1320), + [anon_sym___fastcall] = ACTIONS(1320), + [anon_sym___thiscall] = ACTIONS(1320), + [anon_sym___vectorcall] = ACTIONS(1320), + [anon_sym_LBRACE] = ACTIONS(1322), + [anon_sym_RBRACE] = ACTIONS(1322), + [anon_sym_signed] = ACTIONS(1320), + [anon_sym_unsigned] = ACTIONS(1320), + [anon_sym_long] = ACTIONS(1320), + [anon_sym_short] = ACTIONS(1320), + [anon_sym_static] = ACTIONS(1320), + [anon_sym_auto] = ACTIONS(1320), + [anon_sym_register] = ACTIONS(1320), + [anon_sym_inline] = ACTIONS(1320), + [anon_sym___inline] = ACTIONS(1320), + [anon_sym___inline__] = ACTIONS(1320), + [anon_sym___forceinline] = ACTIONS(1320), + [anon_sym_thread_local] = ACTIONS(1320), + [anon_sym___thread] = ACTIONS(1320), + [anon_sym_const] = ACTIONS(1320), + [anon_sym_constexpr] = ACTIONS(1320), + [anon_sym_volatile] = ACTIONS(1320), + [anon_sym_restrict] = ACTIONS(1320), + [anon_sym___restrict__] = ACTIONS(1320), + [anon_sym__Atomic] = ACTIONS(1320), + [anon_sym__Noreturn] = ACTIONS(1320), + [anon_sym_noreturn] = ACTIONS(1320), + [sym_primitive_type] = ACTIONS(1320), + [anon_sym_enum] = ACTIONS(1320), + [anon_sym_struct] = ACTIONS(1320), + [anon_sym_union] = ACTIONS(1320), + [anon_sym_if] = ACTIONS(1320), + [anon_sym_else] = ACTIONS(1320), + [anon_sym_switch] = ACTIONS(1320), + [anon_sym_case] = ACTIONS(1320), + [anon_sym_default] = ACTIONS(1320), + [anon_sym_while] = ACTIONS(1320), + [anon_sym_do] = ACTIONS(1320), + [anon_sym_for] = ACTIONS(1320), + [anon_sym_return] = ACTIONS(1320), + [anon_sym_break] = ACTIONS(1320), + [anon_sym_continue] = ACTIONS(1320), + [anon_sym_goto] = ACTIONS(1320), + [anon_sym___try] = ACTIONS(1320), + [anon_sym___leave] = ACTIONS(1320), + [anon_sym_DASH_DASH] = ACTIONS(1322), + [anon_sym_PLUS_PLUS] = ACTIONS(1322), + [anon_sym_sizeof] = ACTIONS(1320), + [anon_sym___alignof__] = ACTIONS(1320), + [anon_sym___alignof] = ACTIONS(1320), + [anon_sym__alignof] = ACTIONS(1320), + [anon_sym_alignof] = ACTIONS(1320), + [anon_sym__Alignof] = ACTIONS(1320), + [anon_sym_offsetof] = ACTIONS(1320), + [anon_sym__Generic] = ACTIONS(1320), + [anon_sym_asm] = ACTIONS(1320), + [anon_sym___asm__] = ACTIONS(1320), + [sym_number_literal] = ACTIONS(1322), + [anon_sym_L_SQUOTE] = ACTIONS(1322), + [anon_sym_u_SQUOTE] = ACTIONS(1322), + [anon_sym_U_SQUOTE] = ACTIONS(1322), + [anon_sym_u8_SQUOTE] = ACTIONS(1322), + [anon_sym_SQUOTE] = ACTIONS(1322), + [anon_sym_L_DQUOTE] = ACTIONS(1322), + [anon_sym_u_DQUOTE] = ACTIONS(1322), + [anon_sym_U_DQUOTE] = ACTIONS(1322), + [anon_sym_u8_DQUOTE] = ACTIONS(1322), + [anon_sym_DQUOTE] = ACTIONS(1322), + [sym_true] = ACTIONS(1320), + [sym_false] = ACTIONS(1320), + [anon_sym_NULL] = ACTIONS(1320), + [anon_sym_nullptr] = ACTIONS(1320), [sym_comment] = ACTIONS(3), }, [324] = { - [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(1403), - [anon_sym_BANG] = ACTIONS(1403), - [anon_sym_TILDE] = ACTIONS(1403), - [anon_sym_DASH] = ACTIONS(1401), - [anon_sym_PLUS] = ACTIONS(1401), - [anon_sym_STAR] = ACTIONS(1403), - [anon_sym_AMP] = ACTIONS(1403), - [anon_sym_SEMI] = ACTIONS(1403), - [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_LBRACK_LBRACK] = ACTIONS(1403), - [anon_sym___declspec] = 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(1403), - [anon_sym_RBRACE] = ACTIONS(1403), - [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), - [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_else] = 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(1403), - [anon_sym_PLUS_PLUS] = ACTIONS(1403), - [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(1403), - [anon_sym_L_SQUOTE] = ACTIONS(1403), - [anon_sym_u_SQUOTE] = ACTIONS(1403), - [anon_sym_U_SQUOTE] = ACTIONS(1403), - [anon_sym_u8_SQUOTE] = ACTIONS(1403), - [anon_sym_SQUOTE] = ACTIONS(1403), - [anon_sym_L_DQUOTE] = ACTIONS(1403), - [anon_sym_u_DQUOTE] = ACTIONS(1403), - [anon_sym_U_DQUOTE] = ACTIONS(1403), - [anon_sym_u8_DQUOTE] = ACTIONS(1403), - [anon_sym_DQUOTE] = ACTIONS(1403), - [sym_true] = ACTIONS(1401), - [sym_false] = ACTIONS(1401), - [anon_sym_NULL] = ACTIONS(1401), - [anon_sym_nullptr] = ACTIONS(1401), + [ts_builtin_sym_end] = ACTIONS(1374), + [sym_identifier] = ACTIONS(1372), + [aux_sym_preproc_include_token1] = ACTIONS(1372), + [aux_sym_preproc_def_token1] = ACTIONS(1372), + [aux_sym_preproc_if_token1] = ACTIONS(1372), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1372), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1372), + [sym_preproc_directive] = ACTIONS(1372), + [anon_sym_LPAREN2] = ACTIONS(1374), + [anon_sym_BANG] = ACTIONS(1374), + [anon_sym_TILDE] = ACTIONS(1374), + [anon_sym_DASH] = ACTIONS(1372), + [anon_sym_PLUS] = ACTIONS(1372), + [anon_sym_STAR] = ACTIONS(1374), + [anon_sym_AMP] = ACTIONS(1374), + [anon_sym_SEMI] = ACTIONS(1374), + [anon_sym___extension__] = ACTIONS(1372), + [anon_sym_typedef] = ACTIONS(1372), + [anon_sym_extern] = ACTIONS(1372), + [anon_sym___attribute__] = ACTIONS(1372), + [anon_sym___scanf] = ACTIONS(1372), + [anon_sym___printf] = ACTIONS(1372), + [anon_sym___read_mostly] = ACTIONS(1372), + [anon_sym___must_hold] = ACTIONS(1372), + [anon_sym___ro_after_init] = ACTIONS(1372), + [anon_sym___init] = ACTIONS(1372), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), + [anon_sym___declspec] = ACTIONS(1372), + [anon_sym___cdecl] = ACTIONS(1372), + [anon_sym___clrcall] = ACTIONS(1372), + [anon_sym___stdcall] = ACTIONS(1372), + [anon_sym___fastcall] = ACTIONS(1372), + [anon_sym___thiscall] = ACTIONS(1372), + [anon_sym___vectorcall] = ACTIONS(1372), + [anon_sym_LBRACE] = ACTIONS(1374), + [anon_sym_signed] = ACTIONS(1372), + [anon_sym_unsigned] = ACTIONS(1372), + [anon_sym_long] = ACTIONS(1372), + [anon_sym_short] = ACTIONS(1372), + [anon_sym_static] = ACTIONS(1372), + [anon_sym_auto] = ACTIONS(1372), + [anon_sym_register] = ACTIONS(1372), + [anon_sym_inline] = ACTIONS(1372), + [anon_sym___inline] = ACTIONS(1372), + [anon_sym___inline__] = ACTIONS(1372), + [anon_sym___forceinline] = ACTIONS(1372), + [anon_sym_thread_local] = ACTIONS(1372), + [anon_sym___thread] = ACTIONS(1372), + [anon_sym_const] = ACTIONS(1372), + [anon_sym_constexpr] = ACTIONS(1372), + [anon_sym_volatile] = ACTIONS(1372), + [anon_sym_restrict] = ACTIONS(1372), + [anon_sym___restrict__] = ACTIONS(1372), + [anon_sym__Atomic] = ACTIONS(1372), + [anon_sym__Noreturn] = ACTIONS(1372), + [anon_sym_noreturn] = ACTIONS(1372), + [sym_primitive_type] = ACTIONS(1372), + [anon_sym_enum] = ACTIONS(1372), + [anon_sym_struct] = ACTIONS(1372), + [anon_sym_union] = ACTIONS(1372), + [anon_sym_if] = ACTIONS(1372), + [anon_sym_else] = ACTIONS(1372), + [anon_sym_switch] = ACTIONS(1372), + [anon_sym_case] = ACTIONS(1372), + [anon_sym_default] = ACTIONS(1372), + [anon_sym_while] = ACTIONS(1372), + [anon_sym_do] = ACTIONS(1372), + [anon_sym_for] = ACTIONS(1372), + [anon_sym_return] = ACTIONS(1372), + [anon_sym_break] = ACTIONS(1372), + [anon_sym_continue] = ACTIONS(1372), + [anon_sym_goto] = ACTIONS(1372), + [anon_sym___try] = ACTIONS(1372), + [anon_sym___leave] = ACTIONS(1372), + [anon_sym_DASH_DASH] = ACTIONS(1374), + [anon_sym_PLUS_PLUS] = ACTIONS(1374), + [anon_sym_sizeof] = ACTIONS(1372), + [anon_sym___alignof__] = ACTIONS(1372), + [anon_sym___alignof] = ACTIONS(1372), + [anon_sym__alignof] = ACTIONS(1372), + [anon_sym_alignof] = ACTIONS(1372), + [anon_sym__Alignof] = ACTIONS(1372), + [anon_sym_offsetof] = ACTIONS(1372), + [anon_sym__Generic] = ACTIONS(1372), + [anon_sym_asm] = ACTIONS(1372), + [anon_sym___asm__] = ACTIONS(1372), + [sym_number_literal] = ACTIONS(1374), + [anon_sym_L_SQUOTE] = ACTIONS(1374), + [anon_sym_u_SQUOTE] = ACTIONS(1374), + [anon_sym_U_SQUOTE] = ACTIONS(1374), + [anon_sym_u8_SQUOTE] = ACTIONS(1374), + [anon_sym_SQUOTE] = ACTIONS(1374), + [anon_sym_L_DQUOTE] = ACTIONS(1374), + [anon_sym_u_DQUOTE] = ACTIONS(1374), + [anon_sym_U_DQUOTE] = ACTIONS(1374), + [anon_sym_u8_DQUOTE] = ACTIONS(1374), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_true] = ACTIONS(1372), + [sym_false] = ACTIONS(1372), + [anon_sym_NULL] = ACTIONS(1372), + [anon_sym_nullptr] = ACTIONS(1372), [sym_comment] = ACTIONS(3), }, [325] = { - [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_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_LBRACK_LBRACK] = ACTIONS(1355), - [anon_sym___declspec] = 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), - [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_else] = 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_identifier] = ACTIONS(1320), + [aux_sym_preproc_include_token1] = ACTIONS(1320), + [aux_sym_preproc_def_token1] = ACTIONS(1320), + [aux_sym_preproc_if_token1] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1320), + [sym_preproc_directive] = ACTIONS(1320), + [anon_sym_LPAREN2] = ACTIONS(1322), + [anon_sym_BANG] = ACTIONS(1322), + [anon_sym_TILDE] = ACTIONS(1322), + [anon_sym_DASH] = ACTIONS(1320), + [anon_sym_PLUS] = ACTIONS(1320), + [anon_sym_STAR] = ACTIONS(1322), + [anon_sym_AMP] = ACTIONS(1322), + [anon_sym_SEMI] = ACTIONS(1322), + [anon_sym___extension__] = ACTIONS(1320), + [anon_sym_typedef] = ACTIONS(1320), + [anon_sym_extern] = ACTIONS(1320), + [anon_sym___attribute__] = ACTIONS(1320), + [anon_sym___scanf] = ACTIONS(1320), + [anon_sym___printf] = ACTIONS(1320), + [anon_sym___read_mostly] = ACTIONS(1320), + [anon_sym___must_hold] = ACTIONS(1320), + [anon_sym___ro_after_init] = ACTIONS(1320), + [anon_sym___init] = ACTIONS(1320), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1322), + [anon_sym___declspec] = ACTIONS(1320), + [anon_sym___cdecl] = ACTIONS(1320), + [anon_sym___clrcall] = ACTIONS(1320), + [anon_sym___stdcall] = ACTIONS(1320), + [anon_sym___fastcall] = ACTIONS(1320), + [anon_sym___thiscall] = ACTIONS(1320), + [anon_sym___vectorcall] = ACTIONS(1320), + [anon_sym_LBRACE] = ACTIONS(1322), + [anon_sym_RBRACE] = ACTIONS(1322), + [anon_sym_signed] = ACTIONS(1320), + [anon_sym_unsigned] = ACTIONS(1320), + [anon_sym_long] = ACTIONS(1320), + [anon_sym_short] = ACTIONS(1320), + [anon_sym_static] = ACTIONS(1320), + [anon_sym_auto] = ACTIONS(1320), + [anon_sym_register] = ACTIONS(1320), + [anon_sym_inline] = ACTIONS(1320), + [anon_sym___inline] = ACTIONS(1320), + [anon_sym___inline__] = ACTIONS(1320), + [anon_sym___forceinline] = ACTIONS(1320), + [anon_sym_thread_local] = ACTIONS(1320), + [anon_sym___thread] = ACTIONS(1320), + [anon_sym_const] = ACTIONS(1320), + [anon_sym_constexpr] = ACTIONS(1320), + [anon_sym_volatile] = ACTIONS(1320), + [anon_sym_restrict] = ACTIONS(1320), + [anon_sym___restrict__] = ACTIONS(1320), + [anon_sym__Atomic] = ACTIONS(1320), + [anon_sym__Noreturn] = ACTIONS(1320), + [anon_sym_noreturn] = ACTIONS(1320), + [sym_primitive_type] = ACTIONS(1320), + [anon_sym_enum] = ACTIONS(1320), + [anon_sym_struct] = ACTIONS(1320), + [anon_sym_union] = ACTIONS(1320), + [anon_sym_if] = ACTIONS(1320), + [anon_sym_else] = ACTIONS(1320), + [anon_sym_switch] = ACTIONS(1320), + [anon_sym_case] = ACTIONS(1320), + [anon_sym_default] = ACTIONS(1320), + [anon_sym_while] = ACTIONS(1320), + [anon_sym_do] = ACTIONS(1320), + [anon_sym_for] = ACTIONS(1320), + [anon_sym_return] = ACTIONS(1320), + [anon_sym_break] = ACTIONS(1320), + [anon_sym_continue] = ACTIONS(1320), + [anon_sym_goto] = ACTIONS(1320), + [anon_sym___try] = ACTIONS(1320), + [anon_sym___leave] = ACTIONS(1320), + [anon_sym_DASH_DASH] = ACTIONS(1322), + [anon_sym_PLUS_PLUS] = ACTIONS(1322), + [anon_sym_sizeof] = ACTIONS(1320), + [anon_sym___alignof__] = ACTIONS(1320), + [anon_sym___alignof] = ACTIONS(1320), + [anon_sym__alignof] = ACTIONS(1320), + [anon_sym_alignof] = ACTIONS(1320), + [anon_sym__Alignof] = ACTIONS(1320), + [anon_sym_offsetof] = ACTIONS(1320), + [anon_sym__Generic] = ACTIONS(1320), + [anon_sym_asm] = ACTIONS(1320), + [anon_sym___asm__] = ACTIONS(1320), + [sym_number_literal] = ACTIONS(1322), + [anon_sym_L_SQUOTE] = ACTIONS(1322), + [anon_sym_u_SQUOTE] = ACTIONS(1322), + [anon_sym_U_SQUOTE] = ACTIONS(1322), + [anon_sym_u8_SQUOTE] = ACTIONS(1322), + [anon_sym_SQUOTE] = ACTIONS(1322), + [anon_sym_L_DQUOTE] = ACTIONS(1322), + [anon_sym_u_DQUOTE] = ACTIONS(1322), + [anon_sym_U_DQUOTE] = ACTIONS(1322), + [anon_sym_u8_DQUOTE] = ACTIONS(1322), + [anon_sym_DQUOTE] = ACTIONS(1322), + [sym_true] = ACTIONS(1320), + [sym_false] = ACTIONS(1320), + [anon_sym_NULL] = ACTIONS(1320), + [anon_sym_nullptr] = ACTIONS(1320), [sym_comment] = ACTIONS(3), }, [326] = { - [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_LBRACK_LBRACK] = ACTIONS(1363), - [anon_sym___declspec] = 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), - [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_else] = 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__expression] = STATE(835), + [sym__expression_not_binary] = STATE(809), + [sym_conditional_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_pointer_expression] = STATE(809), + [sym_unary_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_update_expression] = STATE(809), + [sym_cast_expression] = STATE(809), + [sym_sizeof_expression] = STATE(809), + [sym_alignof_expression] = STATE(809), + [sym_offsetof_expression] = STATE(809), + [sym_generic_expression] = STATE(809), + [sym_subscript_expression] = STATE(809), + [sym_call_expression] = STATE(809), + [sym_gnu_asm_expression] = STATE(809), + [sym_field_expression] = STATE(809), + [sym_compound_literal_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(809), + [sym_initializer_list] = STATE(811), + [sym_char_literal] = STATE(809), + [sym_concatenated_string] = STATE(809), + [sym_string_literal] = STATE(573), + [sym_null] = STATE(809), + [sym_identifier] = ACTIONS(1536), + [anon_sym_COMMA] = ACTIONS(1538), + [anon_sym_RPAREN] = ACTIONS(1538), + [anon_sym_LPAREN2] = ACTIONS(1538), + [anon_sym_BANG] = ACTIONS(1540), + [anon_sym_TILDE] = ACTIONS(1542), + [anon_sym_DASH] = ACTIONS(1544), + [anon_sym_PLUS] = ACTIONS(1544), + [anon_sym_STAR] = ACTIONS(1544), + [anon_sym_SLASH] = ACTIONS(1544), + [anon_sym_PERCENT] = ACTIONS(1544), + [anon_sym_PIPE_PIPE] = ACTIONS(1538), + [anon_sym_AMP_AMP] = ACTIONS(1538), + [anon_sym_PIPE] = ACTIONS(1544), + [anon_sym_CARET] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(1544), + [anon_sym_EQ_EQ] = ACTIONS(1538), + [anon_sym_BANG_EQ] = ACTIONS(1538), + [anon_sym_GT] = ACTIONS(1544), + [anon_sym_GT_EQ] = ACTIONS(1538), + [anon_sym_LT_EQ] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(1544), + [anon_sym_LT_LT] = ACTIONS(1544), + [anon_sym_GT_GT] = ACTIONS(1544), + [anon_sym_SEMI] = ACTIONS(1538), + [anon_sym___attribute__] = ACTIONS(1544), + [anon_sym___scanf] = ACTIONS(1544), + [anon_sym___printf] = ACTIONS(1544), + [anon_sym___read_mostly] = ACTIONS(1544), + [anon_sym___must_hold] = ACTIONS(1544), + [anon_sym___ro_after_init] = ACTIONS(1544), + [anon_sym___init] = ACTIONS(1544), + [anon_sym_LBRACE] = ACTIONS(1546), + [anon_sym_RBRACE] = ACTIONS(1538), + [anon_sym_LBRACK] = ACTIONS(1538), + [anon_sym_EQ] = ACTIONS(1544), + [anon_sym_COLON] = ACTIONS(1538), + [anon_sym_QMARK] = ACTIONS(1538), + [anon_sym_STAR_EQ] = ACTIONS(1538), + [anon_sym_SLASH_EQ] = ACTIONS(1538), + [anon_sym_PERCENT_EQ] = ACTIONS(1538), + [anon_sym_PLUS_EQ] = ACTIONS(1538), + [anon_sym_DASH_EQ] = ACTIONS(1538), + [anon_sym_LT_LT_EQ] = ACTIONS(1538), + [anon_sym_GT_GT_EQ] = ACTIONS(1538), + [anon_sym_AMP_EQ] = ACTIONS(1538), + [anon_sym_CARET_EQ] = ACTIONS(1538), + [anon_sym_PIPE_EQ] = ACTIONS(1538), + [anon_sym_DASH_DASH] = ACTIONS(1538), + [anon_sym_PLUS_PLUS] = ACTIONS(1538), + [anon_sym_sizeof] = ACTIONS(1548), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [anon_sym_DOT] = ACTIONS(1544), + [anon_sym_DASH_GT] = ACTIONS(1538), + [sym_number_literal] = ACTIONS(161), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(163), + [sym_false] = ACTIONS(163), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, [327] = { - [ts_builtin_sym_end] = ACTIONS(1395), - [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_LBRACK_LBRACK] = ACTIONS(1395), - [anon_sym___declspec] = 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), - [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_else] = 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_identifier] = ACTIONS(1392), + [aux_sym_preproc_include_token1] = ACTIONS(1392), + [aux_sym_preproc_def_token1] = ACTIONS(1392), + [aux_sym_preproc_if_token1] = ACTIONS(1392), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1392), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1392), + [sym_preproc_directive] = ACTIONS(1392), + [anon_sym_LPAREN2] = ACTIONS(1394), + [anon_sym_BANG] = ACTIONS(1394), + [anon_sym_TILDE] = ACTIONS(1394), + [anon_sym_DASH] = ACTIONS(1392), + [anon_sym_PLUS] = ACTIONS(1392), + [anon_sym_STAR] = ACTIONS(1394), + [anon_sym_AMP] = ACTIONS(1394), + [anon_sym_SEMI] = ACTIONS(1394), + [anon_sym___extension__] = ACTIONS(1392), + [anon_sym_typedef] = ACTIONS(1392), + [anon_sym_extern] = ACTIONS(1392), + [anon_sym___attribute__] = ACTIONS(1392), + [anon_sym___scanf] = ACTIONS(1392), + [anon_sym___printf] = ACTIONS(1392), + [anon_sym___read_mostly] = ACTIONS(1392), + [anon_sym___must_hold] = ACTIONS(1392), + [anon_sym___ro_after_init] = ACTIONS(1392), + [anon_sym___init] = ACTIONS(1392), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1394), + [anon_sym___declspec] = ACTIONS(1392), + [anon_sym___cdecl] = ACTIONS(1392), + [anon_sym___clrcall] = ACTIONS(1392), + [anon_sym___stdcall] = ACTIONS(1392), + [anon_sym___fastcall] = ACTIONS(1392), + [anon_sym___thiscall] = ACTIONS(1392), + [anon_sym___vectorcall] = ACTIONS(1392), + [anon_sym_LBRACE] = ACTIONS(1394), + [anon_sym_RBRACE] = ACTIONS(1394), + [anon_sym_signed] = ACTIONS(1392), + [anon_sym_unsigned] = ACTIONS(1392), + [anon_sym_long] = ACTIONS(1392), + [anon_sym_short] = ACTIONS(1392), + [anon_sym_static] = ACTIONS(1392), + [anon_sym_auto] = ACTIONS(1392), + [anon_sym_register] = ACTIONS(1392), + [anon_sym_inline] = ACTIONS(1392), + [anon_sym___inline] = ACTIONS(1392), + [anon_sym___inline__] = ACTIONS(1392), + [anon_sym___forceinline] = ACTIONS(1392), + [anon_sym_thread_local] = ACTIONS(1392), + [anon_sym___thread] = ACTIONS(1392), + [anon_sym_const] = ACTIONS(1392), + [anon_sym_constexpr] = ACTIONS(1392), + [anon_sym_volatile] = ACTIONS(1392), + [anon_sym_restrict] = ACTIONS(1392), + [anon_sym___restrict__] = ACTIONS(1392), + [anon_sym__Atomic] = ACTIONS(1392), + [anon_sym__Noreturn] = ACTIONS(1392), + [anon_sym_noreturn] = ACTIONS(1392), + [sym_primitive_type] = ACTIONS(1392), + [anon_sym_enum] = ACTIONS(1392), + [anon_sym_struct] = ACTIONS(1392), + [anon_sym_union] = ACTIONS(1392), + [anon_sym_if] = ACTIONS(1392), + [anon_sym_else] = ACTIONS(1392), + [anon_sym_switch] = ACTIONS(1392), + [anon_sym_case] = ACTIONS(1392), + [anon_sym_default] = ACTIONS(1392), + [anon_sym_while] = ACTIONS(1392), + [anon_sym_do] = ACTIONS(1392), + [anon_sym_for] = ACTIONS(1392), + [anon_sym_return] = ACTIONS(1392), + [anon_sym_break] = ACTIONS(1392), + [anon_sym_continue] = ACTIONS(1392), + [anon_sym_goto] = ACTIONS(1392), + [anon_sym___try] = ACTIONS(1392), + [anon_sym___leave] = ACTIONS(1392), + [anon_sym_DASH_DASH] = ACTIONS(1394), + [anon_sym_PLUS_PLUS] = ACTIONS(1394), + [anon_sym_sizeof] = ACTIONS(1392), + [anon_sym___alignof__] = ACTIONS(1392), + [anon_sym___alignof] = ACTIONS(1392), + [anon_sym__alignof] = ACTIONS(1392), + [anon_sym_alignof] = ACTIONS(1392), + [anon_sym__Alignof] = ACTIONS(1392), + [anon_sym_offsetof] = ACTIONS(1392), + [anon_sym__Generic] = ACTIONS(1392), + [anon_sym_asm] = ACTIONS(1392), + [anon_sym___asm__] = ACTIONS(1392), + [sym_number_literal] = ACTIONS(1394), + [anon_sym_L_SQUOTE] = ACTIONS(1394), + [anon_sym_u_SQUOTE] = ACTIONS(1394), + [anon_sym_U_SQUOTE] = ACTIONS(1394), + [anon_sym_u8_SQUOTE] = ACTIONS(1394), + [anon_sym_SQUOTE] = ACTIONS(1394), + [anon_sym_L_DQUOTE] = ACTIONS(1394), + [anon_sym_u_DQUOTE] = ACTIONS(1394), + [anon_sym_U_DQUOTE] = ACTIONS(1394), + [anon_sym_u8_DQUOTE] = ACTIONS(1394), + [anon_sym_DQUOTE] = ACTIONS(1394), + [sym_true] = ACTIONS(1392), + [sym_false] = ACTIONS(1392), + [anon_sym_NULL] = ACTIONS(1392), + [anon_sym_nullptr] = ACTIONS(1392), [sym_comment] = ACTIONS(3), }, [328] = { - [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(1309), - [anon_sym_BANG] = ACTIONS(1309), - [anon_sym_TILDE] = ACTIONS(1309), - [anon_sym_DASH] = ACTIONS(1311), - [anon_sym_PLUS] = ACTIONS(1311), - [anon_sym_STAR] = ACTIONS(1309), - [anon_sym_AMP] = ACTIONS(1309), - [anon_sym_SEMI] = ACTIONS(1309), - [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_LBRACK_LBRACK] = ACTIONS(1309), - [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(1309), - [anon_sym_RBRACE] = ACTIONS(1309), - [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), - [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_else] = 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(1309), - [anon_sym_PLUS_PLUS] = ACTIONS(1309), - [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(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(1311), - [sym_false] = ACTIONS(1311), - [anon_sym_NULL] = ACTIONS(1311), - [anon_sym_nullptr] = ACTIONS(1311), + [sym_identifier] = ACTIONS(1376), + [aux_sym_preproc_include_token1] = ACTIONS(1376), + [aux_sym_preproc_def_token1] = ACTIONS(1376), + [aux_sym_preproc_if_token1] = ACTIONS(1376), + [aux_sym_preproc_if_token2] = ACTIONS(1376), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1376), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1376), + [sym_preproc_directive] = ACTIONS(1376), + [anon_sym_LPAREN2] = ACTIONS(1378), + [anon_sym_BANG] = ACTIONS(1378), + [anon_sym_TILDE] = ACTIONS(1378), + [anon_sym_DASH] = ACTIONS(1376), + [anon_sym_PLUS] = ACTIONS(1376), + [anon_sym_STAR] = ACTIONS(1378), + [anon_sym_AMP] = ACTIONS(1378), + [anon_sym_SEMI] = ACTIONS(1378), + [anon_sym___extension__] = ACTIONS(1376), + [anon_sym_typedef] = ACTIONS(1376), + [anon_sym_extern] = ACTIONS(1376), + [anon_sym___attribute__] = ACTIONS(1376), + [anon_sym___scanf] = ACTIONS(1376), + [anon_sym___printf] = ACTIONS(1376), + [anon_sym___read_mostly] = ACTIONS(1376), + [anon_sym___must_hold] = ACTIONS(1376), + [anon_sym___ro_after_init] = ACTIONS(1376), + [anon_sym___init] = ACTIONS(1376), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1378), + [anon_sym___declspec] = ACTIONS(1376), + [anon_sym___cdecl] = ACTIONS(1376), + [anon_sym___clrcall] = ACTIONS(1376), + [anon_sym___stdcall] = ACTIONS(1376), + [anon_sym___fastcall] = ACTIONS(1376), + [anon_sym___thiscall] = ACTIONS(1376), + [anon_sym___vectorcall] = ACTIONS(1376), + [anon_sym_LBRACE] = ACTIONS(1378), + [anon_sym_signed] = ACTIONS(1376), + [anon_sym_unsigned] = ACTIONS(1376), + [anon_sym_long] = ACTIONS(1376), + [anon_sym_short] = ACTIONS(1376), + [anon_sym_static] = ACTIONS(1376), + [anon_sym_auto] = ACTIONS(1376), + [anon_sym_register] = ACTIONS(1376), + [anon_sym_inline] = ACTIONS(1376), + [anon_sym___inline] = ACTIONS(1376), + [anon_sym___inline__] = ACTIONS(1376), + [anon_sym___forceinline] = ACTIONS(1376), + [anon_sym_thread_local] = ACTIONS(1376), + [anon_sym___thread] = ACTIONS(1376), + [anon_sym_const] = ACTIONS(1376), + [anon_sym_constexpr] = ACTIONS(1376), + [anon_sym_volatile] = ACTIONS(1376), + [anon_sym_restrict] = ACTIONS(1376), + [anon_sym___restrict__] = ACTIONS(1376), + [anon_sym__Atomic] = ACTIONS(1376), + [anon_sym__Noreturn] = ACTIONS(1376), + [anon_sym_noreturn] = ACTIONS(1376), + [sym_primitive_type] = ACTIONS(1376), + [anon_sym_enum] = ACTIONS(1376), + [anon_sym_struct] = ACTIONS(1376), + [anon_sym_union] = ACTIONS(1376), + [anon_sym_if] = ACTIONS(1376), + [anon_sym_else] = ACTIONS(1376), + [anon_sym_switch] = ACTIONS(1376), + [anon_sym_case] = ACTIONS(1376), + [anon_sym_default] = ACTIONS(1376), + [anon_sym_while] = ACTIONS(1376), + [anon_sym_do] = ACTIONS(1376), + [anon_sym_for] = ACTIONS(1376), + [anon_sym_return] = ACTIONS(1376), + [anon_sym_break] = ACTIONS(1376), + [anon_sym_continue] = ACTIONS(1376), + [anon_sym_goto] = ACTIONS(1376), + [anon_sym___try] = ACTIONS(1376), + [anon_sym___leave] = ACTIONS(1376), + [anon_sym_DASH_DASH] = ACTIONS(1378), + [anon_sym_PLUS_PLUS] = ACTIONS(1378), + [anon_sym_sizeof] = ACTIONS(1376), + [anon_sym___alignof__] = ACTIONS(1376), + [anon_sym___alignof] = ACTIONS(1376), + [anon_sym__alignof] = ACTIONS(1376), + [anon_sym_alignof] = ACTIONS(1376), + [anon_sym__Alignof] = ACTIONS(1376), + [anon_sym_offsetof] = ACTIONS(1376), + [anon_sym__Generic] = ACTIONS(1376), + [anon_sym_asm] = ACTIONS(1376), + [anon_sym___asm__] = ACTIONS(1376), + [sym_number_literal] = ACTIONS(1378), + [anon_sym_L_SQUOTE] = ACTIONS(1378), + [anon_sym_u_SQUOTE] = ACTIONS(1378), + [anon_sym_U_SQUOTE] = ACTIONS(1378), + [anon_sym_u8_SQUOTE] = ACTIONS(1378), + [anon_sym_SQUOTE] = ACTIONS(1378), + [anon_sym_L_DQUOTE] = ACTIONS(1378), + [anon_sym_u_DQUOTE] = ACTIONS(1378), + [anon_sym_U_DQUOTE] = ACTIONS(1378), + [anon_sym_u8_DQUOTE] = ACTIONS(1378), + [anon_sym_DQUOTE] = ACTIONS(1378), + [sym_true] = ACTIONS(1376), + [sym_false] = ACTIONS(1376), + [anon_sym_NULL] = ACTIONS(1376), + [anon_sym_nullptr] = ACTIONS(1376), [sym_comment] = ACTIONS(3), }, [329] = { - [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_LBRACK_LBRACK] = ACTIONS(1363), - [anon_sym___declspec] = 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), - [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_else] = 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_identifier] = ACTIONS(1336), + [aux_sym_preproc_include_token1] = ACTIONS(1336), + [aux_sym_preproc_def_token1] = ACTIONS(1336), + [aux_sym_preproc_if_token1] = ACTIONS(1336), + [aux_sym_preproc_if_token2] = ACTIONS(1336), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1336), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1336), + [sym_preproc_directive] = ACTIONS(1336), + [anon_sym_LPAREN2] = ACTIONS(1338), + [anon_sym_BANG] = ACTIONS(1338), + [anon_sym_TILDE] = ACTIONS(1338), + [anon_sym_DASH] = ACTIONS(1336), + [anon_sym_PLUS] = ACTIONS(1336), + [anon_sym_STAR] = ACTIONS(1338), + [anon_sym_AMP] = ACTIONS(1338), + [anon_sym_SEMI] = ACTIONS(1338), + [anon_sym___extension__] = ACTIONS(1336), + [anon_sym_typedef] = ACTIONS(1336), + [anon_sym_extern] = ACTIONS(1336), + [anon_sym___attribute__] = ACTIONS(1336), + [anon_sym___scanf] = ACTIONS(1336), + [anon_sym___printf] = ACTIONS(1336), + [anon_sym___read_mostly] = ACTIONS(1336), + [anon_sym___must_hold] = ACTIONS(1336), + [anon_sym___ro_after_init] = ACTIONS(1336), + [anon_sym___init] = ACTIONS(1336), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1338), + [anon_sym___declspec] = ACTIONS(1336), + [anon_sym___cdecl] = ACTIONS(1336), + [anon_sym___clrcall] = ACTIONS(1336), + [anon_sym___stdcall] = ACTIONS(1336), + [anon_sym___fastcall] = ACTIONS(1336), + [anon_sym___thiscall] = ACTIONS(1336), + [anon_sym___vectorcall] = ACTIONS(1336), + [anon_sym_LBRACE] = ACTIONS(1338), + [anon_sym_signed] = ACTIONS(1336), + [anon_sym_unsigned] = ACTIONS(1336), + [anon_sym_long] = ACTIONS(1336), + [anon_sym_short] = ACTIONS(1336), + [anon_sym_static] = ACTIONS(1336), + [anon_sym_auto] = ACTIONS(1336), + [anon_sym_register] = ACTIONS(1336), + [anon_sym_inline] = ACTIONS(1336), + [anon_sym___inline] = ACTIONS(1336), + [anon_sym___inline__] = ACTIONS(1336), + [anon_sym___forceinline] = ACTIONS(1336), + [anon_sym_thread_local] = ACTIONS(1336), + [anon_sym___thread] = ACTIONS(1336), + [anon_sym_const] = ACTIONS(1336), + [anon_sym_constexpr] = ACTIONS(1336), + [anon_sym_volatile] = ACTIONS(1336), + [anon_sym_restrict] = ACTIONS(1336), + [anon_sym___restrict__] = ACTIONS(1336), + [anon_sym__Atomic] = ACTIONS(1336), + [anon_sym__Noreturn] = ACTIONS(1336), + [anon_sym_noreturn] = ACTIONS(1336), + [sym_primitive_type] = ACTIONS(1336), + [anon_sym_enum] = ACTIONS(1336), + [anon_sym_struct] = ACTIONS(1336), + [anon_sym_union] = ACTIONS(1336), + [anon_sym_if] = ACTIONS(1336), + [anon_sym_else] = ACTIONS(1336), + [anon_sym_switch] = ACTIONS(1336), + [anon_sym_case] = ACTIONS(1336), + [anon_sym_default] = ACTIONS(1336), + [anon_sym_while] = ACTIONS(1336), + [anon_sym_do] = ACTIONS(1336), + [anon_sym_for] = ACTIONS(1336), + [anon_sym_return] = ACTIONS(1336), + [anon_sym_break] = ACTIONS(1336), + [anon_sym_continue] = ACTIONS(1336), + [anon_sym_goto] = ACTIONS(1336), + [anon_sym___try] = ACTIONS(1336), + [anon_sym___leave] = ACTIONS(1336), + [anon_sym_DASH_DASH] = ACTIONS(1338), + [anon_sym_PLUS_PLUS] = ACTIONS(1338), + [anon_sym_sizeof] = ACTIONS(1336), + [anon_sym___alignof__] = ACTIONS(1336), + [anon_sym___alignof] = ACTIONS(1336), + [anon_sym__alignof] = ACTIONS(1336), + [anon_sym_alignof] = ACTIONS(1336), + [anon_sym__Alignof] = ACTIONS(1336), + [anon_sym_offsetof] = ACTIONS(1336), + [anon_sym__Generic] = ACTIONS(1336), + [anon_sym_asm] = ACTIONS(1336), + [anon_sym___asm__] = ACTIONS(1336), + [sym_number_literal] = ACTIONS(1338), + [anon_sym_L_SQUOTE] = ACTIONS(1338), + [anon_sym_u_SQUOTE] = ACTIONS(1338), + [anon_sym_U_SQUOTE] = ACTIONS(1338), + [anon_sym_u8_SQUOTE] = ACTIONS(1338), + [anon_sym_SQUOTE] = ACTIONS(1338), + [anon_sym_L_DQUOTE] = ACTIONS(1338), + [anon_sym_u_DQUOTE] = ACTIONS(1338), + [anon_sym_U_DQUOTE] = ACTIONS(1338), + [anon_sym_u8_DQUOTE] = ACTIONS(1338), + [anon_sym_DQUOTE] = ACTIONS(1338), + [sym_true] = ACTIONS(1336), + [sym_false] = ACTIONS(1336), + [anon_sym_NULL] = ACTIONS(1336), + [anon_sym_nullptr] = ACTIONS(1336), [sym_comment] = ACTIONS(3), }, [330] = { - [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_LBRACK_LBRACK] = ACTIONS(1355), - [anon_sym___declspec] = 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), - [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_else] = 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_identifier] = ACTIONS(1380), + [aux_sym_preproc_include_token1] = ACTIONS(1380), + [aux_sym_preproc_def_token1] = ACTIONS(1380), + [aux_sym_preproc_if_token1] = ACTIONS(1380), + [aux_sym_preproc_if_token2] = ACTIONS(1380), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1380), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1380), + [sym_preproc_directive] = ACTIONS(1380), + [anon_sym_LPAREN2] = ACTIONS(1382), + [anon_sym_BANG] = ACTIONS(1382), + [anon_sym_TILDE] = ACTIONS(1382), + [anon_sym_DASH] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1380), + [anon_sym_STAR] = ACTIONS(1382), + [anon_sym_AMP] = ACTIONS(1382), + [anon_sym_SEMI] = ACTIONS(1382), + [anon_sym___extension__] = ACTIONS(1380), + [anon_sym_typedef] = ACTIONS(1380), + [anon_sym_extern] = ACTIONS(1380), + [anon_sym___attribute__] = ACTIONS(1380), + [anon_sym___scanf] = ACTIONS(1380), + [anon_sym___printf] = ACTIONS(1380), + [anon_sym___read_mostly] = ACTIONS(1380), + [anon_sym___must_hold] = ACTIONS(1380), + [anon_sym___ro_after_init] = ACTIONS(1380), + [anon_sym___init] = ACTIONS(1380), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1382), + [anon_sym___declspec] = ACTIONS(1380), + [anon_sym___cdecl] = ACTIONS(1380), + [anon_sym___clrcall] = ACTIONS(1380), + [anon_sym___stdcall] = ACTIONS(1380), + [anon_sym___fastcall] = ACTIONS(1380), + [anon_sym___thiscall] = ACTIONS(1380), + [anon_sym___vectorcall] = ACTIONS(1380), + [anon_sym_LBRACE] = ACTIONS(1382), + [anon_sym_signed] = ACTIONS(1380), + [anon_sym_unsigned] = ACTIONS(1380), + [anon_sym_long] = ACTIONS(1380), + [anon_sym_short] = ACTIONS(1380), + [anon_sym_static] = ACTIONS(1380), + [anon_sym_auto] = ACTIONS(1380), + [anon_sym_register] = ACTIONS(1380), + [anon_sym_inline] = ACTIONS(1380), + [anon_sym___inline] = ACTIONS(1380), + [anon_sym___inline__] = ACTIONS(1380), + [anon_sym___forceinline] = ACTIONS(1380), + [anon_sym_thread_local] = ACTIONS(1380), + [anon_sym___thread] = ACTIONS(1380), + [anon_sym_const] = ACTIONS(1380), + [anon_sym_constexpr] = ACTIONS(1380), + [anon_sym_volatile] = ACTIONS(1380), + [anon_sym_restrict] = ACTIONS(1380), + [anon_sym___restrict__] = ACTIONS(1380), + [anon_sym__Atomic] = ACTIONS(1380), + [anon_sym__Noreturn] = ACTIONS(1380), + [anon_sym_noreturn] = ACTIONS(1380), + [sym_primitive_type] = ACTIONS(1380), + [anon_sym_enum] = ACTIONS(1380), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_union] = ACTIONS(1380), + [anon_sym_if] = ACTIONS(1380), + [anon_sym_else] = ACTIONS(1380), + [anon_sym_switch] = ACTIONS(1380), + [anon_sym_case] = ACTIONS(1380), + [anon_sym_default] = ACTIONS(1380), + [anon_sym_while] = ACTIONS(1380), + [anon_sym_do] = ACTIONS(1380), + [anon_sym_for] = ACTIONS(1380), + [anon_sym_return] = ACTIONS(1380), + [anon_sym_break] = ACTIONS(1380), + [anon_sym_continue] = ACTIONS(1380), + [anon_sym_goto] = ACTIONS(1380), + [anon_sym___try] = ACTIONS(1380), + [anon_sym___leave] = ACTIONS(1380), + [anon_sym_DASH_DASH] = ACTIONS(1382), + [anon_sym_PLUS_PLUS] = ACTIONS(1382), + [anon_sym_sizeof] = ACTIONS(1380), + [anon_sym___alignof__] = ACTIONS(1380), + [anon_sym___alignof] = ACTIONS(1380), + [anon_sym__alignof] = ACTIONS(1380), + [anon_sym_alignof] = ACTIONS(1380), + [anon_sym__Alignof] = ACTIONS(1380), + [anon_sym_offsetof] = ACTIONS(1380), + [anon_sym__Generic] = ACTIONS(1380), + [anon_sym_asm] = ACTIONS(1380), + [anon_sym___asm__] = ACTIONS(1380), + [sym_number_literal] = ACTIONS(1382), + [anon_sym_L_SQUOTE] = ACTIONS(1382), + [anon_sym_u_SQUOTE] = ACTIONS(1382), + [anon_sym_U_SQUOTE] = ACTIONS(1382), + [anon_sym_u8_SQUOTE] = ACTIONS(1382), + [anon_sym_SQUOTE] = ACTIONS(1382), + [anon_sym_L_DQUOTE] = ACTIONS(1382), + [anon_sym_u_DQUOTE] = ACTIONS(1382), + [anon_sym_U_DQUOTE] = ACTIONS(1382), + [anon_sym_u8_DQUOTE] = ACTIONS(1382), + [anon_sym_DQUOTE] = ACTIONS(1382), + [sym_true] = ACTIONS(1380), + [sym_false] = ACTIONS(1380), + [anon_sym_NULL] = ACTIONS(1380), + [anon_sym_nullptr] = ACTIONS(1380), [sym_comment] = ACTIONS(3), }, [331] = { - [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_LBRACK_LBRACK] = ACTIONS(1391), - [anon_sym___declspec] = 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), - [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_else] = 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_identifier] = ACTIONS(1384), + [aux_sym_preproc_include_token1] = ACTIONS(1384), + [aux_sym_preproc_def_token1] = ACTIONS(1384), + [aux_sym_preproc_if_token1] = ACTIONS(1384), + [aux_sym_preproc_if_token2] = ACTIONS(1384), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1384), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1384), + [sym_preproc_directive] = ACTIONS(1384), + [anon_sym_LPAREN2] = ACTIONS(1386), + [anon_sym_BANG] = ACTIONS(1386), + [anon_sym_TILDE] = ACTIONS(1386), + [anon_sym_DASH] = ACTIONS(1384), + [anon_sym_PLUS] = ACTIONS(1384), + [anon_sym_STAR] = ACTIONS(1386), + [anon_sym_AMP] = ACTIONS(1386), + [anon_sym_SEMI] = ACTIONS(1386), + [anon_sym___extension__] = ACTIONS(1384), + [anon_sym_typedef] = ACTIONS(1384), + [anon_sym_extern] = ACTIONS(1384), + [anon_sym___attribute__] = ACTIONS(1384), + [anon_sym___scanf] = ACTIONS(1384), + [anon_sym___printf] = ACTIONS(1384), + [anon_sym___read_mostly] = ACTIONS(1384), + [anon_sym___must_hold] = ACTIONS(1384), + [anon_sym___ro_after_init] = ACTIONS(1384), + [anon_sym___init] = ACTIONS(1384), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1386), + [anon_sym___declspec] = ACTIONS(1384), + [anon_sym___cdecl] = ACTIONS(1384), + [anon_sym___clrcall] = ACTIONS(1384), + [anon_sym___stdcall] = ACTIONS(1384), + [anon_sym___fastcall] = ACTIONS(1384), + [anon_sym___thiscall] = ACTIONS(1384), + [anon_sym___vectorcall] = ACTIONS(1384), + [anon_sym_LBRACE] = ACTIONS(1386), + [anon_sym_signed] = ACTIONS(1384), + [anon_sym_unsigned] = ACTIONS(1384), + [anon_sym_long] = ACTIONS(1384), + [anon_sym_short] = ACTIONS(1384), + [anon_sym_static] = ACTIONS(1384), + [anon_sym_auto] = ACTIONS(1384), + [anon_sym_register] = ACTIONS(1384), + [anon_sym_inline] = ACTIONS(1384), + [anon_sym___inline] = ACTIONS(1384), + [anon_sym___inline__] = ACTIONS(1384), + [anon_sym___forceinline] = ACTIONS(1384), + [anon_sym_thread_local] = ACTIONS(1384), + [anon_sym___thread] = ACTIONS(1384), + [anon_sym_const] = ACTIONS(1384), + [anon_sym_constexpr] = ACTIONS(1384), + [anon_sym_volatile] = ACTIONS(1384), + [anon_sym_restrict] = ACTIONS(1384), + [anon_sym___restrict__] = ACTIONS(1384), + [anon_sym__Atomic] = ACTIONS(1384), + [anon_sym__Noreturn] = ACTIONS(1384), + [anon_sym_noreturn] = ACTIONS(1384), + [sym_primitive_type] = ACTIONS(1384), + [anon_sym_enum] = ACTIONS(1384), + [anon_sym_struct] = ACTIONS(1384), + [anon_sym_union] = ACTIONS(1384), + [anon_sym_if] = ACTIONS(1384), + [anon_sym_else] = ACTIONS(1384), + [anon_sym_switch] = ACTIONS(1384), + [anon_sym_case] = ACTIONS(1384), + [anon_sym_default] = ACTIONS(1384), + [anon_sym_while] = ACTIONS(1384), + [anon_sym_do] = ACTIONS(1384), + [anon_sym_for] = ACTIONS(1384), + [anon_sym_return] = ACTIONS(1384), + [anon_sym_break] = ACTIONS(1384), + [anon_sym_continue] = ACTIONS(1384), + [anon_sym_goto] = ACTIONS(1384), + [anon_sym___try] = ACTIONS(1384), + [anon_sym___leave] = ACTIONS(1384), + [anon_sym_DASH_DASH] = ACTIONS(1386), + [anon_sym_PLUS_PLUS] = ACTIONS(1386), + [anon_sym_sizeof] = ACTIONS(1384), + [anon_sym___alignof__] = ACTIONS(1384), + [anon_sym___alignof] = ACTIONS(1384), + [anon_sym__alignof] = ACTIONS(1384), + [anon_sym_alignof] = ACTIONS(1384), + [anon_sym__Alignof] = ACTIONS(1384), + [anon_sym_offsetof] = ACTIONS(1384), + [anon_sym__Generic] = ACTIONS(1384), + [anon_sym_asm] = ACTIONS(1384), + [anon_sym___asm__] = ACTIONS(1384), + [sym_number_literal] = ACTIONS(1386), + [anon_sym_L_SQUOTE] = ACTIONS(1386), + [anon_sym_u_SQUOTE] = ACTIONS(1386), + [anon_sym_U_SQUOTE] = ACTIONS(1386), + [anon_sym_u8_SQUOTE] = ACTIONS(1386), + [anon_sym_SQUOTE] = ACTIONS(1386), + [anon_sym_L_DQUOTE] = ACTIONS(1386), + [anon_sym_u_DQUOTE] = ACTIONS(1386), + [anon_sym_U_DQUOTE] = ACTIONS(1386), + [anon_sym_u8_DQUOTE] = ACTIONS(1386), + [anon_sym_DQUOTE] = ACTIONS(1386), + [sym_true] = ACTIONS(1384), + [sym_false] = ACTIONS(1384), + [anon_sym_NULL] = ACTIONS(1384), + [anon_sym_nullptr] = ACTIONS(1384), [sym_comment] = ACTIONS(3), }, [332] = { - [sym__expression] = STATE(843), - [sym__expression_not_binary] = STATE(792), - [sym_conditional_expression] = STATE(792), - [sym_assignment_expression] = STATE(792), - [sym_pointer_expression] = STATE(792), - [sym_unary_expression] = STATE(792), - [sym_binary_expression] = STATE(792), - [sym_update_expression] = STATE(792), - [sym_cast_expression] = STATE(792), - [sym_sizeof_expression] = STATE(792), - [sym_alignof_expression] = STATE(792), - [sym_offsetof_expression] = STATE(792), - [sym_generic_expression] = STATE(792), - [sym_subscript_expression] = STATE(792), - [sym_call_expression] = STATE(792), - [sym_gnu_asm_expression] = STATE(792), - [sym_field_expression] = STATE(792), - [sym_compound_literal_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(792), - [sym_initializer_list] = STATE(794), - [sym_char_literal] = STATE(792), - [sym_concatenated_string] = STATE(792), - [sym_string_literal] = STATE(675), - [sym_null] = STATE(792), - [sym_identifier] = ACTIONS(1525), - [anon_sym_COMMA] = ACTIONS(1527), - [anon_sym_RPAREN] = ACTIONS(1527), - [anon_sym_LPAREN2] = ACTIONS(1527), - [anon_sym_BANG] = ACTIONS(1529), - [anon_sym_TILDE] = ACTIONS(1531), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1533), - [anon_sym_SLASH] = ACTIONS(1533), - [anon_sym_PERCENT] = ACTIONS(1533), - [anon_sym_PIPE_PIPE] = ACTIONS(1527), - [anon_sym_AMP_AMP] = ACTIONS(1527), - [anon_sym_PIPE] = ACTIONS(1533), - [anon_sym_CARET] = ACTIONS(1533), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_EQ_EQ] = ACTIONS(1527), - [anon_sym_BANG_EQ] = ACTIONS(1527), - [anon_sym_GT] = ACTIONS(1533), - [anon_sym_GT_EQ] = ACTIONS(1527), - [anon_sym_LT_EQ] = ACTIONS(1527), - [anon_sym_LT] = ACTIONS(1533), - [anon_sym_LT_LT] = ACTIONS(1533), - [anon_sym_GT_GT] = ACTIONS(1533), - [anon_sym_SEMI] = ACTIONS(1527), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym___scanf] = ACTIONS(1533), - [anon_sym___printf] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_RBRACE] = ACTIONS(1527), - [anon_sym_LBRACK] = ACTIONS(1527), - [anon_sym_EQ] = ACTIONS(1533), - [anon_sym_COLON] = ACTIONS(1527), - [anon_sym_QMARK] = ACTIONS(1527), - [anon_sym_STAR_EQ] = ACTIONS(1527), - [anon_sym_SLASH_EQ] = ACTIONS(1527), - [anon_sym_PERCENT_EQ] = ACTIONS(1527), - [anon_sym_PLUS_EQ] = ACTIONS(1527), - [anon_sym_DASH_EQ] = ACTIONS(1527), - [anon_sym_LT_LT_EQ] = ACTIONS(1527), - [anon_sym_GT_GT_EQ] = ACTIONS(1527), - [anon_sym_AMP_EQ] = ACTIONS(1527), - [anon_sym_CARET_EQ] = ACTIONS(1527), - [anon_sym_PIPE_EQ] = ACTIONS(1527), - [anon_sym_DASH_DASH] = ACTIONS(1527), - [anon_sym_PLUS_PLUS] = ACTIONS(1527), - [anon_sym_sizeof] = ACTIONS(1537), - [anon_sym___alignof__] = ACTIONS(85), - [anon_sym___alignof] = ACTIONS(85), - [anon_sym__alignof] = ACTIONS(85), - [anon_sym_alignof] = ACTIONS(85), - [anon_sym__Alignof] = ACTIONS(85), - [anon_sym_offsetof] = ACTIONS(87), - [anon_sym__Generic] = ACTIONS(89), - [anon_sym_asm] = ACTIONS(91), - [anon_sym___asm__] = ACTIONS(91), - [anon_sym_DOT] = ACTIONS(1533), - [anon_sym_DASH_GT] = ACTIONS(1527), - [sym_number_literal] = ACTIONS(159), - [anon_sym_L_SQUOTE] = ACTIONS(95), - [anon_sym_u_SQUOTE] = ACTIONS(95), - [anon_sym_U_SQUOTE] = ACTIONS(95), - [anon_sym_u8_SQUOTE] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(95), - [anon_sym_L_DQUOTE] = ACTIONS(97), - [anon_sym_u_DQUOTE] = ACTIONS(97), - [anon_sym_U_DQUOTE] = ACTIONS(97), - [anon_sym_u8_DQUOTE] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(97), - [sym_true] = ACTIONS(161), - [sym_false] = ACTIONS(161), - [anon_sym_NULL] = ACTIONS(101), - [anon_sym_nullptr] = ACTIONS(101), + [sym_identifier] = ACTIONS(1334), + [aux_sym_preproc_include_token1] = ACTIONS(1334), + [aux_sym_preproc_def_token1] = ACTIONS(1334), + [aux_sym_preproc_if_token1] = ACTIONS(1334), + [aux_sym_preproc_if_token2] = ACTIONS(1334), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1334), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1334), + [sym_preproc_directive] = ACTIONS(1334), + [anon_sym_LPAREN2] = ACTIONS(1332), + [anon_sym_BANG] = ACTIONS(1332), + [anon_sym_TILDE] = ACTIONS(1332), + [anon_sym_DASH] = ACTIONS(1334), + [anon_sym_PLUS] = ACTIONS(1334), + [anon_sym_STAR] = ACTIONS(1332), + [anon_sym_AMP] = ACTIONS(1332), + [anon_sym_SEMI] = ACTIONS(1332), + [anon_sym___extension__] = ACTIONS(1334), + [anon_sym_typedef] = ACTIONS(1334), + [anon_sym_extern] = ACTIONS(1334), + [anon_sym___attribute__] = ACTIONS(1334), + [anon_sym___scanf] = ACTIONS(1334), + [anon_sym___printf] = ACTIONS(1334), + [anon_sym___read_mostly] = ACTIONS(1334), + [anon_sym___must_hold] = ACTIONS(1334), + [anon_sym___ro_after_init] = ACTIONS(1334), + [anon_sym___init] = ACTIONS(1334), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1332), + [anon_sym___declspec] = ACTIONS(1334), + [anon_sym___cdecl] = ACTIONS(1334), + [anon_sym___clrcall] = ACTIONS(1334), + [anon_sym___stdcall] = ACTIONS(1334), + [anon_sym___fastcall] = ACTIONS(1334), + [anon_sym___thiscall] = ACTIONS(1334), + [anon_sym___vectorcall] = ACTIONS(1334), + [anon_sym_LBRACE] = ACTIONS(1332), + [anon_sym_signed] = ACTIONS(1334), + [anon_sym_unsigned] = ACTIONS(1334), + [anon_sym_long] = ACTIONS(1334), + [anon_sym_short] = ACTIONS(1334), + [anon_sym_static] = ACTIONS(1334), + [anon_sym_auto] = ACTIONS(1334), + [anon_sym_register] = ACTIONS(1334), + [anon_sym_inline] = ACTIONS(1334), + [anon_sym___inline] = ACTIONS(1334), + [anon_sym___inline__] = ACTIONS(1334), + [anon_sym___forceinline] = ACTIONS(1334), + [anon_sym_thread_local] = ACTIONS(1334), + [anon_sym___thread] = ACTIONS(1334), + [anon_sym_const] = ACTIONS(1334), + [anon_sym_constexpr] = ACTIONS(1334), + [anon_sym_volatile] = ACTIONS(1334), + [anon_sym_restrict] = ACTIONS(1334), + [anon_sym___restrict__] = ACTIONS(1334), + [anon_sym__Atomic] = ACTIONS(1334), + [anon_sym__Noreturn] = ACTIONS(1334), + [anon_sym_noreturn] = ACTIONS(1334), + [sym_primitive_type] = ACTIONS(1334), + [anon_sym_enum] = ACTIONS(1334), + [anon_sym_struct] = ACTIONS(1334), + [anon_sym_union] = ACTIONS(1334), + [anon_sym_if] = ACTIONS(1334), + [anon_sym_else] = ACTIONS(1334), + [anon_sym_switch] = ACTIONS(1334), + [anon_sym_case] = ACTIONS(1334), + [anon_sym_default] = ACTIONS(1334), + [anon_sym_while] = ACTIONS(1334), + [anon_sym_do] = ACTIONS(1334), + [anon_sym_for] = ACTIONS(1334), + [anon_sym_return] = ACTIONS(1334), + [anon_sym_break] = ACTIONS(1334), + [anon_sym_continue] = ACTIONS(1334), + [anon_sym_goto] = ACTIONS(1334), + [anon_sym___try] = ACTIONS(1334), + [anon_sym___leave] = ACTIONS(1334), + [anon_sym_DASH_DASH] = ACTIONS(1332), + [anon_sym_PLUS_PLUS] = ACTIONS(1332), + [anon_sym_sizeof] = ACTIONS(1334), + [anon_sym___alignof__] = ACTIONS(1334), + [anon_sym___alignof] = ACTIONS(1334), + [anon_sym__alignof] = ACTIONS(1334), + [anon_sym_alignof] = ACTIONS(1334), + [anon_sym__Alignof] = ACTIONS(1334), + [anon_sym_offsetof] = ACTIONS(1334), + [anon_sym__Generic] = ACTIONS(1334), + [anon_sym_asm] = ACTIONS(1334), + [anon_sym___asm__] = ACTIONS(1334), + [sym_number_literal] = ACTIONS(1332), + [anon_sym_L_SQUOTE] = ACTIONS(1332), + [anon_sym_u_SQUOTE] = ACTIONS(1332), + [anon_sym_U_SQUOTE] = ACTIONS(1332), + [anon_sym_u8_SQUOTE] = ACTIONS(1332), + [anon_sym_SQUOTE] = ACTIONS(1332), + [anon_sym_L_DQUOTE] = ACTIONS(1332), + [anon_sym_u_DQUOTE] = ACTIONS(1332), + [anon_sym_U_DQUOTE] = ACTIONS(1332), + [anon_sym_u8_DQUOTE] = ACTIONS(1332), + [anon_sym_DQUOTE] = ACTIONS(1332), + [sym_true] = ACTIONS(1334), + [sym_false] = ACTIONS(1334), + [anon_sym_NULL] = ACTIONS(1334), + [anon_sym_nullptr] = ACTIONS(1334), [sym_comment] = ACTIONS(3), }, [333] = { - [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_LBRACK_LBRACK] = ACTIONS(1315), - [anon_sym___declspec] = 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), - [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_else] = 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), + [ts_builtin_sym_end] = ACTIONS(1322), + [sym_identifier] = ACTIONS(1320), + [aux_sym_preproc_include_token1] = ACTIONS(1320), + [aux_sym_preproc_def_token1] = ACTIONS(1320), + [aux_sym_preproc_if_token1] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1320), + [sym_preproc_directive] = ACTIONS(1320), + [anon_sym_LPAREN2] = ACTIONS(1322), + [anon_sym_BANG] = ACTIONS(1322), + [anon_sym_TILDE] = ACTIONS(1322), + [anon_sym_DASH] = ACTIONS(1320), + [anon_sym_PLUS] = ACTIONS(1320), + [anon_sym_STAR] = ACTIONS(1322), + [anon_sym_AMP] = ACTIONS(1322), + [anon_sym_SEMI] = ACTIONS(1322), + [anon_sym___extension__] = ACTIONS(1320), + [anon_sym_typedef] = ACTIONS(1320), + [anon_sym_extern] = ACTIONS(1320), + [anon_sym___attribute__] = ACTIONS(1320), + [anon_sym___scanf] = ACTIONS(1320), + [anon_sym___printf] = ACTIONS(1320), + [anon_sym___read_mostly] = ACTIONS(1320), + [anon_sym___must_hold] = ACTIONS(1320), + [anon_sym___ro_after_init] = ACTIONS(1320), + [anon_sym___init] = ACTIONS(1320), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1322), + [anon_sym___declspec] = ACTIONS(1320), + [anon_sym___cdecl] = ACTIONS(1320), + [anon_sym___clrcall] = ACTIONS(1320), + [anon_sym___stdcall] = ACTIONS(1320), + [anon_sym___fastcall] = ACTIONS(1320), + [anon_sym___thiscall] = ACTIONS(1320), + [anon_sym___vectorcall] = ACTIONS(1320), + [anon_sym_LBRACE] = ACTIONS(1322), + [anon_sym_signed] = ACTIONS(1320), + [anon_sym_unsigned] = ACTIONS(1320), + [anon_sym_long] = ACTIONS(1320), + [anon_sym_short] = ACTIONS(1320), + [anon_sym_static] = ACTIONS(1320), + [anon_sym_auto] = ACTIONS(1320), + [anon_sym_register] = ACTIONS(1320), + [anon_sym_inline] = ACTIONS(1320), + [anon_sym___inline] = ACTIONS(1320), + [anon_sym___inline__] = ACTIONS(1320), + [anon_sym___forceinline] = ACTIONS(1320), + [anon_sym_thread_local] = ACTIONS(1320), + [anon_sym___thread] = ACTIONS(1320), + [anon_sym_const] = ACTIONS(1320), + [anon_sym_constexpr] = ACTIONS(1320), + [anon_sym_volatile] = ACTIONS(1320), + [anon_sym_restrict] = ACTIONS(1320), + [anon_sym___restrict__] = ACTIONS(1320), + [anon_sym__Atomic] = ACTIONS(1320), + [anon_sym__Noreturn] = ACTIONS(1320), + [anon_sym_noreturn] = ACTIONS(1320), + [sym_primitive_type] = ACTIONS(1320), + [anon_sym_enum] = ACTIONS(1320), + [anon_sym_struct] = ACTIONS(1320), + [anon_sym_union] = ACTIONS(1320), + [anon_sym_if] = ACTIONS(1320), + [anon_sym_else] = ACTIONS(1320), + [anon_sym_switch] = ACTIONS(1320), + [anon_sym_case] = ACTIONS(1320), + [anon_sym_default] = ACTIONS(1320), + [anon_sym_while] = ACTIONS(1320), + [anon_sym_do] = ACTIONS(1320), + [anon_sym_for] = ACTIONS(1320), + [anon_sym_return] = ACTIONS(1320), + [anon_sym_break] = ACTIONS(1320), + [anon_sym_continue] = ACTIONS(1320), + [anon_sym_goto] = ACTIONS(1320), + [anon_sym___try] = ACTIONS(1320), + [anon_sym___leave] = ACTIONS(1320), + [anon_sym_DASH_DASH] = ACTIONS(1322), + [anon_sym_PLUS_PLUS] = ACTIONS(1322), + [anon_sym_sizeof] = ACTIONS(1320), + [anon_sym___alignof__] = ACTIONS(1320), + [anon_sym___alignof] = ACTIONS(1320), + [anon_sym__alignof] = ACTIONS(1320), + [anon_sym_alignof] = ACTIONS(1320), + [anon_sym__Alignof] = ACTIONS(1320), + [anon_sym_offsetof] = ACTIONS(1320), + [anon_sym__Generic] = ACTIONS(1320), + [anon_sym_asm] = ACTIONS(1320), + [anon_sym___asm__] = ACTIONS(1320), + [sym_number_literal] = ACTIONS(1322), + [anon_sym_L_SQUOTE] = ACTIONS(1322), + [anon_sym_u_SQUOTE] = ACTIONS(1322), + [anon_sym_U_SQUOTE] = ACTIONS(1322), + [anon_sym_u8_SQUOTE] = ACTIONS(1322), + [anon_sym_SQUOTE] = ACTIONS(1322), + [anon_sym_L_DQUOTE] = ACTIONS(1322), + [anon_sym_u_DQUOTE] = ACTIONS(1322), + [anon_sym_U_DQUOTE] = ACTIONS(1322), + [anon_sym_u8_DQUOTE] = ACTIONS(1322), + [anon_sym_DQUOTE] = ACTIONS(1322), + [sym_true] = ACTIONS(1320), + [sym_false] = ACTIONS(1320), + [anon_sym_NULL] = ACTIONS(1320), + [anon_sym_nullptr] = ACTIONS(1320), [sym_comment] = ACTIONS(3), }, [334] = { - [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_LBRACK_LBRACK] = ACTIONS(1315), - [anon_sym___declspec] = 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), - [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_else] = 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_identifier] = ACTIONS(1388), + [aux_sym_preproc_include_token1] = ACTIONS(1388), + [aux_sym_preproc_def_token1] = ACTIONS(1388), + [aux_sym_preproc_if_token1] = ACTIONS(1388), + [aux_sym_preproc_if_token2] = ACTIONS(1388), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1388), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1388), + [sym_preproc_directive] = ACTIONS(1388), + [anon_sym_LPAREN2] = ACTIONS(1390), + [anon_sym_BANG] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1390), + [anon_sym_DASH] = ACTIONS(1388), + [anon_sym_PLUS] = ACTIONS(1388), + [anon_sym_STAR] = ACTIONS(1390), + [anon_sym_AMP] = ACTIONS(1390), + [anon_sym_SEMI] = ACTIONS(1390), + [anon_sym___extension__] = ACTIONS(1388), + [anon_sym_typedef] = ACTIONS(1388), + [anon_sym_extern] = ACTIONS(1388), + [anon_sym___attribute__] = ACTIONS(1388), + [anon_sym___scanf] = ACTIONS(1388), + [anon_sym___printf] = ACTIONS(1388), + [anon_sym___read_mostly] = ACTIONS(1388), + [anon_sym___must_hold] = ACTIONS(1388), + [anon_sym___ro_after_init] = ACTIONS(1388), + [anon_sym___init] = ACTIONS(1388), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1390), + [anon_sym___declspec] = ACTIONS(1388), + [anon_sym___cdecl] = ACTIONS(1388), + [anon_sym___clrcall] = ACTIONS(1388), + [anon_sym___stdcall] = ACTIONS(1388), + [anon_sym___fastcall] = ACTIONS(1388), + [anon_sym___thiscall] = ACTIONS(1388), + [anon_sym___vectorcall] = ACTIONS(1388), + [anon_sym_LBRACE] = ACTIONS(1390), + [anon_sym_signed] = ACTIONS(1388), + [anon_sym_unsigned] = ACTIONS(1388), + [anon_sym_long] = ACTIONS(1388), + [anon_sym_short] = ACTIONS(1388), + [anon_sym_static] = ACTIONS(1388), + [anon_sym_auto] = ACTIONS(1388), + [anon_sym_register] = ACTIONS(1388), + [anon_sym_inline] = ACTIONS(1388), + [anon_sym___inline] = ACTIONS(1388), + [anon_sym___inline__] = ACTIONS(1388), + [anon_sym___forceinline] = ACTIONS(1388), + [anon_sym_thread_local] = ACTIONS(1388), + [anon_sym___thread] = ACTIONS(1388), + [anon_sym_const] = ACTIONS(1388), + [anon_sym_constexpr] = ACTIONS(1388), + [anon_sym_volatile] = ACTIONS(1388), + [anon_sym_restrict] = ACTIONS(1388), + [anon_sym___restrict__] = ACTIONS(1388), + [anon_sym__Atomic] = ACTIONS(1388), + [anon_sym__Noreturn] = ACTIONS(1388), + [anon_sym_noreturn] = ACTIONS(1388), + [sym_primitive_type] = ACTIONS(1388), + [anon_sym_enum] = ACTIONS(1388), + [anon_sym_struct] = ACTIONS(1388), + [anon_sym_union] = ACTIONS(1388), + [anon_sym_if] = ACTIONS(1388), + [anon_sym_else] = ACTIONS(1388), + [anon_sym_switch] = ACTIONS(1388), + [anon_sym_case] = ACTIONS(1388), + [anon_sym_default] = ACTIONS(1388), + [anon_sym_while] = ACTIONS(1388), + [anon_sym_do] = ACTIONS(1388), + [anon_sym_for] = ACTIONS(1388), + [anon_sym_return] = ACTIONS(1388), + [anon_sym_break] = ACTIONS(1388), + [anon_sym_continue] = ACTIONS(1388), + [anon_sym_goto] = ACTIONS(1388), + [anon_sym___try] = ACTIONS(1388), + [anon_sym___leave] = ACTIONS(1388), + [anon_sym_DASH_DASH] = ACTIONS(1390), + [anon_sym_PLUS_PLUS] = ACTIONS(1390), + [anon_sym_sizeof] = ACTIONS(1388), + [anon_sym___alignof__] = ACTIONS(1388), + [anon_sym___alignof] = ACTIONS(1388), + [anon_sym__alignof] = ACTIONS(1388), + [anon_sym_alignof] = ACTIONS(1388), + [anon_sym__Alignof] = ACTIONS(1388), + [anon_sym_offsetof] = ACTIONS(1388), + [anon_sym__Generic] = ACTIONS(1388), + [anon_sym_asm] = ACTIONS(1388), + [anon_sym___asm__] = ACTIONS(1388), + [sym_number_literal] = ACTIONS(1390), + [anon_sym_L_SQUOTE] = ACTIONS(1390), + [anon_sym_u_SQUOTE] = ACTIONS(1390), + [anon_sym_U_SQUOTE] = ACTIONS(1390), + [anon_sym_u8_SQUOTE] = ACTIONS(1390), + [anon_sym_SQUOTE] = ACTIONS(1390), + [anon_sym_L_DQUOTE] = ACTIONS(1390), + [anon_sym_u_DQUOTE] = ACTIONS(1390), + [anon_sym_U_DQUOTE] = ACTIONS(1390), + [anon_sym_u8_DQUOTE] = ACTIONS(1390), + [anon_sym_DQUOTE] = ACTIONS(1390), + [sym_true] = ACTIONS(1388), + [sym_false] = ACTIONS(1388), + [anon_sym_NULL] = ACTIONS(1388), + [anon_sym_nullptr] = ACTIONS(1388), [sym_comment] = ACTIONS(3), }, [335] = { - [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_LBRACK_LBRACK] = ACTIONS(1379), - [anon_sym___declspec] = 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), - [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_else] = 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_identifier] = ACTIONS(1360), + [aux_sym_preproc_include_token1] = ACTIONS(1360), + [aux_sym_preproc_def_token1] = ACTIONS(1360), + [aux_sym_preproc_if_token1] = ACTIONS(1360), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1360), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1360), + [sym_preproc_directive] = ACTIONS(1360), + [anon_sym_LPAREN2] = ACTIONS(1362), + [anon_sym_BANG] = ACTIONS(1362), + [anon_sym_TILDE] = ACTIONS(1362), + [anon_sym_DASH] = ACTIONS(1360), + [anon_sym_PLUS] = ACTIONS(1360), + [anon_sym_STAR] = ACTIONS(1362), + [anon_sym_AMP] = ACTIONS(1362), + [anon_sym_SEMI] = ACTIONS(1362), + [anon_sym___extension__] = ACTIONS(1360), + [anon_sym_typedef] = ACTIONS(1360), + [anon_sym_extern] = ACTIONS(1360), + [anon_sym___attribute__] = ACTIONS(1360), + [anon_sym___scanf] = ACTIONS(1360), + [anon_sym___printf] = ACTIONS(1360), + [anon_sym___read_mostly] = ACTIONS(1360), + [anon_sym___must_hold] = ACTIONS(1360), + [anon_sym___ro_after_init] = ACTIONS(1360), + [anon_sym___init] = ACTIONS(1360), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1362), + [anon_sym___declspec] = ACTIONS(1360), + [anon_sym___cdecl] = ACTIONS(1360), + [anon_sym___clrcall] = ACTIONS(1360), + [anon_sym___stdcall] = ACTIONS(1360), + [anon_sym___fastcall] = ACTIONS(1360), + [anon_sym___thiscall] = ACTIONS(1360), + [anon_sym___vectorcall] = ACTIONS(1360), + [anon_sym_LBRACE] = ACTIONS(1362), + [anon_sym_RBRACE] = ACTIONS(1362), + [anon_sym_signed] = ACTIONS(1360), + [anon_sym_unsigned] = ACTIONS(1360), + [anon_sym_long] = ACTIONS(1360), + [anon_sym_short] = ACTIONS(1360), + [anon_sym_static] = ACTIONS(1360), + [anon_sym_auto] = ACTIONS(1360), + [anon_sym_register] = ACTIONS(1360), + [anon_sym_inline] = ACTIONS(1360), + [anon_sym___inline] = ACTIONS(1360), + [anon_sym___inline__] = ACTIONS(1360), + [anon_sym___forceinline] = ACTIONS(1360), + [anon_sym_thread_local] = ACTIONS(1360), + [anon_sym___thread] = ACTIONS(1360), + [anon_sym_const] = ACTIONS(1360), + [anon_sym_constexpr] = ACTIONS(1360), + [anon_sym_volatile] = ACTIONS(1360), + [anon_sym_restrict] = ACTIONS(1360), + [anon_sym___restrict__] = ACTIONS(1360), + [anon_sym__Atomic] = ACTIONS(1360), + [anon_sym__Noreturn] = ACTIONS(1360), + [anon_sym_noreturn] = ACTIONS(1360), + [sym_primitive_type] = ACTIONS(1360), + [anon_sym_enum] = ACTIONS(1360), + [anon_sym_struct] = ACTIONS(1360), + [anon_sym_union] = ACTIONS(1360), + [anon_sym_if] = ACTIONS(1360), + [anon_sym_else] = ACTIONS(1360), + [anon_sym_switch] = ACTIONS(1360), + [anon_sym_case] = ACTIONS(1360), + [anon_sym_default] = ACTIONS(1360), + [anon_sym_while] = ACTIONS(1360), + [anon_sym_do] = ACTIONS(1360), + [anon_sym_for] = ACTIONS(1360), + [anon_sym_return] = ACTIONS(1360), + [anon_sym_break] = ACTIONS(1360), + [anon_sym_continue] = ACTIONS(1360), + [anon_sym_goto] = ACTIONS(1360), + [anon_sym___try] = ACTIONS(1360), + [anon_sym___leave] = ACTIONS(1360), + [anon_sym_DASH_DASH] = ACTIONS(1362), + [anon_sym_PLUS_PLUS] = ACTIONS(1362), + [anon_sym_sizeof] = ACTIONS(1360), + [anon_sym___alignof__] = ACTIONS(1360), + [anon_sym___alignof] = ACTIONS(1360), + [anon_sym__alignof] = ACTIONS(1360), + [anon_sym_alignof] = ACTIONS(1360), + [anon_sym__Alignof] = ACTIONS(1360), + [anon_sym_offsetof] = ACTIONS(1360), + [anon_sym__Generic] = ACTIONS(1360), + [anon_sym_asm] = ACTIONS(1360), + [anon_sym___asm__] = ACTIONS(1360), + [sym_number_literal] = ACTIONS(1362), + [anon_sym_L_SQUOTE] = ACTIONS(1362), + [anon_sym_u_SQUOTE] = ACTIONS(1362), + [anon_sym_U_SQUOTE] = ACTIONS(1362), + [anon_sym_u8_SQUOTE] = ACTIONS(1362), + [anon_sym_SQUOTE] = ACTIONS(1362), + [anon_sym_L_DQUOTE] = ACTIONS(1362), + [anon_sym_u_DQUOTE] = ACTIONS(1362), + [anon_sym_U_DQUOTE] = ACTIONS(1362), + [anon_sym_u8_DQUOTE] = ACTIONS(1362), + [anon_sym_DQUOTE] = ACTIONS(1362), + [sym_true] = ACTIONS(1360), + [sym_false] = ACTIONS(1360), + [anon_sym_NULL] = ACTIONS(1360), + [anon_sym_nullptr] = ACTIONS(1360), [sym_comment] = ACTIONS(3), }, [336] = { - [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_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_LBRACK_LBRACK] = ACTIONS(1375), - [anon_sym___declspec] = 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), - [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_else] = 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_identifier] = ACTIONS(1392), + [aux_sym_preproc_include_token1] = ACTIONS(1392), + [aux_sym_preproc_def_token1] = ACTIONS(1392), + [aux_sym_preproc_if_token1] = ACTIONS(1392), + [aux_sym_preproc_if_token2] = ACTIONS(1392), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1392), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1392), + [sym_preproc_directive] = ACTIONS(1392), + [anon_sym_LPAREN2] = ACTIONS(1394), + [anon_sym_BANG] = ACTIONS(1394), + [anon_sym_TILDE] = ACTIONS(1394), + [anon_sym_DASH] = ACTIONS(1392), + [anon_sym_PLUS] = ACTIONS(1392), + [anon_sym_STAR] = ACTIONS(1394), + [anon_sym_AMP] = ACTIONS(1394), + [anon_sym_SEMI] = ACTIONS(1394), + [anon_sym___extension__] = ACTIONS(1392), + [anon_sym_typedef] = ACTIONS(1392), + [anon_sym_extern] = ACTIONS(1392), + [anon_sym___attribute__] = ACTIONS(1392), + [anon_sym___scanf] = ACTIONS(1392), + [anon_sym___printf] = ACTIONS(1392), + [anon_sym___read_mostly] = ACTIONS(1392), + [anon_sym___must_hold] = ACTIONS(1392), + [anon_sym___ro_after_init] = ACTIONS(1392), + [anon_sym___init] = ACTIONS(1392), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1394), + [anon_sym___declspec] = ACTIONS(1392), + [anon_sym___cdecl] = ACTIONS(1392), + [anon_sym___clrcall] = ACTIONS(1392), + [anon_sym___stdcall] = ACTIONS(1392), + [anon_sym___fastcall] = ACTIONS(1392), + [anon_sym___thiscall] = ACTIONS(1392), + [anon_sym___vectorcall] = ACTIONS(1392), + [anon_sym_LBRACE] = ACTIONS(1394), + [anon_sym_signed] = ACTIONS(1392), + [anon_sym_unsigned] = ACTIONS(1392), + [anon_sym_long] = ACTIONS(1392), + [anon_sym_short] = ACTIONS(1392), + [anon_sym_static] = ACTIONS(1392), + [anon_sym_auto] = ACTIONS(1392), + [anon_sym_register] = ACTIONS(1392), + [anon_sym_inline] = ACTIONS(1392), + [anon_sym___inline] = ACTIONS(1392), + [anon_sym___inline__] = ACTIONS(1392), + [anon_sym___forceinline] = ACTIONS(1392), + [anon_sym_thread_local] = ACTIONS(1392), + [anon_sym___thread] = ACTIONS(1392), + [anon_sym_const] = ACTIONS(1392), + [anon_sym_constexpr] = ACTIONS(1392), + [anon_sym_volatile] = ACTIONS(1392), + [anon_sym_restrict] = ACTIONS(1392), + [anon_sym___restrict__] = ACTIONS(1392), + [anon_sym__Atomic] = ACTIONS(1392), + [anon_sym__Noreturn] = ACTIONS(1392), + [anon_sym_noreturn] = ACTIONS(1392), + [sym_primitive_type] = ACTIONS(1392), + [anon_sym_enum] = ACTIONS(1392), + [anon_sym_struct] = ACTIONS(1392), + [anon_sym_union] = ACTIONS(1392), + [anon_sym_if] = ACTIONS(1392), + [anon_sym_else] = ACTIONS(1392), + [anon_sym_switch] = ACTIONS(1392), + [anon_sym_case] = ACTIONS(1392), + [anon_sym_default] = ACTIONS(1392), + [anon_sym_while] = ACTIONS(1392), + [anon_sym_do] = ACTIONS(1392), + [anon_sym_for] = ACTIONS(1392), + [anon_sym_return] = ACTIONS(1392), + [anon_sym_break] = ACTIONS(1392), + [anon_sym_continue] = ACTIONS(1392), + [anon_sym_goto] = ACTIONS(1392), + [anon_sym___try] = ACTIONS(1392), + [anon_sym___leave] = ACTIONS(1392), + [anon_sym_DASH_DASH] = ACTIONS(1394), + [anon_sym_PLUS_PLUS] = ACTIONS(1394), + [anon_sym_sizeof] = ACTIONS(1392), + [anon_sym___alignof__] = ACTIONS(1392), + [anon_sym___alignof] = ACTIONS(1392), + [anon_sym__alignof] = ACTIONS(1392), + [anon_sym_alignof] = ACTIONS(1392), + [anon_sym__Alignof] = ACTIONS(1392), + [anon_sym_offsetof] = ACTIONS(1392), + [anon_sym__Generic] = ACTIONS(1392), + [anon_sym_asm] = ACTIONS(1392), + [anon_sym___asm__] = ACTIONS(1392), + [sym_number_literal] = ACTIONS(1394), + [anon_sym_L_SQUOTE] = ACTIONS(1394), + [anon_sym_u_SQUOTE] = ACTIONS(1394), + [anon_sym_U_SQUOTE] = ACTIONS(1394), + [anon_sym_u8_SQUOTE] = ACTIONS(1394), + [anon_sym_SQUOTE] = ACTIONS(1394), + [anon_sym_L_DQUOTE] = ACTIONS(1394), + [anon_sym_u_DQUOTE] = ACTIONS(1394), + [anon_sym_U_DQUOTE] = ACTIONS(1394), + [anon_sym_u8_DQUOTE] = ACTIONS(1394), + [anon_sym_DQUOTE] = ACTIONS(1394), + [sym_true] = ACTIONS(1392), + [sym_false] = ACTIONS(1392), + [anon_sym_NULL] = ACTIONS(1392), + [anon_sym_nullptr] = ACTIONS(1392), [sym_comment] = ACTIONS(3), }, [337] = { - [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_LBRACK_LBRACK] = ACTIONS(1387), - [anon_sym___declspec] = 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), - [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_else] = 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_identifier] = ACTIONS(1388), + [aux_sym_preproc_include_token1] = ACTIONS(1388), + [aux_sym_preproc_def_token1] = ACTIONS(1388), + [aux_sym_preproc_if_token1] = ACTIONS(1388), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1388), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1388), + [sym_preproc_directive] = ACTIONS(1388), + [anon_sym_LPAREN2] = ACTIONS(1390), + [anon_sym_BANG] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1390), + [anon_sym_DASH] = ACTIONS(1388), + [anon_sym_PLUS] = ACTIONS(1388), + [anon_sym_STAR] = ACTIONS(1390), + [anon_sym_AMP] = ACTIONS(1390), + [anon_sym_SEMI] = ACTIONS(1390), + [anon_sym___extension__] = ACTIONS(1388), + [anon_sym_typedef] = ACTIONS(1388), + [anon_sym_extern] = ACTIONS(1388), + [anon_sym___attribute__] = ACTIONS(1388), + [anon_sym___scanf] = ACTIONS(1388), + [anon_sym___printf] = ACTIONS(1388), + [anon_sym___read_mostly] = ACTIONS(1388), + [anon_sym___must_hold] = ACTIONS(1388), + [anon_sym___ro_after_init] = ACTIONS(1388), + [anon_sym___init] = ACTIONS(1388), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1390), + [anon_sym___declspec] = ACTIONS(1388), + [anon_sym___cdecl] = ACTIONS(1388), + [anon_sym___clrcall] = ACTIONS(1388), + [anon_sym___stdcall] = ACTIONS(1388), + [anon_sym___fastcall] = ACTIONS(1388), + [anon_sym___thiscall] = ACTIONS(1388), + [anon_sym___vectorcall] = ACTIONS(1388), + [anon_sym_LBRACE] = ACTIONS(1390), + [anon_sym_RBRACE] = ACTIONS(1390), + [anon_sym_signed] = ACTIONS(1388), + [anon_sym_unsigned] = ACTIONS(1388), + [anon_sym_long] = ACTIONS(1388), + [anon_sym_short] = ACTIONS(1388), + [anon_sym_static] = ACTIONS(1388), + [anon_sym_auto] = ACTIONS(1388), + [anon_sym_register] = ACTIONS(1388), + [anon_sym_inline] = ACTIONS(1388), + [anon_sym___inline] = ACTIONS(1388), + [anon_sym___inline__] = ACTIONS(1388), + [anon_sym___forceinline] = ACTIONS(1388), + [anon_sym_thread_local] = ACTIONS(1388), + [anon_sym___thread] = ACTIONS(1388), + [anon_sym_const] = ACTIONS(1388), + [anon_sym_constexpr] = ACTIONS(1388), + [anon_sym_volatile] = ACTIONS(1388), + [anon_sym_restrict] = ACTIONS(1388), + [anon_sym___restrict__] = ACTIONS(1388), + [anon_sym__Atomic] = ACTIONS(1388), + [anon_sym__Noreturn] = ACTIONS(1388), + [anon_sym_noreturn] = ACTIONS(1388), + [sym_primitive_type] = ACTIONS(1388), + [anon_sym_enum] = ACTIONS(1388), + [anon_sym_struct] = ACTIONS(1388), + [anon_sym_union] = ACTIONS(1388), + [anon_sym_if] = ACTIONS(1388), + [anon_sym_else] = ACTIONS(1388), + [anon_sym_switch] = ACTIONS(1388), + [anon_sym_case] = ACTIONS(1388), + [anon_sym_default] = ACTIONS(1388), + [anon_sym_while] = ACTIONS(1388), + [anon_sym_do] = ACTIONS(1388), + [anon_sym_for] = ACTIONS(1388), + [anon_sym_return] = ACTIONS(1388), + [anon_sym_break] = ACTIONS(1388), + [anon_sym_continue] = ACTIONS(1388), + [anon_sym_goto] = ACTIONS(1388), + [anon_sym___try] = ACTIONS(1388), + [anon_sym___leave] = ACTIONS(1388), + [anon_sym_DASH_DASH] = ACTIONS(1390), + [anon_sym_PLUS_PLUS] = ACTIONS(1390), + [anon_sym_sizeof] = ACTIONS(1388), + [anon_sym___alignof__] = ACTIONS(1388), + [anon_sym___alignof] = ACTIONS(1388), + [anon_sym__alignof] = ACTIONS(1388), + [anon_sym_alignof] = ACTIONS(1388), + [anon_sym__Alignof] = ACTIONS(1388), + [anon_sym_offsetof] = ACTIONS(1388), + [anon_sym__Generic] = ACTIONS(1388), + [anon_sym_asm] = ACTIONS(1388), + [anon_sym___asm__] = ACTIONS(1388), + [sym_number_literal] = ACTIONS(1390), + [anon_sym_L_SQUOTE] = ACTIONS(1390), + [anon_sym_u_SQUOTE] = ACTIONS(1390), + [anon_sym_U_SQUOTE] = ACTIONS(1390), + [anon_sym_u8_SQUOTE] = ACTIONS(1390), + [anon_sym_SQUOTE] = ACTIONS(1390), + [anon_sym_L_DQUOTE] = ACTIONS(1390), + [anon_sym_u_DQUOTE] = ACTIONS(1390), + [anon_sym_U_DQUOTE] = ACTIONS(1390), + [anon_sym_u8_DQUOTE] = ACTIONS(1390), + [anon_sym_DQUOTE] = ACTIONS(1390), + [sym_true] = ACTIONS(1388), + [sym_false] = ACTIONS(1388), + [anon_sym_NULL] = ACTIONS(1388), + [anon_sym_nullptr] = ACTIONS(1388), [sym_comment] = ACTIONS(3), }, [338] = { - [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_LBRACK_LBRACK] = ACTIONS(1367), - [anon_sym___declspec] = 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), - [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_else] = 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_identifier] = ACTIONS(1384), + [aux_sym_preproc_include_token1] = ACTIONS(1384), + [aux_sym_preproc_def_token1] = ACTIONS(1384), + [aux_sym_preproc_if_token1] = ACTIONS(1384), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1384), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1384), + [sym_preproc_directive] = ACTIONS(1384), + [anon_sym_LPAREN2] = ACTIONS(1386), + [anon_sym_BANG] = ACTIONS(1386), + [anon_sym_TILDE] = ACTIONS(1386), + [anon_sym_DASH] = ACTIONS(1384), + [anon_sym_PLUS] = ACTIONS(1384), + [anon_sym_STAR] = ACTIONS(1386), + [anon_sym_AMP] = ACTIONS(1386), + [anon_sym_SEMI] = ACTIONS(1386), + [anon_sym___extension__] = ACTIONS(1384), + [anon_sym_typedef] = ACTIONS(1384), + [anon_sym_extern] = ACTIONS(1384), + [anon_sym___attribute__] = ACTIONS(1384), + [anon_sym___scanf] = ACTIONS(1384), + [anon_sym___printf] = ACTIONS(1384), + [anon_sym___read_mostly] = ACTIONS(1384), + [anon_sym___must_hold] = ACTIONS(1384), + [anon_sym___ro_after_init] = ACTIONS(1384), + [anon_sym___init] = ACTIONS(1384), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1386), + [anon_sym___declspec] = ACTIONS(1384), + [anon_sym___cdecl] = ACTIONS(1384), + [anon_sym___clrcall] = ACTIONS(1384), + [anon_sym___stdcall] = ACTIONS(1384), + [anon_sym___fastcall] = ACTIONS(1384), + [anon_sym___thiscall] = ACTIONS(1384), + [anon_sym___vectorcall] = ACTIONS(1384), + [anon_sym_LBRACE] = ACTIONS(1386), + [anon_sym_RBRACE] = ACTIONS(1386), + [anon_sym_signed] = ACTIONS(1384), + [anon_sym_unsigned] = ACTIONS(1384), + [anon_sym_long] = ACTIONS(1384), + [anon_sym_short] = ACTIONS(1384), + [anon_sym_static] = ACTIONS(1384), + [anon_sym_auto] = ACTIONS(1384), + [anon_sym_register] = ACTIONS(1384), + [anon_sym_inline] = ACTIONS(1384), + [anon_sym___inline] = ACTIONS(1384), + [anon_sym___inline__] = ACTIONS(1384), + [anon_sym___forceinline] = ACTIONS(1384), + [anon_sym_thread_local] = ACTIONS(1384), + [anon_sym___thread] = ACTIONS(1384), + [anon_sym_const] = ACTIONS(1384), + [anon_sym_constexpr] = ACTIONS(1384), + [anon_sym_volatile] = ACTIONS(1384), + [anon_sym_restrict] = ACTIONS(1384), + [anon_sym___restrict__] = ACTIONS(1384), + [anon_sym__Atomic] = ACTIONS(1384), + [anon_sym__Noreturn] = ACTIONS(1384), + [anon_sym_noreturn] = ACTIONS(1384), + [sym_primitive_type] = ACTIONS(1384), + [anon_sym_enum] = ACTIONS(1384), + [anon_sym_struct] = ACTIONS(1384), + [anon_sym_union] = ACTIONS(1384), + [anon_sym_if] = ACTIONS(1384), + [anon_sym_else] = ACTIONS(1384), + [anon_sym_switch] = ACTIONS(1384), + [anon_sym_case] = ACTIONS(1384), + [anon_sym_default] = ACTIONS(1384), + [anon_sym_while] = ACTIONS(1384), + [anon_sym_do] = ACTIONS(1384), + [anon_sym_for] = ACTIONS(1384), + [anon_sym_return] = ACTIONS(1384), + [anon_sym_break] = ACTIONS(1384), + [anon_sym_continue] = ACTIONS(1384), + [anon_sym_goto] = ACTIONS(1384), + [anon_sym___try] = ACTIONS(1384), + [anon_sym___leave] = ACTIONS(1384), + [anon_sym_DASH_DASH] = ACTIONS(1386), + [anon_sym_PLUS_PLUS] = ACTIONS(1386), + [anon_sym_sizeof] = ACTIONS(1384), + [anon_sym___alignof__] = ACTIONS(1384), + [anon_sym___alignof] = ACTIONS(1384), + [anon_sym__alignof] = ACTIONS(1384), + [anon_sym_alignof] = ACTIONS(1384), + [anon_sym__Alignof] = ACTIONS(1384), + [anon_sym_offsetof] = ACTIONS(1384), + [anon_sym__Generic] = ACTIONS(1384), + [anon_sym_asm] = ACTIONS(1384), + [anon_sym___asm__] = ACTIONS(1384), + [sym_number_literal] = ACTIONS(1386), + [anon_sym_L_SQUOTE] = ACTIONS(1386), + [anon_sym_u_SQUOTE] = ACTIONS(1386), + [anon_sym_U_SQUOTE] = ACTIONS(1386), + [anon_sym_u8_SQUOTE] = ACTIONS(1386), + [anon_sym_SQUOTE] = ACTIONS(1386), + [anon_sym_L_DQUOTE] = ACTIONS(1386), + [anon_sym_u_DQUOTE] = ACTIONS(1386), + [anon_sym_U_DQUOTE] = ACTIONS(1386), + [anon_sym_u8_DQUOTE] = ACTIONS(1386), + [anon_sym_DQUOTE] = ACTIONS(1386), + [sym_true] = ACTIONS(1384), + [sym_false] = ACTIONS(1384), + [anon_sym_NULL] = ACTIONS(1384), + [anon_sym_nullptr] = ACTIONS(1384), [sym_comment] = ACTIONS(3), }, [339] = { - [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_LBRACK_LBRACK] = ACTIONS(1383), - [anon_sym___declspec] = 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), - [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_else] = 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_identifier] = ACTIONS(1396), + [aux_sym_preproc_include_token1] = ACTIONS(1396), + [aux_sym_preproc_def_token1] = ACTIONS(1396), + [aux_sym_preproc_if_token1] = ACTIONS(1396), + [aux_sym_preproc_if_token2] = ACTIONS(1396), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1396), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1396), + [sym_preproc_directive] = ACTIONS(1396), + [anon_sym_LPAREN2] = ACTIONS(1398), + [anon_sym_BANG] = ACTIONS(1398), + [anon_sym_TILDE] = ACTIONS(1398), + [anon_sym_DASH] = ACTIONS(1396), + [anon_sym_PLUS] = ACTIONS(1396), + [anon_sym_STAR] = ACTIONS(1398), + [anon_sym_AMP] = ACTIONS(1398), + [anon_sym_SEMI] = ACTIONS(1398), + [anon_sym___extension__] = ACTIONS(1396), + [anon_sym_typedef] = ACTIONS(1396), + [anon_sym_extern] = ACTIONS(1396), + [anon_sym___attribute__] = ACTIONS(1396), + [anon_sym___scanf] = ACTIONS(1396), + [anon_sym___printf] = ACTIONS(1396), + [anon_sym___read_mostly] = ACTIONS(1396), + [anon_sym___must_hold] = ACTIONS(1396), + [anon_sym___ro_after_init] = ACTIONS(1396), + [anon_sym___init] = ACTIONS(1396), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1398), + [anon_sym___declspec] = ACTIONS(1396), + [anon_sym___cdecl] = ACTIONS(1396), + [anon_sym___clrcall] = ACTIONS(1396), + [anon_sym___stdcall] = ACTIONS(1396), + [anon_sym___fastcall] = ACTIONS(1396), + [anon_sym___thiscall] = ACTIONS(1396), + [anon_sym___vectorcall] = ACTIONS(1396), + [anon_sym_LBRACE] = ACTIONS(1398), + [anon_sym_signed] = ACTIONS(1396), + [anon_sym_unsigned] = ACTIONS(1396), + [anon_sym_long] = ACTIONS(1396), + [anon_sym_short] = ACTIONS(1396), + [anon_sym_static] = ACTIONS(1396), + [anon_sym_auto] = ACTIONS(1396), + [anon_sym_register] = ACTIONS(1396), + [anon_sym_inline] = ACTIONS(1396), + [anon_sym___inline] = ACTIONS(1396), + [anon_sym___inline__] = ACTIONS(1396), + [anon_sym___forceinline] = ACTIONS(1396), + [anon_sym_thread_local] = ACTIONS(1396), + [anon_sym___thread] = ACTIONS(1396), + [anon_sym_const] = ACTIONS(1396), + [anon_sym_constexpr] = ACTIONS(1396), + [anon_sym_volatile] = ACTIONS(1396), + [anon_sym_restrict] = ACTIONS(1396), + [anon_sym___restrict__] = ACTIONS(1396), + [anon_sym__Atomic] = ACTIONS(1396), + [anon_sym__Noreturn] = ACTIONS(1396), + [anon_sym_noreturn] = ACTIONS(1396), + [sym_primitive_type] = ACTIONS(1396), + [anon_sym_enum] = ACTIONS(1396), + [anon_sym_struct] = ACTIONS(1396), + [anon_sym_union] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1396), + [anon_sym_else] = ACTIONS(1396), + [anon_sym_switch] = ACTIONS(1396), + [anon_sym_case] = ACTIONS(1396), + [anon_sym_default] = ACTIONS(1396), + [anon_sym_while] = ACTIONS(1396), + [anon_sym_do] = ACTIONS(1396), + [anon_sym_for] = ACTIONS(1396), + [anon_sym_return] = ACTIONS(1396), + [anon_sym_break] = ACTIONS(1396), + [anon_sym_continue] = ACTIONS(1396), + [anon_sym_goto] = ACTIONS(1396), + [anon_sym___try] = ACTIONS(1396), + [anon_sym___leave] = ACTIONS(1396), + [anon_sym_DASH_DASH] = ACTIONS(1398), + [anon_sym_PLUS_PLUS] = ACTIONS(1398), + [anon_sym_sizeof] = ACTIONS(1396), + [anon_sym___alignof__] = ACTIONS(1396), + [anon_sym___alignof] = ACTIONS(1396), + [anon_sym__alignof] = ACTIONS(1396), + [anon_sym_alignof] = ACTIONS(1396), + [anon_sym__Alignof] = ACTIONS(1396), + [anon_sym_offsetof] = ACTIONS(1396), + [anon_sym__Generic] = ACTIONS(1396), + [anon_sym_asm] = ACTIONS(1396), + [anon_sym___asm__] = ACTIONS(1396), + [sym_number_literal] = ACTIONS(1398), + [anon_sym_L_SQUOTE] = ACTIONS(1398), + [anon_sym_u_SQUOTE] = ACTIONS(1398), + [anon_sym_U_SQUOTE] = ACTIONS(1398), + [anon_sym_u8_SQUOTE] = ACTIONS(1398), + [anon_sym_SQUOTE] = ACTIONS(1398), + [anon_sym_L_DQUOTE] = ACTIONS(1398), + [anon_sym_u_DQUOTE] = ACTIONS(1398), + [anon_sym_U_DQUOTE] = ACTIONS(1398), + [anon_sym_u8_DQUOTE] = ACTIONS(1398), + [anon_sym_DQUOTE] = ACTIONS(1398), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [anon_sym_NULL] = ACTIONS(1396), + [anon_sym_nullptr] = ACTIONS(1396), [sym_comment] = ACTIONS(3), }, [340] = { - [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_LBRACK_LBRACK] = ACTIONS(1371), - [anon_sym___declspec] = 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), - [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_else] = 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_identifier] = ACTIONS(1380), + [aux_sym_preproc_include_token1] = ACTIONS(1380), + [aux_sym_preproc_def_token1] = ACTIONS(1380), + [aux_sym_preproc_if_token1] = ACTIONS(1380), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1380), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1380), + [sym_preproc_directive] = ACTIONS(1380), + [anon_sym_LPAREN2] = ACTIONS(1382), + [anon_sym_BANG] = ACTIONS(1382), + [anon_sym_TILDE] = ACTIONS(1382), + [anon_sym_DASH] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1380), + [anon_sym_STAR] = ACTIONS(1382), + [anon_sym_AMP] = ACTIONS(1382), + [anon_sym_SEMI] = ACTIONS(1382), + [anon_sym___extension__] = ACTIONS(1380), + [anon_sym_typedef] = ACTIONS(1380), + [anon_sym_extern] = ACTIONS(1380), + [anon_sym___attribute__] = ACTIONS(1380), + [anon_sym___scanf] = ACTIONS(1380), + [anon_sym___printf] = ACTIONS(1380), + [anon_sym___read_mostly] = ACTIONS(1380), + [anon_sym___must_hold] = ACTIONS(1380), + [anon_sym___ro_after_init] = ACTIONS(1380), + [anon_sym___init] = ACTIONS(1380), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1382), + [anon_sym___declspec] = ACTIONS(1380), + [anon_sym___cdecl] = ACTIONS(1380), + [anon_sym___clrcall] = ACTIONS(1380), + [anon_sym___stdcall] = ACTIONS(1380), + [anon_sym___fastcall] = ACTIONS(1380), + [anon_sym___thiscall] = ACTIONS(1380), + [anon_sym___vectorcall] = ACTIONS(1380), + [anon_sym_LBRACE] = ACTIONS(1382), + [anon_sym_RBRACE] = ACTIONS(1382), + [anon_sym_signed] = ACTIONS(1380), + [anon_sym_unsigned] = ACTIONS(1380), + [anon_sym_long] = ACTIONS(1380), + [anon_sym_short] = ACTIONS(1380), + [anon_sym_static] = ACTIONS(1380), + [anon_sym_auto] = ACTIONS(1380), + [anon_sym_register] = ACTIONS(1380), + [anon_sym_inline] = ACTIONS(1380), + [anon_sym___inline] = ACTIONS(1380), + [anon_sym___inline__] = ACTIONS(1380), + [anon_sym___forceinline] = ACTIONS(1380), + [anon_sym_thread_local] = ACTIONS(1380), + [anon_sym___thread] = ACTIONS(1380), + [anon_sym_const] = ACTIONS(1380), + [anon_sym_constexpr] = ACTIONS(1380), + [anon_sym_volatile] = ACTIONS(1380), + [anon_sym_restrict] = ACTIONS(1380), + [anon_sym___restrict__] = ACTIONS(1380), + [anon_sym__Atomic] = ACTIONS(1380), + [anon_sym__Noreturn] = ACTIONS(1380), + [anon_sym_noreturn] = ACTIONS(1380), + [sym_primitive_type] = ACTIONS(1380), + [anon_sym_enum] = ACTIONS(1380), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_union] = ACTIONS(1380), + [anon_sym_if] = ACTIONS(1380), + [anon_sym_else] = ACTIONS(1380), + [anon_sym_switch] = ACTIONS(1380), + [anon_sym_case] = ACTIONS(1380), + [anon_sym_default] = ACTIONS(1380), + [anon_sym_while] = ACTIONS(1380), + [anon_sym_do] = ACTIONS(1380), + [anon_sym_for] = ACTIONS(1380), + [anon_sym_return] = ACTIONS(1380), + [anon_sym_break] = ACTIONS(1380), + [anon_sym_continue] = ACTIONS(1380), + [anon_sym_goto] = ACTIONS(1380), + [anon_sym___try] = ACTIONS(1380), + [anon_sym___leave] = ACTIONS(1380), + [anon_sym_DASH_DASH] = ACTIONS(1382), + [anon_sym_PLUS_PLUS] = ACTIONS(1382), + [anon_sym_sizeof] = ACTIONS(1380), + [anon_sym___alignof__] = ACTIONS(1380), + [anon_sym___alignof] = ACTIONS(1380), + [anon_sym__alignof] = ACTIONS(1380), + [anon_sym_alignof] = ACTIONS(1380), + [anon_sym__Alignof] = ACTIONS(1380), + [anon_sym_offsetof] = ACTIONS(1380), + [anon_sym__Generic] = ACTIONS(1380), + [anon_sym_asm] = ACTIONS(1380), + [anon_sym___asm__] = ACTIONS(1380), + [sym_number_literal] = ACTIONS(1382), + [anon_sym_L_SQUOTE] = ACTIONS(1382), + [anon_sym_u_SQUOTE] = ACTIONS(1382), + [anon_sym_U_SQUOTE] = ACTIONS(1382), + [anon_sym_u8_SQUOTE] = ACTIONS(1382), + [anon_sym_SQUOTE] = ACTIONS(1382), + [anon_sym_L_DQUOTE] = ACTIONS(1382), + [anon_sym_u_DQUOTE] = ACTIONS(1382), + [anon_sym_U_DQUOTE] = ACTIONS(1382), + [anon_sym_u8_DQUOTE] = ACTIONS(1382), + [anon_sym_DQUOTE] = ACTIONS(1382), + [sym_true] = ACTIONS(1380), + [sym_false] = ACTIONS(1380), + [anon_sym_NULL] = ACTIONS(1380), + [anon_sym_nullptr] = ACTIONS(1380), [sym_comment] = ACTIONS(3), }, [341] = { - [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_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_LBRACK_LBRACK] = ACTIONS(1359), - [anon_sym___declspec] = 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), - [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_else] = 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_identifier] = ACTIONS(1400), + [aux_sym_preproc_include_token1] = ACTIONS(1400), + [aux_sym_preproc_def_token1] = ACTIONS(1400), + [aux_sym_preproc_if_token1] = ACTIONS(1400), + [aux_sym_preproc_if_token2] = ACTIONS(1400), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1400), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1400), + [sym_preproc_directive] = ACTIONS(1400), + [anon_sym_LPAREN2] = ACTIONS(1402), + [anon_sym_BANG] = ACTIONS(1402), + [anon_sym_TILDE] = ACTIONS(1402), + [anon_sym_DASH] = ACTIONS(1400), + [anon_sym_PLUS] = ACTIONS(1400), + [anon_sym_STAR] = ACTIONS(1402), + [anon_sym_AMP] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(1402), + [anon_sym___extension__] = ACTIONS(1400), + [anon_sym_typedef] = ACTIONS(1400), + [anon_sym_extern] = ACTIONS(1400), + [anon_sym___attribute__] = ACTIONS(1400), + [anon_sym___scanf] = ACTIONS(1400), + [anon_sym___printf] = ACTIONS(1400), + [anon_sym___read_mostly] = ACTIONS(1400), + [anon_sym___must_hold] = ACTIONS(1400), + [anon_sym___ro_after_init] = ACTIONS(1400), + [anon_sym___init] = ACTIONS(1400), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1402), + [anon_sym___declspec] = ACTIONS(1400), + [anon_sym___cdecl] = ACTIONS(1400), + [anon_sym___clrcall] = ACTIONS(1400), + [anon_sym___stdcall] = ACTIONS(1400), + [anon_sym___fastcall] = ACTIONS(1400), + [anon_sym___thiscall] = ACTIONS(1400), + [anon_sym___vectorcall] = ACTIONS(1400), + [anon_sym_LBRACE] = ACTIONS(1402), + [anon_sym_signed] = ACTIONS(1400), + [anon_sym_unsigned] = ACTIONS(1400), + [anon_sym_long] = ACTIONS(1400), + [anon_sym_short] = ACTIONS(1400), + [anon_sym_static] = ACTIONS(1400), + [anon_sym_auto] = ACTIONS(1400), + [anon_sym_register] = ACTIONS(1400), + [anon_sym_inline] = ACTIONS(1400), + [anon_sym___inline] = ACTIONS(1400), + [anon_sym___inline__] = ACTIONS(1400), + [anon_sym___forceinline] = ACTIONS(1400), + [anon_sym_thread_local] = ACTIONS(1400), + [anon_sym___thread] = ACTIONS(1400), + [anon_sym_const] = ACTIONS(1400), + [anon_sym_constexpr] = ACTIONS(1400), + [anon_sym_volatile] = ACTIONS(1400), + [anon_sym_restrict] = ACTIONS(1400), + [anon_sym___restrict__] = ACTIONS(1400), + [anon_sym__Atomic] = ACTIONS(1400), + [anon_sym__Noreturn] = ACTIONS(1400), + [anon_sym_noreturn] = ACTIONS(1400), + [sym_primitive_type] = ACTIONS(1400), + [anon_sym_enum] = ACTIONS(1400), + [anon_sym_struct] = ACTIONS(1400), + [anon_sym_union] = ACTIONS(1400), + [anon_sym_if] = ACTIONS(1400), + [anon_sym_else] = ACTIONS(1400), + [anon_sym_switch] = ACTIONS(1400), + [anon_sym_case] = ACTIONS(1400), + [anon_sym_default] = ACTIONS(1400), + [anon_sym_while] = ACTIONS(1400), + [anon_sym_do] = ACTIONS(1400), + [anon_sym_for] = ACTIONS(1400), + [anon_sym_return] = ACTIONS(1400), + [anon_sym_break] = ACTIONS(1400), + [anon_sym_continue] = ACTIONS(1400), + [anon_sym_goto] = ACTIONS(1400), + [anon_sym___try] = ACTIONS(1400), + [anon_sym___leave] = ACTIONS(1400), + [anon_sym_DASH_DASH] = ACTIONS(1402), + [anon_sym_PLUS_PLUS] = ACTIONS(1402), + [anon_sym_sizeof] = ACTIONS(1400), + [anon_sym___alignof__] = ACTIONS(1400), + [anon_sym___alignof] = ACTIONS(1400), + [anon_sym__alignof] = ACTIONS(1400), + [anon_sym_alignof] = ACTIONS(1400), + [anon_sym__Alignof] = ACTIONS(1400), + [anon_sym_offsetof] = ACTIONS(1400), + [anon_sym__Generic] = ACTIONS(1400), + [anon_sym_asm] = ACTIONS(1400), + [anon_sym___asm__] = ACTIONS(1400), + [sym_number_literal] = ACTIONS(1402), + [anon_sym_L_SQUOTE] = ACTIONS(1402), + [anon_sym_u_SQUOTE] = ACTIONS(1402), + [anon_sym_U_SQUOTE] = ACTIONS(1402), + [anon_sym_u8_SQUOTE] = ACTIONS(1402), + [anon_sym_SQUOTE] = ACTIONS(1402), + [anon_sym_L_DQUOTE] = ACTIONS(1402), + [anon_sym_u_DQUOTE] = ACTIONS(1402), + [anon_sym_U_DQUOTE] = ACTIONS(1402), + [anon_sym_u8_DQUOTE] = ACTIONS(1402), + [anon_sym_DQUOTE] = ACTIONS(1402), + [sym_true] = ACTIONS(1400), + [sym_false] = ACTIONS(1400), + [anon_sym_NULL] = ACTIONS(1400), + [anon_sym_nullptr] = ACTIONS(1400), [sym_comment] = ACTIONS(3), }, [342] = { - [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_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_LBRACK_LBRACK] = ACTIONS(1319), - [anon_sym___declspec] = 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), - [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_else] = 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_identifier] = ACTIONS(1376), + [aux_sym_preproc_include_token1] = ACTIONS(1376), + [aux_sym_preproc_def_token1] = ACTIONS(1376), + [aux_sym_preproc_if_token1] = ACTIONS(1376), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1376), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1376), + [sym_preproc_directive] = ACTIONS(1376), + [anon_sym_LPAREN2] = ACTIONS(1378), + [anon_sym_BANG] = ACTIONS(1378), + [anon_sym_TILDE] = ACTIONS(1378), + [anon_sym_DASH] = ACTIONS(1376), + [anon_sym_PLUS] = ACTIONS(1376), + [anon_sym_STAR] = ACTIONS(1378), + [anon_sym_AMP] = ACTIONS(1378), + [anon_sym_SEMI] = ACTIONS(1378), + [anon_sym___extension__] = ACTIONS(1376), + [anon_sym_typedef] = ACTIONS(1376), + [anon_sym_extern] = ACTIONS(1376), + [anon_sym___attribute__] = ACTIONS(1376), + [anon_sym___scanf] = ACTIONS(1376), + [anon_sym___printf] = ACTIONS(1376), + [anon_sym___read_mostly] = ACTIONS(1376), + [anon_sym___must_hold] = ACTIONS(1376), + [anon_sym___ro_after_init] = ACTIONS(1376), + [anon_sym___init] = ACTIONS(1376), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1378), + [anon_sym___declspec] = ACTIONS(1376), + [anon_sym___cdecl] = ACTIONS(1376), + [anon_sym___clrcall] = ACTIONS(1376), + [anon_sym___stdcall] = ACTIONS(1376), + [anon_sym___fastcall] = ACTIONS(1376), + [anon_sym___thiscall] = ACTIONS(1376), + [anon_sym___vectorcall] = ACTIONS(1376), + [anon_sym_LBRACE] = ACTIONS(1378), + [anon_sym_RBRACE] = ACTIONS(1378), + [anon_sym_signed] = ACTIONS(1376), + [anon_sym_unsigned] = ACTIONS(1376), + [anon_sym_long] = ACTIONS(1376), + [anon_sym_short] = ACTIONS(1376), + [anon_sym_static] = ACTIONS(1376), + [anon_sym_auto] = ACTIONS(1376), + [anon_sym_register] = ACTIONS(1376), + [anon_sym_inline] = ACTIONS(1376), + [anon_sym___inline] = ACTIONS(1376), + [anon_sym___inline__] = ACTIONS(1376), + [anon_sym___forceinline] = ACTIONS(1376), + [anon_sym_thread_local] = ACTIONS(1376), + [anon_sym___thread] = ACTIONS(1376), + [anon_sym_const] = ACTIONS(1376), + [anon_sym_constexpr] = ACTIONS(1376), + [anon_sym_volatile] = ACTIONS(1376), + [anon_sym_restrict] = ACTIONS(1376), + [anon_sym___restrict__] = ACTIONS(1376), + [anon_sym__Atomic] = ACTIONS(1376), + [anon_sym__Noreturn] = ACTIONS(1376), + [anon_sym_noreturn] = ACTIONS(1376), + [sym_primitive_type] = ACTIONS(1376), + [anon_sym_enum] = ACTIONS(1376), + [anon_sym_struct] = ACTIONS(1376), + [anon_sym_union] = ACTIONS(1376), + [anon_sym_if] = ACTIONS(1376), + [anon_sym_else] = ACTIONS(1376), + [anon_sym_switch] = ACTIONS(1376), + [anon_sym_case] = ACTIONS(1376), + [anon_sym_default] = ACTIONS(1376), + [anon_sym_while] = ACTIONS(1376), + [anon_sym_do] = ACTIONS(1376), + [anon_sym_for] = ACTIONS(1376), + [anon_sym_return] = ACTIONS(1376), + [anon_sym_break] = ACTIONS(1376), + [anon_sym_continue] = ACTIONS(1376), + [anon_sym_goto] = ACTIONS(1376), + [anon_sym___try] = ACTIONS(1376), + [anon_sym___leave] = ACTIONS(1376), + [anon_sym_DASH_DASH] = ACTIONS(1378), + [anon_sym_PLUS_PLUS] = ACTIONS(1378), + [anon_sym_sizeof] = ACTIONS(1376), + [anon_sym___alignof__] = ACTIONS(1376), + [anon_sym___alignof] = ACTIONS(1376), + [anon_sym__alignof] = ACTIONS(1376), + [anon_sym_alignof] = ACTIONS(1376), + [anon_sym__Alignof] = ACTIONS(1376), + [anon_sym_offsetof] = ACTIONS(1376), + [anon_sym__Generic] = ACTIONS(1376), + [anon_sym_asm] = ACTIONS(1376), + [anon_sym___asm__] = ACTIONS(1376), + [sym_number_literal] = ACTIONS(1378), + [anon_sym_L_SQUOTE] = ACTIONS(1378), + [anon_sym_u_SQUOTE] = ACTIONS(1378), + [anon_sym_U_SQUOTE] = ACTIONS(1378), + [anon_sym_u8_SQUOTE] = ACTIONS(1378), + [anon_sym_SQUOTE] = ACTIONS(1378), + [anon_sym_L_DQUOTE] = ACTIONS(1378), + [anon_sym_u_DQUOTE] = ACTIONS(1378), + [anon_sym_U_DQUOTE] = ACTIONS(1378), + [anon_sym_u8_DQUOTE] = ACTIONS(1378), + [anon_sym_DQUOTE] = ACTIONS(1378), + [sym_true] = ACTIONS(1376), + [sym_false] = ACTIONS(1376), + [anon_sym_NULL] = ACTIONS(1376), + [anon_sym_nullptr] = ACTIONS(1376), [sym_comment] = ACTIONS(3), }, [343] = { - [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_LBRACK_LBRACK] = ACTIONS(1323), - [anon_sym___declspec] = 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), - [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_else] = 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_identifier] = ACTIONS(1372), + [aux_sym_preproc_include_token1] = ACTIONS(1372), + [aux_sym_preproc_def_token1] = ACTIONS(1372), + [aux_sym_preproc_if_token1] = ACTIONS(1372), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1372), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1372), + [sym_preproc_directive] = ACTIONS(1372), + [anon_sym_LPAREN2] = ACTIONS(1374), + [anon_sym_BANG] = ACTIONS(1374), + [anon_sym_TILDE] = ACTIONS(1374), + [anon_sym_DASH] = ACTIONS(1372), + [anon_sym_PLUS] = ACTIONS(1372), + [anon_sym_STAR] = ACTIONS(1374), + [anon_sym_AMP] = ACTIONS(1374), + [anon_sym_SEMI] = ACTIONS(1374), + [anon_sym___extension__] = ACTIONS(1372), + [anon_sym_typedef] = ACTIONS(1372), + [anon_sym_extern] = ACTIONS(1372), + [anon_sym___attribute__] = ACTIONS(1372), + [anon_sym___scanf] = ACTIONS(1372), + [anon_sym___printf] = ACTIONS(1372), + [anon_sym___read_mostly] = ACTIONS(1372), + [anon_sym___must_hold] = ACTIONS(1372), + [anon_sym___ro_after_init] = ACTIONS(1372), + [anon_sym___init] = ACTIONS(1372), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), + [anon_sym___declspec] = ACTIONS(1372), + [anon_sym___cdecl] = ACTIONS(1372), + [anon_sym___clrcall] = ACTIONS(1372), + [anon_sym___stdcall] = ACTIONS(1372), + [anon_sym___fastcall] = ACTIONS(1372), + [anon_sym___thiscall] = ACTIONS(1372), + [anon_sym___vectorcall] = ACTIONS(1372), + [anon_sym_LBRACE] = ACTIONS(1374), + [anon_sym_RBRACE] = ACTIONS(1374), + [anon_sym_signed] = ACTIONS(1372), + [anon_sym_unsigned] = ACTIONS(1372), + [anon_sym_long] = ACTIONS(1372), + [anon_sym_short] = ACTIONS(1372), + [anon_sym_static] = ACTIONS(1372), + [anon_sym_auto] = ACTIONS(1372), + [anon_sym_register] = ACTIONS(1372), + [anon_sym_inline] = ACTIONS(1372), + [anon_sym___inline] = ACTIONS(1372), + [anon_sym___inline__] = ACTIONS(1372), + [anon_sym___forceinline] = ACTIONS(1372), + [anon_sym_thread_local] = ACTIONS(1372), + [anon_sym___thread] = ACTIONS(1372), + [anon_sym_const] = ACTIONS(1372), + [anon_sym_constexpr] = ACTIONS(1372), + [anon_sym_volatile] = ACTIONS(1372), + [anon_sym_restrict] = ACTIONS(1372), + [anon_sym___restrict__] = ACTIONS(1372), + [anon_sym__Atomic] = ACTIONS(1372), + [anon_sym__Noreturn] = ACTIONS(1372), + [anon_sym_noreturn] = ACTIONS(1372), + [sym_primitive_type] = ACTIONS(1372), + [anon_sym_enum] = ACTIONS(1372), + [anon_sym_struct] = ACTIONS(1372), + [anon_sym_union] = ACTIONS(1372), + [anon_sym_if] = ACTIONS(1372), + [anon_sym_else] = ACTIONS(1372), + [anon_sym_switch] = ACTIONS(1372), + [anon_sym_case] = ACTIONS(1372), + [anon_sym_default] = ACTIONS(1372), + [anon_sym_while] = ACTIONS(1372), + [anon_sym_do] = ACTIONS(1372), + [anon_sym_for] = ACTIONS(1372), + [anon_sym_return] = ACTIONS(1372), + [anon_sym_break] = ACTIONS(1372), + [anon_sym_continue] = ACTIONS(1372), + [anon_sym_goto] = ACTIONS(1372), + [anon_sym___try] = ACTIONS(1372), + [anon_sym___leave] = ACTIONS(1372), + [anon_sym_DASH_DASH] = ACTIONS(1374), + [anon_sym_PLUS_PLUS] = ACTIONS(1374), + [anon_sym_sizeof] = ACTIONS(1372), + [anon_sym___alignof__] = ACTIONS(1372), + [anon_sym___alignof] = ACTIONS(1372), + [anon_sym__alignof] = ACTIONS(1372), + [anon_sym_alignof] = ACTIONS(1372), + [anon_sym__Alignof] = ACTIONS(1372), + [anon_sym_offsetof] = ACTIONS(1372), + [anon_sym__Generic] = ACTIONS(1372), + [anon_sym_asm] = ACTIONS(1372), + [anon_sym___asm__] = ACTIONS(1372), + [sym_number_literal] = ACTIONS(1374), + [anon_sym_L_SQUOTE] = ACTIONS(1374), + [anon_sym_u_SQUOTE] = ACTIONS(1374), + [anon_sym_U_SQUOTE] = ACTIONS(1374), + [anon_sym_u8_SQUOTE] = ACTIONS(1374), + [anon_sym_SQUOTE] = ACTIONS(1374), + [anon_sym_L_DQUOTE] = ACTIONS(1374), + [anon_sym_u_DQUOTE] = ACTIONS(1374), + [anon_sym_U_DQUOTE] = ACTIONS(1374), + [anon_sym_u8_DQUOTE] = ACTIONS(1374), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_true] = ACTIONS(1372), + [sym_false] = ACTIONS(1372), + [anon_sym_NULL] = ACTIONS(1372), + [anon_sym_nullptr] = ACTIONS(1372), [sym_comment] = ACTIONS(3), }, [344] = { - [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_LBRACK_LBRACK] = ACTIONS(1315), - [anon_sym___declspec] = 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), - [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_else] = 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), + [ts_builtin_sym_end] = ACTIONS(1366), + [sym_identifier] = ACTIONS(1364), + [aux_sym_preproc_include_token1] = ACTIONS(1364), + [aux_sym_preproc_def_token1] = ACTIONS(1364), + [aux_sym_preproc_if_token1] = ACTIONS(1364), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1364), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1364), + [sym_preproc_directive] = ACTIONS(1364), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(1366), + [anon_sym_TILDE] = ACTIONS(1366), + [anon_sym_DASH] = ACTIONS(1364), + [anon_sym_PLUS] = ACTIONS(1364), + [anon_sym_STAR] = ACTIONS(1366), + [anon_sym_AMP] = ACTIONS(1366), + [anon_sym_SEMI] = ACTIONS(1366), + [anon_sym___extension__] = ACTIONS(1364), + [anon_sym_typedef] = ACTIONS(1364), + [anon_sym_extern] = ACTIONS(1364), + [anon_sym___attribute__] = ACTIONS(1364), + [anon_sym___scanf] = ACTIONS(1364), + [anon_sym___printf] = ACTIONS(1364), + [anon_sym___read_mostly] = ACTIONS(1364), + [anon_sym___must_hold] = ACTIONS(1364), + [anon_sym___ro_after_init] = ACTIONS(1364), + [anon_sym___init] = ACTIONS(1364), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1366), + [anon_sym___declspec] = ACTIONS(1364), + [anon_sym___cdecl] = ACTIONS(1364), + [anon_sym___clrcall] = ACTIONS(1364), + [anon_sym___stdcall] = ACTIONS(1364), + [anon_sym___fastcall] = ACTIONS(1364), + [anon_sym___thiscall] = ACTIONS(1364), + [anon_sym___vectorcall] = ACTIONS(1364), + [anon_sym_LBRACE] = ACTIONS(1366), + [anon_sym_signed] = ACTIONS(1364), + [anon_sym_unsigned] = ACTIONS(1364), + [anon_sym_long] = ACTIONS(1364), + [anon_sym_short] = ACTIONS(1364), + [anon_sym_static] = ACTIONS(1364), + [anon_sym_auto] = ACTIONS(1364), + [anon_sym_register] = ACTIONS(1364), + [anon_sym_inline] = ACTIONS(1364), + [anon_sym___inline] = ACTIONS(1364), + [anon_sym___inline__] = ACTIONS(1364), + [anon_sym___forceinline] = ACTIONS(1364), + [anon_sym_thread_local] = ACTIONS(1364), + [anon_sym___thread] = ACTIONS(1364), + [anon_sym_const] = ACTIONS(1364), + [anon_sym_constexpr] = ACTIONS(1364), + [anon_sym_volatile] = ACTIONS(1364), + [anon_sym_restrict] = ACTIONS(1364), + [anon_sym___restrict__] = ACTIONS(1364), + [anon_sym__Atomic] = ACTIONS(1364), + [anon_sym__Noreturn] = ACTIONS(1364), + [anon_sym_noreturn] = ACTIONS(1364), + [sym_primitive_type] = ACTIONS(1364), + [anon_sym_enum] = ACTIONS(1364), + [anon_sym_struct] = ACTIONS(1364), + [anon_sym_union] = ACTIONS(1364), + [anon_sym_if] = ACTIONS(1364), + [anon_sym_else] = ACTIONS(1364), + [anon_sym_switch] = ACTIONS(1364), + [anon_sym_case] = ACTIONS(1364), + [anon_sym_default] = ACTIONS(1364), + [anon_sym_while] = ACTIONS(1364), + [anon_sym_do] = ACTIONS(1364), + [anon_sym_for] = ACTIONS(1364), + [anon_sym_return] = ACTIONS(1364), + [anon_sym_break] = ACTIONS(1364), + [anon_sym_continue] = ACTIONS(1364), + [anon_sym_goto] = ACTIONS(1364), + [anon_sym___try] = ACTIONS(1364), + [anon_sym___leave] = ACTIONS(1364), + [anon_sym_DASH_DASH] = ACTIONS(1366), + [anon_sym_PLUS_PLUS] = ACTIONS(1366), + [anon_sym_sizeof] = ACTIONS(1364), + [anon_sym___alignof__] = ACTIONS(1364), + [anon_sym___alignof] = ACTIONS(1364), + [anon_sym__alignof] = ACTIONS(1364), + [anon_sym_alignof] = ACTIONS(1364), + [anon_sym__Alignof] = ACTIONS(1364), + [anon_sym_offsetof] = ACTIONS(1364), + [anon_sym__Generic] = ACTIONS(1364), + [anon_sym_asm] = ACTIONS(1364), + [anon_sym___asm__] = ACTIONS(1364), + [sym_number_literal] = ACTIONS(1366), + [anon_sym_L_SQUOTE] = ACTIONS(1366), + [anon_sym_u_SQUOTE] = ACTIONS(1366), + [anon_sym_U_SQUOTE] = ACTIONS(1366), + [anon_sym_u8_SQUOTE] = ACTIONS(1366), + [anon_sym_SQUOTE] = ACTIONS(1366), + [anon_sym_L_DQUOTE] = ACTIONS(1366), + [anon_sym_u_DQUOTE] = ACTIONS(1366), + [anon_sym_U_DQUOTE] = ACTIONS(1366), + [anon_sym_u8_DQUOTE] = ACTIONS(1366), + [anon_sym_DQUOTE] = ACTIONS(1366), + [sym_true] = ACTIONS(1364), + [sym_false] = ACTIONS(1364), + [anon_sym_NULL] = ACTIONS(1364), + [anon_sym_nullptr] = ACTIONS(1364), [sym_comment] = ACTIONS(3), }, [345] = { - [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_LBRACK_LBRACK] = ACTIONS(1327), - [anon_sym___declspec] = 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), - [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_else] = 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_identifier] = ACTIONS(1368), + [aux_sym_preproc_include_token1] = ACTIONS(1368), + [aux_sym_preproc_def_token1] = ACTIONS(1368), + [aux_sym_preproc_if_token1] = ACTIONS(1368), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1368), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1368), + [sym_preproc_directive] = ACTIONS(1368), + [anon_sym_LPAREN2] = ACTIONS(1370), + [anon_sym_BANG] = ACTIONS(1370), + [anon_sym_TILDE] = ACTIONS(1370), + [anon_sym_DASH] = ACTIONS(1368), + [anon_sym_PLUS] = ACTIONS(1368), + [anon_sym_STAR] = ACTIONS(1370), + [anon_sym_AMP] = ACTIONS(1370), + [anon_sym_SEMI] = ACTIONS(1370), + [anon_sym___extension__] = ACTIONS(1368), + [anon_sym_typedef] = ACTIONS(1368), + [anon_sym_extern] = ACTIONS(1368), + [anon_sym___attribute__] = ACTIONS(1368), + [anon_sym___scanf] = ACTIONS(1368), + [anon_sym___printf] = ACTIONS(1368), + [anon_sym___read_mostly] = ACTIONS(1368), + [anon_sym___must_hold] = ACTIONS(1368), + [anon_sym___ro_after_init] = ACTIONS(1368), + [anon_sym___init] = ACTIONS(1368), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1370), + [anon_sym___declspec] = ACTIONS(1368), + [anon_sym___cdecl] = ACTIONS(1368), + [anon_sym___clrcall] = ACTIONS(1368), + [anon_sym___stdcall] = ACTIONS(1368), + [anon_sym___fastcall] = ACTIONS(1368), + [anon_sym___thiscall] = ACTIONS(1368), + [anon_sym___vectorcall] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_RBRACE] = ACTIONS(1370), + [anon_sym_signed] = ACTIONS(1368), + [anon_sym_unsigned] = ACTIONS(1368), + [anon_sym_long] = ACTIONS(1368), + [anon_sym_short] = ACTIONS(1368), + [anon_sym_static] = ACTIONS(1368), + [anon_sym_auto] = ACTIONS(1368), + [anon_sym_register] = ACTIONS(1368), + [anon_sym_inline] = ACTIONS(1368), + [anon_sym___inline] = ACTIONS(1368), + [anon_sym___inline__] = ACTIONS(1368), + [anon_sym___forceinline] = ACTIONS(1368), + [anon_sym_thread_local] = ACTIONS(1368), + [anon_sym___thread] = ACTIONS(1368), + [anon_sym_const] = ACTIONS(1368), + [anon_sym_constexpr] = ACTIONS(1368), + [anon_sym_volatile] = ACTIONS(1368), + [anon_sym_restrict] = ACTIONS(1368), + [anon_sym___restrict__] = ACTIONS(1368), + [anon_sym__Atomic] = ACTIONS(1368), + [anon_sym__Noreturn] = ACTIONS(1368), + [anon_sym_noreturn] = ACTIONS(1368), + [sym_primitive_type] = ACTIONS(1368), + [anon_sym_enum] = ACTIONS(1368), + [anon_sym_struct] = ACTIONS(1368), + [anon_sym_union] = ACTIONS(1368), + [anon_sym_if] = ACTIONS(1368), + [anon_sym_else] = ACTIONS(1368), + [anon_sym_switch] = ACTIONS(1368), + [anon_sym_case] = ACTIONS(1368), + [anon_sym_default] = ACTIONS(1368), + [anon_sym_while] = ACTIONS(1368), + [anon_sym_do] = ACTIONS(1368), + [anon_sym_for] = ACTIONS(1368), + [anon_sym_return] = ACTIONS(1368), + [anon_sym_break] = ACTIONS(1368), + [anon_sym_continue] = ACTIONS(1368), + [anon_sym_goto] = ACTIONS(1368), + [anon_sym___try] = ACTIONS(1368), + [anon_sym___leave] = ACTIONS(1368), + [anon_sym_DASH_DASH] = ACTIONS(1370), + [anon_sym_PLUS_PLUS] = ACTIONS(1370), + [anon_sym_sizeof] = ACTIONS(1368), + [anon_sym___alignof__] = ACTIONS(1368), + [anon_sym___alignof] = ACTIONS(1368), + [anon_sym__alignof] = ACTIONS(1368), + [anon_sym_alignof] = ACTIONS(1368), + [anon_sym__Alignof] = ACTIONS(1368), + [anon_sym_offsetof] = ACTIONS(1368), + [anon_sym__Generic] = ACTIONS(1368), + [anon_sym_asm] = ACTIONS(1368), + [anon_sym___asm__] = ACTIONS(1368), + [sym_number_literal] = ACTIONS(1370), + [anon_sym_L_SQUOTE] = ACTIONS(1370), + [anon_sym_u_SQUOTE] = ACTIONS(1370), + [anon_sym_U_SQUOTE] = ACTIONS(1370), + [anon_sym_u8_SQUOTE] = ACTIONS(1370), + [anon_sym_SQUOTE] = ACTIONS(1370), + [anon_sym_L_DQUOTE] = ACTIONS(1370), + [anon_sym_u_DQUOTE] = ACTIONS(1370), + [anon_sym_U_DQUOTE] = ACTIONS(1370), + [anon_sym_u8_DQUOTE] = ACTIONS(1370), + [anon_sym_DQUOTE] = ACTIONS(1370), + [sym_true] = ACTIONS(1368), + [sym_false] = ACTIONS(1368), + [anon_sym_NULL] = ACTIONS(1368), + [anon_sym_nullptr] = ACTIONS(1368), [sym_comment] = ACTIONS(3), }, [346] = { - [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_LBRACK_LBRACK] = ACTIONS(1347), - [anon_sym___declspec] = 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), - [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_else] = 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_identifier] = ACTIONS(1404), + [aux_sym_preproc_include_token1] = ACTIONS(1404), + [aux_sym_preproc_def_token1] = ACTIONS(1404), + [aux_sym_preproc_if_token1] = ACTIONS(1404), + [aux_sym_preproc_if_token2] = ACTIONS(1404), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1404), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1404), + [sym_preproc_directive] = ACTIONS(1404), + [anon_sym_LPAREN2] = ACTIONS(1406), + [anon_sym_BANG] = ACTIONS(1406), + [anon_sym_TILDE] = ACTIONS(1406), + [anon_sym_DASH] = ACTIONS(1404), + [anon_sym_PLUS] = ACTIONS(1404), + [anon_sym_STAR] = ACTIONS(1406), + [anon_sym_AMP] = ACTIONS(1406), + [anon_sym_SEMI] = ACTIONS(1406), + [anon_sym___extension__] = ACTIONS(1404), + [anon_sym_typedef] = ACTIONS(1404), + [anon_sym_extern] = ACTIONS(1404), + [anon_sym___attribute__] = ACTIONS(1404), + [anon_sym___scanf] = ACTIONS(1404), + [anon_sym___printf] = ACTIONS(1404), + [anon_sym___read_mostly] = ACTIONS(1404), + [anon_sym___must_hold] = ACTIONS(1404), + [anon_sym___ro_after_init] = ACTIONS(1404), + [anon_sym___init] = ACTIONS(1404), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1406), + [anon_sym___declspec] = ACTIONS(1404), + [anon_sym___cdecl] = ACTIONS(1404), + [anon_sym___clrcall] = ACTIONS(1404), + [anon_sym___stdcall] = ACTIONS(1404), + [anon_sym___fastcall] = ACTIONS(1404), + [anon_sym___thiscall] = ACTIONS(1404), + [anon_sym___vectorcall] = ACTIONS(1404), + [anon_sym_LBRACE] = ACTIONS(1406), + [anon_sym_signed] = ACTIONS(1404), + [anon_sym_unsigned] = ACTIONS(1404), + [anon_sym_long] = ACTIONS(1404), + [anon_sym_short] = ACTIONS(1404), + [anon_sym_static] = ACTIONS(1404), + [anon_sym_auto] = ACTIONS(1404), + [anon_sym_register] = ACTIONS(1404), + [anon_sym_inline] = ACTIONS(1404), + [anon_sym___inline] = ACTIONS(1404), + [anon_sym___inline__] = ACTIONS(1404), + [anon_sym___forceinline] = ACTIONS(1404), + [anon_sym_thread_local] = ACTIONS(1404), + [anon_sym___thread] = ACTIONS(1404), + [anon_sym_const] = ACTIONS(1404), + [anon_sym_constexpr] = ACTIONS(1404), + [anon_sym_volatile] = ACTIONS(1404), + [anon_sym_restrict] = ACTIONS(1404), + [anon_sym___restrict__] = ACTIONS(1404), + [anon_sym__Atomic] = ACTIONS(1404), + [anon_sym__Noreturn] = ACTIONS(1404), + [anon_sym_noreturn] = ACTIONS(1404), + [sym_primitive_type] = ACTIONS(1404), + [anon_sym_enum] = ACTIONS(1404), + [anon_sym_struct] = ACTIONS(1404), + [anon_sym_union] = ACTIONS(1404), + [anon_sym_if] = ACTIONS(1404), + [anon_sym_else] = ACTIONS(1404), + [anon_sym_switch] = ACTIONS(1404), + [anon_sym_case] = ACTIONS(1404), + [anon_sym_default] = ACTIONS(1404), + [anon_sym_while] = ACTIONS(1404), + [anon_sym_do] = ACTIONS(1404), + [anon_sym_for] = ACTIONS(1404), + [anon_sym_return] = ACTIONS(1404), + [anon_sym_break] = ACTIONS(1404), + [anon_sym_continue] = ACTIONS(1404), + [anon_sym_goto] = ACTIONS(1404), + [anon_sym___try] = ACTIONS(1404), + [anon_sym___leave] = ACTIONS(1404), + [anon_sym_DASH_DASH] = ACTIONS(1406), + [anon_sym_PLUS_PLUS] = ACTIONS(1406), + [anon_sym_sizeof] = ACTIONS(1404), + [anon_sym___alignof__] = ACTIONS(1404), + [anon_sym___alignof] = ACTIONS(1404), + [anon_sym__alignof] = ACTIONS(1404), + [anon_sym_alignof] = ACTIONS(1404), + [anon_sym__Alignof] = ACTIONS(1404), + [anon_sym_offsetof] = ACTIONS(1404), + [anon_sym__Generic] = ACTIONS(1404), + [anon_sym_asm] = ACTIONS(1404), + [anon_sym___asm__] = ACTIONS(1404), + [sym_number_literal] = ACTIONS(1406), + [anon_sym_L_SQUOTE] = ACTIONS(1406), + [anon_sym_u_SQUOTE] = ACTIONS(1406), + [anon_sym_U_SQUOTE] = ACTIONS(1406), + [anon_sym_u8_SQUOTE] = ACTIONS(1406), + [anon_sym_SQUOTE] = ACTIONS(1406), + [anon_sym_L_DQUOTE] = ACTIONS(1406), + [anon_sym_u_DQUOTE] = ACTIONS(1406), + [anon_sym_U_DQUOTE] = ACTIONS(1406), + [anon_sym_u8_DQUOTE] = ACTIONS(1406), + [anon_sym_DQUOTE] = ACTIONS(1406), + [sym_true] = ACTIONS(1404), + [sym_false] = ACTIONS(1404), + [anon_sym_NULL] = ACTIONS(1404), + [anon_sym_nullptr] = ACTIONS(1404), [sym_comment] = ACTIONS(3), }, [347] = { - [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_LBRACK_LBRACK] = ACTIONS(1343), - [anon_sym___declspec] = 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), - [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_else] = 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_identifier] = ACTIONS(1356), + [aux_sym_preproc_include_token1] = ACTIONS(1356), + [aux_sym_preproc_def_token1] = ACTIONS(1356), + [aux_sym_preproc_if_token1] = ACTIONS(1356), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1356), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1356), + [sym_preproc_directive] = ACTIONS(1356), + [anon_sym_LPAREN2] = ACTIONS(1358), + [anon_sym_BANG] = ACTIONS(1358), + [anon_sym_TILDE] = ACTIONS(1358), + [anon_sym_DASH] = ACTIONS(1356), + [anon_sym_PLUS] = ACTIONS(1356), + [anon_sym_STAR] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1358), + [anon_sym_SEMI] = ACTIONS(1358), + [anon_sym___extension__] = ACTIONS(1356), + [anon_sym_typedef] = ACTIONS(1356), + [anon_sym_extern] = ACTIONS(1356), + [anon_sym___attribute__] = ACTIONS(1356), + [anon_sym___scanf] = ACTIONS(1356), + [anon_sym___printf] = ACTIONS(1356), + [anon_sym___read_mostly] = ACTIONS(1356), + [anon_sym___must_hold] = ACTIONS(1356), + [anon_sym___ro_after_init] = ACTIONS(1356), + [anon_sym___init] = ACTIONS(1356), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1358), + [anon_sym___declspec] = ACTIONS(1356), + [anon_sym___cdecl] = ACTIONS(1356), + [anon_sym___clrcall] = ACTIONS(1356), + [anon_sym___stdcall] = ACTIONS(1356), + [anon_sym___fastcall] = ACTIONS(1356), + [anon_sym___thiscall] = ACTIONS(1356), + [anon_sym___vectorcall] = ACTIONS(1356), + [anon_sym_LBRACE] = ACTIONS(1358), + [anon_sym_RBRACE] = ACTIONS(1358), + [anon_sym_signed] = ACTIONS(1356), + [anon_sym_unsigned] = ACTIONS(1356), + [anon_sym_long] = ACTIONS(1356), + [anon_sym_short] = ACTIONS(1356), + [anon_sym_static] = ACTIONS(1356), + [anon_sym_auto] = ACTIONS(1356), + [anon_sym_register] = ACTIONS(1356), + [anon_sym_inline] = ACTIONS(1356), + [anon_sym___inline] = ACTIONS(1356), + [anon_sym___inline__] = ACTIONS(1356), + [anon_sym___forceinline] = ACTIONS(1356), + [anon_sym_thread_local] = ACTIONS(1356), + [anon_sym___thread] = ACTIONS(1356), + [anon_sym_const] = ACTIONS(1356), + [anon_sym_constexpr] = ACTIONS(1356), + [anon_sym_volatile] = ACTIONS(1356), + [anon_sym_restrict] = ACTIONS(1356), + [anon_sym___restrict__] = ACTIONS(1356), + [anon_sym__Atomic] = ACTIONS(1356), + [anon_sym__Noreturn] = ACTIONS(1356), + [anon_sym_noreturn] = ACTIONS(1356), + [sym_primitive_type] = ACTIONS(1356), + [anon_sym_enum] = ACTIONS(1356), + [anon_sym_struct] = ACTIONS(1356), + [anon_sym_union] = ACTIONS(1356), + [anon_sym_if] = ACTIONS(1356), + [anon_sym_else] = ACTIONS(1356), + [anon_sym_switch] = ACTIONS(1356), + [anon_sym_case] = ACTIONS(1356), + [anon_sym_default] = ACTIONS(1356), + [anon_sym_while] = ACTIONS(1356), + [anon_sym_do] = ACTIONS(1356), + [anon_sym_for] = ACTIONS(1356), + [anon_sym_return] = ACTIONS(1356), + [anon_sym_break] = ACTIONS(1356), + [anon_sym_continue] = ACTIONS(1356), + [anon_sym_goto] = ACTIONS(1356), + [anon_sym___try] = ACTIONS(1356), + [anon_sym___leave] = ACTIONS(1356), + [anon_sym_DASH_DASH] = ACTIONS(1358), + [anon_sym_PLUS_PLUS] = ACTIONS(1358), + [anon_sym_sizeof] = ACTIONS(1356), + [anon_sym___alignof__] = ACTIONS(1356), + [anon_sym___alignof] = ACTIONS(1356), + [anon_sym__alignof] = ACTIONS(1356), + [anon_sym_alignof] = ACTIONS(1356), + [anon_sym__Alignof] = ACTIONS(1356), + [anon_sym_offsetof] = ACTIONS(1356), + [anon_sym__Generic] = ACTIONS(1356), + [anon_sym_asm] = ACTIONS(1356), + [anon_sym___asm__] = ACTIONS(1356), + [sym_number_literal] = ACTIONS(1358), + [anon_sym_L_SQUOTE] = ACTIONS(1358), + [anon_sym_u_SQUOTE] = ACTIONS(1358), + [anon_sym_U_SQUOTE] = ACTIONS(1358), + [anon_sym_u8_SQUOTE] = ACTIONS(1358), + [anon_sym_SQUOTE] = ACTIONS(1358), + [anon_sym_L_DQUOTE] = ACTIONS(1358), + [anon_sym_u_DQUOTE] = ACTIONS(1358), + [anon_sym_U_DQUOTE] = ACTIONS(1358), + [anon_sym_u8_DQUOTE] = ACTIONS(1358), + [anon_sym_DQUOTE] = ACTIONS(1358), + [sym_true] = ACTIONS(1356), + [sym_false] = ACTIONS(1356), + [anon_sym_NULL] = ACTIONS(1356), + [anon_sym_nullptr] = ACTIONS(1356), [sym_comment] = ACTIONS(3), }, [348] = { - [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_LBRACK_LBRACK] = ACTIONS(1339), - [anon_sym___declspec] = 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), - [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_else] = 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_identifier] = ACTIONS(1420), + [aux_sym_preproc_include_token1] = ACTIONS(1420), + [aux_sym_preproc_def_token1] = ACTIONS(1420), + [aux_sym_preproc_if_token1] = ACTIONS(1420), + [aux_sym_preproc_if_token2] = ACTIONS(1420), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1420), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1420), + [sym_preproc_directive] = ACTIONS(1420), + [anon_sym_LPAREN2] = ACTIONS(1422), + [anon_sym_BANG] = ACTIONS(1422), + [anon_sym_TILDE] = ACTIONS(1422), + [anon_sym_DASH] = ACTIONS(1420), + [anon_sym_PLUS] = ACTIONS(1420), + [anon_sym_STAR] = ACTIONS(1422), + [anon_sym_AMP] = ACTIONS(1422), + [anon_sym_SEMI] = ACTIONS(1422), + [anon_sym___extension__] = ACTIONS(1420), + [anon_sym_typedef] = ACTIONS(1420), + [anon_sym_extern] = ACTIONS(1420), + [anon_sym___attribute__] = ACTIONS(1420), + [anon_sym___scanf] = ACTIONS(1420), + [anon_sym___printf] = ACTIONS(1420), + [anon_sym___read_mostly] = ACTIONS(1420), + [anon_sym___must_hold] = ACTIONS(1420), + [anon_sym___ro_after_init] = ACTIONS(1420), + [anon_sym___init] = ACTIONS(1420), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1422), + [anon_sym___declspec] = ACTIONS(1420), + [anon_sym___cdecl] = ACTIONS(1420), + [anon_sym___clrcall] = ACTIONS(1420), + [anon_sym___stdcall] = ACTIONS(1420), + [anon_sym___fastcall] = ACTIONS(1420), + [anon_sym___thiscall] = ACTIONS(1420), + [anon_sym___vectorcall] = ACTIONS(1420), + [anon_sym_LBRACE] = ACTIONS(1422), + [anon_sym_signed] = ACTIONS(1420), + [anon_sym_unsigned] = ACTIONS(1420), + [anon_sym_long] = ACTIONS(1420), + [anon_sym_short] = ACTIONS(1420), + [anon_sym_static] = ACTIONS(1420), + [anon_sym_auto] = ACTIONS(1420), + [anon_sym_register] = ACTIONS(1420), + [anon_sym_inline] = ACTIONS(1420), + [anon_sym___inline] = ACTIONS(1420), + [anon_sym___inline__] = ACTIONS(1420), + [anon_sym___forceinline] = ACTIONS(1420), + [anon_sym_thread_local] = ACTIONS(1420), + [anon_sym___thread] = ACTIONS(1420), + [anon_sym_const] = ACTIONS(1420), + [anon_sym_constexpr] = ACTIONS(1420), + [anon_sym_volatile] = ACTIONS(1420), + [anon_sym_restrict] = ACTIONS(1420), + [anon_sym___restrict__] = ACTIONS(1420), + [anon_sym__Atomic] = ACTIONS(1420), + [anon_sym__Noreturn] = ACTIONS(1420), + [anon_sym_noreturn] = ACTIONS(1420), + [sym_primitive_type] = ACTIONS(1420), + [anon_sym_enum] = ACTIONS(1420), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_union] = ACTIONS(1420), + [anon_sym_if] = ACTIONS(1420), + [anon_sym_else] = ACTIONS(1420), + [anon_sym_switch] = ACTIONS(1420), + [anon_sym_case] = ACTIONS(1420), + [anon_sym_default] = ACTIONS(1420), + [anon_sym_while] = ACTIONS(1420), + [anon_sym_do] = ACTIONS(1420), + [anon_sym_for] = ACTIONS(1420), + [anon_sym_return] = ACTIONS(1420), + [anon_sym_break] = ACTIONS(1420), + [anon_sym_continue] = ACTIONS(1420), + [anon_sym_goto] = ACTIONS(1420), + [anon_sym___try] = ACTIONS(1420), + [anon_sym___leave] = ACTIONS(1420), + [anon_sym_DASH_DASH] = ACTIONS(1422), + [anon_sym_PLUS_PLUS] = ACTIONS(1422), + [anon_sym_sizeof] = ACTIONS(1420), + [anon_sym___alignof__] = ACTIONS(1420), + [anon_sym___alignof] = ACTIONS(1420), + [anon_sym__alignof] = ACTIONS(1420), + [anon_sym_alignof] = ACTIONS(1420), + [anon_sym__Alignof] = ACTIONS(1420), + [anon_sym_offsetof] = ACTIONS(1420), + [anon_sym__Generic] = ACTIONS(1420), + [anon_sym_asm] = ACTIONS(1420), + [anon_sym___asm__] = ACTIONS(1420), + [sym_number_literal] = ACTIONS(1422), + [anon_sym_L_SQUOTE] = ACTIONS(1422), + [anon_sym_u_SQUOTE] = ACTIONS(1422), + [anon_sym_U_SQUOTE] = ACTIONS(1422), + [anon_sym_u8_SQUOTE] = ACTIONS(1422), + [anon_sym_SQUOTE] = ACTIONS(1422), + [anon_sym_L_DQUOTE] = ACTIONS(1422), + [anon_sym_u_DQUOTE] = ACTIONS(1422), + [anon_sym_U_DQUOTE] = ACTIONS(1422), + [anon_sym_u8_DQUOTE] = ACTIONS(1422), + [anon_sym_DQUOTE] = ACTIONS(1422), + [sym_true] = ACTIONS(1420), + [sym_false] = ACTIONS(1420), + [anon_sym_NULL] = ACTIONS(1420), + [anon_sym_nullptr] = ACTIONS(1420), [sym_comment] = ACTIONS(3), }, [349] = { - [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_LBRACK_LBRACK] = ACTIONS(1335), - [anon_sym___declspec] = 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), - [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_else] = 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), + [ts_builtin_sym_end] = ACTIONS(1330), + [sym_identifier] = ACTIONS(1328), + [aux_sym_preproc_include_token1] = ACTIONS(1328), + [aux_sym_preproc_def_token1] = ACTIONS(1328), + [aux_sym_preproc_if_token1] = ACTIONS(1328), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1328), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1328), + [sym_preproc_directive] = ACTIONS(1328), + [anon_sym_LPAREN2] = ACTIONS(1330), + [anon_sym_BANG] = ACTIONS(1330), + [anon_sym_TILDE] = ACTIONS(1330), + [anon_sym_DASH] = ACTIONS(1328), + [anon_sym_PLUS] = ACTIONS(1328), + [anon_sym_STAR] = ACTIONS(1330), + [anon_sym_AMP] = ACTIONS(1330), + [anon_sym_SEMI] = ACTIONS(1330), + [anon_sym___extension__] = ACTIONS(1328), + [anon_sym_typedef] = ACTIONS(1328), + [anon_sym_extern] = ACTIONS(1328), + [anon_sym___attribute__] = ACTIONS(1328), + [anon_sym___scanf] = ACTIONS(1328), + [anon_sym___printf] = ACTIONS(1328), + [anon_sym___read_mostly] = ACTIONS(1328), + [anon_sym___must_hold] = ACTIONS(1328), + [anon_sym___ro_after_init] = ACTIONS(1328), + [anon_sym___init] = ACTIONS(1328), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1330), + [anon_sym___declspec] = ACTIONS(1328), + [anon_sym___cdecl] = ACTIONS(1328), + [anon_sym___clrcall] = ACTIONS(1328), + [anon_sym___stdcall] = ACTIONS(1328), + [anon_sym___fastcall] = ACTIONS(1328), + [anon_sym___thiscall] = ACTIONS(1328), + [anon_sym___vectorcall] = ACTIONS(1328), + [anon_sym_LBRACE] = ACTIONS(1330), + [anon_sym_signed] = ACTIONS(1328), + [anon_sym_unsigned] = ACTIONS(1328), + [anon_sym_long] = ACTIONS(1328), + [anon_sym_short] = ACTIONS(1328), + [anon_sym_static] = ACTIONS(1328), + [anon_sym_auto] = ACTIONS(1328), + [anon_sym_register] = ACTIONS(1328), + [anon_sym_inline] = ACTIONS(1328), + [anon_sym___inline] = ACTIONS(1328), + [anon_sym___inline__] = ACTIONS(1328), + [anon_sym___forceinline] = ACTIONS(1328), + [anon_sym_thread_local] = ACTIONS(1328), + [anon_sym___thread] = ACTIONS(1328), + [anon_sym_const] = ACTIONS(1328), + [anon_sym_constexpr] = ACTIONS(1328), + [anon_sym_volatile] = ACTIONS(1328), + [anon_sym_restrict] = ACTIONS(1328), + [anon_sym___restrict__] = ACTIONS(1328), + [anon_sym__Atomic] = ACTIONS(1328), + [anon_sym__Noreturn] = ACTIONS(1328), + [anon_sym_noreturn] = ACTIONS(1328), + [sym_primitive_type] = ACTIONS(1328), + [anon_sym_enum] = ACTIONS(1328), + [anon_sym_struct] = ACTIONS(1328), + [anon_sym_union] = ACTIONS(1328), + [anon_sym_if] = ACTIONS(1328), + [anon_sym_else] = ACTIONS(1328), + [anon_sym_switch] = ACTIONS(1328), + [anon_sym_case] = ACTIONS(1328), + [anon_sym_default] = ACTIONS(1328), + [anon_sym_while] = ACTIONS(1328), + [anon_sym_do] = ACTIONS(1328), + [anon_sym_for] = ACTIONS(1328), + [anon_sym_return] = ACTIONS(1328), + [anon_sym_break] = ACTIONS(1328), + [anon_sym_continue] = ACTIONS(1328), + [anon_sym_goto] = ACTIONS(1328), + [anon_sym___try] = ACTIONS(1328), + [anon_sym___leave] = ACTIONS(1328), + [anon_sym_DASH_DASH] = ACTIONS(1330), + [anon_sym_PLUS_PLUS] = ACTIONS(1330), + [anon_sym_sizeof] = ACTIONS(1328), + [anon_sym___alignof__] = ACTIONS(1328), + [anon_sym___alignof] = ACTIONS(1328), + [anon_sym__alignof] = ACTIONS(1328), + [anon_sym_alignof] = ACTIONS(1328), + [anon_sym__Alignof] = ACTIONS(1328), + [anon_sym_offsetof] = ACTIONS(1328), + [anon_sym__Generic] = ACTIONS(1328), + [anon_sym_asm] = ACTIONS(1328), + [anon_sym___asm__] = ACTIONS(1328), + [sym_number_literal] = ACTIONS(1330), + [anon_sym_L_SQUOTE] = ACTIONS(1330), + [anon_sym_u_SQUOTE] = ACTIONS(1330), + [anon_sym_U_SQUOTE] = ACTIONS(1330), + [anon_sym_u8_SQUOTE] = ACTIONS(1330), + [anon_sym_SQUOTE] = ACTIONS(1330), + [anon_sym_L_DQUOTE] = ACTIONS(1330), + [anon_sym_u_DQUOTE] = ACTIONS(1330), + [anon_sym_U_DQUOTE] = ACTIONS(1330), + [anon_sym_u8_DQUOTE] = ACTIONS(1330), + [anon_sym_DQUOTE] = ACTIONS(1330), + [sym_true] = ACTIONS(1328), + [sym_false] = ACTIONS(1328), + [anon_sym_NULL] = ACTIONS(1328), + [anon_sym_nullptr] = ACTIONS(1328), [sym_comment] = ACTIONS(3), }, [350] = { - [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_LBRACK_LBRACK] = ACTIONS(1331), - [anon_sym___declspec] = 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), - [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_else] = 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_identifier] = ACTIONS(1364), + [aux_sym_preproc_include_token1] = ACTIONS(1364), + [aux_sym_preproc_def_token1] = ACTIONS(1364), + [aux_sym_preproc_if_token1] = ACTIONS(1364), + [aux_sym_preproc_if_token2] = ACTIONS(1364), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1364), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1364), + [sym_preproc_directive] = ACTIONS(1364), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(1366), + [anon_sym_TILDE] = ACTIONS(1366), + [anon_sym_DASH] = ACTIONS(1364), + [anon_sym_PLUS] = ACTIONS(1364), + [anon_sym_STAR] = ACTIONS(1366), + [anon_sym_AMP] = ACTIONS(1366), + [anon_sym_SEMI] = ACTIONS(1366), + [anon_sym___extension__] = ACTIONS(1364), + [anon_sym_typedef] = ACTIONS(1364), + [anon_sym_extern] = ACTIONS(1364), + [anon_sym___attribute__] = ACTIONS(1364), + [anon_sym___scanf] = ACTIONS(1364), + [anon_sym___printf] = ACTIONS(1364), + [anon_sym___read_mostly] = ACTIONS(1364), + [anon_sym___must_hold] = ACTIONS(1364), + [anon_sym___ro_after_init] = ACTIONS(1364), + [anon_sym___init] = ACTIONS(1364), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1366), + [anon_sym___declspec] = ACTIONS(1364), + [anon_sym___cdecl] = ACTIONS(1364), + [anon_sym___clrcall] = ACTIONS(1364), + [anon_sym___stdcall] = ACTIONS(1364), + [anon_sym___fastcall] = ACTIONS(1364), + [anon_sym___thiscall] = ACTIONS(1364), + [anon_sym___vectorcall] = ACTIONS(1364), + [anon_sym_LBRACE] = ACTIONS(1366), + [anon_sym_signed] = ACTIONS(1364), + [anon_sym_unsigned] = ACTIONS(1364), + [anon_sym_long] = ACTIONS(1364), + [anon_sym_short] = ACTIONS(1364), + [anon_sym_static] = ACTIONS(1364), + [anon_sym_auto] = ACTIONS(1364), + [anon_sym_register] = ACTIONS(1364), + [anon_sym_inline] = ACTIONS(1364), + [anon_sym___inline] = ACTIONS(1364), + [anon_sym___inline__] = ACTIONS(1364), + [anon_sym___forceinline] = ACTIONS(1364), + [anon_sym_thread_local] = ACTIONS(1364), + [anon_sym___thread] = ACTIONS(1364), + [anon_sym_const] = ACTIONS(1364), + [anon_sym_constexpr] = ACTIONS(1364), + [anon_sym_volatile] = ACTIONS(1364), + [anon_sym_restrict] = ACTIONS(1364), + [anon_sym___restrict__] = ACTIONS(1364), + [anon_sym__Atomic] = ACTIONS(1364), + [anon_sym__Noreturn] = ACTIONS(1364), + [anon_sym_noreturn] = ACTIONS(1364), + [sym_primitive_type] = ACTIONS(1364), + [anon_sym_enum] = ACTIONS(1364), + [anon_sym_struct] = ACTIONS(1364), + [anon_sym_union] = ACTIONS(1364), + [anon_sym_if] = ACTIONS(1364), + [anon_sym_else] = ACTIONS(1364), + [anon_sym_switch] = ACTIONS(1364), + [anon_sym_case] = ACTIONS(1364), + [anon_sym_default] = ACTIONS(1364), + [anon_sym_while] = ACTIONS(1364), + [anon_sym_do] = ACTIONS(1364), + [anon_sym_for] = ACTIONS(1364), + [anon_sym_return] = ACTIONS(1364), + [anon_sym_break] = ACTIONS(1364), + [anon_sym_continue] = ACTIONS(1364), + [anon_sym_goto] = ACTIONS(1364), + [anon_sym___try] = ACTIONS(1364), + [anon_sym___leave] = ACTIONS(1364), + [anon_sym_DASH_DASH] = ACTIONS(1366), + [anon_sym_PLUS_PLUS] = ACTIONS(1366), + [anon_sym_sizeof] = ACTIONS(1364), + [anon_sym___alignof__] = ACTIONS(1364), + [anon_sym___alignof] = ACTIONS(1364), + [anon_sym__alignof] = ACTIONS(1364), + [anon_sym_alignof] = ACTIONS(1364), + [anon_sym__Alignof] = ACTIONS(1364), + [anon_sym_offsetof] = ACTIONS(1364), + [anon_sym__Generic] = ACTIONS(1364), + [anon_sym_asm] = ACTIONS(1364), + [anon_sym___asm__] = ACTIONS(1364), + [sym_number_literal] = ACTIONS(1366), + [anon_sym_L_SQUOTE] = ACTIONS(1366), + [anon_sym_u_SQUOTE] = ACTIONS(1366), + [anon_sym_U_SQUOTE] = ACTIONS(1366), + [anon_sym_u8_SQUOTE] = ACTIONS(1366), + [anon_sym_SQUOTE] = ACTIONS(1366), + [anon_sym_L_DQUOTE] = ACTIONS(1366), + [anon_sym_u_DQUOTE] = ACTIONS(1366), + [anon_sym_U_DQUOTE] = ACTIONS(1366), + [anon_sym_u8_DQUOTE] = ACTIONS(1366), + [anon_sym_DQUOTE] = ACTIONS(1366), + [sym_true] = ACTIONS(1364), + [sym_false] = ACTIONS(1364), + [anon_sym_NULL] = ACTIONS(1364), + [anon_sym_nullptr] = ACTIONS(1364), [sym_comment] = ACTIONS(3), }, [351] = { - [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_LBRACK_LBRACK] = ACTIONS(1315), - [anon_sym___declspec] = 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), - [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_else] = 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_identifier] = ACTIONS(1416), + [aux_sym_preproc_include_token1] = ACTIONS(1416), + [aux_sym_preproc_def_token1] = ACTIONS(1416), + [aux_sym_preproc_if_token1] = ACTIONS(1416), + [aux_sym_preproc_if_token2] = ACTIONS(1416), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1416), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1416), + [sym_preproc_directive] = ACTIONS(1416), + [anon_sym_LPAREN2] = ACTIONS(1418), + [anon_sym_BANG] = ACTIONS(1418), + [anon_sym_TILDE] = ACTIONS(1418), + [anon_sym_DASH] = ACTIONS(1416), + [anon_sym_PLUS] = ACTIONS(1416), + [anon_sym_STAR] = ACTIONS(1418), + [anon_sym_AMP] = ACTIONS(1418), + [anon_sym_SEMI] = ACTIONS(1418), + [anon_sym___extension__] = ACTIONS(1416), + [anon_sym_typedef] = ACTIONS(1416), + [anon_sym_extern] = ACTIONS(1416), + [anon_sym___attribute__] = ACTIONS(1416), + [anon_sym___scanf] = ACTIONS(1416), + [anon_sym___printf] = ACTIONS(1416), + [anon_sym___read_mostly] = ACTIONS(1416), + [anon_sym___must_hold] = ACTIONS(1416), + [anon_sym___ro_after_init] = ACTIONS(1416), + [anon_sym___init] = ACTIONS(1416), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1418), + [anon_sym___declspec] = ACTIONS(1416), + [anon_sym___cdecl] = ACTIONS(1416), + [anon_sym___clrcall] = ACTIONS(1416), + [anon_sym___stdcall] = ACTIONS(1416), + [anon_sym___fastcall] = ACTIONS(1416), + [anon_sym___thiscall] = ACTIONS(1416), + [anon_sym___vectorcall] = ACTIONS(1416), + [anon_sym_LBRACE] = ACTIONS(1418), + [anon_sym_signed] = ACTIONS(1416), + [anon_sym_unsigned] = ACTIONS(1416), + [anon_sym_long] = ACTIONS(1416), + [anon_sym_short] = ACTIONS(1416), + [anon_sym_static] = ACTIONS(1416), + [anon_sym_auto] = ACTIONS(1416), + [anon_sym_register] = ACTIONS(1416), + [anon_sym_inline] = ACTIONS(1416), + [anon_sym___inline] = ACTIONS(1416), + [anon_sym___inline__] = ACTIONS(1416), + [anon_sym___forceinline] = ACTIONS(1416), + [anon_sym_thread_local] = ACTIONS(1416), + [anon_sym___thread] = ACTIONS(1416), + [anon_sym_const] = ACTIONS(1416), + [anon_sym_constexpr] = ACTIONS(1416), + [anon_sym_volatile] = ACTIONS(1416), + [anon_sym_restrict] = ACTIONS(1416), + [anon_sym___restrict__] = ACTIONS(1416), + [anon_sym__Atomic] = ACTIONS(1416), + [anon_sym__Noreturn] = ACTIONS(1416), + [anon_sym_noreturn] = ACTIONS(1416), + [sym_primitive_type] = ACTIONS(1416), + [anon_sym_enum] = ACTIONS(1416), + [anon_sym_struct] = ACTIONS(1416), + [anon_sym_union] = ACTIONS(1416), + [anon_sym_if] = ACTIONS(1416), + [anon_sym_else] = ACTIONS(1416), + [anon_sym_switch] = ACTIONS(1416), + [anon_sym_case] = ACTIONS(1416), + [anon_sym_default] = ACTIONS(1416), + [anon_sym_while] = ACTIONS(1416), + [anon_sym_do] = ACTIONS(1416), + [anon_sym_for] = ACTIONS(1416), + [anon_sym_return] = ACTIONS(1416), + [anon_sym_break] = ACTIONS(1416), + [anon_sym_continue] = ACTIONS(1416), + [anon_sym_goto] = ACTIONS(1416), + [anon_sym___try] = ACTIONS(1416), + [anon_sym___leave] = ACTIONS(1416), + [anon_sym_DASH_DASH] = ACTIONS(1418), + [anon_sym_PLUS_PLUS] = ACTIONS(1418), + [anon_sym_sizeof] = ACTIONS(1416), + [anon_sym___alignof__] = ACTIONS(1416), + [anon_sym___alignof] = ACTIONS(1416), + [anon_sym__alignof] = ACTIONS(1416), + [anon_sym_alignof] = ACTIONS(1416), + [anon_sym__Alignof] = ACTIONS(1416), + [anon_sym_offsetof] = ACTIONS(1416), + [anon_sym__Generic] = ACTIONS(1416), + [anon_sym_asm] = ACTIONS(1416), + [anon_sym___asm__] = ACTIONS(1416), + [sym_number_literal] = ACTIONS(1418), + [anon_sym_L_SQUOTE] = ACTIONS(1418), + [anon_sym_u_SQUOTE] = ACTIONS(1418), + [anon_sym_U_SQUOTE] = ACTIONS(1418), + [anon_sym_u8_SQUOTE] = ACTIONS(1418), + [anon_sym_SQUOTE] = ACTIONS(1418), + [anon_sym_L_DQUOTE] = ACTIONS(1418), + [anon_sym_u_DQUOTE] = ACTIONS(1418), + [anon_sym_U_DQUOTE] = ACTIONS(1418), + [anon_sym_u8_DQUOTE] = ACTIONS(1418), + [anon_sym_DQUOTE] = ACTIONS(1418), + [sym_true] = ACTIONS(1416), + [sym_false] = ACTIONS(1416), + [anon_sym_NULL] = ACTIONS(1416), + [anon_sym_nullptr] = ACTIONS(1416), [sym_comment] = ACTIONS(3), }, [352] = { - [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_LBRACK_LBRACK] = ACTIONS(1315), - [anon_sym___declspec] = 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), - [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_else] = 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_identifier] = ACTIONS(1408), + [aux_sym_preproc_include_token1] = ACTIONS(1408), + [aux_sym_preproc_def_token1] = ACTIONS(1408), + [aux_sym_preproc_if_token1] = ACTIONS(1408), + [aux_sym_preproc_if_token2] = ACTIONS(1408), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1408), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1408), + [sym_preproc_directive] = ACTIONS(1408), + [anon_sym_LPAREN2] = ACTIONS(1410), + [anon_sym_BANG] = ACTIONS(1410), + [anon_sym_TILDE] = ACTIONS(1410), + [anon_sym_DASH] = ACTIONS(1408), + [anon_sym_PLUS] = ACTIONS(1408), + [anon_sym_STAR] = ACTIONS(1410), + [anon_sym_AMP] = ACTIONS(1410), + [anon_sym_SEMI] = ACTIONS(1410), + [anon_sym___extension__] = ACTIONS(1408), + [anon_sym_typedef] = ACTIONS(1408), + [anon_sym_extern] = ACTIONS(1408), + [anon_sym___attribute__] = ACTIONS(1408), + [anon_sym___scanf] = ACTIONS(1408), + [anon_sym___printf] = ACTIONS(1408), + [anon_sym___read_mostly] = ACTIONS(1408), + [anon_sym___must_hold] = ACTIONS(1408), + [anon_sym___ro_after_init] = ACTIONS(1408), + [anon_sym___init] = ACTIONS(1408), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1410), + [anon_sym___declspec] = ACTIONS(1408), + [anon_sym___cdecl] = ACTIONS(1408), + [anon_sym___clrcall] = ACTIONS(1408), + [anon_sym___stdcall] = ACTIONS(1408), + [anon_sym___fastcall] = ACTIONS(1408), + [anon_sym___thiscall] = ACTIONS(1408), + [anon_sym___vectorcall] = ACTIONS(1408), + [anon_sym_LBRACE] = ACTIONS(1410), + [anon_sym_signed] = ACTIONS(1408), + [anon_sym_unsigned] = ACTIONS(1408), + [anon_sym_long] = ACTIONS(1408), + [anon_sym_short] = ACTIONS(1408), + [anon_sym_static] = ACTIONS(1408), + [anon_sym_auto] = ACTIONS(1408), + [anon_sym_register] = ACTIONS(1408), + [anon_sym_inline] = ACTIONS(1408), + [anon_sym___inline] = ACTIONS(1408), + [anon_sym___inline__] = ACTIONS(1408), + [anon_sym___forceinline] = ACTIONS(1408), + [anon_sym_thread_local] = ACTIONS(1408), + [anon_sym___thread] = ACTIONS(1408), + [anon_sym_const] = ACTIONS(1408), + [anon_sym_constexpr] = ACTIONS(1408), + [anon_sym_volatile] = ACTIONS(1408), + [anon_sym_restrict] = ACTIONS(1408), + [anon_sym___restrict__] = ACTIONS(1408), + [anon_sym__Atomic] = ACTIONS(1408), + [anon_sym__Noreturn] = ACTIONS(1408), + [anon_sym_noreturn] = ACTIONS(1408), + [sym_primitive_type] = ACTIONS(1408), + [anon_sym_enum] = ACTIONS(1408), + [anon_sym_struct] = ACTIONS(1408), + [anon_sym_union] = ACTIONS(1408), + [anon_sym_if] = ACTIONS(1408), + [anon_sym_else] = ACTIONS(1408), + [anon_sym_switch] = ACTIONS(1408), + [anon_sym_case] = ACTIONS(1408), + [anon_sym_default] = ACTIONS(1408), + [anon_sym_while] = ACTIONS(1408), + [anon_sym_do] = ACTIONS(1408), + [anon_sym_for] = ACTIONS(1408), + [anon_sym_return] = ACTIONS(1408), + [anon_sym_break] = ACTIONS(1408), + [anon_sym_continue] = ACTIONS(1408), + [anon_sym_goto] = ACTIONS(1408), + [anon_sym___try] = ACTIONS(1408), + [anon_sym___leave] = ACTIONS(1408), + [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_PLUS_PLUS] = ACTIONS(1410), + [anon_sym_sizeof] = ACTIONS(1408), + [anon_sym___alignof__] = ACTIONS(1408), + [anon_sym___alignof] = ACTIONS(1408), + [anon_sym__alignof] = ACTIONS(1408), + [anon_sym_alignof] = ACTIONS(1408), + [anon_sym__Alignof] = ACTIONS(1408), + [anon_sym_offsetof] = ACTIONS(1408), + [anon_sym__Generic] = ACTIONS(1408), + [anon_sym_asm] = ACTIONS(1408), + [anon_sym___asm__] = ACTIONS(1408), + [sym_number_literal] = ACTIONS(1410), + [anon_sym_L_SQUOTE] = ACTIONS(1410), + [anon_sym_u_SQUOTE] = ACTIONS(1410), + [anon_sym_U_SQUOTE] = ACTIONS(1410), + [anon_sym_u8_SQUOTE] = ACTIONS(1410), + [anon_sym_SQUOTE] = ACTIONS(1410), + [anon_sym_L_DQUOTE] = ACTIONS(1410), + [anon_sym_u_DQUOTE] = ACTIONS(1410), + [anon_sym_U_DQUOTE] = ACTIONS(1410), + [anon_sym_u8_DQUOTE] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(1410), + [sym_true] = ACTIONS(1408), + [sym_false] = ACTIONS(1408), + [anon_sym_NULL] = ACTIONS(1408), + [anon_sym_nullptr] = ACTIONS(1408), [sym_comment] = ACTIONS(3), }, [353] = { - [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(1415), - [anon_sym_BANG] = ACTIONS(1415), - [anon_sym_TILDE] = ACTIONS(1415), - [anon_sym_DASH] = ACTIONS(1413), - [anon_sym_PLUS] = ACTIONS(1413), - [anon_sym_STAR] = ACTIONS(1415), - [anon_sym_AMP] = ACTIONS(1415), - [anon_sym_SEMI] = ACTIONS(1415), - [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_LBRACK_LBRACK] = ACTIONS(1415), - [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(1415), - [anon_sym_RBRACE] = ACTIONS(1415), - [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), - [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___try] = ACTIONS(1413), - [anon_sym___leave] = ACTIONS(1413), - [anon_sym_DASH_DASH] = ACTIONS(1415), - [anon_sym_PLUS_PLUS] = ACTIONS(1415), - [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(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(1413), - [sym_false] = ACTIONS(1413), - [anon_sym_NULL] = ACTIONS(1413), - [anon_sym_nullptr] = ACTIONS(1413), + [sym_identifier] = ACTIONS(1468), + [aux_sym_preproc_include_token1] = ACTIONS(1468), + [aux_sym_preproc_def_token1] = ACTIONS(1468), + [aux_sym_preproc_if_token1] = ACTIONS(1468), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1468), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1468), + [sym_preproc_directive] = ACTIONS(1468), + [anon_sym_LPAREN2] = ACTIONS(1470), + [anon_sym_BANG] = ACTIONS(1470), + [anon_sym_TILDE] = ACTIONS(1470), + [anon_sym_DASH] = ACTIONS(1468), + [anon_sym_PLUS] = ACTIONS(1468), + [anon_sym_STAR] = ACTIONS(1470), + [anon_sym_AMP] = ACTIONS(1470), + [anon_sym_SEMI] = ACTIONS(1470), + [anon_sym___extension__] = ACTIONS(1468), + [anon_sym_typedef] = ACTIONS(1468), + [anon_sym_extern] = ACTIONS(1468), + [anon_sym___attribute__] = ACTIONS(1468), + [anon_sym___scanf] = ACTIONS(1468), + [anon_sym___printf] = ACTIONS(1468), + [anon_sym___read_mostly] = ACTIONS(1468), + [anon_sym___must_hold] = ACTIONS(1468), + [anon_sym___ro_after_init] = ACTIONS(1468), + [anon_sym___init] = ACTIONS(1468), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1470), + [anon_sym___declspec] = ACTIONS(1468), + [anon_sym___cdecl] = ACTIONS(1468), + [anon_sym___clrcall] = ACTIONS(1468), + [anon_sym___stdcall] = ACTIONS(1468), + [anon_sym___fastcall] = ACTIONS(1468), + [anon_sym___thiscall] = ACTIONS(1468), + [anon_sym___vectorcall] = ACTIONS(1468), + [anon_sym_LBRACE] = ACTIONS(1470), + [anon_sym_RBRACE] = ACTIONS(1470), + [anon_sym_signed] = ACTIONS(1468), + [anon_sym_unsigned] = ACTIONS(1468), + [anon_sym_long] = ACTIONS(1468), + [anon_sym_short] = ACTIONS(1468), + [anon_sym_static] = ACTIONS(1468), + [anon_sym_auto] = ACTIONS(1468), + [anon_sym_register] = ACTIONS(1468), + [anon_sym_inline] = ACTIONS(1468), + [anon_sym___inline] = ACTIONS(1468), + [anon_sym___inline__] = ACTIONS(1468), + [anon_sym___forceinline] = ACTIONS(1468), + [anon_sym_thread_local] = ACTIONS(1468), + [anon_sym___thread] = ACTIONS(1468), + [anon_sym_const] = ACTIONS(1468), + [anon_sym_constexpr] = ACTIONS(1468), + [anon_sym_volatile] = ACTIONS(1468), + [anon_sym_restrict] = ACTIONS(1468), + [anon_sym___restrict__] = ACTIONS(1468), + [anon_sym__Atomic] = ACTIONS(1468), + [anon_sym__Noreturn] = ACTIONS(1468), + [anon_sym_noreturn] = ACTIONS(1468), + [sym_primitive_type] = ACTIONS(1468), + [anon_sym_enum] = ACTIONS(1468), + [anon_sym_struct] = ACTIONS(1468), + [anon_sym_union] = ACTIONS(1468), + [anon_sym_if] = ACTIONS(1468), + [anon_sym_switch] = ACTIONS(1468), + [anon_sym_case] = ACTIONS(1468), + [anon_sym_default] = ACTIONS(1468), + [anon_sym_while] = ACTIONS(1468), + [anon_sym_do] = ACTIONS(1468), + [anon_sym_for] = ACTIONS(1468), + [anon_sym_return] = ACTIONS(1468), + [anon_sym_break] = ACTIONS(1468), + [anon_sym_continue] = ACTIONS(1468), + [anon_sym_goto] = ACTIONS(1468), + [anon_sym___try] = ACTIONS(1468), + [anon_sym___leave] = ACTIONS(1468), + [anon_sym_DASH_DASH] = ACTIONS(1470), + [anon_sym_PLUS_PLUS] = ACTIONS(1470), + [anon_sym_sizeof] = ACTIONS(1468), + [anon_sym___alignof__] = ACTIONS(1468), + [anon_sym___alignof] = ACTIONS(1468), + [anon_sym__alignof] = ACTIONS(1468), + [anon_sym_alignof] = ACTIONS(1468), + [anon_sym__Alignof] = ACTIONS(1468), + [anon_sym_offsetof] = ACTIONS(1468), + [anon_sym__Generic] = ACTIONS(1468), + [anon_sym_asm] = ACTIONS(1468), + [anon_sym___asm__] = ACTIONS(1468), + [sym_number_literal] = ACTIONS(1470), + [anon_sym_L_SQUOTE] = ACTIONS(1470), + [anon_sym_u_SQUOTE] = ACTIONS(1470), + [anon_sym_U_SQUOTE] = ACTIONS(1470), + [anon_sym_u8_SQUOTE] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1470), + [anon_sym_L_DQUOTE] = ACTIONS(1470), + [anon_sym_u_DQUOTE] = ACTIONS(1470), + [anon_sym_U_DQUOTE] = ACTIONS(1470), + [anon_sym_u8_DQUOTE] = ACTIONS(1470), + [anon_sym_DQUOTE] = ACTIONS(1470), + [sym_true] = ACTIONS(1468), + [sym_false] = ACTIONS(1468), + [anon_sym_NULL] = ACTIONS(1468), + [anon_sym_nullptr] = ACTIONS(1468), [sym_comment] = ACTIONS(3), }, [354] = { - [sym_identifier] = ACTIONS(1457), - [aux_sym_preproc_include_token1] = ACTIONS(1457), - [aux_sym_preproc_def_token1] = ACTIONS(1457), - [aux_sym_preproc_if_token1] = ACTIONS(1457), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1457), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1457), - [sym_preproc_directive] = ACTIONS(1457), - [anon_sym_LPAREN2] = ACTIONS(1459), - [anon_sym_BANG] = ACTIONS(1459), - [anon_sym_TILDE] = ACTIONS(1459), - [anon_sym_DASH] = ACTIONS(1457), - [anon_sym_PLUS] = ACTIONS(1457), - [anon_sym_STAR] = ACTIONS(1459), - [anon_sym_AMP] = ACTIONS(1459), - [anon_sym_SEMI] = ACTIONS(1459), - [anon_sym___extension__] = ACTIONS(1457), - [anon_sym_typedef] = ACTIONS(1457), - [anon_sym_extern] = ACTIONS(1457), - [anon_sym___attribute__] = ACTIONS(1457), - [anon_sym___scanf] = ACTIONS(1457), - [anon_sym___printf] = ACTIONS(1457), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1459), - [anon_sym___declspec] = ACTIONS(1457), - [anon_sym___cdecl] = ACTIONS(1457), - [anon_sym___clrcall] = ACTIONS(1457), - [anon_sym___stdcall] = ACTIONS(1457), - [anon_sym___fastcall] = ACTIONS(1457), - [anon_sym___thiscall] = ACTIONS(1457), - [anon_sym___vectorcall] = ACTIONS(1457), - [anon_sym_LBRACE] = ACTIONS(1459), - [anon_sym_RBRACE] = ACTIONS(1459), - [anon_sym_signed] = ACTIONS(1457), - [anon_sym_unsigned] = ACTIONS(1457), - [anon_sym_long] = ACTIONS(1457), - [anon_sym_short] = ACTIONS(1457), - [anon_sym_static] = ACTIONS(1457), - [anon_sym_auto] = ACTIONS(1457), - [anon_sym_register] = ACTIONS(1457), - [anon_sym_inline] = ACTIONS(1457), - [anon_sym___inline] = ACTIONS(1457), - [anon_sym___inline__] = ACTIONS(1457), - [anon_sym___forceinline] = ACTIONS(1457), - [anon_sym_thread_local] = ACTIONS(1457), - [anon_sym___thread] = ACTIONS(1457), - [anon_sym_const] = ACTIONS(1457), - [anon_sym_constexpr] = ACTIONS(1457), - [anon_sym_volatile] = ACTIONS(1457), - [anon_sym_restrict] = ACTIONS(1457), - [anon_sym___restrict__] = ACTIONS(1457), - [anon_sym__Atomic] = ACTIONS(1457), - [anon_sym__Noreturn] = ACTIONS(1457), - [anon_sym_noreturn] = ACTIONS(1457), - [sym_primitive_type] = ACTIONS(1457), - [anon_sym_enum] = ACTIONS(1457), - [anon_sym_struct] = ACTIONS(1457), - [anon_sym_union] = ACTIONS(1457), - [anon_sym_if] = ACTIONS(1457), - [anon_sym_switch] = ACTIONS(1457), - [anon_sym_case] = ACTIONS(1457), - [anon_sym_default] = ACTIONS(1457), - [anon_sym_while] = ACTIONS(1457), - [anon_sym_do] = ACTIONS(1457), - [anon_sym_for] = ACTIONS(1457), - [anon_sym_return] = ACTIONS(1457), - [anon_sym_break] = ACTIONS(1457), - [anon_sym_continue] = ACTIONS(1457), - [anon_sym_goto] = ACTIONS(1457), - [anon_sym___try] = ACTIONS(1457), - [anon_sym___leave] = ACTIONS(1457), - [anon_sym_DASH_DASH] = ACTIONS(1459), - [anon_sym_PLUS_PLUS] = ACTIONS(1459), - [anon_sym_sizeof] = ACTIONS(1457), - [anon_sym___alignof__] = ACTIONS(1457), - [anon_sym___alignof] = ACTIONS(1457), - [anon_sym__alignof] = ACTIONS(1457), - [anon_sym_alignof] = ACTIONS(1457), - [anon_sym__Alignof] = ACTIONS(1457), - [anon_sym_offsetof] = ACTIONS(1457), - [anon_sym__Generic] = ACTIONS(1457), - [anon_sym_asm] = ACTIONS(1457), - [anon_sym___asm__] = ACTIONS(1457), - [sym_number_literal] = ACTIONS(1459), - [anon_sym_L_SQUOTE] = ACTIONS(1459), - [anon_sym_u_SQUOTE] = ACTIONS(1459), - [anon_sym_U_SQUOTE] = ACTIONS(1459), - [anon_sym_u8_SQUOTE] = ACTIONS(1459), - [anon_sym_SQUOTE] = ACTIONS(1459), - [anon_sym_L_DQUOTE] = ACTIONS(1459), - [anon_sym_u_DQUOTE] = ACTIONS(1459), - [anon_sym_U_DQUOTE] = ACTIONS(1459), - [anon_sym_u8_DQUOTE] = ACTIONS(1459), - [anon_sym_DQUOTE] = ACTIONS(1459), - [sym_true] = ACTIONS(1457), - [sym_false] = ACTIONS(1457), - [anon_sym_NULL] = ACTIONS(1457), - [anon_sym_nullptr] = ACTIONS(1457), + [sym_identifier] = ACTIONS(1520), + [aux_sym_preproc_include_token1] = ACTIONS(1520), + [aux_sym_preproc_def_token1] = ACTIONS(1520), + [aux_sym_preproc_if_token1] = ACTIONS(1520), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1520), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1520), + [sym_preproc_directive] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), + [anon_sym_BANG] = ACTIONS(1522), + [anon_sym_TILDE] = ACTIONS(1522), + [anon_sym_DASH] = ACTIONS(1520), + [anon_sym_PLUS] = ACTIONS(1520), + [anon_sym_STAR] = ACTIONS(1522), + [anon_sym_AMP] = ACTIONS(1522), + [anon_sym_SEMI] = ACTIONS(1522), + [anon_sym___extension__] = ACTIONS(1520), + [anon_sym_typedef] = ACTIONS(1520), + [anon_sym_extern] = ACTIONS(1520), + [anon_sym___attribute__] = ACTIONS(1520), + [anon_sym___scanf] = ACTIONS(1520), + [anon_sym___printf] = ACTIONS(1520), + [anon_sym___read_mostly] = ACTIONS(1520), + [anon_sym___must_hold] = ACTIONS(1520), + [anon_sym___ro_after_init] = ACTIONS(1520), + [anon_sym___init] = ACTIONS(1520), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1522), + [anon_sym___declspec] = ACTIONS(1520), + [anon_sym___cdecl] = ACTIONS(1520), + [anon_sym___clrcall] = ACTIONS(1520), + [anon_sym___stdcall] = ACTIONS(1520), + [anon_sym___fastcall] = ACTIONS(1520), + [anon_sym___thiscall] = ACTIONS(1520), + [anon_sym___vectorcall] = ACTIONS(1520), + [anon_sym_LBRACE] = ACTIONS(1522), + [anon_sym_RBRACE] = ACTIONS(1522), + [anon_sym_signed] = ACTIONS(1520), + [anon_sym_unsigned] = ACTIONS(1520), + [anon_sym_long] = ACTIONS(1520), + [anon_sym_short] = ACTIONS(1520), + [anon_sym_static] = ACTIONS(1520), + [anon_sym_auto] = ACTIONS(1520), + [anon_sym_register] = ACTIONS(1520), + [anon_sym_inline] = ACTIONS(1520), + [anon_sym___inline] = ACTIONS(1520), + [anon_sym___inline__] = ACTIONS(1520), + [anon_sym___forceinline] = ACTIONS(1520), + [anon_sym_thread_local] = ACTIONS(1520), + [anon_sym___thread] = ACTIONS(1520), + [anon_sym_const] = ACTIONS(1520), + [anon_sym_constexpr] = ACTIONS(1520), + [anon_sym_volatile] = ACTIONS(1520), + [anon_sym_restrict] = ACTIONS(1520), + [anon_sym___restrict__] = ACTIONS(1520), + [anon_sym__Atomic] = ACTIONS(1520), + [anon_sym__Noreturn] = ACTIONS(1520), + [anon_sym_noreturn] = ACTIONS(1520), + [sym_primitive_type] = ACTIONS(1520), + [anon_sym_enum] = ACTIONS(1520), + [anon_sym_struct] = ACTIONS(1520), + [anon_sym_union] = ACTIONS(1520), + [anon_sym_if] = ACTIONS(1520), + [anon_sym_switch] = ACTIONS(1520), + [anon_sym_case] = ACTIONS(1520), + [anon_sym_default] = ACTIONS(1520), + [anon_sym_while] = ACTIONS(1520), + [anon_sym_do] = ACTIONS(1520), + [anon_sym_for] = ACTIONS(1520), + [anon_sym_return] = ACTIONS(1520), + [anon_sym_break] = ACTIONS(1520), + [anon_sym_continue] = ACTIONS(1520), + [anon_sym_goto] = ACTIONS(1520), + [anon_sym___try] = ACTIONS(1520), + [anon_sym___leave] = ACTIONS(1520), + [anon_sym_DASH_DASH] = ACTIONS(1522), + [anon_sym_PLUS_PLUS] = ACTIONS(1522), + [anon_sym_sizeof] = ACTIONS(1520), + [anon_sym___alignof__] = ACTIONS(1520), + [anon_sym___alignof] = ACTIONS(1520), + [anon_sym__alignof] = ACTIONS(1520), + [anon_sym_alignof] = ACTIONS(1520), + [anon_sym__Alignof] = ACTIONS(1520), + [anon_sym_offsetof] = ACTIONS(1520), + [anon_sym__Generic] = ACTIONS(1520), + [anon_sym_asm] = ACTIONS(1520), + [anon_sym___asm__] = ACTIONS(1520), + [sym_number_literal] = ACTIONS(1522), + [anon_sym_L_SQUOTE] = ACTIONS(1522), + [anon_sym_u_SQUOTE] = ACTIONS(1522), + [anon_sym_U_SQUOTE] = ACTIONS(1522), + [anon_sym_u8_SQUOTE] = ACTIONS(1522), + [anon_sym_SQUOTE] = ACTIONS(1522), + [anon_sym_L_DQUOTE] = ACTIONS(1522), + [anon_sym_u_DQUOTE] = ACTIONS(1522), + [anon_sym_U_DQUOTE] = ACTIONS(1522), + [anon_sym_u8_DQUOTE] = ACTIONS(1522), + [anon_sym_DQUOTE] = ACTIONS(1522), + [sym_true] = ACTIONS(1520), + [sym_false] = ACTIONS(1520), + [anon_sym_NULL] = ACTIONS(1520), + [anon_sym_nullptr] = ACTIONS(1520), [sym_comment] = ACTIONS(3), }, [355] = { - [sym_identifier] = ACTIONS(1477), - [aux_sym_preproc_include_token1] = ACTIONS(1477), - [aux_sym_preproc_def_token1] = ACTIONS(1477), - [aux_sym_preproc_if_token1] = ACTIONS(1477), - [aux_sym_preproc_if_token2] = ACTIONS(1477), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1477), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1477), - [sym_preproc_directive] = ACTIONS(1477), - [anon_sym_LPAREN2] = ACTIONS(1479), - [anon_sym_BANG] = ACTIONS(1479), - [anon_sym_TILDE] = ACTIONS(1479), - [anon_sym_DASH] = ACTIONS(1477), - [anon_sym_PLUS] = ACTIONS(1477), - [anon_sym_STAR] = ACTIONS(1479), - [anon_sym_AMP] = ACTIONS(1479), - [anon_sym_SEMI] = ACTIONS(1479), - [anon_sym___extension__] = ACTIONS(1477), - [anon_sym_typedef] = ACTIONS(1477), - [anon_sym_extern] = ACTIONS(1477), - [anon_sym___attribute__] = ACTIONS(1477), - [anon_sym___scanf] = ACTIONS(1477), - [anon_sym___printf] = ACTIONS(1477), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1479), - [anon_sym___declspec] = ACTIONS(1477), - [anon_sym___cdecl] = ACTIONS(1477), - [anon_sym___clrcall] = ACTIONS(1477), - [anon_sym___stdcall] = ACTIONS(1477), - [anon_sym___fastcall] = ACTIONS(1477), - [anon_sym___thiscall] = ACTIONS(1477), - [anon_sym___vectorcall] = ACTIONS(1477), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_signed] = ACTIONS(1477), - [anon_sym_unsigned] = ACTIONS(1477), - [anon_sym_long] = ACTIONS(1477), - [anon_sym_short] = ACTIONS(1477), - [anon_sym_static] = ACTIONS(1477), - [anon_sym_auto] = ACTIONS(1477), - [anon_sym_register] = ACTIONS(1477), - [anon_sym_inline] = ACTIONS(1477), - [anon_sym___inline] = ACTIONS(1477), - [anon_sym___inline__] = ACTIONS(1477), - [anon_sym___forceinline] = ACTIONS(1477), - [anon_sym_thread_local] = ACTIONS(1477), - [anon_sym___thread] = ACTIONS(1477), - [anon_sym_const] = ACTIONS(1477), - [anon_sym_constexpr] = ACTIONS(1477), - [anon_sym_volatile] = ACTIONS(1477), - [anon_sym_restrict] = ACTIONS(1477), - [anon_sym___restrict__] = ACTIONS(1477), - [anon_sym__Atomic] = ACTIONS(1477), - [anon_sym__Noreturn] = ACTIONS(1477), - [anon_sym_noreturn] = ACTIONS(1477), - [sym_primitive_type] = ACTIONS(1477), - [anon_sym_enum] = ACTIONS(1477), - [anon_sym_struct] = ACTIONS(1477), - [anon_sym_union] = ACTIONS(1477), - [anon_sym_if] = ACTIONS(1477), - [anon_sym_switch] = ACTIONS(1477), - [anon_sym_case] = ACTIONS(1477), - [anon_sym_default] = ACTIONS(1477), - [anon_sym_while] = ACTIONS(1477), - [anon_sym_do] = ACTIONS(1477), - [anon_sym_for] = ACTIONS(1477), - [anon_sym_return] = ACTIONS(1477), - [anon_sym_break] = ACTIONS(1477), - [anon_sym_continue] = ACTIONS(1477), - [anon_sym_goto] = ACTIONS(1477), - [anon_sym___try] = ACTIONS(1477), - [anon_sym___leave] = ACTIONS(1477), - [anon_sym_DASH_DASH] = ACTIONS(1479), - [anon_sym_PLUS_PLUS] = ACTIONS(1479), - [anon_sym_sizeof] = ACTIONS(1477), - [anon_sym___alignof__] = ACTIONS(1477), - [anon_sym___alignof] = ACTIONS(1477), - [anon_sym__alignof] = ACTIONS(1477), - [anon_sym_alignof] = ACTIONS(1477), - [anon_sym__Alignof] = ACTIONS(1477), - [anon_sym_offsetof] = ACTIONS(1477), - [anon_sym__Generic] = ACTIONS(1477), - [anon_sym_asm] = ACTIONS(1477), - [anon_sym___asm__] = ACTIONS(1477), - [sym_number_literal] = ACTIONS(1479), - [anon_sym_L_SQUOTE] = ACTIONS(1479), - [anon_sym_u_SQUOTE] = ACTIONS(1479), - [anon_sym_U_SQUOTE] = ACTIONS(1479), - [anon_sym_u8_SQUOTE] = ACTIONS(1479), - [anon_sym_SQUOTE] = ACTIONS(1479), - [anon_sym_L_DQUOTE] = ACTIONS(1479), - [anon_sym_u_DQUOTE] = ACTIONS(1479), - [anon_sym_U_DQUOTE] = ACTIONS(1479), - [anon_sym_u8_DQUOTE] = ACTIONS(1479), - [anon_sym_DQUOTE] = ACTIONS(1479), - [sym_true] = ACTIONS(1477), - [sym_false] = ACTIONS(1477), - [anon_sym_NULL] = ACTIONS(1477), - [anon_sym_nullptr] = ACTIONS(1477), + [sym_identifier] = ACTIONS(1428), + [aux_sym_preproc_include_token1] = ACTIONS(1428), + [aux_sym_preproc_def_token1] = ACTIONS(1428), + [aux_sym_preproc_if_token1] = ACTIONS(1428), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1428), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1428), + [sym_preproc_directive] = ACTIONS(1428), + [anon_sym_LPAREN2] = ACTIONS(1430), + [anon_sym_BANG] = ACTIONS(1430), + [anon_sym_TILDE] = ACTIONS(1430), + [anon_sym_DASH] = ACTIONS(1428), + [anon_sym_PLUS] = ACTIONS(1428), + [anon_sym_STAR] = ACTIONS(1430), + [anon_sym_AMP] = ACTIONS(1430), + [anon_sym_SEMI] = ACTIONS(1430), + [anon_sym___extension__] = ACTIONS(1428), + [anon_sym_typedef] = ACTIONS(1428), + [anon_sym_extern] = ACTIONS(1428), + [anon_sym___attribute__] = ACTIONS(1428), + [anon_sym___scanf] = ACTIONS(1428), + [anon_sym___printf] = ACTIONS(1428), + [anon_sym___read_mostly] = ACTIONS(1428), + [anon_sym___must_hold] = ACTIONS(1428), + [anon_sym___ro_after_init] = ACTIONS(1428), + [anon_sym___init] = ACTIONS(1428), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1430), + [anon_sym___declspec] = ACTIONS(1428), + [anon_sym___cdecl] = ACTIONS(1428), + [anon_sym___clrcall] = ACTIONS(1428), + [anon_sym___stdcall] = ACTIONS(1428), + [anon_sym___fastcall] = ACTIONS(1428), + [anon_sym___thiscall] = ACTIONS(1428), + [anon_sym___vectorcall] = ACTIONS(1428), + [anon_sym_LBRACE] = ACTIONS(1430), + [anon_sym_RBRACE] = ACTIONS(1430), + [anon_sym_signed] = ACTIONS(1428), + [anon_sym_unsigned] = ACTIONS(1428), + [anon_sym_long] = ACTIONS(1428), + [anon_sym_short] = ACTIONS(1428), + [anon_sym_static] = ACTIONS(1428), + [anon_sym_auto] = ACTIONS(1428), + [anon_sym_register] = ACTIONS(1428), + [anon_sym_inline] = ACTIONS(1428), + [anon_sym___inline] = ACTIONS(1428), + [anon_sym___inline__] = ACTIONS(1428), + [anon_sym___forceinline] = ACTIONS(1428), + [anon_sym_thread_local] = ACTIONS(1428), + [anon_sym___thread] = ACTIONS(1428), + [anon_sym_const] = ACTIONS(1428), + [anon_sym_constexpr] = ACTIONS(1428), + [anon_sym_volatile] = ACTIONS(1428), + [anon_sym_restrict] = ACTIONS(1428), + [anon_sym___restrict__] = ACTIONS(1428), + [anon_sym__Atomic] = ACTIONS(1428), + [anon_sym__Noreturn] = ACTIONS(1428), + [anon_sym_noreturn] = ACTIONS(1428), + [sym_primitive_type] = ACTIONS(1428), + [anon_sym_enum] = ACTIONS(1428), + [anon_sym_struct] = ACTIONS(1428), + [anon_sym_union] = ACTIONS(1428), + [anon_sym_if] = ACTIONS(1428), + [anon_sym_switch] = ACTIONS(1428), + [anon_sym_case] = ACTIONS(1428), + [anon_sym_default] = ACTIONS(1428), + [anon_sym_while] = ACTIONS(1428), + [anon_sym_do] = ACTIONS(1428), + [anon_sym_for] = ACTIONS(1428), + [anon_sym_return] = ACTIONS(1428), + [anon_sym_break] = ACTIONS(1428), + [anon_sym_continue] = ACTIONS(1428), + [anon_sym_goto] = ACTIONS(1428), + [anon_sym___try] = ACTIONS(1428), + [anon_sym___leave] = ACTIONS(1428), + [anon_sym_DASH_DASH] = ACTIONS(1430), + [anon_sym_PLUS_PLUS] = ACTIONS(1430), + [anon_sym_sizeof] = ACTIONS(1428), + [anon_sym___alignof__] = ACTIONS(1428), + [anon_sym___alignof] = ACTIONS(1428), + [anon_sym__alignof] = ACTIONS(1428), + [anon_sym_alignof] = ACTIONS(1428), + [anon_sym__Alignof] = ACTIONS(1428), + [anon_sym_offsetof] = ACTIONS(1428), + [anon_sym__Generic] = ACTIONS(1428), + [anon_sym_asm] = ACTIONS(1428), + [anon_sym___asm__] = ACTIONS(1428), + [sym_number_literal] = ACTIONS(1430), + [anon_sym_L_SQUOTE] = ACTIONS(1430), + [anon_sym_u_SQUOTE] = ACTIONS(1430), + [anon_sym_U_SQUOTE] = ACTIONS(1430), + [anon_sym_u8_SQUOTE] = ACTIONS(1430), + [anon_sym_SQUOTE] = ACTIONS(1430), + [anon_sym_L_DQUOTE] = ACTIONS(1430), + [anon_sym_u_DQUOTE] = ACTIONS(1430), + [anon_sym_U_DQUOTE] = ACTIONS(1430), + [anon_sym_u8_DQUOTE] = ACTIONS(1430), + [anon_sym_DQUOTE] = ACTIONS(1430), + [sym_true] = ACTIONS(1428), + [sym_false] = ACTIONS(1428), + [anon_sym_NULL] = ACTIONS(1428), + [anon_sym_nullptr] = ACTIONS(1428), [sym_comment] = ACTIONS(3), }, [356] = { - [sym_identifier] = ACTIONS(1461), - [aux_sym_preproc_include_token1] = ACTIONS(1461), - [aux_sym_preproc_def_token1] = ACTIONS(1461), - [aux_sym_preproc_if_token1] = ACTIONS(1461), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1461), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1461), - [sym_preproc_directive] = ACTIONS(1461), - [anon_sym_LPAREN2] = ACTIONS(1463), - [anon_sym_BANG] = ACTIONS(1463), - [anon_sym_TILDE] = ACTIONS(1463), - [anon_sym_DASH] = ACTIONS(1461), - [anon_sym_PLUS] = ACTIONS(1461), - [anon_sym_STAR] = ACTIONS(1463), - [anon_sym_AMP] = ACTIONS(1463), - [anon_sym_SEMI] = ACTIONS(1463), - [anon_sym___extension__] = ACTIONS(1461), - [anon_sym_typedef] = ACTIONS(1461), - [anon_sym_extern] = ACTIONS(1461), - [anon_sym___attribute__] = ACTIONS(1461), - [anon_sym___scanf] = ACTIONS(1461), - [anon_sym___printf] = ACTIONS(1461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1463), - [anon_sym___declspec] = ACTIONS(1461), - [anon_sym___cdecl] = ACTIONS(1461), - [anon_sym___clrcall] = ACTIONS(1461), - [anon_sym___stdcall] = ACTIONS(1461), - [anon_sym___fastcall] = ACTIONS(1461), - [anon_sym___thiscall] = ACTIONS(1461), - [anon_sym___vectorcall] = ACTIONS(1461), - [anon_sym_LBRACE] = ACTIONS(1463), - [anon_sym_RBRACE] = ACTIONS(1463), - [anon_sym_signed] = ACTIONS(1461), - [anon_sym_unsigned] = ACTIONS(1461), - [anon_sym_long] = ACTIONS(1461), - [anon_sym_short] = ACTIONS(1461), - [anon_sym_static] = ACTIONS(1461), - [anon_sym_auto] = ACTIONS(1461), - [anon_sym_register] = ACTIONS(1461), - [anon_sym_inline] = ACTIONS(1461), - [anon_sym___inline] = ACTIONS(1461), - [anon_sym___inline__] = ACTIONS(1461), - [anon_sym___forceinline] = ACTIONS(1461), - [anon_sym_thread_local] = ACTIONS(1461), - [anon_sym___thread] = ACTIONS(1461), - [anon_sym_const] = ACTIONS(1461), - [anon_sym_constexpr] = ACTIONS(1461), - [anon_sym_volatile] = ACTIONS(1461), - [anon_sym_restrict] = ACTIONS(1461), - [anon_sym___restrict__] = ACTIONS(1461), - [anon_sym__Atomic] = ACTIONS(1461), - [anon_sym__Noreturn] = ACTIONS(1461), - [anon_sym_noreturn] = ACTIONS(1461), - [sym_primitive_type] = ACTIONS(1461), - [anon_sym_enum] = ACTIONS(1461), - [anon_sym_struct] = ACTIONS(1461), - [anon_sym_union] = ACTIONS(1461), - [anon_sym_if] = ACTIONS(1461), - [anon_sym_switch] = ACTIONS(1461), - [anon_sym_case] = ACTIONS(1461), - [anon_sym_default] = ACTIONS(1461), - [anon_sym_while] = ACTIONS(1461), - [anon_sym_do] = ACTIONS(1461), - [anon_sym_for] = ACTIONS(1461), - [anon_sym_return] = ACTIONS(1461), - [anon_sym_break] = ACTIONS(1461), - [anon_sym_continue] = ACTIONS(1461), - [anon_sym_goto] = ACTIONS(1461), - [anon_sym___try] = ACTIONS(1461), - [anon_sym___leave] = ACTIONS(1461), - [anon_sym_DASH_DASH] = ACTIONS(1463), - [anon_sym_PLUS_PLUS] = ACTIONS(1463), - [anon_sym_sizeof] = ACTIONS(1461), - [anon_sym___alignof__] = ACTIONS(1461), - [anon_sym___alignof] = ACTIONS(1461), - [anon_sym__alignof] = ACTIONS(1461), - [anon_sym_alignof] = ACTIONS(1461), - [anon_sym__Alignof] = ACTIONS(1461), - [anon_sym_offsetof] = ACTIONS(1461), - [anon_sym__Generic] = ACTIONS(1461), - [anon_sym_asm] = ACTIONS(1461), - [anon_sym___asm__] = ACTIONS(1461), - [sym_number_literal] = ACTIONS(1463), - [anon_sym_L_SQUOTE] = ACTIONS(1463), - [anon_sym_u_SQUOTE] = ACTIONS(1463), - [anon_sym_U_SQUOTE] = ACTIONS(1463), - [anon_sym_u8_SQUOTE] = ACTIONS(1463), - [anon_sym_SQUOTE] = ACTIONS(1463), - [anon_sym_L_DQUOTE] = ACTIONS(1463), - [anon_sym_u_DQUOTE] = ACTIONS(1463), - [anon_sym_U_DQUOTE] = ACTIONS(1463), - [anon_sym_u8_DQUOTE] = ACTIONS(1463), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_true] = ACTIONS(1461), - [sym_false] = ACTIONS(1461), - [anon_sym_NULL] = ACTIONS(1461), - [anon_sym_nullptr] = ACTIONS(1461), + [sym_identifier] = ACTIONS(1436), + [aux_sym_preproc_include_token1] = ACTIONS(1436), + [aux_sym_preproc_def_token1] = ACTIONS(1436), + [aux_sym_preproc_if_token1] = ACTIONS(1436), + [aux_sym_preproc_if_token2] = ACTIONS(1436), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1436), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1436), + [sym_preproc_directive] = ACTIONS(1436), + [anon_sym_LPAREN2] = ACTIONS(1438), + [anon_sym_BANG] = ACTIONS(1438), + [anon_sym_TILDE] = ACTIONS(1438), + [anon_sym_DASH] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1436), + [anon_sym_STAR] = ACTIONS(1438), + [anon_sym_AMP] = ACTIONS(1438), + [anon_sym_SEMI] = ACTIONS(1438), + [anon_sym___extension__] = ACTIONS(1436), + [anon_sym_typedef] = ACTIONS(1436), + [anon_sym_extern] = ACTIONS(1436), + [anon_sym___attribute__] = ACTIONS(1436), + [anon_sym___scanf] = ACTIONS(1436), + [anon_sym___printf] = ACTIONS(1436), + [anon_sym___read_mostly] = ACTIONS(1436), + [anon_sym___must_hold] = ACTIONS(1436), + [anon_sym___ro_after_init] = ACTIONS(1436), + [anon_sym___init] = ACTIONS(1436), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1438), + [anon_sym___declspec] = ACTIONS(1436), + [anon_sym___cdecl] = ACTIONS(1436), + [anon_sym___clrcall] = ACTIONS(1436), + [anon_sym___stdcall] = ACTIONS(1436), + [anon_sym___fastcall] = ACTIONS(1436), + [anon_sym___thiscall] = ACTIONS(1436), + [anon_sym___vectorcall] = ACTIONS(1436), + [anon_sym_LBRACE] = ACTIONS(1438), + [anon_sym_signed] = ACTIONS(1436), + [anon_sym_unsigned] = ACTIONS(1436), + [anon_sym_long] = ACTIONS(1436), + [anon_sym_short] = ACTIONS(1436), + [anon_sym_static] = ACTIONS(1436), + [anon_sym_auto] = ACTIONS(1436), + [anon_sym_register] = ACTIONS(1436), + [anon_sym_inline] = ACTIONS(1436), + [anon_sym___inline] = ACTIONS(1436), + [anon_sym___inline__] = ACTIONS(1436), + [anon_sym___forceinline] = ACTIONS(1436), + [anon_sym_thread_local] = ACTIONS(1436), + [anon_sym___thread] = ACTIONS(1436), + [anon_sym_const] = ACTIONS(1436), + [anon_sym_constexpr] = ACTIONS(1436), + [anon_sym_volatile] = ACTIONS(1436), + [anon_sym_restrict] = ACTIONS(1436), + [anon_sym___restrict__] = ACTIONS(1436), + [anon_sym__Atomic] = ACTIONS(1436), + [anon_sym__Noreturn] = ACTIONS(1436), + [anon_sym_noreturn] = ACTIONS(1436), + [sym_primitive_type] = ACTIONS(1436), + [anon_sym_enum] = ACTIONS(1436), + [anon_sym_struct] = ACTIONS(1436), + [anon_sym_union] = ACTIONS(1436), + [anon_sym_if] = ACTIONS(1436), + [anon_sym_switch] = ACTIONS(1436), + [anon_sym_case] = ACTIONS(1436), + [anon_sym_default] = ACTIONS(1436), + [anon_sym_while] = ACTIONS(1436), + [anon_sym_do] = ACTIONS(1436), + [anon_sym_for] = ACTIONS(1436), + [anon_sym_return] = ACTIONS(1436), + [anon_sym_break] = ACTIONS(1436), + [anon_sym_continue] = ACTIONS(1436), + [anon_sym_goto] = ACTIONS(1436), + [anon_sym___try] = ACTIONS(1436), + [anon_sym___leave] = ACTIONS(1436), + [anon_sym_DASH_DASH] = ACTIONS(1438), + [anon_sym_PLUS_PLUS] = ACTIONS(1438), + [anon_sym_sizeof] = ACTIONS(1436), + [anon_sym___alignof__] = ACTIONS(1436), + [anon_sym___alignof] = ACTIONS(1436), + [anon_sym__alignof] = ACTIONS(1436), + [anon_sym_alignof] = ACTIONS(1436), + [anon_sym__Alignof] = ACTIONS(1436), + [anon_sym_offsetof] = ACTIONS(1436), + [anon_sym__Generic] = ACTIONS(1436), + [anon_sym_asm] = ACTIONS(1436), + [anon_sym___asm__] = ACTIONS(1436), + [sym_number_literal] = ACTIONS(1438), + [anon_sym_L_SQUOTE] = ACTIONS(1438), + [anon_sym_u_SQUOTE] = ACTIONS(1438), + [anon_sym_U_SQUOTE] = ACTIONS(1438), + [anon_sym_u8_SQUOTE] = ACTIONS(1438), + [anon_sym_SQUOTE] = ACTIONS(1438), + [anon_sym_L_DQUOTE] = ACTIONS(1438), + [anon_sym_u_DQUOTE] = ACTIONS(1438), + [anon_sym_U_DQUOTE] = ACTIONS(1438), + [anon_sym_u8_DQUOTE] = ACTIONS(1438), + [anon_sym_DQUOTE] = ACTIONS(1438), + [sym_true] = ACTIONS(1436), + [sym_false] = ACTIONS(1436), + [anon_sym_NULL] = ACTIONS(1436), + [anon_sym_nullptr] = ACTIONS(1436), [sym_comment] = ACTIONS(3), }, [357] = { - [sym_identifier] = ACTIONS(1465), - [aux_sym_preproc_include_token1] = ACTIONS(1465), - [aux_sym_preproc_def_token1] = ACTIONS(1465), - [aux_sym_preproc_if_token1] = ACTIONS(1465), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1465), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1465), - [sym_preproc_directive] = ACTIONS(1465), - [anon_sym_LPAREN2] = ACTIONS(1467), - [anon_sym_BANG] = ACTIONS(1467), - [anon_sym_TILDE] = ACTIONS(1467), - [anon_sym_DASH] = ACTIONS(1465), - [anon_sym_PLUS] = ACTIONS(1465), - [anon_sym_STAR] = ACTIONS(1467), - [anon_sym_AMP] = ACTIONS(1467), - [anon_sym_SEMI] = ACTIONS(1467), - [anon_sym___extension__] = ACTIONS(1465), - [anon_sym_typedef] = ACTIONS(1465), - [anon_sym_extern] = ACTIONS(1465), - [anon_sym___attribute__] = ACTIONS(1465), - [anon_sym___scanf] = ACTIONS(1465), - [anon_sym___printf] = ACTIONS(1465), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1467), - [anon_sym___declspec] = ACTIONS(1465), - [anon_sym___cdecl] = ACTIONS(1465), - [anon_sym___clrcall] = ACTIONS(1465), - [anon_sym___stdcall] = ACTIONS(1465), - [anon_sym___fastcall] = ACTIONS(1465), - [anon_sym___thiscall] = ACTIONS(1465), - [anon_sym___vectorcall] = ACTIONS(1465), - [anon_sym_LBRACE] = ACTIONS(1467), - [anon_sym_RBRACE] = ACTIONS(1467), - [anon_sym_signed] = ACTIONS(1465), - [anon_sym_unsigned] = ACTIONS(1465), - [anon_sym_long] = ACTIONS(1465), - [anon_sym_short] = ACTIONS(1465), - [anon_sym_static] = ACTIONS(1465), - [anon_sym_auto] = ACTIONS(1465), - [anon_sym_register] = ACTIONS(1465), - [anon_sym_inline] = ACTIONS(1465), - [anon_sym___inline] = ACTIONS(1465), - [anon_sym___inline__] = ACTIONS(1465), - [anon_sym___forceinline] = ACTIONS(1465), - [anon_sym_thread_local] = ACTIONS(1465), - [anon_sym___thread] = ACTIONS(1465), - [anon_sym_const] = ACTIONS(1465), - [anon_sym_constexpr] = ACTIONS(1465), - [anon_sym_volatile] = ACTIONS(1465), - [anon_sym_restrict] = ACTIONS(1465), - [anon_sym___restrict__] = ACTIONS(1465), - [anon_sym__Atomic] = ACTIONS(1465), - [anon_sym__Noreturn] = ACTIONS(1465), - [anon_sym_noreturn] = ACTIONS(1465), - [sym_primitive_type] = ACTIONS(1465), - [anon_sym_enum] = ACTIONS(1465), - [anon_sym_struct] = ACTIONS(1465), - [anon_sym_union] = ACTIONS(1465), - [anon_sym_if] = ACTIONS(1465), - [anon_sym_switch] = ACTIONS(1465), - [anon_sym_case] = ACTIONS(1465), - [anon_sym_default] = ACTIONS(1465), - [anon_sym_while] = ACTIONS(1465), - [anon_sym_do] = ACTIONS(1465), - [anon_sym_for] = ACTIONS(1465), - [anon_sym_return] = ACTIONS(1465), - [anon_sym_break] = ACTIONS(1465), - [anon_sym_continue] = ACTIONS(1465), - [anon_sym_goto] = ACTIONS(1465), - [anon_sym___try] = ACTIONS(1465), - [anon_sym___leave] = ACTIONS(1465), - [anon_sym_DASH_DASH] = ACTIONS(1467), - [anon_sym_PLUS_PLUS] = ACTIONS(1467), - [anon_sym_sizeof] = ACTIONS(1465), - [anon_sym___alignof__] = ACTIONS(1465), - [anon_sym___alignof] = ACTIONS(1465), - [anon_sym__alignof] = ACTIONS(1465), - [anon_sym_alignof] = ACTIONS(1465), - [anon_sym__Alignof] = ACTIONS(1465), - [anon_sym_offsetof] = ACTIONS(1465), - [anon_sym__Generic] = ACTIONS(1465), - [anon_sym_asm] = ACTIONS(1465), - [anon_sym___asm__] = ACTIONS(1465), - [sym_number_literal] = ACTIONS(1467), - [anon_sym_L_SQUOTE] = ACTIONS(1467), - [anon_sym_u_SQUOTE] = ACTIONS(1467), - [anon_sym_U_SQUOTE] = ACTIONS(1467), - [anon_sym_u8_SQUOTE] = ACTIONS(1467), - [anon_sym_SQUOTE] = ACTIONS(1467), - [anon_sym_L_DQUOTE] = ACTIONS(1467), - [anon_sym_u_DQUOTE] = ACTIONS(1467), - [anon_sym_U_DQUOTE] = ACTIONS(1467), - [anon_sym_u8_DQUOTE] = ACTIONS(1467), - [anon_sym_DQUOTE] = ACTIONS(1467), - [sym_true] = ACTIONS(1465), - [sym_false] = ACTIONS(1465), - [anon_sym_NULL] = ACTIONS(1465), - [anon_sym_nullptr] = ACTIONS(1465), + [sym_identifier] = ACTIONS(1440), + [aux_sym_preproc_include_token1] = ACTIONS(1440), + [aux_sym_preproc_def_token1] = ACTIONS(1440), + [aux_sym_preproc_if_token1] = ACTIONS(1440), + [aux_sym_preproc_if_token2] = ACTIONS(1440), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1440), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1440), + [sym_preproc_directive] = ACTIONS(1440), + [anon_sym_LPAREN2] = ACTIONS(1442), + [anon_sym_BANG] = ACTIONS(1442), + [anon_sym_TILDE] = ACTIONS(1442), + [anon_sym_DASH] = ACTIONS(1440), + [anon_sym_PLUS] = ACTIONS(1440), + [anon_sym_STAR] = ACTIONS(1442), + [anon_sym_AMP] = ACTIONS(1442), + [anon_sym_SEMI] = ACTIONS(1442), + [anon_sym___extension__] = ACTIONS(1440), + [anon_sym_typedef] = ACTIONS(1440), + [anon_sym_extern] = ACTIONS(1440), + [anon_sym___attribute__] = ACTIONS(1440), + [anon_sym___scanf] = ACTIONS(1440), + [anon_sym___printf] = ACTIONS(1440), + [anon_sym___read_mostly] = ACTIONS(1440), + [anon_sym___must_hold] = ACTIONS(1440), + [anon_sym___ro_after_init] = ACTIONS(1440), + [anon_sym___init] = ACTIONS(1440), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1442), + [anon_sym___declspec] = ACTIONS(1440), + [anon_sym___cdecl] = ACTIONS(1440), + [anon_sym___clrcall] = ACTIONS(1440), + [anon_sym___stdcall] = ACTIONS(1440), + [anon_sym___fastcall] = ACTIONS(1440), + [anon_sym___thiscall] = ACTIONS(1440), + [anon_sym___vectorcall] = ACTIONS(1440), + [anon_sym_LBRACE] = ACTIONS(1442), + [anon_sym_signed] = ACTIONS(1440), + [anon_sym_unsigned] = ACTIONS(1440), + [anon_sym_long] = ACTIONS(1440), + [anon_sym_short] = ACTIONS(1440), + [anon_sym_static] = ACTIONS(1440), + [anon_sym_auto] = ACTIONS(1440), + [anon_sym_register] = ACTIONS(1440), + [anon_sym_inline] = ACTIONS(1440), + [anon_sym___inline] = ACTIONS(1440), + [anon_sym___inline__] = ACTIONS(1440), + [anon_sym___forceinline] = ACTIONS(1440), + [anon_sym_thread_local] = ACTIONS(1440), + [anon_sym___thread] = ACTIONS(1440), + [anon_sym_const] = ACTIONS(1440), + [anon_sym_constexpr] = ACTIONS(1440), + [anon_sym_volatile] = ACTIONS(1440), + [anon_sym_restrict] = ACTIONS(1440), + [anon_sym___restrict__] = ACTIONS(1440), + [anon_sym__Atomic] = ACTIONS(1440), + [anon_sym__Noreturn] = ACTIONS(1440), + [anon_sym_noreturn] = ACTIONS(1440), + [sym_primitive_type] = ACTIONS(1440), + [anon_sym_enum] = ACTIONS(1440), + [anon_sym_struct] = ACTIONS(1440), + [anon_sym_union] = ACTIONS(1440), + [anon_sym_if] = ACTIONS(1440), + [anon_sym_switch] = ACTIONS(1440), + [anon_sym_case] = ACTIONS(1440), + [anon_sym_default] = ACTIONS(1440), + [anon_sym_while] = ACTIONS(1440), + [anon_sym_do] = ACTIONS(1440), + [anon_sym_for] = ACTIONS(1440), + [anon_sym_return] = ACTIONS(1440), + [anon_sym_break] = ACTIONS(1440), + [anon_sym_continue] = ACTIONS(1440), + [anon_sym_goto] = ACTIONS(1440), + [anon_sym___try] = ACTIONS(1440), + [anon_sym___leave] = ACTIONS(1440), + [anon_sym_DASH_DASH] = ACTIONS(1442), + [anon_sym_PLUS_PLUS] = ACTIONS(1442), + [anon_sym_sizeof] = ACTIONS(1440), + [anon_sym___alignof__] = ACTIONS(1440), + [anon_sym___alignof] = ACTIONS(1440), + [anon_sym__alignof] = ACTIONS(1440), + [anon_sym_alignof] = ACTIONS(1440), + [anon_sym__Alignof] = ACTIONS(1440), + [anon_sym_offsetof] = ACTIONS(1440), + [anon_sym__Generic] = ACTIONS(1440), + [anon_sym_asm] = ACTIONS(1440), + [anon_sym___asm__] = ACTIONS(1440), + [sym_number_literal] = ACTIONS(1442), + [anon_sym_L_SQUOTE] = ACTIONS(1442), + [anon_sym_u_SQUOTE] = ACTIONS(1442), + [anon_sym_U_SQUOTE] = ACTIONS(1442), + [anon_sym_u8_SQUOTE] = ACTIONS(1442), + [anon_sym_SQUOTE] = ACTIONS(1442), + [anon_sym_L_DQUOTE] = ACTIONS(1442), + [anon_sym_u_DQUOTE] = ACTIONS(1442), + [anon_sym_U_DQUOTE] = ACTIONS(1442), + [anon_sym_u8_DQUOTE] = ACTIONS(1442), + [anon_sym_DQUOTE] = ACTIONS(1442), + [sym_true] = ACTIONS(1440), + [sym_false] = ACTIONS(1440), + [anon_sym_NULL] = ACTIONS(1440), + [anon_sym_nullptr] = ACTIONS(1440), [sym_comment] = ACTIONS(3), }, [358] = { - [sym_identifier] = ACTIONS(1469), - [aux_sym_preproc_include_token1] = ACTIONS(1469), - [aux_sym_preproc_def_token1] = ACTIONS(1469), - [aux_sym_preproc_if_token1] = ACTIONS(1469), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1469), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1469), - [sym_preproc_directive] = ACTIONS(1469), - [anon_sym_LPAREN2] = ACTIONS(1471), - [anon_sym_BANG] = ACTIONS(1471), - [anon_sym_TILDE] = ACTIONS(1471), - [anon_sym_DASH] = ACTIONS(1469), - [anon_sym_PLUS] = ACTIONS(1469), - [anon_sym_STAR] = ACTIONS(1471), - [anon_sym_AMP] = ACTIONS(1471), - [anon_sym_SEMI] = ACTIONS(1471), - [anon_sym___extension__] = ACTIONS(1469), - [anon_sym_typedef] = ACTIONS(1469), - [anon_sym_extern] = ACTIONS(1469), - [anon_sym___attribute__] = ACTIONS(1469), - [anon_sym___scanf] = ACTIONS(1469), - [anon_sym___printf] = ACTIONS(1469), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1471), - [anon_sym___declspec] = ACTIONS(1469), - [anon_sym___cdecl] = ACTIONS(1469), - [anon_sym___clrcall] = ACTIONS(1469), - [anon_sym___stdcall] = ACTIONS(1469), - [anon_sym___fastcall] = ACTIONS(1469), - [anon_sym___thiscall] = ACTIONS(1469), - [anon_sym___vectorcall] = ACTIONS(1469), - [anon_sym_LBRACE] = ACTIONS(1471), - [anon_sym_RBRACE] = ACTIONS(1471), - [anon_sym_signed] = ACTIONS(1469), - [anon_sym_unsigned] = ACTIONS(1469), - [anon_sym_long] = ACTIONS(1469), - [anon_sym_short] = ACTIONS(1469), - [anon_sym_static] = ACTIONS(1469), - [anon_sym_auto] = ACTIONS(1469), - [anon_sym_register] = ACTIONS(1469), - [anon_sym_inline] = ACTIONS(1469), - [anon_sym___inline] = ACTIONS(1469), - [anon_sym___inline__] = ACTIONS(1469), - [anon_sym___forceinline] = ACTIONS(1469), - [anon_sym_thread_local] = ACTIONS(1469), - [anon_sym___thread] = ACTIONS(1469), - [anon_sym_const] = ACTIONS(1469), - [anon_sym_constexpr] = ACTIONS(1469), - [anon_sym_volatile] = ACTIONS(1469), - [anon_sym_restrict] = ACTIONS(1469), - [anon_sym___restrict__] = ACTIONS(1469), - [anon_sym__Atomic] = ACTIONS(1469), - [anon_sym__Noreturn] = ACTIONS(1469), - [anon_sym_noreturn] = ACTIONS(1469), - [sym_primitive_type] = ACTIONS(1469), - [anon_sym_enum] = ACTIONS(1469), - [anon_sym_struct] = ACTIONS(1469), - [anon_sym_union] = ACTIONS(1469), - [anon_sym_if] = ACTIONS(1469), - [anon_sym_switch] = ACTIONS(1469), - [anon_sym_case] = ACTIONS(1469), - [anon_sym_default] = ACTIONS(1469), - [anon_sym_while] = ACTIONS(1469), - [anon_sym_do] = ACTIONS(1469), - [anon_sym_for] = ACTIONS(1469), - [anon_sym_return] = ACTIONS(1469), - [anon_sym_break] = ACTIONS(1469), - [anon_sym_continue] = ACTIONS(1469), - [anon_sym_goto] = ACTIONS(1469), - [anon_sym___try] = ACTIONS(1469), - [anon_sym___leave] = ACTIONS(1469), - [anon_sym_DASH_DASH] = ACTIONS(1471), - [anon_sym_PLUS_PLUS] = ACTIONS(1471), - [anon_sym_sizeof] = ACTIONS(1469), - [anon_sym___alignof__] = ACTIONS(1469), - [anon_sym___alignof] = ACTIONS(1469), - [anon_sym__alignof] = ACTIONS(1469), - [anon_sym_alignof] = ACTIONS(1469), - [anon_sym__Alignof] = ACTIONS(1469), - [anon_sym_offsetof] = ACTIONS(1469), - [anon_sym__Generic] = ACTIONS(1469), - [anon_sym_asm] = ACTIONS(1469), - [anon_sym___asm__] = ACTIONS(1469), - [sym_number_literal] = ACTIONS(1471), - [anon_sym_L_SQUOTE] = ACTIONS(1471), - [anon_sym_u_SQUOTE] = ACTIONS(1471), - [anon_sym_U_SQUOTE] = ACTIONS(1471), - [anon_sym_u8_SQUOTE] = ACTIONS(1471), - [anon_sym_SQUOTE] = ACTIONS(1471), - [anon_sym_L_DQUOTE] = ACTIONS(1471), - [anon_sym_u_DQUOTE] = ACTIONS(1471), - [anon_sym_U_DQUOTE] = ACTIONS(1471), - [anon_sym_u8_DQUOTE] = ACTIONS(1471), - [anon_sym_DQUOTE] = ACTIONS(1471), - [sym_true] = ACTIONS(1469), - [sym_false] = ACTIONS(1469), - [anon_sym_NULL] = ACTIONS(1469), - [anon_sym_nullptr] = ACTIONS(1469), + [sym_identifier] = ACTIONS(1472), + [aux_sym_preproc_include_token1] = ACTIONS(1472), + [aux_sym_preproc_def_token1] = ACTIONS(1472), + [aux_sym_preproc_if_token1] = ACTIONS(1472), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1472), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1472), + [sym_preproc_directive] = ACTIONS(1472), + [anon_sym_LPAREN2] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1474), + [anon_sym_TILDE] = ACTIONS(1474), + [anon_sym_DASH] = ACTIONS(1472), + [anon_sym_PLUS] = ACTIONS(1472), + [anon_sym_STAR] = ACTIONS(1474), + [anon_sym_AMP] = ACTIONS(1474), + [anon_sym_SEMI] = ACTIONS(1474), + [anon_sym___extension__] = ACTIONS(1472), + [anon_sym_typedef] = ACTIONS(1472), + [anon_sym_extern] = ACTIONS(1472), + [anon_sym___attribute__] = ACTIONS(1472), + [anon_sym___scanf] = ACTIONS(1472), + [anon_sym___printf] = ACTIONS(1472), + [anon_sym___read_mostly] = ACTIONS(1472), + [anon_sym___must_hold] = ACTIONS(1472), + [anon_sym___ro_after_init] = ACTIONS(1472), + [anon_sym___init] = ACTIONS(1472), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1474), + [anon_sym___declspec] = ACTIONS(1472), + [anon_sym___cdecl] = ACTIONS(1472), + [anon_sym___clrcall] = ACTIONS(1472), + [anon_sym___stdcall] = ACTIONS(1472), + [anon_sym___fastcall] = ACTIONS(1472), + [anon_sym___thiscall] = ACTIONS(1472), + [anon_sym___vectorcall] = ACTIONS(1472), + [anon_sym_LBRACE] = ACTIONS(1474), + [anon_sym_RBRACE] = ACTIONS(1474), + [anon_sym_signed] = ACTIONS(1472), + [anon_sym_unsigned] = ACTIONS(1472), + [anon_sym_long] = ACTIONS(1472), + [anon_sym_short] = ACTIONS(1472), + [anon_sym_static] = ACTIONS(1472), + [anon_sym_auto] = ACTIONS(1472), + [anon_sym_register] = ACTIONS(1472), + [anon_sym_inline] = ACTIONS(1472), + [anon_sym___inline] = ACTIONS(1472), + [anon_sym___inline__] = ACTIONS(1472), + [anon_sym___forceinline] = ACTIONS(1472), + [anon_sym_thread_local] = ACTIONS(1472), + [anon_sym___thread] = ACTIONS(1472), + [anon_sym_const] = ACTIONS(1472), + [anon_sym_constexpr] = ACTIONS(1472), + [anon_sym_volatile] = ACTIONS(1472), + [anon_sym_restrict] = ACTIONS(1472), + [anon_sym___restrict__] = ACTIONS(1472), + [anon_sym__Atomic] = ACTIONS(1472), + [anon_sym__Noreturn] = ACTIONS(1472), + [anon_sym_noreturn] = ACTIONS(1472), + [sym_primitive_type] = ACTIONS(1472), + [anon_sym_enum] = ACTIONS(1472), + [anon_sym_struct] = ACTIONS(1472), + [anon_sym_union] = ACTIONS(1472), + [anon_sym_if] = ACTIONS(1472), + [anon_sym_switch] = ACTIONS(1472), + [anon_sym_case] = ACTIONS(1472), + [anon_sym_default] = ACTIONS(1472), + [anon_sym_while] = ACTIONS(1472), + [anon_sym_do] = ACTIONS(1472), + [anon_sym_for] = ACTIONS(1472), + [anon_sym_return] = ACTIONS(1472), + [anon_sym_break] = ACTIONS(1472), + [anon_sym_continue] = ACTIONS(1472), + [anon_sym_goto] = ACTIONS(1472), + [anon_sym___try] = ACTIONS(1472), + [anon_sym___leave] = ACTIONS(1472), + [anon_sym_DASH_DASH] = ACTIONS(1474), + [anon_sym_PLUS_PLUS] = ACTIONS(1474), + [anon_sym_sizeof] = ACTIONS(1472), + [anon_sym___alignof__] = ACTIONS(1472), + [anon_sym___alignof] = ACTIONS(1472), + [anon_sym__alignof] = ACTIONS(1472), + [anon_sym_alignof] = ACTIONS(1472), + [anon_sym__Alignof] = ACTIONS(1472), + [anon_sym_offsetof] = ACTIONS(1472), + [anon_sym__Generic] = ACTIONS(1472), + [anon_sym_asm] = ACTIONS(1472), + [anon_sym___asm__] = ACTIONS(1472), + [sym_number_literal] = ACTIONS(1474), + [anon_sym_L_SQUOTE] = ACTIONS(1474), + [anon_sym_u_SQUOTE] = ACTIONS(1474), + [anon_sym_U_SQUOTE] = ACTIONS(1474), + [anon_sym_u8_SQUOTE] = ACTIONS(1474), + [anon_sym_SQUOTE] = ACTIONS(1474), + [anon_sym_L_DQUOTE] = ACTIONS(1474), + [anon_sym_u_DQUOTE] = ACTIONS(1474), + [anon_sym_U_DQUOTE] = ACTIONS(1474), + [anon_sym_u8_DQUOTE] = ACTIONS(1474), + [anon_sym_DQUOTE] = ACTIONS(1474), + [sym_true] = ACTIONS(1472), + [sym_false] = ACTIONS(1472), + [anon_sym_NULL] = ACTIONS(1472), + [anon_sym_nullptr] = ACTIONS(1472), [sym_comment] = ACTIONS(3), }, [359] = { - [sym_identifier] = ACTIONS(1453), - [aux_sym_preproc_include_token1] = ACTIONS(1453), - [aux_sym_preproc_def_token1] = ACTIONS(1453), - [aux_sym_preproc_if_token1] = ACTIONS(1453), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1453), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1453), - [sym_preproc_directive] = ACTIONS(1453), - [anon_sym_LPAREN2] = ACTIONS(1455), - [anon_sym_BANG] = ACTIONS(1455), - [anon_sym_TILDE] = ACTIONS(1455), - [anon_sym_DASH] = ACTIONS(1453), - [anon_sym_PLUS] = ACTIONS(1453), - [anon_sym_STAR] = ACTIONS(1455), - [anon_sym_AMP] = ACTIONS(1455), - [anon_sym_SEMI] = ACTIONS(1455), - [anon_sym___extension__] = ACTIONS(1453), - [anon_sym_typedef] = ACTIONS(1453), - [anon_sym_extern] = ACTIONS(1453), - [anon_sym___attribute__] = ACTIONS(1453), - [anon_sym___scanf] = ACTIONS(1453), - [anon_sym___printf] = ACTIONS(1453), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1455), - [anon_sym___declspec] = ACTIONS(1453), - [anon_sym___cdecl] = ACTIONS(1453), - [anon_sym___clrcall] = ACTIONS(1453), - [anon_sym___stdcall] = ACTIONS(1453), - [anon_sym___fastcall] = ACTIONS(1453), - [anon_sym___thiscall] = ACTIONS(1453), - [anon_sym___vectorcall] = ACTIONS(1453), - [anon_sym_LBRACE] = ACTIONS(1455), - [anon_sym_RBRACE] = ACTIONS(1455), - [anon_sym_signed] = ACTIONS(1453), - [anon_sym_unsigned] = ACTIONS(1453), - [anon_sym_long] = ACTIONS(1453), - [anon_sym_short] = ACTIONS(1453), - [anon_sym_static] = ACTIONS(1453), - [anon_sym_auto] = ACTIONS(1453), - [anon_sym_register] = ACTIONS(1453), - [anon_sym_inline] = ACTIONS(1453), - [anon_sym___inline] = ACTIONS(1453), - [anon_sym___inline__] = ACTIONS(1453), - [anon_sym___forceinline] = ACTIONS(1453), - [anon_sym_thread_local] = ACTIONS(1453), - [anon_sym___thread] = ACTIONS(1453), - [anon_sym_const] = ACTIONS(1453), - [anon_sym_constexpr] = ACTIONS(1453), - [anon_sym_volatile] = ACTIONS(1453), - [anon_sym_restrict] = ACTIONS(1453), - [anon_sym___restrict__] = ACTIONS(1453), - [anon_sym__Atomic] = ACTIONS(1453), - [anon_sym__Noreturn] = ACTIONS(1453), - [anon_sym_noreturn] = ACTIONS(1453), - [sym_primitive_type] = ACTIONS(1453), - [anon_sym_enum] = ACTIONS(1453), - [anon_sym_struct] = ACTIONS(1453), - [anon_sym_union] = ACTIONS(1453), - [anon_sym_if] = ACTIONS(1453), - [anon_sym_switch] = ACTIONS(1453), - [anon_sym_case] = ACTIONS(1453), - [anon_sym_default] = ACTIONS(1453), - [anon_sym_while] = ACTIONS(1453), - [anon_sym_do] = ACTIONS(1453), - [anon_sym_for] = ACTIONS(1453), - [anon_sym_return] = ACTIONS(1453), - [anon_sym_break] = ACTIONS(1453), - [anon_sym_continue] = ACTIONS(1453), - [anon_sym_goto] = ACTIONS(1453), - [anon_sym___try] = ACTIONS(1453), - [anon_sym___leave] = ACTIONS(1453), - [anon_sym_DASH_DASH] = ACTIONS(1455), - [anon_sym_PLUS_PLUS] = ACTIONS(1455), - [anon_sym_sizeof] = ACTIONS(1453), - [anon_sym___alignof__] = ACTIONS(1453), - [anon_sym___alignof] = ACTIONS(1453), - [anon_sym__alignof] = ACTIONS(1453), - [anon_sym_alignof] = ACTIONS(1453), - [anon_sym__Alignof] = ACTIONS(1453), - [anon_sym_offsetof] = ACTIONS(1453), - [anon_sym__Generic] = ACTIONS(1453), - [anon_sym_asm] = ACTIONS(1453), - [anon_sym___asm__] = ACTIONS(1453), - [sym_number_literal] = ACTIONS(1455), - [anon_sym_L_SQUOTE] = ACTIONS(1455), - [anon_sym_u_SQUOTE] = ACTIONS(1455), - [anon_sym_U_SQUOTE] = ACTIONS(1455), - [anon_sym_u8_SQUOTE] = ACTIONS(1455), - [anon_sym_SQUOTE] = ACTIONS(1455), - [anon_sym_L_DQUOTE] = ACTIONS(1455), - [anon_sym_u_DQUOTE] = ACTIONS(1455), - [anon_sym_U_DQUOTE] = ACTIONS(1455), - [anon_sym_u8_DQUOTE] = ACTIONS(1455), - [anon_sym_DQUOTE] = ACTIONS(1455), - [sym_true] = ACTIONS(1453), - [sym_false] = ACTIONS(1453), - [anon_sym_NULL] = ACTIONS(1453), - [anon_sym_nullptr] = ACTIONS(1453), + [sym_identifier] = ACTIONS(1448), + [aux_sym_preproc_include_token1] = ACTIONS(1448), + [aux_sym_preproc_def_token1] = ACTIONS(1448), + [aux_sym_preproc_if_token1] = ACTIONS(1448), + [aux_sym_preproc_if_token2] = ACTIONS(1448), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1448), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1448), + [sym_preproc_directive] = ACTIONS(1448), + [anon_sym_LPAREN2] = ACTIONS(1450), + [anon_sym_BANG] = ACTIONS(1450), + [anon_sym_TILDE] = ACTIONS(1450), + [anon_sym_DASH] = ACTIONS(1448), + [anon_sym_PLUS] = ACTIONS(1448), + [anon_sym_STAR] = ACTIONS(1450), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_SEMI] = ACTIONS(1450), + [anon_sym___extension__] = ACTIONS(1448), + [anon_sym_typedef] = ACTIONS(1448), + [anon_sym_extern] = ACTIONS(1448), + [anon_sym___attribute__] = ACTIONS(1448), + [anon_sym___scanf] = ACTIONS(1448), + [anon_sym___printf] = ACTIONS(1448), + [anon_sym___read_mostly] = ACTIONS(1448), + [anon_sym___must_hold] = ACTIONS(1448), + [anon_sym___ro_after_init] = ACTIONS(1448), + [anon_sym___init] = ACTIONS(1448), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1450), + [anon_sym___declspec] = ACTIONS(1448), + [anon_sym___cdecl] = ACTIONS(1448), + [anon_sym___clrcall] = ACTIONS(1448), + [anon_sym___stdcall] = ACTIONS(1448), + [anon_sym___fastcall] = ACTIONS(1448), + [anon_sym___thiscall] = ACTIONS(1448), + [anon_sym___vectorcall] = ACTIONS(1448), + [anon_sym_LBRACE] = ACTIONS(1450), + [anon_sym_signed] = ACTIONS(1448), + [anon_sym_unsigned] = ACTIONS(1448), + [anon_sym_long] = ACTIONS(1448), + [anon_sym_short] = ACTIONS(1448), + [anon_sym_static] = ACTIONS(1448), + [anon_sym_auto] = ACTIONS(1448), + [anon_sym_register] = ACTIONS(1448), + [anon_sym_inline] = ACTIONS(1448), + [anon_sym___inline] = ACTIONS(1448), + [anon_sym___inline__] = ACTIONS(1448), + [anon_sym___forceinline] = ACTIONS(1448), + [anon_sym_thread_local] = ACTIONS(1448), + [anon_sym___thread] = ACTIONS(1448), + [anon_sym_const] = ACTIONS(1448), + [anon_sym_constexpr] = ACTIONS(1448), + [anon_sym_volatile] = ACTIONS(1448), + [anon_sym_restrict] = ACTIONS(1448), + [anon_sym___restrict__] = ACTIONS(1448), + [anon_sym__Atomic] = ACTIONS(1448), + [anon_sym__Noreturn] = ACTIONS(1448), + [anon_sym_noreturn] = ACTIONS(1448), + [sym_primitive_type] = ACTIONS(1448), + [anon_sym_enum] = ACTIONS(1448), + [anon_sym_struct] = ACTIONS(1448), + [anon_sym_union] = ACTIONS(1448), + [anon_sym_if] = ACTIONS(1448), + [anon_sym_switch] = ACTIONS(1448), + [anon_sym_case] = ACTIONS(1448), + [anon_sym_default] = ACTIONS(1448), + [anon_sym_while] = ACTIONS(1448), + [anon_sym_do] = ACTIONS(1448), + [anon_sym_for] = ACTIONS(1448), + [anon_sym_return] = ACTIONS(1448), + [anon_sym_break] = ACTIONS(1448), + [anon_sym_continue] = ACTIONS(1448), + [anon_sym_goto] = ACTIONS(1448), + [anon_sym___try] = ACTIONS(1448), + [anon_sym___leave] = ACTIONS(1448), + [anon_sym_DASH_DASH] = ACTIONS(1450), + [anon_sym_PLUS_PLUS] = ACTIONS(1450), + [anon_sym_sizeof] = ACTIONS(1448), + [anon_sym___alignof__] = ACTIONS(1448), + [anon_sym___alignof] = ACTIONS(1448), + [anon_sym__alignof] = ACTIONS(1448), + [anon_sym_alignof] = ACTIONS(1448), + [anon_sym__Alignof] = ACTIONS(1448), + [anon_sym_offsetof] = ACTIONS(1448), + [anon_sym__Generic] = ACTIONS(1448), + [anon_sym_asm] = ACTIONS(1448), + [anon_sym___asm__] = ACTIONS(1448), + [sym_number_literal] = ACTIONS(1450), + [anon_sym_L_SQUOTE] = ACTIONS(1450), + [anon_sym_u_SQUOTE] = ACTIONS(1450), + [anon_sym_U_SQUOTE] = ACTIONS(1450), + [anon_sym_u8_SQUOTE] = ACTIONS(1450), + [anon_sym_SQUOTE] = ACTIONS(1450), + [anon_sym_L_DQUOTE] = ACTIONS(1450), + [anon_sym_u_DQUOTE] = ACTIONS(1450), + [anon_sym_U_DQUOTE] = ACTIONS(1450), + [anon_sym_u8_DQUOTE] = ACTIONS(1450), + [anon_sym_DQUOTE] = ACTIONS(1450), + [sym_true] = ACTIONS(1448), + [sym_false] = ACTIONS(1448), + [anon_sym_NULL] = ACTIONS(1448), + [anon_sym_nullptr] = ACTIONS(1448), [sym_comment] = ACTIONS(3), }, [360] = { - [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(1451), - [anon_sym_BANG] = ACTIONS(1451), - [anon_sym_TILDE] = ACTIONS(1451), - [anon_sym_DASH] = ACTIONS(1449), - [anon_sym_PLUS] = ACTIONS(1449), - [anon_sym_STAR] = ACTIONS(1451), - [anon_sym_AMP] = ACTIONS(1451), - [anon_sym_SEMI] = ACTIONS(1451), - [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_LBRACK_LBRACK] = ACTIONS(1451), - [anon_sym___declspec] = 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(1451), - [anon_sym_RBRACE] = ACTIONS(1451), - [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), - [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___try] = ACTIONS(1449), - [anon_sym___leave] = ACTIONS(1449), - [anon_sym_DASH_DASH] = ACTIONS(1451), - [anon_sym_PLUS_PLUS] = ACTIONS(1451), - [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(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(1449), - [sym_false] = ACTIONS(1449), - [anon_sym_NULL] = ACTIONS(1449), - [anon_sym_nullptr] = ACTIONS(1449), + [sym_identifier] = ACTIONS(1428), + [aux_sym_preproc_include_token1] = ACTIONS(1428), + [aux_sym_preproc_def_token1] = ACTIONS(1428), + [aux_sym_preproc_if_token1] = ACTIONS(1428), + [aux_sym_preproc_if_token2] = ACTIONS(1428), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1428), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1428), + [sym_preproc_directive] = ACTIONS(1428), + [anon_sym_LPAREN2] = ACTIONS(1430), + [anon_sym_BANG] = ACTIONS(1430), + [anon_sym_TILDE] = ACTIONS(1430), + [anon_sym_DASH] = ACTIONS(1428), + [anon_sym_PLUS] = ACTIONS(1428), + [anon_sym_STAR] = ACTIONS(1430), + [anon_sym_AMP] = ACTIONS(1430), + [anon_sym_SEMI] = ACTIONS(1430), + [anon_sym___extension__] = ACTIONS(1428), + [anon_sym_typedef] = ACTIONS(1428), + [anon_sym_extern] = ACTIONS(1428), + [anon_sym___attribute__] = ACTIONS(1428), + [anon_sym___scanf] = ACTIONS(1428), + [anon_sym___printf] = ACTIONS(1428), + [anon_sym___read_mostly] = ACTIONS(1428), + [anon_sym___must_hold] = ACTIONS(1428), + [anon_sym___ro_after_init] = ACTIONS(1428), + [anon_sym___init] = ACTIONS(1428), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1430), + [anon_sym___declspec] = ACTIONS(1428), + [anon_sym___cdecl] = ACTIONS(1428), + [anon_sym___clrcall] = ACTIONS(1428), + [anon_sym___stdcall] = ACTIONS(1428), + [anon_sym___fastcall] = ACTIONS(1428), + [anon_sym___thiscall] = ACTIONS(1428), + [anon_sym___vectorcall] = ACTIONS(1428), + [anon_sym_LBRACE] = ACTIONS(1430), + [anon_sym_signed] = ACTIONS(1428), + [anon_sym_unsigned] = ACTIONS(1428), + [anon_sym_long] = ACTIONS(1428), + [anon_sym_short] = ACTIONS(1428), + [anon_sym_static] = ACTIONS(1428), + [anon_sym_auto] = ACTIONS(1428), + [anon_sym_register] = ACTIONS(1428), + [anon_sym_inline] = ACTIONS(1428), + [anon_sym___inline] = ACTIONS(1428), + [anon_sym___inline__] = ACTIONS(1428), + [anon_sym___forceinline] = ACTIONS(1428), + [anon_sym_thread_local] = ACTIONS(1428), + [anon_sym___thread] = ACTIONS(1428), + [anon_sym_const] = ACTIONS(1428), + [anon_sym_constexpr] = ACTIONS(1428), + [anon_sym_volatile] = ACTIONS(1428), + [anon_sym_restrict] = ACTIONS(1428), + [anon_sym___restrict__] = ACTIONS(1428), + [anon_sym__Atomic] = ACTIONS(1428), + [anon_sym__Noreturn] = ACTIONS(1428), + [anon_sym_noreturn] = ACTIONS(1428), + [sym_primitive_type] = ACTIONS(1428), + [anon_sym_enum] = ACTIONS(1428), + [anon_sym_struct] = ACTIONS(1428), + [anon_sym_union] = ACTIONS(1428), + [anon_sym_if] = ACTIONS(1428), + [anon_sym_switch] = ACTIONS(1428), + [anon_sym_case] = ACTIONS(1428), + [anon_sym_default] = ACTIONS(1428), + [anon_sym_while] = ACTIONS(1428), + [anon_sym_do] = ACTIONS(1428), + [anon_sym_for] = ACTIONS(1428), + [anon_sym_return] = ACTIONS(1428), + [anon_sym_break] = ACTIONS(1428), + [anon_sym_continue] = ACTIONS(1428), + [anon_sym_goto] = ACTIONS(1428), + [anon_sym___try] = ACTIONS(1428), + [anon_sym___leave] = ACTIONS(1428), + [anon_sym_DASH_DASH] = ACTIONS(1430), + [anon_sym_PLUS_PLUS] = ACTIONS(1430), + [anon_sym_sizeof] = ACTIONS(1428), + [anon_sym___alignof__] = ACTIONS(1428), + [anon_sym___alignof] = ACTIONS(1428), + [anon_sym__alignof] = ACTIONS(1428), + [anon_sym_alignof] = ACTIONS(1428), + [anon_sym__Alignof] = ACTIONS(1428), + [anon_sym_offsetof] = ACTIONS(1428), + [anon_sym__Generic] = ACTIONS(1428), + [anon_sym_asm] = ACTIONS(1428), + [anon_sym___asm__] = ACTIONS(1428), + [sym_number_literal] = ACTIONS(1430), + [anon_sym_L_SQUOTE] = ACTIONS(1430), + [anon_sym_u_SQUOTE] = ACTIONS(1430), + [anon_sym_U_SQUOTE] = ACTIONS(1430), + [anon_sym_u8_SQUOTE] = ACTIONS(1430), + [anon_sym_SQUOTE] = ACTIONS(1430), + [anon_sym_L_DQUOTE] = ACTIONS(1430), + [anon_sym_u_DQUOTE] = ACTIONS(1430), + [anon_sym_U_DQUOTE] = ACTIONS(1430), + [anon_sym_u8_DQUOTE] = ACTIONS(1430), + [anon_sym_DQUOTE] = ACTIONS(1430), + [sym_true] = ACTIONS(1428), + [sym_false] = ACTIONS(1428), + [anon_sym_NULL] = ACTIONS(1428), + [anon_sym_nullptr] = ACTIONS(1428), [sym_comment] = ACTIONS(3), }, [361] = { - [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(1447), - [anon_sym_BANG] = ACTIONS(1447), - [anon_sym_TILDE] = ACTIONS(1447), - [anon_sym_DASH] = ACTIONS(1445), - [anon_sym_PLUS] = ACTIONS(1445), - [anon_sym_STAR] = ACTIONS(1447), - [anon_sym_AMP] = ACTIONS(1447), - [anon_sym_SEMI] = ACTIONS(1447), - [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_LBRACK_LBRACK] = ACTIONS(1447), - [anon_sym___declspec] = 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(1447), - [anon_sym_RBRACE] = ACTIONS(1447), - [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), - [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___try] = ACTIONS(1445), - [anon_sym___leave] = ACTIONS(1445), - [anon_sym_DASH_DASH] = ACTIONS(1447), - [anon_sym_PLUS_PLUS] = ACTIONS(1447), - [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(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(1445), - [sym_false] = ACTIONS(1445), - [anon_sym_NULL] = ACTIONS(1445), - [anon_sym_nullptr] = ACTIONS(1445), + [sym_identifier] = ACTIONS(1476), + [aux_sym_preproc_include_token1] = ACTIONS(1476), + [aux_sym_preproc_def_token1] = ACTIONS(1476), + [aux_sym_preproc_if_token1] = ACTIONS(1476), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1476), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1476), + [sym_preproc_directive] = ACTIONS(1476), + [anon_sym_LPAREN2] = ACTIONS(1478), + [anon_sym_BANG] = ACTIONS(1478), + [anon_sym_TILDE] = ACTIONS(1478), + [anon_sym_DASH] = ACTIONS(1476), + [anon_sym_PLUS] = ACTIONS(1476), + [anon_sym_STAR] = ACTIONS(1478), + [anon_sym_AMP] = ACTIONS(1478), + [anon_sym_SEMI] = ACTIONS(1478), + [anon_sym___extension__] = ACTIONS(1476), + [anon_sym_typedef] = ACTIONS(1476), + [anon_sym_extern] = ACTIONS(1476), + [anon_sym___attribute__] = ACTIONS(1476), + [anon_sym___scanf] = ACTIONS(1476), + [anon_sym___printf] = ACTIONS(1476), + [anon_sym___read_mostly] = ACTIONS(1476), + [anon_sym___must_hold] = ACTIONS(1476), + [anon_sym___ro_after_init] = ACTIONS(1476), + [anon_sym___init] = ACTIONS(1476), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1478), + [anon_sym___declspec] = ACTIONS(1476), + [anon_sym___cdecl] = ACTIONS(1476), + [anon_sym___clrcall] = ACTIONS(1476), + [anon_sym___stdcall] = ACTIONS(1476), + [anon_sym___fastcall] = ACTIONS(1476), + [anon_sym___thiscall] = ACTIONS(1476), + [anon_sym___vectorcall] = ACTIONS(1476), + [anon_sym_LBRACE] = ACTIONS(1478), + [anon_sym_RBRACE] = ACTIONS(1478), + [anon_sym_signed] = ACTIONS(1476), + [anon_sym_unsigned] = ACTIONS(1476), + [anon_sym_long] = ACTIONS(1476), + [anon_sym_short] = ACTIONS(1476), + [anon_sym_static] = ACTIONS(1476), + [anon_sym_auto] = ACTIONS(1476), + [anon_sym_register] = ACTIONS(1476), + [anon_sym_inline] = ACTIONS(1476), + [anon_sym___inline] = ACTIONS(1476), + [anon_sym___inline__] = ACTIONS(1476), + [anon_sym___forceinline] = ACTIONS(1476), + [anon_sym_thread_local] = ACTIONS(1476), + [anon_sym___thread] = ACTIONS(1476), + [anon_sym_const] = ACTIONS(1476), + [anon_sym_constexpr] = ACTIONS(1476), + [anon_sym_volatile] = ACTIONS(1476), + [anon_sym_restrict] = ACTIONS(1476), + [anon_sym___restrict__] = ACTIONS(1476), + [anon_sym__Atomic] = ACTIONS(1476), + [anon_sym__Noreturn] = ACTIONS(1476), + [anon_sym_noreturn] = ACTIONS(1476), + [sym_primitive_type] = ACTIONS(1476), + [anon_sym_enum] = ACTIONS(1476), + [anon_sym_struct] = ACTIONS(1476), + [anon_sym_union] = ACTIONS(1476), + [anon_sym_if] = ACTIONS(1476), + [anon_sym_switch] = ACTIONS(1476), + [anon_sym_case] = ACTIONS(1476), + [anon_sym_default] = ACTIONS(1476), + [anon_sym_while] = ACTIONS(1476), + [anon_sym_do] = ACTIONS(1476), + [anon_sym_for] = ACTIONS(1476), + [anon_sym_return] = ACTIONS(1476), + [anon_sym_break] = ACTIONS(1476), + [anon_sym_continue] = ACTIONS(1476), + [anon_sym_goto] = ACTIONS(1476), + [anon_sym___try] = ACTIONS(1476), + [anon_sym___leave] = ACTIONS(1476), + [anon_sym_DASH_DASH] = ACTIONS(1478), + [anon_sym_PLUS_PLUS] = ACTIONS(1478), + [anon_sym_sizeof] = ACTIONS(1476), + [anon_sym___alignof__] = ACTIONS(1476), + [anon_sym___alignof] = ACTIONS(1476), + [anon_sym__alignof] = ACTIONS(1476), + [anon_sym_alignof] = ACTIONS(1476), + [anon_sym__Alignof] = ACTIONS(1476), + [anon_sym_offsetof] = ACTIONS(1476), + [anon_sym__Generic] = ACTIONS(1476), + [anon_sym_asm] = ACTIONS(1476), + [anon_sym___asm__] = ACTIONS(1476), + [sym_number_literal] = ACTIONS(1478), + [anon_sym_L_SQUOTE] = ACTIONS(1478), + [anon_sym_u_SQUOTE] = ACTIONS(1478), + [anon_sym_U_SQUOTE] = ACTIONS(1478), + [anon_sym_u8_SQUOTE] = ACTIONS(1478), + [anon_sym_SQUOTE] = ACTIONS(1478), + [anon_sym_L_DQUOTE] = ACTIONS(1478), + [anon_sym_u_DQUOTE] = ACTIONS(1478), + [anon_sym_U_DQUOTE] = ACTIONS(1478), + [anon_sym_u8_DQUOTE] = ACTIONS(1478), + [anon_sym_DQUOTE] = ACTIONS(1478), + [sym_true] = ACTIONS(1476), + [sym_false] = ACTIONS(1476), + [anon_sym_NULL] = ACTIONS(1476), + [anon_sym_nullptr] = ACTIONS(1476), [sym_comment] = ACTIONS(3), }, [362] = { - [sym_identifier] = ACTIONS(1441), - [aux_sym_preproc_include_token1] = ACTIONS(1441), - [aux_sym_preproc_def_token1] = ACTIONS(1441), - [aux_sym_preproc_if_token1] = ACTIONS(1441), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1441), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1441), - [sym_preproc_directive] = ACTIONS(1441), - [anon_sym_LPAREN2] = ACTIONS(1443), - [anon_sym_BANG] = ACTIONS(1443), - [anon_sym_TILDE] = ACTIONS(1443), - [anon_sym_DASH] = ACTIONS(1441), - [anon_sym_PLUS] = ACTIONS(1441), - [anon_sym_STAR] = ACTIONS(1443), - [anon_sym_AMP] = ACTIONS(1443), - [anon_sym_SEMI] = ACTIONS(1443), - [anon_sym___extension__] = ACTIONS(1441), - [anon_sym_typedef] = ACTIONS(1441), - [anon_sym_extern] = ACTIONS(1441), - [anon_sym___attribute__] = ACTIONS(1441), - [anon_sym___scanf] = ACTIONS(1441), - [anon_sym___printf] = ACTIONS(1441), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1443), - [anon_sym___declspec] = ACTIONS(1441), - [anon_sym___cdecl] = ACTIONS(1441), - [anon_sym___clrcall] = ACTIONS(1441), - [anon_sym___stdcall] = ACTIONS(1441), - [anon_sym___fastcall] = ACTIONS(1441), - [anon_sym___thiscall] = ACTIONS(1441), - [anon_sym___vectorcall] = ACTIONS(1441), - [anon_sym_LBRACE] = ACTIONS(1443), - [anon_sym_RBRACE] = ACTIONS(1443), - [anon_sym_signed] = ACTIONS(1441), - [anon_sym_unsigned] = ACTIONS(1441), - [anon_sym_long] = ACTIONS(1441), - [anon_sym_short] = ACTIONS(1441), - [anon_sym_static] = ACTIONS(1441), - [anon_sym_auto] = ACTIONS(1441), - [anon_sym_register] = ACTIONS(1441), - [anon_sym_inline] = ACTIONS(1441), - [anon_sym___inline] = ACTIONS(1441), - [anon_sym___inline__] = ACTIONS(1441), - [anon_sym___forceinline] = ACTIONS(1441), - [anon_sym_thread_local] = ACTIONS(1441), - [anon_sym___thread] = ACTIONS(1441), - [anon_sym_const] = ACTIONS(1441), - [anon_sym_constexpr] = ACTIONS(1441), - [anon_sym_volatile] = ACTIONS(1441), - [anon_sym_restrict] = ACTIONS(1441), - [anon_sym___restrict__] = ACTIONS(1441), - [anon_sym__Atomic] = ACTIONS(1441), - [anon_sym__Noreturn] = ACTIONS(1441), - [anon_sym_noreturn] = ACTIONS(1441), - [sym_primitive_type] = ACTIONS(1441), - [anon_sym_enum] = ACTIONS(1441), - [anon_sym_struct] = ACTIONS(1441), - [anon_sym_union] = ACTIONS(1441), - [anon_sym_if] = ACTIONS(1441), - [anon_sym_switch] = ACTIONS(1441), - [anon_sym_case] = ACTIONS(1441), - [anon_sym_default] = ACTIONS(1441), - [anon_sym_while] = ACTIONS(1441), - [anon_sym_do] = ACTIONS(1441), - [anon_sym_for] = ACTIONS(1441), - [anon_sym_return] = ACTIONS(1441), - [anon_sym_break] = ACTIONS(1441), - [anon_sym_continue] = ACTIONS(1441), - [anon_sym_goto] = ACTIONS(1441), - [anon_sym___try] = ACTIONS(1441), - [anon_sym___leave] = ACTIONS(1441), - [anon_sym_DASH_DASH] = ACTIONS(1443), - [anon_sym_PLUS_PLUS] = ACTIONS(1443), - [anon_sym_sizeof] = ACTIONS(1441), - [anon_sym___alignof__] = ACTIONS(1441), - [anon_sym___alignof] = ACTIONS(1441), - [anon_sym__alignof] = ACTIONS(1441), - [anon_sym_alignof] = ACTIONS(1441), - [anon_sym__Alignof] = ACTIONS(1441), - [anon_sym_offsetof] = ACTIONS(1441), - [anon_sym__Generic] = ACTIONS(1441), - [anon_sym_asm] = ACTIONS(1441), - [anon_sym___asm__] = ACTIONS(1441), - [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(1441), - [sym_false] = ACTIONS(1441), - [anon_sym_NULL] = ACTIONS(1441), - [anon_sym_nullptr] = ACTIONS(1441), + [sym_identifier] = ACTIONS(1456), + [aux_sym_preproc_include_token1] = ACTIONS(1456), + [aux_sym_preproc_def_token1] = ACTIONS(1456), + [aux_sym_preproc_if_token1] = ACTIONS(1456), + [aux_sym_preproc_if_token2] = ACTIONS(1456), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1456), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1456), + [sym_preproc_directive] = ACTIONS(1456), + [anon_sym_LPAREN2] = ACTIONS(1458), + [anon_sym_BANG] = ACTIONS(1458), + [anon_sym_TILDE] = ACTIONS(1458), + [anon_sym_DASH] = ACTIONS(1456), + [anon_sym_PLUS] = ACTIONS(1456), + [anon_sym_STAR] = ACTIONS(1458), + [anon_sym_AMP] = ACTIONS(1458), + [anon_sym_SEMI] = ACTIONS(1458), + [anon_sym___extension__] = ACTIONS(1456), + [anon_sym_typedef] = ACTIONS(1456), + [anon_sym_extern] = ACTIONS(1456), + [anon_sym___attribute__] = ACTIONS(1456), + [anon_sym___scanf] = ACTIONS(1456), + [anon_sym___printf] = ACTIONS(1456), + [anon_sym___read_mostly] = ACTIONS(1456), + [anon_sym___must_hold] = ACTIONS(1456), + [anon_sym___ro_after_init] = ACTIONS(1456), + [anon_sym___init] = ACTIONS(1456), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1458), + [anon_sym___declspec] = ACTIONS(1456), + [anon_sym___cdecl] = ACTIONS(1456), + [anon_sym___clrcall] = ACTIONS(1456), + [anon_sym___stdcall] = ACTIONS(1456), + [anon_sym___fastcall] = ACTIONS(1456), + [anon_sym___thiscall] = ACTIONS(1456), + [anon_sym___vectorcall] = ACTIONS(1456), + [anon_sym_LBRACE] = ACTIONS(1458), + [anon_sym_signed] = ACTIONS(1456), + [anon_sym_unsigned] = ACTIONS(1456), + [anon_sym_long] = ACTIONS(1456), + [anon_sym_short] = ACTIONS(1456), + [anon_sym_static] = ACTIONS(1456), + [anon_sym_auto] = ACTIONS(1456), + [anon_sym_register] = ACTIONS(1456), + [anon_sym_inline] = ACTIONS(1456), + [anon_sym___inline] = ACTIONS(1456), + [anon_sym___inline__] = ACTIONS(1456), + [anon_sym___forceinline] = ACTIONS(1456), + [anon_sym_thread_local] = ACTIONS(1456), + [anon_sym___thread] = ACTIONS(1456), + [anon_sym_const] = ACTIONS(1456), + [anon_sym_constexpr] = ACTIONS(1456), + [anon_sym_volatile] = ACTIONS(1456), + [anon_sym_restrict] = ACTIONS(1456), + [anon_sym___restrict__] = ACTIONS(1456), + [anon_sym__Atomic] = ACTIONS(1456), + [anon_sym__Noreturn] = ACTIONS(1456), + [anon_sym_noreturn] = ACTIONS(1456), + [sym_primitive_type] = ACTIONS(1456), + [anon_sym_enum] = ACTIONS(1456), + [anon_sym_struct] = ACTIONS(1456), + [anon_sym_union] = ACTIONS(1456), + [anon_sym_if] = ACTIONS(1456), + [anon_sym_switch] = ACTIONS(1456), + [anon_sym_case] = ACTIONS(1456), + [anon_sym_default] = ACTIONS(1456), + [anon_sym_while] = ACTIONS(1456), + [anon_sym_do] = ACTIONS(1456), + [anon_sym_for] = ACTIONS(1456), + [anon_sym_return] = ACTIONS(1456), + [anon_sym_break] = ACTIONS(1456), + [anon_sym_continue] = ACTIONS(1456), + [anon_sym_goto] = ACTIONS(1456), + [anon_sym___try] = ACTIONS(1456), + [anon_sym___leave] = ACTIONS(1456), + [anon_sym_DASH_DASH] = ACTIONS(1458), + [anon_sym_PLUS_PLUS] = ACTIONS(1458), + [anon_sym_sizeof] = ACTIONS(1456), + [anon_sym___alignof__] = ACTIONS(1456), + [anon_sym___alignof] = ACTIONS(1456), + [anon_sym__alignof] = ACTIONS(1456), + [anon_sym_alignof] = ACTIONS(1456), + [anon_sym__Alignof] = ACTIONS(1456), + [anon_sym_offsetof] = ACTIONS(1456), + [anon_sym__Generic] = ACTIONS(1456), + [anon_sym_asm] = ACTIONS(1456), + [anon_sym___asm__] = ACTIONS(1456), + [sym_number_literal] = ACTIONS(1458), + [anon_sym_L_SQUOTE] = ACTIONS(1458), + [anon_sym_u_SQUOTE] = ACTIONS(1458), + [anon_sym_U_SQUOTE] = ACTIONS(1458), + [anon_sym_u8_SQUOTE] = ACTIONS(1458), + [anon_sym_SQUOTE] = ACTIONS(1458), + [anon_sym_L_DQUOTE] = ACTIONS(1458), + [anon_sym_u_DQUOTE] = ACTIONS(1458), + [anon_sym_U_DQUOTE] = ACTIONS(1458), + [anon_sym_u8_DQUOTE] = ACTIONS(1458), + [anon_sym_DQUOTE] = ACTIONS(1458), + [sym_true] = ACTIONS(1456), + [sym_false] = ACTIONS(1456), + [anon_sym_NULL] = ACTIONS(1456), + [anon_sym_nullptr] = ACTIONS(1456), [sym_comment] = ACTIONS(3), }, [363] = { - [sym_identifier] = ACTIONS(1437), - [aux_sym_preproc_include_token1] = ACTIONS(1437), - [aux_sym_preproc_def_token1] = ACTIONS(1437), - [aux_sym_preproc_if_token1] = ACTIONS(1437), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1437), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1437), - [sym_preproc_directive] = ACTIONS(1437), - [anon_sym_LPAREN2] = ACTIONS(1439), - [anon_sym_BANG] = ACTIONS(1439), - [anon_sym_TILDE] = ACTIONS(1439), - [anon_sym_DASH] = ACTIONS(1437), - [anon_sym_PLUS] = ACTIONS(1437), - [anon_sym_STAR] = ACTIONS(1439), - [anon_sym_AMP] = ACTIONS(1439), - [anon_sym_SEMI] = ACTIONS(1439), - [anon_sym___extension__] = ACTIONS(1437), - [anon_sym_typedef] = ACTIONS(1437), - [anon_sym_extern] = ACTIONS(1437), - [anon_sym___attribute__] = ACTIONS(1437), - [anon_sym___scanf] = ACTIONS(1437), - [anon_sym___printf] = ACTIONS(1437), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1439), - [anon_sym___declspec] = ACTIONS(1437), - [anon_sym___cdecl] = ACTIONS(1437), - [anon_sym___clrcall] = ACTIONS(1437), - [anon_sym___stdcall] = ACTIONS(1437), - [anon_sym___fastcall] = ACTIONS(1437), - [anon_sym___thiscall] = ACTIONS(1437), - [anon_sym___vectorcall] = ACTIONS(1437), - [anon_sym_LBRACE] = ACTIONS(1439), - [anon_sym_RBRACE] = ACTIONS(1439), - [anon_sym_signed] = ACTIONS(1437), - [anon_sym_unsigned] = ACTIONS(1437), - [anon_sym_long] = ACTIONS(1437), - [anon_sym_short] = ACTIONS(1437), - [anon_sym_static] = ACTIONS(1437), - [anon_sym_auto] = ACTIONS(1437), - [anon_sym_register] = ACTIONS(1437), - [anon_sym_inline] = ACTIONS(1437), - [anon_sym___inline] = ACTIONS(1437), - [anon_sym___inline__] = ACTIONS(1437), - [anon_sym___forceinline] = ACTIONS(1437), - [anon_sym_thread_local] = ACTIONS(1437), - [anon_sym___thread] = ACTIONS(1437), - [anon_sym_const] = ACTIONS(1437), - [anon_sym_constexpr] = ACTIONS(1437), - [anon_sym_volatile] = ACTIONS(1437), - [anon_sym_restrict] = ACTIONS(1437), - [anon_sym___restrict__] = ACTIONS(1437), - [anon_sym__Atomic] = ACTIONS(1437), - [anon_sym__Noreturn] = ACTIONS(1437), - [anon_sym_noreturn] = ACTIONS(1437), - [sym_primitive_type] = ACTIONS(1437), - [anon_sym_enum] = ACTIONS(1437), - [anon_sym_struct] = ACTIONS(1437), - [anon_sym_union] = ACTIONS(1437), - [anon_sym_if] = ACTIONS(1437), - [anon_sym_switch] = ACTIONS(1437), - [anon_sym_case] = ACTIONS(1437), - [anon_sym_default] = ACTIONS(1437), - [anon_sym_while] = ACTIONS(1437), - [anon_sym_do] = ACTIONS(1437), - [anon_sym_for] = ACTIONS(1437), - [anon_sym_return] = ACTIONS(1437), - [anon_sym_break] = ACTIONS(1437), - [anon_sym_continue] = ACTIONS(1437), - [anon_sym_goto] = ACTIONS(1437), - [anon_sym___try] = ACTIONS(1437), - [anon_sym___leave] = ACTIONS(1437), - [anon_sym_DASH_DASH] = ACTIONS(1439), - [anon_sym_PLUS_PLUS] = ACTIONS(1439), - [anon_sym_sizeof] = ACTIONS(1437), - [anon_sym___alignof__] = ACTIONS(1437), - [anon_sym___alignof] = ACTIONS(1437), - [anon_sym__alignof] = ACTIONS(1437), - [anon_sym_alignof] = ACTIONS(1437), - [anon_sym__Alignof] = ACTIONS(1437), - [anon_sym_offsetof] = ACTIONS(1437), - [anon_sym__Generic] = ACTIONS(1437), - [anon_sym_asm] = ACTIONS(1437), - [anon_sym___asm__] = ACTIONS(1437), - [sym_number_literal] = ACTIONS(1439), - [anon_sym_L_SQUOTE] = ACTIONS(1439), - [anon_sym_u_SQUOTE] = ACTIONS(1439), - [anon_sym_U_SQUOTE] = ACTIONS(1439), - [anon_sym_u8_SQUOTE] = ACTIONS(1439), - [anon_sym_SQUOTE] = ACTIONS(1439), - [anon_sym_L_DQUOTE] = ACTIONS(1439), - [anon_sym_u_DQUOTE] = ACTIONS(1439), - [anon_sym_U_DQUOTE] = ACTIONS(1439), - [anon_sym_u8_DQUOTE] = ACTIONS(1439), - [anon_sym_DQUOTE] = ACTIONS(1439), - [sym_true] = ACTIONS(1437), - [sym_false] = ACTIONS(1437), - [anon_sym_NULL] = ACTIONS(1437), - [anon_sym_nullptr] = ACTIONS(1437), + [sym_identifier] = ACTIONS(1492), + [aux_sym_preproc_include_token1] = ACTIONS(1492), + [aux_sym_preproc_def_token1] = ACTIONS(1492), + [aux_sym_preproc_if_token1] = ACTIONS(1492), + [aux_sym_preproc_if_token2] = ACTIONS(1492), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1492), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1492), + [sym_preproc_directive] = ACTIONS(1492), + [anon_sym_LPAREN2] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(1494), + [anon_sym_TILDE] = ACTIONS(1494), + [anon_sym_DASH] = ACTIONS(1492), + [anon_sym_PLUS] = ACTIONS(1492), + [anon_sym_STAR] = ACTIONS(1494), + [anon_sym_AMP] = ACTIONS(1494), + [anon_sym_SEMI] = ACTIONS(1494), + [anon_sym___extension__] = ACTIONS(1492), + [anon_sym_typedef] = ACTIONS(1492), + [anon_sym_extern] = ACTIONS(1492), + [anon_sym___attribute__] = ACTIONS(1492), + [anon_sym___scanf] = ACTIONS(1492), + [anon_sym___printf] = ACTIONS(1492), + [anon_sym___read_mostly] = ACTIONS(1492), + [anon_sym___must_hold] = ACTIONS(1492), + [anon_sym___ro_after_init] = ACTIONS(1492), + [anon_sym___init] = ACTIONS(1492), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1494), + [anon_sym___declspec] = ACTIONS(1492), + [anon_sym___cdecl] = ACTIONS(1492), + [anon_sym___clrcall] = ACTIONS(1492), + [anon_sym___stdcall] = ACTIONS(1492), + [anon_sym___fastcall] = ACTIONS(1492), + [anon_sym___thiscall] = ACTIONS(1492), + [anon_sym___vectorcall] = ACTIONS(1492), + [anon_sym_LBRACE] = ACTIONS(1494), + [anon_sym_signed] = ACTIONS(1492), + [anon_sym_unsigned] = ACTIONS(1492), + [anon_sym_long] = ACTIONS(1492), + [anon_sym_short] = ACTIONS(1492), + [anon_sym_static] = ACTIONS(1492), + [anon_sym_auto] = ACTIONS(1492), + [anon_sym_register] = ACTIONS(1492), + [anon_sym_inline] = ACTIONS(1492), + [anon_sym___inline] = ACTIONS(1492), + [anon_sym___inline__] = ACTIONS(1492), + [anon_sym___forceinline] = ACTIONS(1492), + [anon_sym_thread_local] = ACTIONS(1492), + [anon_sym___thread] = ACTIONS(1492), + [anon_sym_const] = ACTIONS(1492), + [anon_sym_constexpr] = ACTIONS(1492), + [anon_sym_volatile] = ACTIONS(1492), + [anon_sym_restrict] = ACTIONS(1492), + [anon_sym___restrict__] = ACTIONS(1492), + [anon_sym__Atomic] = ACTIONS(1492), + [anon_sym__Noreturn] = ACTIONS(1492), + [anon_sym_noreturn] = ACTIONS(1492), + [sym_primitive_type] = ACTIONS(1492), + [anon_sym_enum] = ACTIONS(1492), + [anon_sym_struct] = ACTIONS(1492), + [anon_sym_union] = ACTIONS(1492), + [anon_sym_if] = ACTIONS(1492), + [anon_sym_switch] = ACTIONS(1492), + [anon_sym_case] = ACTIONS(1492), + [anon_sym_default] = ACTIONS(1492), + [anon_sym_while] = ACTIONS(1492), + [anon_sym_do] = ACTIONS(1492), + [anon_sym_for] = ACTIONS(1492), + [anon_sym_return] = ACTIONS(1492), + [anon_sym_break] = ACTIONS(1492), + [anon_sym_continue] = ACTIONS(1492), + [anon_sym_goto] = ACTIONS(1492), + [anon_sym___try] = ACTIONS(1492), + [anon_sym___leave] = ACTIONS(1492), + [anon_sym_DASH_DASH] = ACTIONS(1494), + [anon_sym_PLUS_PLUS] = ACTIONS(1494), + [anon_sym_sizeof] = ACTIONS(1492), + [anon_sym___alignof__] = ACTIONS(1492), + [anon_sym___alignof] = ACTIONS(1492), + [anon_sym__alignof] = ACTIONS(1492), + [anon_sym_alignof] = ACTIONS(1492), + [anon_sym__Alignof] = ACTIONS(1492), + [anon_sym_offsetof] = ACTIONS(1492), + [anon_sym__Generic] = ACTIONS(1492), + [anon_sym_asm] = ACTIONS(1492), + [anon_sym___asm__] = ACTIONS(1492), + [sym_number_literal] = ACTIONS(1494), + [anon_sym_L_SQUOTE] = ACTIONS(1494), + [anon_sym_u_SQUOTE] = ACTIONS(1494), + [anon_sym_U_SQUOTE] = ACTIONS(1494), + [anon_sym_u8_SQUOTE] = ACTIONS(1494), + [anon_sym_SQUOTE] = ACTIONS(1494), + [anon_sym_L_DQUOTE] = ACTIONS(1494), + [anon_sym_u_DQUOTE] = ACTIONS(1494), + [anon_sym_U_DQUOTE] = ACTIONS(1494), + [anon_sym_u8_DQUOTE] = ACTIONS(1494), + [anon_sym_DQUOTE] = ACTIONS(1494), + [sym_true] = ACTIONS(1492), + [sym_false] = ACTIONS(1492), + [anon_sym_NULL] = ACTIONS(1492), + [anon_sym_nullptr] = ACTIONS(1492), [sym_comment] = ACTIONS(3), }, [364] = { - [sym_identifier] = ACTIONS(1473), - [aux_sym_preproc_include_token1] = ACTIONS(1473), - [aux_sym_preproc_def_token1] = ACTIONS(1473), - [aux_sym_preproc_if_token1] = ACTIONS(1473), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1473), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1473), - [sym_preproc_directive] = ACTIONS(1473), - [anon_sym_LPAREN2] = ACTIONS(1475), - [anon_sym_BANG] = ACTIONS(1475), - [anon_sym_TILDE] = ACTIONS(1475), - [anon_sym_DASH] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(1473), - [anon_sym_STAR] = ACTIONS(1475), - [anon_sym_AMP] = ACTIONS(1475), - [anon_sym_SEMI] = ACTIONS(1475), - [anon_sym___extension__] = ACTIONS(1473), - [anon_sym_typedef] = ACTIONS(1473), - [anon_sym_extern] = ACTIONS(1473), - [anon_sym___attribute__] = ACTIONS(1473), - [anon_sym___scanf] = ACTIONS(1473), - [anon_sym___printf] = ACTIONS(1473), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1475), - [anon_sym___declspec] = ACTIONS(1473), - [anon_sym___cdecl] = ACTIONS(1473), - [anon_sym___clrcall] = ACTIONS(1473), - [anon_sym___stdcall] = ACTIONS(1473), - [anon_sym___fastcall] = ACTIONS(1473), - [anon_sym___thiscall] = ACTIONS(1473), - [anon_sym___vectorcall] = ACTIONS(1473), - [anon_sym_LBRACE] = ACTIONS(1475), - [anon_sym_RBRACE] = ACTIONS(1475), - [anon_sym_signed] = ACTIONS(1473), - [anon_sym_unsigned] = ACTIONS(1473), - [anon_sym_long] = ACTIONS(1473), - [anon_sym_short] = ACTIONS(1473), - [anon_sym_static] = ACTIONS(1473), - [anon_sym_auto] = ACTIONS(1473), - [anon_sym_register] = ACTIONS(1473), - [anon_sym_inline] = ACTIONS(1473), - [anon_sym___inline] = ACTIONS(1473), - [anon_sym___inline__] = ACTIONS(1473), - [anon_sym___forceinline] = ACTIONS(1473), - [anon_sym_thread_local] = ACTIONS(1473), - [anon_sym___thread] = ACTIONS(1473), - [anon_sym_const] = ACTIONS(1473), - [anon_sym_constexpr] = ACTIONS(1473), - [anon_sym_volatile] = ACTIONS(1473), - [anon_sym_restrict] = ACTIONS(1473), - [anon_sym___restrict__] = ACTIONS(1473), - [anon_sym__Atomic] = ACTIONS(1473), - [anon_sym__Noreturn] = ACTIONS(1473), - [anon_sym_noreturn] = ACTIONS(1473), - [sym_primitive_type] = ACTIONS(1473), - [anon_sym_enum] = ACTIONS(1473), - [anon_sym_struct] = ACTIONS(1473), - [anon_sym_union] = ACTIONS(1473), - [anon_sym_if] = ACTIONS(1473), - [anon_sym_switch] = ACTIONS(1473), - [anon_sym_case] = ACTIONS(1473), - [anon_sym_default] = ACTIONS(1473), - [anon_sym_while] = ACTIONS(1473), - [anon_sym_do] = ACTIONS(1473), - [anon_sym_for] = ACTIONS(1473), - [anon_sym_return] = ACTIONS(1473), - [anon_sym_break] = ACTIONS(1473), - [anon_sym_continue] = ACTIONS(1473), - [anon_sym_goto] = ACTIONS(1473), - [anon_sym___try] = ACTIONS(1473), - [anon_sym___leave] = ACTIONS(1473), - [anon_sym_DASH_DASH] = ACTIONS(1475), - [anon_sym_PLUS_PLUS] = ACTIONS(1475), - [anon_sym_sizeof] = ACTIONS(1473), - [anon_sym___alignof__] = ACTIONS(1473), - [anon_sym___alignof] = ACTIONS(1473), - [anon_sym__alignof] = ACTIONS(1473), - [anon_sym_alignof] = ACTIONS(1473), - [anon_sym__Alignof] = ACTIONS(1473), - [anon_sym_offsetof] = ACTIONS(1473), - [anon_sym__Generic] = ACTIONS(1473), - [anon_sym_asm] = ACTIONS(1473), - [anon_sym___asm__] = ACTIONS(1473), - [sym_number_literal] = ACTIONS(1475), - [anon_sym_L_SQUOTE] = ACTIONS(1475), - [anon_sym_u_SQUOTE] = ACTIONS(1475), - [anon_sym_U_SQUOTE] = ACTIONS(1475), - [anon_sym_u8_SQUOTE] = ACTIONS(1475), - [anon_sym_SQUOTE] = ACTIONS(1475), - [anon_sym_L_DQUOTE] = ACTIONS(1475), - [anon_sym_u_DQUOTE] = ACTIONS(1475), - [anon_sym_U_DQUOTE] = ACTIONS(1475), - [anon_sym_u8_DQUOTE] = ACTIONS(1475), - [anon_sym_DQUOTE] = ACTIONS(1475), - [sym_true] = ACTIONS(1473), - [sym_false] = ACTIONS(1473), - [anon_sym_NULL] = ACTIONS(1473), - [anon_sym_nullptr] = ACTIONS(1473), + [sym_identifier] = ACTIONS(1496), + [aux_sym_preproc_include_token1] = ACTIONS(1496), + [aux_sym_preproc_def_token1] = ACTIONS(1496), + [aux_sym_preproc_if_token1] = ACTIONS(1496), + [aux_sym_preproc_if_token2] = ACTIONS(1496), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1496), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1496), + [sym_preproc_directive] = ACTIONS(1496), + [anon_sym_LPAREN2] = ACTIONS(1498), + [anon_sym_BANG] = ACTIONS(1498), + [anon_sym_TILDE] = ACTIONS(1498), + [anon_sym_DASH] = ACTIONS(1496), + [anon_sym_PLUS] = ACTIONS(1496), + [anon_sym_STAR] = ACTIONS(1498), + [anon_sym_AMP] = ACTIONS(1498), + [anon_sym_SEMI] = ACTIONS(1498), + [anon_sym___extension__] = ACTIONS(1496), + [anon_sym_typedef] = ACTIONS(1496), + [anon_sym_extern] = ACTIONS(1496), + [anon_sym___attribute__] = ACTIONS(1496), + [anon_sym___scanf] = ACTIONS(1496), + [anon_sym___printf] = ACTIONS(1496), + [anon_sym___read_mostly] = ACTIONS(1496), + [anon_sym___must_hold] = ACTIONS(1496), + [anon_sym___ro_after_init] = ACTIONS(1496), + [anon_sym___init] = ACTIONS(1496), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1498), + [anon_sym___declspec] = ACTIONS(1496), + [anon_sym___cdecl] = ACTIONS(1496), + [anon_sym___clrcall] = ACTIONS(1496), + [anon_sym___stdcall] = ACTIONS(1496), + [anon_sym___fastcall] = ACTIONS(1496), + [anon_sym___thiscall] = ACTIONS(1496), + [anon_sym___vectorcall] = ACTIONS(1496), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_signed] = ACTIONS(1496), + [anon_sym_unsigned] = ACTIONS(1496), + [anon_sym_long] = ACTIONS(1496), + [anon_sym_short] = ACTIONS(1496), + [anon_sym_static] = ACTIONS(1496), + [anon_sym_auto] = ACTIONS(1496), + [anon_sym_register] = ACTIONS(1496), + [anon_sym_inline] = ACTIONS(1496), + [anon_sym___inline] = ACTIONS(1496), + [anon_sym___inline__] = ACTIONS(1496), + [anon_sym___forceinline] = ACTIONS(1496), + [anon_sym_thread_local] = ACTIONS(1496), + [anon_sym___thread] = ACTIONS(1496), + [anon_sym_const] = ACTIONS(1496), + [anon_sym_constexpr] = ACTIONS(1496), + [anon_sym_volatile] = ACTIONS(1496), + [anon_sym_restrict] = ACTIONS(1496), + [anon_sym___restrict__] = ACTIONS(1496), + [anon_sym__Atomic] = ACTIONS(1496), + [anon_sym__Noreturn] = ACTIONS(1496), + [anon_sym_noreturn] = ACTIONS(1496), + [sym_primitive_type] = ACTIONS(1496), + [anon_sym_enum] = ACTIONS(1496), + [anon_sym_struct] = ACTIONS(1496), + [anon_sym_union] = ACTIONS(1496), + [anon_sym_if] = ACTIONS(1496), + [anon_sym_switch] = ACTIONS(1496), + [anon_sym_case] = ACTIONS(1496), + [anon_sym_default] = ACTIONS(1496), + [anon_sym_while] = ACTIONS(1496), + [anon_sym_do] = ACTIONS(1496), + [anon_sym_for] = ACTIONS(1496), + [anon_sym_return] = ACTIONS(1496), + [anon_sym_break] = ACTIONS(1496), + [anon_sym_continue] = ACTIONS(1496), + [anon_sym_goto] = ACTIONS(1496), + [anon_sym___try] = ACTIONS(1496), + [anon_sym___leave] = ACTIONS(1496), + [anon_sym_DASH_DASH] = ACTIONS(1498), + [anon_sym_PLUS_PLUS] = ACTIONS(1498), + [anon_sym_sizeof] = ACTIONS(1496), + [anon_sym___alignof__] = ACTIONS(1496), + [anon_sym___alignof] = ACTIONS(1496), + [anon_sym__alignof] = ACTIONS(1496), + [anon_sym_alignof] = ACTIONS(1496), + [anon_sym__Alignof] = ACTIONS(1496), + [anon_sym_offsetof] = ACTIONS(1496), + [anon_sym__Generic] = ACTIONS(1496), + [anon_sym_asm] = ACTIONS(1496), + [anon_sym___asm__] = ACTIONS(1496), + [sym_number_literal] = ACTIONS(1498), + [anon_sym_L_SQUOTE] = ACTIONS(1498), + [anon_sym_u_SQUOTE] = ACTIONS(1498), + [anon_sym_U_SQUOTE] = ACTIONS(1498), + [anon_sym_u8_SQUOTE] = ACTIONS(1498), + [anon_sym_SQUOTE] = ACTIONS(1498), + [anon_sym_L_DQUOTE] = ACTIONS(1498), + [anon_sym_u_DQUOTE] = ACTIONS(1498), + [anon_sym_U_DQUOTE] = ACTIONS(1498), + [anon_sym_u8_DQUOTE] = ACTIONS(1498), + [anon_sym_DQUOTE] = ACTIONS(1498), + [sym_true] = ACTIONS(1496), + [sym_false] = ACTIONS(1496), + [anon_sym_NULL] = ACTIONS(1496), + [anon_sym_nullptr] = ACTIONS(1496), [sym_comment] = ACTIONS(3), }, [365] = { - [sym_identifier] = ACTIONS(1433), - [aux_sym_preproc_include_token1] = ACTIONS(1433), - [aux_sym_preproc_def_token1] = ACTIONS(1433), - [aux_sym_preproc_if_token1] = ACTIONS(1433), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1433), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1433), - [sym_preproc_directive] = ACTIONS(1433), - [anon_sym_LPAREN2] = ACTIONS(1435), - [anon_sym_BANG] = ACTIONS(1435), - [anon_sym_TILDE] = ACTIONS(1435), - [anon_sym_DASH] = ACTIONS(1433), - [anon_sym_PLUS] = ACTIONS(1433), - [anon_sym_STAR] = ACTIONS(1435), - [anon_sym_AMP] = ACTIONS(1435), - [anon_sym_SEMI] = ACTIONS(1435), - [anon_sym___extension__] = ACTIONS(1433), - [anon_sym_typedef] = ACTIONS(1433), - [anon_sym_extern] = ACTIONS(1433), - [anon_sym___attribute__] = ACTIONS(1433), - [anon_sym___scanf] = ACTIONS(1433), - [anon_sym___printf] = ACTIONS(1433), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1435), - [anon_sym___declspec] = ACTIONS(1433), - [anon_sym___cdecl] = ACTIONS(1433), - [anon_sym___clrcall] = ACTIONS(1433), - [anon_sym___stdcall] = ACTIONS(1433), - [anon_sym___fastcall] = ACTIONS(1433), - [anon_sym___thiscall] = ACTIONS(1433), - [anon_sym___vectorcall] = ACTIONS(1433), - [anon_sym_LBRACE] = ACTIONS(1435), - [anon_sym_RBRACE] = ACTIONS(1435), - [anon_sym_signed] = ACTIONS(1433), - [anon_sym_unsigned] = ACTIONS(1433), - [anon_sym_long] = ACTIONS(1433), - [anon_sym_short] = ACTIONS(1433), - [anon_sym_static] = ACTIONS(1433), - [anon_sym_auto] = ACTIONS(1433), - [anon_sym_register] = ACTIONS(1433), - [anon_sym_inline] = ACTIONS(1433), - [anon_sym___inline] = ACTIONS(1433), - [anon_sym___inline__] = ACTIONS(1433), - [anon_sym___forceinline] = ACTIONS(1433), - [anon_sym_thread_local] = ACTIONS(1433), - [anon_sym___thread] = ACTIONS(1433), - [anon_sym_const] = ACTIONS(1433), - [anon_sym_constexpr] = ACTIONS(1433), - [anon_sym_volatile] = ACTIONS(1433), - [anon_sym_restrict] = ACTIONS(1433), - [anon_sym___restrict__] = ACTIONS(1433), - [anon_sym__Atomic] = ACTIONS(1433), - [anon_sym__Noreturn] = ACTIONS(1433), - [anon_sym_noreturn] = ACTIONS(1433), - [sym_primitive_type] = ACTIONS(1433), - [anon_sym_enum] = ACTIONS(1433), - [anon_sym_struct] = ACTIONS(1433), - [anon_sym_union] = ACTIONS(1433), - [anon_sym_if] = ACTIONS(1433), - [anon_sym_switch] = ACTIONS(1433), - [anon_sym_case] = ACTIONS(1433), - [anon_sym_default] = ACTIONS(1433), - [anon_sym_while] = ACTIONS(1433), - [anon_sym_do] = ACTIONS(1433), - [anon_sym_for] = ACTIONS(1433), - [anon_sym_return] = ACTIONS(1433), - [anon_sym_break] = ACTIONS(1433), - [anon_sym_continue] = ACTIONS(1433), - [anon_sym_goto] = ACTIONS(1433), - [anon_sym___try] = ACTIONS(1433), - [anon_sym___leave] = ACTIONS(1433), - [anon_sym_DASH_DASH] = ACTIONS(1435), - [anon_sym_PLUS_PLUS] = ACTIONS(1435), - [anon_sym_sizeof] = ACTIONS(1433), - [anon_sym___alignof__] = ACTIONS(1433), - [anon_sym___alignof] = ACTIONS(1433), - [anon_sym__alignof] = ACTIONS(1433), - [anon_sym_alignof] = ACTIONS(1433), - [anon_sym__Alignof] = ACTIONS(1433), - [anon_sym_offsetof] = ACTIONS(1433), - [anon_sym__Generic] = ACTIONS(1433), - [anon_sym_asm] = ACTIONS(1433), - [anon_sym___asm__] = ACTIONS(1433), - [sym_number_literal] = ACTIONS(1435), - [anon_sym_L_SQUOTE] = ACTIONS(1435), - [anon_sym_u_SQUOTE] = ACTIONS(1435), - [anon_sym_U_SQUOTE] = ACTIONS(1435), - [anon_sym_u8_SQUOTE] = ACTIONS(1435), - [anon_sym_SQUOTE] = ACTIONS(1435), - [anon_sym_L_DQUOTE] = ACTIONS(1435), - [anon_sym_u_DQUOTE] = ACTIONS(1435), - [anon_sym_U_DQUOTE] = ACTIONS(1435), - [anon_sym_u8_DQUOTE] = ACTIONS(1435), - [anon_sym_DQUOTE] = ACTIONS(1435), - [sym_true] = ACTIONS(1433), - [sym_false] = ACTIONS(1433), - [anon_sym_NULL] = ACTIONS(1433), - [anon_sym_nullptr] = ACTIONS(1433), + [sym_identifier] = ACTIONS(1500), + [aux_sym_preproc_include_token1] = ACTIONS(1500), + [aux_sym_preproc_def_token1] = ACTIONS(1500), + [aux_sym_preproc_if_token1] = ACTIONS(1500), + [aux_sym_preproc_if_token2] = ACTIONS(1500), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1500), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1500), + [sym_preproc_directive] = ACTIONS(1500), + [anon_sym_LPAREN2] = ACTIONS(1502), + [anon_sym_BANG] = ACTIONS(1502), + [anon_sym_TILDE] = ACTIONS(1502), + [anon_sym_DASH] = ACTIONS(1500), + [anon_sym_PLUS] = ACTIONS(1500), + [anon_sym_STAR] = ACTIONS(1502), + [anon_sym_AMP] = ACTIONS(1502), + [anon_sym_SEMI] = ACTIONS(1502), + [anon_sym___extension__] = ACTIONS(1500), + [anon_sym_typedef] = ACTIONS(1500), + [anon_sym_extern] = ACTIONS(1500), + [anon_sym___attribute__] = ACTIONS(1500), + [anon_sym___scanf] = ACTIONS(1500), + [anon_sym___printf] = ACTIONS(1500), + [anon_sym___read_mostly] = ACTIONS(1500), + [anon_sym___must_hold] = ACTIONS(1500), + [anon_sym___ro_after_init] = ACTIONS(1500), + [anon_sym___init] = ACTIONS(1500), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1502), + [anon_sym___declspec] = ACTIONS(1500), + [anon_sym___cdecl] = ACTIONS(1500), + [anon_sym___clrcall] = ACTIONS(1500), + [anon_sym___stdcall] = ACTIONS(1500), + [anon_sym___fastcall] = ACTIONS(1500), + [anon_sym___thiscall] = ACTIONS(1500), + [anon_sym___vectorcall] = ACTIONS(1500), + [anon_sym_LBRACE] = ACTIONS(1502), + [anon_sym_signed] = ACTIONS(1500), + [anon_sym_unsigned] = ACTIONS(1500), + [anon_sym_long] = ACTIONS(1500), + [anon_sym_short] = ACTIONS(1500), + [anon_sym_static] = ACTIONS(1500), + [anon_sym_auto] = ACTIONS(1500), + [anon_sym_register] = ACTIONS(1500), + [anon_sym_inline] = ACTIONS(1500), + [anon_sym___inline] = ACTIONS(1500), + [anon_sym___inline__] = ACTIONS(1500), + [anon_sym___forceinline] = ACTIONS(1500), + [anon_sym_thread_local] = ACTIONS(1500), + [anon_sym___thread] = ACTIONS(1500), + [anon_sym_const] = ACTIONS(1500), + [anon_sym_constexpr] = ACTIONS(1500), + [anon_sym_volatile] = ACTIONS(1500), + [anon_sym_restrict] = ACTIONS(1500), + [anon_sym___restrict__] = ACTIONS(1500), + [anon_sym__Atomic] = ACTIONS(1500), + [anon_sym__Noreturn] = ACTIONS(1500), + [anon_sym_noreturn] = ACTIONS(1500), + [sym_primitive_type] = ACTIONS(1500), + [anon_sym_enum] = ACTIONS(1500), + [anon_sym_struct] = ACTIONS(1500), + [anon_sym_union] = ACTIONS(1500), + [anon_sym_if] = ACTIONS(1500), + [anon_sym_switch] = ACTIONS(1500), + [anon_sym_case] = ACTIONS(1500), + [anon_sym_default] = ACTIONS(1500), + [anon_sym_while] = ACTIONS(1500), + [anon_sym_do] = ACTIONS(1500), + [anon_sym_for] = ACTIONS(1500), + [anon_sym_return] = ACTIONS(1500), + [anon_sym_break] = ACTIONS(1500), + [anon_sym_continue] = ACTIONS(1500), + [anon_sym_goto] = ACTIONS(1500), + [anon_sym___try] = ACTIONS(1500), + [anon_sym___leave] = ACTIONS(1500), + [anon_sym_DASH_DASH] = ACTIONS(1502), + [anon_sym_PLUS_PLUS] = ACTIONS(1502), + [anon_sym_sizeof] = ACTIONS(1500), + [anon_sym___alignof__] = ACTIONS(1500), + [anon_sym___alignof] = ACTIONS(1500), + [anon_sym__alignof] = ACTIONS(1500), + [anon_sym_alignof] = ACTIONS(1500), + [anon_sym__Alignof] = ACTIONS(1500), + [anon_sym_offsetof] = ACTIONS(1500), + [anon_sym__Generic] = ACTIONS(1500), + [anon_sym_asm] = ACTIONS(1500), + [anon_sym___asm__] = ACTIONS(1500), + [sym_number_literal] = ACTIONS(1502), + [anon_sym_L_SQUOTE] = ACTIONS(1502), + [anon_sym_u_SQUOTE] = ACTIONS(1502), + [anon_sym_U_SQUOTE] = ACTIONS(1502), + [anon_sym_u8_SQUOTE] = ACTIONS(1502), + [anon_sym_SQUOTE] = ACTIONS(1502), + [anon_sym_L_DQUOTE] = ACTIONS(1502), + [anon_sym_u_DQUOTE] = ACTIONS(1502), + [anon_sym_U_DQUOTE] = ACTIONS(1502), + [anon_sym_u8_DQUOTE] = ACTIONS(1502), + [anon_sym_DQUOTE] = ACTIONS(1502), + [sym_true] = ACTIONS(1500), + [sym_false] = ACTIONS(1500), + [anon_sym_NULL] = ACTIONS(1500), + [anon_sym_nullptr] = ACTIONS(1500), [sym_comment] = ACTIONS(3), }, [366] = { - [sym_identifier] = ACTIONS(1485), - [aux_sym_preproc_include_token1] = ACTIONS(1485), - [aux_sym_preproc_def_token1] = ACTIONS(1485), - [aux_sym_preproc_if_token1] = ACTIONS(1485), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1485), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1485), - [sym_preproc_directive] = ACTIONS(1485), - [anon_sym_LPAREN2] = ACTIONS(1487), - [anon_sym_BANG] = ACTIONS(1487), - [anon_sym_TILDE] = ACTIONS(1487), - [anon_sym_DASH] = ACTIONS(1485), - [anon_sym_PLUS] = ACTIONS(1485), - [anon_sym_STAR] = ACTIONS(1487), - [anon_sym_AMP] = ACTIONS(1487), - [anon_sym_SEMI] = ACTIONS(1487), - [anon_sym___extension__] = ACTIONS(1485), - [anon_sym_typedef] = ACTIONS(1485), - [anon_sym_extern] = ACTIONS(1485), - [anon_sym___attribute__] = ACTIONS(1485), - [anon_sym___scanf] = ACTIONS(1485), - [anon_sym___printf] = ACTIONS(1485), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1487), - [anon_sym___declspec] = ACTIONS(1485), - [anon_sym___cdecl] = ACTIONS(1485), - [anon_sym___clrcall] = ACTIONS(1485), - [anon_sym___stdcall] = ACTIONS(1485), - [anon_sym___fastcall] = ACTIONS(1485), - [anon_sym___thiscall] = ACTIONS(1485), - [anon_sym___vectorcall] = ACTIONS(1485), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_RBRACE] = ACTIONS(1487), - [anon_sym_signed] = ACTIONS(1485), - [anon_sym_unsigned] = ACTIONS(1485), - [anon_sym_long] = ACTIONS(1485), - [anon_sym_short] = ACTIONS(1485), - [anon_sym_static] = ACTIONS(1485), - [anon_sym_auto] = ACTIONS(1485), - [anon_sym_register] = ACTIONS(1485), - [anon_sym_inline] = ACTIONS(1485), - [anon_sym___inline] = ACTIONS(1485), - [anon_sym___inline__] = ACTIONS(1485), - [anon_sym___forceinline] = ACTIONS(1485), - [anon_sym_thread_local] = ACTIONS(1485), - [anon_sym___thread] = ACTIONS(1485), - [anon_sym_const] = ACTIONS(1485), - [anon_sym_constexpr] = ACTIONS(1485), - [anon_sym_volatile] = ACTIONS(1485), - [anon_sym_restrict] = ACTIONS(1485), - [anon_sym___restrict__] = ACTIONS(1485), - [anon_sym__Atomic] = ACTIONS(1485), - [anon_sym__Noreturn] = ACTIONS(1485), - [anon_sym_noreturn] = ACTIONS(1485), - [sym_primitive_type] = ACTIONS(1485), - [anon_sym_enum] = ACTIONS(1485), - [anon_sym_struct] = ACTIONS(1485), - [anon_sym_union] = ACTIONS(1485), - [anon_sym_if] = ACTIONS(1485), - [anon_sym_switch] = ACTIONS(1485), - [anon_sym_case] = ACTIONS(1485), - [anon_sym_default] = ACTIONS(1485), - [anon_sym_while] = ACTIONS(1485), - [anon_sym_do] = ACTIONS(1485), - [anon_sym_for] = ACTIONS(1485), - [anon_sym_return] = ACTIONS(1485), - [anon_sym_break] = ACTIONS(1485), - [anon_sym_continue] = ACTIONS(1485), - [anon_sym_goto] = ACTIONS(1485), - [anon_sym___try] = ACTIONS(1485), - [anon_sym___leave] = ACTIONS(1485), - [anon_sym_DASH_DASH] = ACTIONS(1487), - [anon_sym_PLUS_PLUS] = ACTIONS(1487), - [anon_sym_sizeof] = ACTIONS(1485), - [anon_sym___alignof__] = ACTIONS(1485), - [anon_sym___alignof] = ACTIONS(1485), - [anon_sym__alignof] = ACTIONS(1485), - [anon_sym_alignof] = ACTIONS(1485), - [anon_sym__Alignof] = ACTIONS(1485), - [anon_sym_offsetof] = ACTIONS(1485), - [anon_sym__Generic] = ACTIONS(1485), - [anon_sym_asm] = ACTIONS(1485), - [anon_sym___asm__] = ACTIONS(1485), - [sym_number_literal] = ACTIONS(1487), - [anon_sym_L_SQUOTE] = ACTIONS(1487), - [anon_sym_u_SQUOTE] = ACTIONS(1487), - [anon_sym_U_SQUOTE] = ACTIONS(1487), - [anon_sym_u8_SQUOTE] = ACTIONS(1487), - [anon_sym_SQUOTE] = ACTIONS(1487), - [anon_sym_L_DQUOTE] = ACTIONS(1487), - [anon_sym_u_DQUOTE] = ACTIONS(1487), - [anon_sym_U_DQUOTE] = ACTIONS(1487), - [anon_sym_u8_DQUOTE] = ACTIONS(1487), - [anon_sym_DQUOTE] = ACTIONS(1487), - [sym_true] = ACTIONS(1485), - [sym_false] = ACTIONS(1485), - [anon_sym_NULL] = ACTIONS(1485), - [anon_sym_nullptr] = ACTIONS(1485), + [sym_identifier] = ACTIONS(1432), + [aux_sym_preproc_include_token1] = ACTIONS(1432), + [aux_sym_preproc_def_token1] = ACTIONS(1432), + [aux_sym_preproc_if_token1] = ACTIONS(1432), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1432), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1432), + [sym_preproc_directive] = ACTIONS(1432), + [anon_sym_LPAREN2] = ACTIONS(1434), + [anon_sym_BANG] = ACTIONS(1434), + [anon_sym_TILDE] = ACTIONS(1434), + [anon_sym_DASH] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1432), + [anon_sym_STAR] = ACTIONS(1434), + [anon_sym_AMP] = ACTIONS(1434), + [anon_sym_SEMI] = ACTIONS(1434), + [anon_sym___extension__] = ACTIONS(1432), + [anon_sym_typedef] = ACTIONS(1432), + [anon_sym_extern] = ACTIONS(1432), + [anon_sym___attribute__] = ACTIONS(1432), + [anon_sym___scanf] = ACTIONS(1432), + [anon_sym___printf] = ACTIONS(1432), + [anon_sym___read_mostly] = ACTIONS(1432), + [anon_sym___must_hold] = ACTIONS(1432), + [anon_sym___ro_after_init] = ACTIONS(1432), + [anon_sym___init] = ACTIONS(1432), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1434), + [anon_sym___declspec] = ACTIONS(1432), + [anon_sym___cdecl] = ACTIONS(1432), + [anon_sym___clrcall] = ACTIONS(1432), + [anon_sym___stdcall] = ACTIONS(1432), + [anon_sym___fastcall] = ACTIONS(1432), + [anon_sym___thiscall] = ACTIONS(1432), + [anon_sym___vectorcall] = ACTIONS(1432), + [anon_sym_LBRACE] = ACTIONS(1434), + [anon_sym_RBRACE] = ACTIONS(1434), + [anon_sym_signed] = ACTIONS(1432), + [anon_sym_unsigned] = ACTIONS(1432), + [anon_sym_long] = ACTIONS(1432), + [anon_sym_short] = ACTIONS(1432), + [anon_sym_static] = ACTIONS(1432), + [anon_sym_auto] = ACTIONS(1432), + [anon_sym_register] = ACTIONS(1432), + [anon_sym_inline] = ACTIONS(1432), + [anon_sym___inline] = ACTIONS(1432), + [anon_sym___inline__] = ACTIONS(1432), + [anon_sym___forceinline] = ACTIONS(1432), + [anon_sym_thread_local] = ACTIONS(1432), + [anon_sym___thread] = ACTIONS(1432), + [anon_sym_const] = ACTIONS(1432), + [anon_sym_constexpr] = ACTIONS(1432), + [anon_sym_volatile] = ACTIONS(1432), + [anon_sym_restrict] = ACTIONS(1432), + [anon_sym___restrict__] = ACTIONS(1432), + [anon_sym__Atomic] = ACTIONS(1432), + [anon_sym__Noreturn] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [sym_primitive_type] = ACTIONS(1432), + [anon_sym_enum] = ACTIONS(1432), + [anon_sym_struct] = ACTIONS(1432), + [anon_sym_union] = ACTIONS(1432), + [anon_sym_if] = ACTIONS(1432), + [anon_sym_switch] = ACTIONS(1432), + [anon_sym_case] = ACTIONS(1432), + [anon_sym_default] = ACTIONS(1432), + [anon_sym_while] = ACTIONS(1432), + [anon_sym_do] = ACTIONS(1432), + [anon_sym_for] = ACTIONS(1432), + [anon_sym_return] = ACTIONS(1432), + [anon_sym_break] = ACTIONS(1432), + [anon_sym_continue] = ACTIONS(1432), + [anon_sym_goto] = ACTIONS(1432), + [anon_sym___try] = ACTIONS(1432), + [anon_sym___leave] = ACTIONS(1432), + [anon_sym_DASH_DASH] = ACTIONS(1434), + [anon_sym_PLUS_PLUS] = ACTIONS(1434), + [anon_sym_sizeof] = ACTIONS(1432), + [anon_sym___alignof__] = ACTIONS(1432), + [anon_sym___alignof] = ACTIONS(1432), + [anon_sym__alignof] = ACTIONS(1432), + [anon_sym_alignof] = ACTIONS(1432), + [anon_sym__Alignof] = ACTIONS(1432), + [anon_sym_offsetof] = ACTIONS(1432), + [anon_sym__Generic] = ACTIONS(1432), + [anon_sym_asm] = ACTIONS(1432), + [anon_sym___asm__] = ACTIONS(1432), + [sym_number_literal] = ACTIONS(1434), + [anon_sym_L_SQUOTE] = ACTIONS(1434), + [anon_sym_u_SQUOTE] = ACTIONS(1434), + [anon_sym_U_SQUOTE] = ACTIONS(1434), + [anon_sym_u8_SQUOTE] = ACTIONS(1434), + [anon_sym_SQUOTE] = ACTIONS(1434), + [anon_sym_L_DQUOTE] = ACTIONS(1434), + [anon_sym_u_DQUOTE] = ACTIONS(1434), + [anon_sym_U_DQUOTE] = ACTIONS(1434), + [anon_sym_u8_DQUOTE] = ACTIONS(1434), + [anon_sym_DQUOTE] = ACTIONS(1434), + [sym_true] = ACTIONS(1432), + [sym_false] = ACTIONS(1432), + [anon_sym_NULL] = ACTIONS(1432), + [anon_sym_nullptr] = ACTIONS(1432), [sym_comment] = ACTIONS(3), }, [367] = { - [sym_identifier] = ACTIONS(1489), - [aux_sym_preproc_include_token1] = ACTIONS(1489), - [aux_sym_preproc_def_token1] = ACTIONS(1489), - [aux_sym_preproc_if_token1] = ACTIONS(1489), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1489), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1489), - [sym_preproc_directive] = ACTIONS(1489), - [anon_sym_LPAREN2] = ACTIONS(1491), - [anon_sym_BANG] = ACTIONS(1491), - [anon_sym_TILDE] = ACTIONS(1491), - [anon_sym_DASH] = ACTIONS(1489), - [anon_sym_PLUS] = ACTIONS(1489), - [anon_sym_STAR] = ACTIONS(1491), - [anon_sym_AMP] = ACTIONS(1491), - [anon_sym_SEMI] = ACTIONS(1491), - [anon_sym___extension__] = ACTIONS(1489), - [anon_sym_typedef] = ACTIONS(1489), - [anon_sym_extern] = ACTIONS(1489), - [anon_sym___attribute__] = ACTIONS(1489), - [anon_sym___scanf] = ACTIONS(1489), - [anon_sym___printf] = ACTIONS(1489), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1491), - [anon_sym___declspec] = ACTIONS(1489), - [anon_sym___cdecl] = ACTIONS(1489), - [anon_sym___clrcall] = ACTIONS(1489), - [anon_sym___stdcall] = ACTIONS(1489), - [anon_sym___fastcall] = ACTIONS(1489), - [anon_sym___thiscall] = ACTIONS(1489), - [anon_sym___vectorcall] = ACTIONS(1489), - [anon_sym_LBRACE] = ACTIONS(1491), - [anon_sym_RBRACE] = ACTIONS(1491), - [anon_sym_signed] = ACTIONS(1489), - [anon_sym_unsigned] = ACTIONS(1489), - [anon_sym_long] = ACTIONS(1489), - [anon_sym_short] = ACTIONS(1489), - [anon_sym_static] = ACTIONS(1489), - [anon_sym_auto] = ACTIONS(1489), - [anon_sym_register] = ACTIONS(1489), - [anon_sym_inline] = ACTIONS(1489), - [anon_sym___inline] = ACTIONS(1489), - [anon_sym___inline__] = ACTIONS(1489), - [anon_sym___forceinline] = ACTIONS(1489), - [anon_sym_thread_local] = ACTIONS(1489), - [anon_sym___thread] = ACTIONS(1489), - [anon_sym_const] = ACTIONS(1489), - [anon_sym_constexpr] = ACTIONS(1489), - [anon_sym_volatile] = ACTIONS(1489), - [anon_sym_restrict] = ACTIONS(1489), - [anon_sym___restrict__] = ACTIONS(1489), - [anon_sym__Atomic] = ACTIONS(1489), - [anon_sym__Noreturn] = ACTIONS(1489), - [anon_sym_noreturn] = ACTIONS(1489), - [sym_primitive_type] = ACTIONS(1489), - [anon_sym_enum] = ACTIONS(1489), - [anon_sym_struct] = ACTIONS(1489), - [anon_sym_union] = ACTIONS(1489), - [anon_sym_if] = ACTIONS(1489), - [anon_sym_switch] = ACTIONS(1489), - [anon_sym_case] = ACTIONS(1489), - [anon_sym_default] = ACTIONS(1489), - [anon_sym_while] = ACTIONS(1489), - [anon_sym_do] = ACTIONS(1489), - [anon_sym_for] = ACTIONS(1489), - [anon_sym_return] = ACTIONS(1489), - [anon_sym_break] = ACTIONS(1489), - [anon_sym_continue] = ACTIONS(1489), - [anon_sym_goto] = ACTIONS(1489), - [anon_sym___try] = ACTIONS(1489), - [anon_sym___leave] = ACTIONS(1489), - [anon_sym_DASH_DASH] = ACTIONS(1491), - [anon_sym_PLUS_PLUS] = ACTIONS(1491), - [anon_sym_sizeof] = ACTIONS(1489), - [anon_sym___alignof__] = ACTIONS(1489), - [anon_sym___alignof] = ACTIONS(1489), - [anon_sym__alignof] = ACTIONS(1489), - [anon_sym_alignof] = ACTIONS(1489), - [anon_sym__Alignof] = ACTIONS(1489), - [anon_sym_offsetof] = ACTIONS(1489), - [anon_sym__Generic] = ACTIONS(1489), - [anon_sym_asm] = ACTIONS(1489), - [anon_sym___asm__] = ACTIONS(1489), - [sym_number_literal] = ACTIONS(1491), - [anon_sym_L_SQUOTE] = ACTIONS(1491), - [anon_sym_u_SQUOTE] = ACTIONS(1491), - [anon_sym_U_SQUOTE] = ACTIONS(1491), - [anon_sym_u8_SQUOTE] = ACTIONS(1491), - [anon_sym_SQUOTE] = ACTIONS(1491), - [anon_sym_L_DQUOTE] = ACTIONS(1491), - [anon_sym_u_DQUOTE] = ACTIONS(1491), - [anon_sym_U_DQUOTE] = ACTIONS(1491), - [anon_sym_u8_DQUOTE] = ACTIONS(1491), - [anon_sym_DQUOTE] = ACTIONS(1491), - [sym_true] = ACTIONS(1489), - [sym_false] = ACTIONS(1489), - [anon_sym_NULL] = ACTIONS(1489), - [anon_sym_nullptr] = ACTIONS(1489), + [sym_identifier] = ACTIONS(1480), + [aux_sym_preproc_include_token1] = ACTIONS(1480), + [aux_sym_preproc_def_token1] = ACTIONS(1480), + [aux_sym_preproc_if_token1] = ACTIONS(1480), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1480), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1480), + [sym_preproc_directive] = ACTIONS(1480), + [anon_sym_LPAREN2] = ACTIONS(1482), + [anon_sym_BANG] = ACTIONS(1482), + [anon_sym_TILDE] = ACTIONS(1482), + [anon_sym_DASH] = ACTIONS(1480), + [anon_sym_PLUS] = ACTIONS(1480), + [anon_sym_STAR] = ACTIONS(1482), + [anon_sym_AMP] = ACTIONS(1482), + [anon_sym_SEMI] = ACTIONS(1482), + [anon_sym___extension__] = ACTIONS(1480), + [anon_sym_typedef] = ACTIONS(1480), + [anon_sym_extern] = ACTIONS(1480), + [anon_sym___attribute__] = ACTIONS(1480), + [anon_sym___scanf] = ACTIONS(1480), + [anon_sym___printf] = ACTIONS(1480), + [anon_sym___read_mostly] = ACTIONS(1480), + [anon_sym___must_hold] = ACTIONS(1480), + [anon_sym___ro_after_init] = ACTIONS(1480), + [anon_sym___init] = ACTIONS(1480), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1482), + [anon_sym___declspec] = ACTIONS(1480), + [anon_sym___cdecl] = ACTIONS(1480), + [anon_sym___clrcall] = ACTIONS(1480), + [anon_sym___stdcall] = ACTIONS(1480), + [anon_sym___fastcall] = ACTIONS(1480), + [anon_sym___thiscall] = ACTIONS(1480), + [anon_sym___vectorcall] = ACTIONS(1480), + [anon_sym_LBRACE] = ACTIONS(1482), + [anon_sym_RBRACE] = ACTIONS(1482), + [anon_sym_signed] = ACTIONS(1480), + [anon_sym_unsigned] = ACTIONS(1480), + [anon_sym_long] = ACTIONS(1480), + [anon_sym_short] = ACTIONS(1480), + [anon_sym_static] = ACTIONS(1480), + [anon_sym_auto] = ACTIONS(1480), + [anon_sym_register] = ACTIONS(1480), + [anon_sym_inline] = ACTIONS(1480), + [anon_sym___inline] = ACTIONS(1480), + [anon_sym___inline__] = ACTIONS(1480), + [anon_sym___forceinline] = ACTIONS(1480), + [anon_sym_thread_local] = ACTIONS(1480), + [anon_sym___thread] = ACTIONS(1480), + [anon_sym_const] = ACTIONS(1480), + [anon_sym_constexpr] = ACTIONS(1480), + [anon_sym_volatile] = ACTIONS(1480), + [anon_sym_restrict] = ACTIONS(1480), + [anon_sym___restrict__] = ACTIONS(1480), + [anon_sym__Atomic] = ACTIONS(1480), + [anon_sym__Noreturn] = ACTIONS(1480), + [anon_sym_noreturn] = ACTIONS(1480), + [sym_primitive_type] = ACTIONS(1480), + [anon_sym_enum] = ACTIONS(1480), + [anon_sym_struct] = ACTIONS(1480), + [anon_sym_union] = ACTIONS(1480), + [anon_sym_if] = ACTIONS(1480), + [anon_sym_switch] = ACTIONS(1480), + [anon_sym_case] = ACTIONS(1480), + [anon_sym_default] = ACTIONS(1480), + [anon_sym_while] = ACTIONS(1480), + [anon_sym_do] = ACTIONS(1480), + [anon_sym_for] = ACTIONS(1480), + [anon_sym_return] = ACTIONS(1480), + [anon_sym_break] = ACTIONS(1480), + [anon_sym_continue] = ACTIONS(1480), + [anon_sym_goto] = ACTIONS(1480), + [anon_sym___try] = ACTIONS(1480), + [anon_sym___leave] = ACTIONS(1480), + [anon_sym_DASH_DASH] = ACTIONS(1482), + [anon_sym_PLUS_PLUS] = ACTIONS(1482), + [anon_sym_sizeof] = ACTIONS(1480), + [anon_sym___alignof__] = ACTIONS(1480), + [anon_sym___alignof] = ACTIONS(1480), + [anon_sym__alignof] = ACTIONS(1480), + [anon_sym_alignof] = ACTIONS(1480), + [anon_sym__Alignof] = ACTIONS(1480), + [anon_sym_offsetof] = ACTIONS(1480), + [anon_sym__Generic] = ACTIONS(1480), + [anon_sym_asm] = ACTIONS(1480), + [anon_sym___asm__] = ACTIONS(1480), + [sym_number_literal] = ACTIONS(1482), + [anon_sym_L_SQUOTE] = ACTIONS(1482), + [anon_sym_u_SQUOTE] = ACTIONS(1482), + [anon_sym_U_SQUOTE] = ACTIONS(1482), + [anon_sym_u8_SQUOTE] = ACTIONS(1482), + [anon_sym_SQUOTE] = ACTIONS(1482), + [anon_sym_L_DQUOTE] = ACTIONS(1482), + [anon_sym_u_DQUOTE] = ACTIONS(1482), + [anon_sym_U_DQUOTE] = ACTIONS(1482), + [anon_sym_u8_DQUOTE] = ACTIONS(1482), + [anon_sym_DQUOTE] = ACTIONS(1482), + [sym_true] = ACTIONS(1480), + [sym_false] = ACTIONS(1480), + [anon_sym_NULL] = ACTIONS(1480), + [anon_sym_nullptr] = ACTIONS(1480), [sym_comment] = ACTIONS(3), }, [368] = { - [sym_identifier] = ACTIONS(1493), - [aux_sym_preproc_include_token1] = ACTIONS(1493), - [aux_sym_preproc_def_token1] = ACTIONS(1493), - [aux_sym_preproc_if_token1] = ACTIONS(1493), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1493), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1493), - [sym_preproc_directive] = ACTIONS(1493), - [anon_sym_LPAREN2] = ACTIONS(1495), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), - [anon_sym_SEMI] = ACTIONS(1495), - [anon_sym___extension__] = ACTIONS(1493), - [anon_sym_typedef] = ACTIONS(1493), - [anon_sym_extern] = ACTIONS(1493), - [anon_sym___attribute__] = ACTIONS(1493), - [anon_sym___scanf] = ACTIONS(1493), - [anon_sym___printf] = ACTIONS(1493), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1495), - [anon_sym___declspec] = ACTIONS(1493), - [anon_sym___cdecl] = ACTIONS(1493), - [anon_sym___clrcall] = ACTIONS(1493), - [anon_sym___stdcall] = ACTIONS(1493), - [anon_sym___fastcall] = ACTIONS(1493), - [anon_sym___thiscall] = ACTIONS(1493), - [anon_sym___vectorcall] = ACTIONS(1493), - [anon_sym_LBRACE] = ACTIONS(1495), - [anon_sym_RBRACE] = ACTIONS(1495), - [anon_sym_signed] = ACTIONS(1493), - [anon_sym_unsigned] = ACTIONS(1493), - [anon_sym_long] = ACTIONS(1493), - [anon_sym_short] = ACTIONS(1493), - [anon_sym_static] = ACTIONS(1493), - [anon_sym_auto] = ACTIONS(1493), - [anon_sym_register] = ACTIONS(1493), - [anon_sym_inline] = ACTIONS(1493), - [anon_sym___inline] = ACTIONS(1493), - [anon_sym___inline__] = ACTIONS(1493), - [anon_sym___forceinline] = ACTIONS(1493), - [anon_sym_thread_local] = ACTIONS(1493), - [anon_sym___thread] = ACTIONS(1493), - [anon_sym_const] = ACTIONS(1493), - [anon_sym_constexpr] = ACTIONS(1493), - [anon_sym_volatile] = ACTIONS(1493), - [anon_sym_restrict] = ACTIONS(1493), - [anon_sym___restrict__] = ACTIONS(1493), - [anon_sym__Atomic] = ACTIONS(1493), - [anon_sym__Noreturn] = ACTIONS(1493), - [anon_sym_noreturn] = ACTIONS(1493), - [sym_primitive_type] = ACTIONS(1493), - [anon_sym_enum] = ACTIONS(1493), - [anon_sym_struct] = ACTIONS(1493), - [anon_sym_union] = ACTIONS(1493), - [anon_sym_if] = ACTIONS(1493), - [anon_sym_switch] = ACTIONS(1493), - [anon_sym_case] = ACTIONS(1493), - [anon_sym_default] = ACTIONS(1493), - [anon_sym_while] = ACTIONS(1493), - [anon_sym_do] = ACTIONS(1493), - [anon_sym_for] = ACTIONS(1493), - [anon_sym_return] = ACTIONS(1493), - [anon_sym_break] = ACTIONS(1493), - [anon_sym_continue] = ACTIONS(1493), - [anon_sym_goto] = ACTIONS(1493), - [anon_sym___try] = ACTIONS(1493), - [anon_sym___leave] = ACTIONS(1493), - [anon_sym_DASH_DASH] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym___alignof__] = ACTIONS(1493), - [anon_sym___alignof] = ACTIONS(1493), - [anon_sym__alignof] = ACTIONS(1493), - [anon_sym_alignof] = ACTIONS(1493), - [anon_sym__Alignof] = ACTIONS(1493), - [anon_sym_offsetof] = ACTIONS(1493), - [anon_sym__Generic] = ACTIONS(1493), - [anon_sym_asm] = ACTIONS(1493), - [anon_sym___asm__] = ACTIONS(1493), - [sym_number_literal] = ACTIONS(1495), - [anon_sym_L_SQUOTE] = ACTIONS(1495), - [anon_sym_u_SQUOTE] = ACTIONS(1495), - [anon_sym_U_SQUOTE] = ACTIONS(1495), - [anon_sym_u8_SQUOTE] = ACTIONS(1495), - [anon_sym_SQUOTE] = ACTIONS(1495), - [anon_sym_L_DQUOTE] = ACTIONS(1495), - [anon_sym_u_DQUOTE] = ACTIONS(1495), - [anon_sym_U_DQUOTE] = ACTIONS(1495), - [anon_sym_u8_DQUOTE] = ACTIONS(1495), - [anon_sym_DQUOTE] = ACTIONS(1495), - [sym_true] = ACTIONS(1493), - [sym_false] = ACTIONS(1493), - [anon_sym_NULL] = ACTIONS(1493), - [anon_sym_nullptr] = ACTIONS(1493), + [sym_identifier] = ACTIONS(1504), + [aux_sym_preproc_include_token1] = ACTIONS(1504), + [aux_sym_preproc_def_token1] = ACTIONS(1504), + [aux_sym_preproc_if_token1] = ACTIONS(1504), + [aux_sym_preproc_if_token2] = ACTIONS(1504), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1504), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1504), + [sym_preproc_directive] = ACTIONS(1504), + [anon_sym_LPAREN2] = ACTIONS(1506), + [anon_sym_BANG] = ACTIONS(1506), + [anon_sym_TILDE] = ACTIONS(1506), + [anon_sym_DASH] = ACTIONS(1504), + [anon_sym_PLUS] = ACTIONS(1504), + [anon_sym_STAR] = ACTIONS(1506), + [anon_sym_AMP] = ACTIONS(1506), + [anon_sym_SEMI] = ACTIONS(1506), + [anon_sym___extension__] = ACTIONS(1504), + [anon_sym_typedef] = ACTIONS(1504), + [anon_sym_extern] = ACTIONS(1504), + [anon_sym___attribute__] = ACTIONS(1504), + [anon_sym___scanf] = ACTIONS(1504), + [anon_sym___printf] = ACTIONS(1504), + [anon_sym___read_mostly] = ACTIONS(1504), + [anon_sym___must_hold] = ACTIONS(1504), + [anon_sym___ro_after_init] = ACTIONS(1504), + [anon_sym___init] = ACTIONS(1504), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1506), + [anon_sym___declspec] = ACTIONS(1504), + [anon_sym___cdecl] = ACTIONS(1504), + [anon_sym___clrcall] = ACTIONS(1504), + [anon_sym___stdcall] = ACTIONS(1504), + [anon_sym___fastcall] = ACTIONS(1504), + [anon_sym___thiscall] = ACTIONS(1504), + [anon_sym___vectorcall] = ACTIONS(1504), + [anon_sym_LBRACE] = ACTIONS(1506), + [anon_sym_signed] = ACTIONS(1504), + [anon_sym_unsigned] = ACTIONS(1504), + [anon_sym_long] = ACTIONS(1504), + [anon_sym_short] = ACTIONS(1504), + [anon_sym_static] = ACTIONS(1504), + [anon_sym_auto] = ACTIONS(1504), + [anon_sym_register] = ACTIONS(1504), + [anon_sym_inline] = ACTIONS(1504), + [anon_sym___inline] = ACTIONS(1504), + [anon_sym___inline__] = ACTIONS(1504), + [anon_sym___forceinline] = ACTIONS(1504), + [anon_sym_thread_local] = ACTIONS(1504), + [anon_sym___thread] = ACTIONS(1504), + [anon_sym_const] = ACTIONS(1504), + [anon_sym_constexpr] = ACTIONS(1504), + [anon_sym_volatile] = ACTIONS(1504), + [anon_sym_restrict] = ACTIONS(1504), + [anon_sym___restrict__] = ACTIONS(1504), + [anon_sym__Atomic] = ACTIONS(1504), + [anon_sym__Noreturn] = ACTIONS(1504), + [anon_sym_noreturn] = ACTIONS(1504), + [sym_primitive_type] = ACTIONS(1504), + [anon_sym_enum] = ACTIONS(1504), + [anon_sym_struct] = ACTIONS(1504), + [anon_sym_union] = ACTIONS(1504), + [anon_sym_if] = ACTIONS(1504), + [anon_sym_switch] = ACTIONS(1504), + [anon_sym_case] = ACTIONS(1504), + [anon_sym_default] = ACTIONS(1504), + [anon_sym_while] = ACTIONS(1504), + [anon_sym_do] = ACTIONS(1504), + [anon_sym_for] = ACTIONS(1504), + [anon_sym_return] = ACTIONS(1504), + [anon_sym_break] = ACTIONS(1504), + [anon_sym_continue] = ACTIONS(1504), + [anon_sym_goto] = ACTIONS(1504), + [anon_sym___try] = ACTIONS(1504), + [anon_sym___leave] = ACTIONS(1504), + [anon_sym_DASH_DASH] = ACTIONS(1506), + [anon_sym_PLUS_PLUS] = ACTIONS(1506), + [anon_sym_sizeof] = ACTIONS(1504), + [anon_sym___alignof__] = ACTIONS(1504), + [anon_sym___alignof] = ACTIONS(1504), + [anon_sym__alignof] = ACTIONS(1504), + [anon_sym_alignof] = ACTIONS(1504), + [anon_sym__Alignof] = ACTIONS(1504), + [anon_sym_offsetof] = ACTIONS(1504), + [anon_sym__Generic] = ACTIONS(1504), + [anon_sym_asm] = ACTIONS(1504), + [anon_sym___asm__] = ACTIONS(1504), + [sym_number_literal] = ACTIONS(1506), + [anon_sym_L_SQUOTE] = ACTIONS(1506), + [anon_sym_u_SQUOTE] = ACTIONS(1506), + [anon_sym_U_SQUOTE] = ACTIONS(1506), + [anon_sym_u8_SQUOTE] = ACTIONS(1506), + [anon_sym_SQUOTE] = ACTIONS(1506), + [anon_sym_L_DQUOTE] = ACTIONS(1506), + [anon_sym_u_DQUOTE] = ACTIONS(1506), + [anon_sym_U_DQUOTE] = ACTIONS(1506), + [anon_sym_u8_DQUOTE] = ACTIONS(1506), + [anon_sym_DQUOTE] = ACTIONS(1506), + [sym_true] = ACTIONS(1504), + [sym_false] = ACTIONS(1504), + [anon_sym_NULL] = ACTIONS(1504), + [anon_sym_nullptr] = ACTIONS(1504), [sym_comment] = ACTIONS(3), }, [369] = { - [sym_identifier] = ACTIONS(1481), - [aux_sym_preproc_include_token1] = ACTIONS(1481), - [aux_sym_preproc_def_token1] = ACTIONS(1481), - [aux_sym_preproc_if_token1] = ACTIONS(1481), - [aux_sym_preproc_if_token2] = ACTIONS(1481), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1481), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1481), - [sym_preproc_directive] = ACTIONS(1481), - [anon_sym_LPAREN2] = ACTIONS(1483), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_PLUS] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_SEMI] = ACTIONS(1483), - [anon_sym___extension__] = ACTIONS(1481), - [anon_sym_typedef] = ACTIONS(1481), - [anon_sym_extern] = ACTIONS(1481), - [anon_sym___attribute__] = ACTIONS(1481), - [anon_sym___scanf] = ACTIONS(1481), - [anon_sym___printf] = ACTIONS(1481), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1483), - [anon_sym___declspec] = ACTIONS(1481), - [anon_sym___cdecl] = ACTIONS(1481), - [anon_sym___clrcall] = ACTIONS(1481), - [anon_sym___stdcall] = ACTIONS(1481), - [anon_sym___fastcall] = ACTIONS(1481), - [anon_sym___thiscall] = ACTIONS(1481), - [anon_sym___vectorcall] = ACTIONS(1481), - [anon_sym_LBRACE] = ACTIONS(1483), - [anon_sym_signed] = ACTIONS(1481), - [anon_sym_unsigned] = ACTIONS(1481), - [anon_sym_long] = ACTIONS(1481), - [anon_sym_short] = ACTIONS(1481), - [anon_sym_static] = ACTIONS(1481), - [anon_sym_auto] = ACTIONS(1481), - [anon_sym_register] = ACTIONS(1481), - [anon_sym_inline] = ACTIONS(1481), - [anon_sym___inline] = ACTIONS(1481), - [anon_sym___inline__] = ACTIONS(1481), - [anon_sym___forceinline] = ACTIONS(1481), - [anon_sym_thread_local] = ACTIONS(1481), - [anon_sym___thread] = ACTIONS(1481), - [anon_sym_const] = ACTIONS(1481), - [anon_sym_constexpr] = ACTIONS(1481), - [anon_sym_volatile] = ACTIONS(1481), - [anon_sym_restrict] = ACTIONS(1481), - [anon_sym___restrict__] = ACTIONS(1481), - [anon_sym__Atomic] = ACTIONS(1481), - [anon_sym__Noreturn] = ACTIONS(1481), - [anon_sym_noreturn] = ACTIONS(1481), - [sym_primitive_type] = ACTIONS(1481), - [anon_sym_enum] = ACTIONS(1481), - [anon_sym_struct] = ACTIONS(1481), - [anon_sym_union] = ACTIONS(1481), - [anon_sym_if] = ACTIONS(1481), - [anon_sym_switch] = ACTIONS(1481), - [anon_sym_case] = ACTIONS(1481), - [anon_sym_default] = ACTIONS(1481), - [anon_sym_while] = ACTIONS(1481), - [anon_sym_do] = ACTIONS(1481), - [anon_sym_for] = ACTIONS(1481), - [anon_sym_return] = ACTIONS(1481), - [anon_sym_break] = ACTIONS(1481), - [anon_sym_continue] = ACTIONS(1481), - [anon_sym_goto] = ACTIONS(1481), - [anon_sym___try] = ACTIONS(1481), - [anon_sym___leave] = ACTIONS(1481), - [anon_sym_DASH_DASH] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_sizeof] = ACTIONS(1481), - [anon_sym___alignof__] = ACTIONS(1481), - [anon_sym___alignof] = ACTIONS(1481), - [anon_sym__alignof] = ACTIONS(1481), - [anon_sym_alignof] = ACTIONS(1481), - [anon_sym__Alignof] = ACTIONS(1481), - [anon_sym_offsetof] = ACTIONS(1481), - [anon_sym__Generic] = ACTIONS(1481), - [anon_sym_asm] = ACTIONS(1481), - [anon_sym___asm__] = ACTIONS(1481), - [sym_number_literal] = ACTIONS(1483), - [anon_sym_L_SQUOTE] = ACTIONS(1483), - [anon_sym_u_SQUOTE] = ACTIONS(1483), - [anon_sym_U_SQUOTE] = ACTIONS(1483), - [anon_sym_u8_SQUOTE] = ACTIONS(1483), - [anon_sym_SQUOTE] = ACTIONS(1483), - [anon_sym_L_DQUOTE] = ACTIONS(1483), - [anon_sym_u_DQUOTE] = ACTIONS(1483), - [anon_sym_U_DQUOTE] = ACTIONS(1483), - [anon_sym_u8_DQUOTE] = ACTIONS(1483), - [anon_sym_DQUOTE] = ACTIONS(1483), - [sym_true] = ACTIONS(1481), - [sym_false] = ACTIONS(1481), - [anon_sym_NULL] = ACTIONS(1481), - [anon_sym_nullptr] = ACTIONS(1481), + [sym_identifier] = ACTIONS(1508), + [aux_sym_preproc_include_token1] = ACTIONS(1508), + [aux_sym_preproc_def_token1] = ACTIONS(1508), + [aux_sym_preproc_if_token1] = ACTIONS(1508), + [aux_sym_preproc_if_token2] = ACTIONS(1508), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1508), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1508), + [sym_preproc_directive] = ACTIONS(1508), + [anon_sym_LPAREN2] = ACTIONS(1510), + [anon_sym_BANG] = ACTIONS(1510), + [anon_sym_TILDE] = ACTIONS(1510), + [anon_sym_DASH] = ACTIONS(1508), + [anon_sym_PLUS] = ACTIONS(1508), + [anon_sym_STAR] = ACTIONS(1510), + [anon_sym_AMP] = ACTIONS(1510), + [anon_sym_SEMI] = ACTIONS(1510), + [anon_sym___extension__] = ACTIONS(1508), + [anon_sym_typedef] = ACTIONS(1508), + [anon_sym_extern] = ACTIONS(1508), + [anon_sym___attribute__] = ACTIONS(1508), + [anon_sym___scanf] = ACTIONS(1508), + [anon_sym___printf] = ACTIONS(1508), + [anon_sym___read_mostly] = ACTIONS(1508), + [anon_sym___must_hold] = ACTIONS(1508), + [anon_sym___ro_after_init] = ACTIONS(1508), + [anon_sym___init] = ACTIONS(1508), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1510), + [anon_sym___declspec] = ACTIONS(1508), + [anon_sym___cdecl] = ACTIONS(1508), + [anon_sym___clrcall] = ACTIONS(1508), + [anon_sym___stdcall] = ACTIONS(1508), + [anon_sym___fastcall] = ACTIONS(1508), + [anon_sym___thiscall] = ACTIONS(1508), + [anon_sym___vectorcall] = ACTIONS(1508), + [anon_sym_LBRACE] = ACTIONS(1510), + [anon_sym_signed] = ACTIONS(1508), + [anon_sym_unsigned] = ACTIONS(1508), + [anon_sym_long] = ACTIONS(1508), + [anon_sym_short] = ACTIONS(1508), + [anon_sym_static] = ACTIONS(1508), + [anon_sym_auto] = ACTIONS(1508), + [anon_sym_register] = ACTIONS(1508), + [anon_sym_inline] = ACTIONS(1508), + [anon_sym___inline] = ACTIONS(1508), + [anon_sym___inline__] = ACTIONS(1508), + [anon_sym___forceinline] = ACTIONS(1508), + [anon_sym_thread_local] = ACTIONS(1508), + [anon_sym___thread] = ACTIONS(1508), + [anon_sym_const] = ACTIONS(1508), + [anon_sym_constexpr] = ACTIONS(1508), + [anon_sym_volatile] = ACTIONS(1508), + [anon_sym_restrict] = ACTIONS(1508), + [anon_sym___restrict__] = ACTIONS(1508), + [anon_sym__Atomic] = ACTIONS(1508), + [anon_sym__Noreturn] = ACTIONS(1508), + [anon_sym_noreturn] = ACTIONS(1508), + [sym_primitive_type] = ACTIONS(1508), + [anon_sym_enum] = ACTIONS(1508), + [anon_sym_struct] = ACTIONS(1508), + [anon_sym_union] = ACTIONS(1508), + [anon_sym_if] = ACTIONS(1508), + [anon_sym_switch] = ACTIONS(1508), + [anon_sym_case] = ACTIONS(1508), + [anon_sym_default] = ACTIONS(1508), + [anon_sym_while] = ACTIONS(1508), + [anon_sym_do] = ACTIONS(1508), + [anon_sym_for] = ACTIONS(1508), + [anon_sym_return] = ACTIONS(1508), + [anon_sym_break] = ACTIONS(1508), + [anon_sym_continue] = ACTIONS(1508), + [anon_sym_goto] = ACTIONS(1508), + [anon_sym___try] = ACTIONS(1508), + [anon_sym___leave] = ACTIONS(1508), + [anon_sym_DASH_DASH] = ACTIONS(1510), + [anon_sym_PLUS_PLUS] = ACTIONS(1510), + [anon_sym_sizeof] = ACTIONS(1508), + [anon_sym___alignof__] = ACTIONS(1508), + [anon_sym___alignof] = ACTIONS(1508), + [anon_sym__alignof] = ACTIONS(1508), + [anon_sym_alignof] = ACTIONS(1508), + [anon_sym__Alignof] = ACTIONS(1508), + [anon_sym_offsetof] = ACTIONS(1508), + [anon_sym__Generic] = ACTIONS(1508), + [anon_sym_asm] = ACTIONS(1508), + [anon_sym___asm__] = ACTIONS(1508), + [sym_number_literal] = ACTIONS(1510), + [anon_sym_L_SQUOTE] = ACTIONS(1510), + [anon_sym_u_SQUOTE] = ACTIONS(1510), + [anon_sym_U_SQUOTE] = ACTIONS(1510), + [anon_sym_u8_SQUOTE] = ACTIONS(1510), + [anon_sym_SQUOTE] = ACTIONS(1510), + [anon_sym_L_DQUOTE] = ACTIONS(1510), + [anon_sym_u_DQUOTE] = ACTIONS(1510), + [anon_sym_U_DQUOTE] = ACTIONS(1510), + [anon_sym_u8_DQUOTE] = ACTIONS(1510), + [anon_sym_DQUOTE] = ACTIONS(1510), + [sym_true] = ACTIONS(1508), + [sym_false] = ACTIONS(1508), + [anon_sym_NULL] = ACTIONS(1508), + [anon_sym_nullptr] = ACTIONS(1508), [sym_comment] = ACTIONS(3), }, [370] = { - [sym_identifier] = ACTIONS(1497), - [aux_sym_preproc_include_token1] = ACTIONS(1497), - [aux_sym_preproc_def_token1] = ACTIONS(1497), - [aux_sym_preproc_if_token1] = ACTIONS(1497), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1497), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1497), - [sym_preproc_directive] = ACTIONS(1497), - [anon_sym_LPAREN2] = ACTIONS(1499), - [anon_sym_BANG] = ACTIONS(1499), - [anon_sym_TILDE] = ACTIONS(1499), - [anon_sym_DASH] = ACTIONS(1497), - [anon_sym_PLUS] = ACTIONS(1497), - [anon_sym_STAR] = ACTIONS(1499), - [anon_sym_AMP] = ACTIONS(1499), - [anon_sym_SEMI] = ACTIONS(1499), - [anon_sym___extension__] = ACTIONS(1497), - [anon_sym_typedef] = ACTIONS(1497), - [anon_sym_extern] = ACTIONS(1497), - [anon_sym___attribute__] = ACTIONS(1497), - [anon_sym___scanf] = ACTIONS(1497), - [anon_sym___printf] = ACTIONS(1497), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1499), - [anon_sym___declspec] = ACTIONS(1497), - [anon_sym___cdecl] = ACTIONS(1497), - [anon_sym___clrcall] = ACTIONS(1497), - [anon_sym___stdcall] = ACTIONS(1497), - [anon_sym___fastcall] = ACTIONS(1497), - [anon_sym___thiscall] = ACTIONS(1497), - [anon_sym___vectorcall] = ACTIONS(1497), - [anon_sym_LBRACE] = ACTIONS(1499), - [anon_sym_RBRACE] = ACTIONS(1499), - [anon_sym_signed] = ACTIONS(1497), - [anon_sym_unsigned] = ACTIONS(1497), - [anon_sym_long] = ACTIONS(1497), - [anon_sym_short] = ACTIONS(1497), - [anon_sym_static] = ACTIONS(1497), - [anon_sym_auto] = ACTIONS(1497), - [anon_sym_register] = ACTIONS(1497), - [anon_sym_inline] = ACTIONS(1497), - [anon_sym___inline] = ACTIONS(1497), - [anon_sym___inline__] = ACTIONS(1497), - [anon_sym___forceinline] = ACTIONS(1497), - [anon_sym_thread_local] = ACTIONS(1497), - [anon_sym___thread] = ACTIONS(1497), - [anon_sym_const] = ACTIONS(1497), - [anon_sym_constexpr] = ACTIONS(1497), - [anon_sym_volatile] = ACTIONS(1497), - [anon_sym_restrict] = ACTIONS(1497), - [anon_sym___restrict__] = ACTIONS(1497), - [anon_sym__Atomic] = ACTIONS(1497), - [anon_sym__Noreturn] = ACTIONS(1497), - [anon_sym_noreturn] = ACTIONS(1497), - [sym_primitive_type] = ACTIONS(1497), - [anon_sym_enum] = ACTIONS(1497), - [anon_sym_struct] = ACTIONS(1497), - [anon_sym_union] = ACTIONS(1497), - [anon_sym_if] = ACTIONS(1497), - [anon_sym_switch] = ACTIONS(1497), - [anon_sym_case] = ACTIONS(1497), - [anon_sym_default] = ACTIONS(1497), - [anon_sym_while] = ACTIONS(1497), - [anon_sym_do] = ACTIONS(1497), - [anon_sym_for] = ACTIONS(1497), - [anon_sym_return] = ACTIONS(1497), - [anon_sym_break] = ACTIONS(1497), - [anon_sym_continue] = ACTIONS(1497), - [anon_sym_goto] = ACTIONS(1497), - [anon_sym___try] = ACTIONS(1497), - [anon_sym___leave] = ACTIONS(1497), - [anon_sym_DASH_DASH] = ACTIONS(1499), - [anon_sym_PLUS_PLUS] = ACTIONS(1499), - [anon_sym_sizeof] = ACTIONS(1497), - [anon_sym___alignof__] = ACTIONS(1497), - [anon_sym___alignof] = ACTIONS(1497), - [anon_sym__alignof] = ACTIONS(1497), - [anon_sym_alignof] = ACTIONS(1497), - [anon_sym__Alignof] = ACTIONS(1497), - [anon_sym_offsetof] = ACTIONS(1497), - [anon_sym__Generic] = ACTIONS(1497), - [anon_sym_asm] = ACTIONS(1497), - [anon_sym___asm__] = ACTIONS(1497), - [sym_number_literal] = ACTIONS(1499), - [anon_sym_L_SQUOTE] = ACTIONS(1499), - [anon_sym_u_SQUOTE] = ACTIONS(1499), - [anon_sym_U_SQUOTE] = ACTIONS(1499), - [anon_sym_u8_SQUOTE] = ACTIONS(1499), - [anon_sym_SQUOTE] = ACTIONS(1499), - [anon_sym_L_DQUOTE] = ACTIONS(1499), - [anon_sym_u_DQUOTE] = ACTIONS(1499), - [anon_sym_U_DQUOTE] = ACTIONS(1499), - [anon_sym_u8_DQUOTE] = ACTIONS(1499), - [anon_sym_DQUOTE] = ACTIONS(1499), - [sym_true] = ACTIONS(1497), - [sym_false] = ACTIONS(1497), - [anon_sym_NULL] = ACTIONS(1497), - [anon_sym_nullptr] = ACTIONS(1497), + [sym_identifier] = ACTIONS(1484), + [aux_sym_preproc_include_token1] = ACTIONS(1484), + [aux_sym_preproc_def_token1] = ACTIONS(1484), + [aux_sym_preproc_if_token1] = ACTIONS(1484), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1484), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1484), + [sym_preproc_directive] = ACTIONS(1484), + [anon_sym_LPAREN2] = ACTIONS(1486), + [anon_sym_BANG] = ACTIONS(1486), + [anon_sym_TILDE] = ACTIONS(1486), + [anon_sym_DASH] = ACTIONS(1484), + [anon_sym_PLUS] = ACTIONS(1484), + [anon_sym_STAR] = ACTIONS(1486), + [anon_sym_AMP] = ACTIONS(1486), + [anon_sym_SEMI] = ACTIONS(1486), + [anon_sym___extension__] = ACTIONS(1484), + [anon_sym_typedef] = ACTIONS(1484), + [anon_sym_extern] = ACTIONS(1484), + [anon_sym___attribute__] = ACTIONS(1484), + [anon_sym___scanf] = ACTIONS(1484), + [anon_sym___printf] = ACTIONS(1484), + [anon_sym___read_mostly] = ACTIONS(1484), + [anon_sym___must_hold] = ACTIONS(1484), + [anon_sym___ro_after_init] = ACTIONS(1484), + [anon_sym___init] = ACTIONS(1484), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1486), + [anon_sym___declspec] = ACTIONS(1484), + [anon_sym___cdecl] = ACTIONS(1484), + [anon_sym___clrcall] = ACTIONS(1484), + [anon_sym___stdcall] = ACTIONS(1484), + [anon_sym___fastcall] = ACTIONS(1484), + [anon_sym___thiscall] = ACTIONS(1484), + [anon_sym___vectorcall] = ACTIONS(1484), + [anon_sym_LBRACE] = ACTIONS(1486), + [anon_sym_RBRACE] = ACTIONS(1486), + [anon_sym_signed] = ACTIONS(1484), + [anon_sym_unsigned] = ACTIONS(1484), + [anon_sym_long] = ACTIONS(1484), + [anon_sym_short] = ACTIONS(1484), + [anon_sym_static] = ACTIONS(1484), + [anon_sym_auto] = ACTIONS(1484), + [anon_sym_register] = ACTIONS(1484), + [anon_sym_inline] = ACTIONS(1484), + [anon_sym___inline] = ACTIONS(1484), + [anon_sym___inline__] = ACTIONS(1484), + [anon_sym___forceinline] = ACTIONS(1484), + [anon_sym_thread_local] = ACTIONS(1484), + [anon_sym___thread] = ACTIONS(1484), + [anon_sym_const] = ACTIONS(1484), + [anon_sym_constexpr] = ACTIONS(1484), + [anon_sym_volatile] = ACTIONS(1484), + [anon_sym_restrict] = ACTIONS(1484), + [anon_sym___restrict__] = ACTIONS(1484), + [anon_sym__Atomic] = ACTIONS(1484), + [anon_sym__Noreturn] = ACTIONS(1484), + [anon_sym_noreturn] = ACTIONS(1484), + [sym_primitive_type] = ACTIONS(1484), + [anon_sym_enum] = ACTIONS(1484), + [anon_sym_struct] = ACTIONS(1484), + [anon_sym_union] = ACTIONS(1484), + [anon_sym_if] = ACTIONS(1484), + [anon_sym_switch] = ACTIONS(1484), + [anon_sym_case] = ACTIONS(1484), + [anon_sym_default] = ACTIONS(1484), + [anon_sym_while] = ACTIONS(1484), + [anon_sym_do] = ACTIONS(1484), + [anon_sym_for] = ACTIONS(1484), + [anon_sym_return] = ACTIONS(1484), + [anon_sym_break] = ACTIONS(1484), + [anon_sym_continue] = ACTIONS(1484), + [anon_sym_goto] = ACTIONS(1484), + [anon_sym___try] = ACTIONS(1484), + [anon_sym___leave] = ACTIONS(1484), + [anon_sym_DASH_DASH] = ACTIONS(1486), + [anon_sym_PLUS_PLUS] = ACTIONS(1486), + [anon_sym_sizeof] = ACTIONS(1484), + [anon_sym___alignof__] = ACTIONS(1484), + [anon_sym___alignof] = ACTIONS(1484), + [anon_sym__alignof] = ACTIONS(1484), + [anon_sym_alignof] = ACTIONS(1484), + [anon_sym__Alignof] = ACTIONS(1484), + [anon_sym_offsetof] = ACTIONS(1484), + [anon_sym__Generic] = ACTIONS(1484), + [anon_sym_asm] = ACTIONS(1484), + [anon_sym___asm__] = ACTIONS(1484), + [sym_number_literal] = ACTIONS(1486), + [anon_sym_L_SQUOTE] = ACTIONS(1486), + [anon_sym_u_SQUOTE] = ACTIONS(1486), + [anon_sym_U_SQUOTE] = ACTIONS(1486), + [anon_sym_u8_SQUOTE] = ACTIONS(1486), + [anon_sym_SQUOTE] = ACTIONS(1486), + [anon_sym_L_DQUOTE] = ACTIONS(1486), + [anon_sym_u_DQUOTE] = ACTIONS(1486), + [anon_sym_U_DQUOTE] = ACTIONS(1486), + [anon_sym_u8_DQUOTE] = ACTIONS(1486), + [anon_sym_DQUOTE] = ACTIONS(1486), + [sym_true] = ACTIONS(1484), + [sym_false] = ACTIONS(1484), + [anon_sym_NULL] = ACTIONS(1484), + [anon_sym_nullptr] = ACTIONS(1484), [sym_comment] = ACTIONS(3), }, [371] = { - [sym_identifier] = ACTIONS(1503), - [aux_sym_preproc_include_token1] = ACTIONS(1503), - [aux_sym_preproc_def_token1] = ACTIONS(1503), - [aux_sym_preproc_if_token1] = ACTIONS(1503), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1503), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1503), - [sym_preproc_directive] = ACTIONS(1503), - [anon_sym_LPAREN2] = ACTIONS(1505), - [anon_sym_BANG] = ACTIONS(1505), - [anon_sym_TILDE] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1503), - [anon_sym_PLUS] = ACTIONS(1503), - [anon_sym_STAR] = ACTIONS(1505), - [anon_sym_AMP] = ACTIONS(1505), - [anon_sym_SEMI] = ACTIONS(1505), - [anon_sym___extension__] = ACTIONS(1503), - [anon_sym_typedef] = ACTIONS(1503), - [anon_sym_extern] = ACTIONS(1503), - [anon_sym___attribute__] = ACTIONS(1503), - [anon_sym___scanf] = ACTIONS(1503), - [anon_sym___printf] = ACTIONS(1503), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1505), - [anon_sym___declspec] = ACTIONS(1503), - [anon_sym___cdecl] = ACTIONS(1503), - [anon_sym___clrcall] = ACTIONS(1503), - [anon_sym___stdcall] = ACTIONS(1503), - [anon_sym___fastcall] = ACTIONS(1503), - [anon_sym___thiscall] = ACTIONS(1503), - [anon_sym___vectorcall] = ACTIONS(1503), - [anon_sym_LBRACE] = ACTIONS(1505), - [anon_sym_RBRACE] = ACTIONS(1505), - [anon_sym_signed] = ACTIONS(1503), - [anon_sym_unsigned] = ACTIONS(1503), - [anon_sym_long] = ACTIONS(1503), - [anon_sym_short] = ACTIONS(1503), - [anon_sym_static] = ACTIONS(1503), - [anon_sym_auto] = ACTIONS(1503), - [anon_sym_register] = ACTIONS(1503), - [anon_sym_inline] = ACTIONS(1503), - [anon_sym___inline] = ACTIONS(1503), - [anon_sym___inline__] = ACTIONS(1503), - [anon_sym___forceinline] = ACTIONS(1503), - [anon_sym_thread_local] = ACTIONS(1503), - [anon_sym___thread] = ACTIONS(1503), - [anon_sym_const] = ACTIONS(1503), - [anon_sym_constexpr] = ACTIONS(1503), - [anon_sym_volatile] = ACTIONS(1503), - [anon_sym_restrict] = ACTIONS(1503), - [anon_sym___restrict__] = ACTIONS(1503), - [anon_sym__Atomic] = ACTIONS(1503), - [anon_sym__Noreturn] = ACTIONS(1503), - [anon_sym_noreturn] = ACTIONS(1503), - [sym_primitive_type] = ACTIONS(1503), - [anon_sym_enum] = ACTIONS(1503), - [anon_sym_struct] = ACTIONS(1503), - [anon_sym_union] = ACTIONS(1503), - [anon_sym_if] = ACTIONS(1503), - [anon_sym_switch] = ACTIONS(1503), - [anon_sym_case] = ACTIONS(1503), - [anon_sym_default] = ACTIONS(1503), - [anon_sym_while] = ACTIONS(1503), - [anon_sym_do] = ACTIONS(1503), - [anon_sym_for] = ACTIONS(1503), - [anon_sym_return] = ACTIONS(1503), - [anon_sym_break] = ACTIONS(1503), - [anon_sym_continue] = ACTIONS(1503), - [anon_sym_goto] = ACTIONS(1503), - [anon_sym___try] = ACTIONS(1503), - [anon_sym___leave] = ACTIONS(1503), - [anon_sym_DASH_DASH] = ACTIONS(1505), - [anon_sym_PLUS_PLUS] = ACTIONS(1505), - [anon_sym_sizeof] = ACTIONS(1503), - [anon_sym___alignof__] = ACTIONS(1503), - [anon_sym___alignof] = ACTIONS(1503), - [anon_sym__alignof] = ACTIONS(1503), - [anon_sym_alignof] = ACTIONS(1503), - [anon_sym__Alignof] = ACTIONS(1503), - [anon_sym_offsetof] = ACTIONS(1503), - [anon_sym__Generic] = ACTIONS(1503), - [anon_sym_asm] = ACTIONS(1503), - [anon_sym___asm__] = ACTIONS(1503), - [sym_number_literal] = ACTIONS(1505), - [anon_sym_L_SQUOTE] = ACTIONS(1505), - [anon_sym_u_SQUOTE] = ACTIONS(1505), - [anon_sym_U_SQUOTE] = ACTIONS(1505), - [anon_sym_u8_SQUOTE] = ACTIONS(1505), - [anon_sym_SQUOTE] = ACTIONS(1505), - [anon_sym_L_DQUOTE] = ACTIONS(1505), - [anon_sym_u_DQUOTE] = ACTIONS(1505), - [anon_sym_U_DQUOTE] = ACTIONS(1505), - [anon_sym_u8_DQUOTE] = ACTIONS(1505), - [anon_sym_DQUOTE] = ACTIONS(1505), - [sym_true] = ACTIONS(1503), - [sym_false] = ACTIONS(1503), - [anon_sym_NULL] = ACTIONS(1503), - [anon_sym_nullptr] = ACTIONS(1503), + [sym_identifier] = ACTIONS(1512), + [aux_sym_preproc_include_token1] = ACTIONS(1512), + [aux_sym_preproc_def_token1] = ACTIONS(1512), + [aux_sym_preproc_if_token1] = ACTIONS(1512), + [aux_sym_preproc_if_token2] = ACTIONS(1512), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1512), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1512), + [sym_preproc_directive] = ACTIONS(1512), + [anon_sym_LPAREN2] = ACTIONS(1514), + [anon_sym_BANG] = ACTIONS(1514), + [anon_sym_TILDE] = ACTIONS(1514), + [anon_sym_DASH] = ACTIONS(1512), + [anon_sym_PLUS] = ACTIONS(1512), + [anon_sym_STAR] = ACTIONS(1514), + [anon_sym_AMP] = ACTIONS(1514), + [anon_sym_SEMI] = ACTIONS(1514), + [anon_sym___extension__] = ACTIONS(1512), + [anon_sym_typedef] = ACTIONS(1512), + [anon_sym_extern] = ACTIONS(1512), + [anon_sym___attribute__] = ACTIONS(1512), + [anon_sym___scanf] = ACTIONS(1512), + [anon_sym___printf] = ACTIONS(1512), + [anon_sym___read_mostly] = ACTIONS(1512), + [anon_sym___must_hold] = ACTIONS(1512), + [anon_sym___ro_after_init] = ACTIONS(1512), + [anon_sym___init] = ACTIONS(1512), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1514), + [anon_sym___declspec] = ACTIONS(1512), + [anon_sym___cdecl] = ACTIONS(1512), + [anon_sym___clrcall] = ACTIONS(1512), + [anon_sym___stdcall] = ACTIONS(1512), + [anon_sym___fastcall] = ACTIONS(1512), + [anon_sym___thiscall] = ACTIONS(1512), + [anon_sym___vectorcall] = ACTIONS(1512), + [anon_sym_LBRACE] = ACTIONS(1514), + [anon_sym_signed] = ACTIONS(1512), + [anon_sym_unsigned] = ACTIONS(1512), + [anon_sym_long] = ACTIONS(1512), + [anon_sym_short] = ACTIONS(1512), + [anon_sym_static] = ACTIONS(1512), + [anon_sym_auto] = ACTIONS(1512), + [anon_sym_register] = ACTIONS(1512), + [anon_sym_inline] = ACTIONS(1512), + [anon_sym___inline] = ACTIONS(1512), + [anon_sym___inline__] = ACTIONS(1512), + [anon_sym___forceinline] = ACTIONS(1512), + [anon_sym_thread_local] = ACTIONS(1512), + [anon_sym___thread] = ACTIONS(1512), + [anon_sym_const] = ACTIONS(1512), + [anon_sym_constexpr] = ACTIONS(1512), + [anon_sym_volatile] = ACTIONS(1512), + [anon_sym_restrict] = ACTIONS(1512), + [anon_sym___restrict__] = ACTIONS(1512), + [anon_sym__Atomic] = ACTIONS(1512), + [anon_sym__Noreturn] = ACTIONS(1512), + [anon_sym_noreturn] = ACTIONS(1512), + [sym_primitive_type] = ACTIONS(1512), + [anon_sym_enum] = ACTIONS(1512), + [anon_sym_struct] = ACTIONS(1512), + [anon_sym_union] = ACTIONS(1512), + [anon_sym_if] = ACTIONS(1512), + [anon_sym_switch] = ACTIONS(1512), + [anon_sym_case] = ACTIONS(1512), + [anon_sym_default] = ACTIONS(1512), + [anon_sym_while] = ACTIONS(1512), + [anon_sym_do] = ACTIONS(1512), + [anon_sym_for] = ACTIONS(1512), + [anon_sym_return] = ACTIONS(1512), + [anon_sym_break] = ACTIONS(1512), + [anon_sym_continue] = ACTIONS(1512), + [anon_sym_goto] = ACTIONS(1512), + [anon_sym___try] = ACTIONS(1512), + [anon_sym___leave] = ACTIONS(1512), + [anon_sym_DASH_DASH] = ACTIONS(1514), + [anon_sym_PLUS_PLUS] = ACTIONS(1514), + [anon_sym_sizeof] = ACTIONS(1512), + [anon_sym___alignof__] = ACTIONS(1512), + [anon_sym___alignof] = ACTIONS(1512), + [anon_sym__alignof] = ACTIONS(1512), + [anon_sym_alignof] = ACTIONS(1512), + [anon_sym__Alignof] = ACTIONS(1512), + [anon_sym_offsetof] = ACTIONS(1512), + [anon_sym__Generic] = ACTIONS(1512), + [anon_sym_asm] = ACTIONS(1512), + [anon_sym___asm__] = ACTIONS(1512), + [sym_number_literal] = ACTIONS(1514), + [anon_sym_L_SQUOTE] = ACTIONS(1514), + [anon_sym_u_SQUOTE] = ACTIONS(1514), + [anon_sym_U_SQUOTE] = ACTIONS(1514), + [anon_sym_u8_SQUOTE] = ACTIONS(1514), + [anon_sym_SQUOTE] = ACTIONS(1514), + [anon_sym_L_DQUOTE] = ACTIONS(1514), + [anon_sym_u_DQUOTE] = ACTIONS(1514), + [anon_sym_U_DQUOTE] = ACTIONS(1514), + [anon_sym_u8_DQUOTE] = ACTIONS(1514), + [anon_sym_DQUOTE] = ACTIONS(1514), + [sym_true] = ACTIONS(1512), + [sym_false] = ACTIONS(1512), + [anon_sym_NULL] = ACTIONS(1512), + [anon_sym_nullptr] = ACTIONS(1512), [sym_comment] = ACTIONS(3), }, [372] = { - [sym_identifier] = ACTIONS(1507), - [aux_sym_preproc_include_token1] = ACTIONS(1507), - [aux_sym_preproc_def_token1] = ACTIONS(1507), - [aux_sym_preproc_if_token1] = ACTIONS(1507), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1507), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1507), - [sym_preproc_directive] = ACTIONS(1507), - [anon_sym_LPAREN2] = ACTIONS(1509), - [anon_sym_BANG] = ACTIONS(1509), - [anon_sym_TILDE] = ACTIONS(1509), - [anon_sym_DASH] = ACTIONS(1507), - [anon_sym_PLUS] = ACTIONS(1507), - [anon_sym_STAR] = ACTIONS(1509), - [anon_sym_AMP] = ACTIONS(1509), - [anon_sym_SEMI] = ACTIONS(1509), - [anon_sym___extension__] = ACTIONS(1507), - [anon_sym_typedef] = ACTIONS(1507), - [anon_sym_extern] = ACTIONS(1507), - [anon_sym___attribute__] = ACTIONS(1507), - [anon_sym___scanf] = ACTIONS(1507), - [anon_sym___printf] = ACTIONS(1507), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1509), - [anon_sym___declspec] = ACTIONS(1507), - [anon_sym___cdecl] = ACTIONS(1507), - [anon_sym___clrcall] = ACTIONS(1507), - [anon_sym___stdcall] = ACTIONS(1507), - [anon_sym___fastcall] = ACTIONS(1507), - [anon_sym___thiscall] = ACTIONS(1507), - [anon_sym___vectorcall] = ACTIONS(1507), - [anon_sym_LBRACE] = ACTIONS(1509), - [anon_sym_RBRACE] = ACTIONS(1509), - [anon_sym_signed] = ACTIONS(1507), - [anon_sym_unsigned] = ACTIONS(1507), - [anon_sym_long] = ACTIONS(1507), - [anon_sym_short] = ACTIONS(1507), - [anon_sym_static] = ACTIONS(1507), - [anon_sym_auto] = ACTIONS(1507), - [anon_sym_register] = ACTIONS(1507), - [anon_sym_inline] = ACTIONS(1507), - [anon_sym___inline] = ACTIONS(1507), - [anon_sym___inline__] = ACTIONS(1507), - [anon_sym___forceinline] = ACTIONS(1507), - [anon_sym_thread_local] = ACTIONS(1507), - [anon_sym___thread] = ACTIONS(1507), - [anon_sym_const] = ACTIONS(1507), - [anon_sym_constexpr] = ACTIONS(1507), - [anon_sym_volatile] = ACTIONS(1507), - [anon_sym_restrict] = ACTIONS(1507), - [anon_sym___restrict__] = ACTIONS(1507), - [anon_sym__Atomic] = ACTIONS(1507), - [anon_sym__Noreturn] = ACTIONS(1507), - [anon_sym_noreturn] = ACTIONS(1507), - [sym_primitive_type] = ACTIONS(1507), - [anon_sym_enum] = ACTIONS(1507), - [anon_sym_struct] = ACTIONS(1507), - [anon_sym_union] = ACTIONS(1507), - [anon_sym_if] = ACTIONS(1507), - [anon_sym_switch] = ACTIONS(1507), - [anon_sym_case] = ACTIONS(1507), - [anon_sym_default] = ACTIONS(1507), - [anon_sym_while] = ACTIONS(1507), - [anon_sym_do] = ACTIONS(1507), - [anon_sym_for] = ACTIONS(1507), - [anon_sym_return] = ACTIONS(1507), - [anon_sym_break] = ACTIONS(1507), - [anon_sym_continue] = ACTIONS(1507), - [anon_sym_goto] = ACTIONS(1507), - [anon_sym___try] = ACTIONS(1507), - [anon_sym___leave] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1509), - [anon_sym_PLUS_PLUS] = ACTIONS(1509), - [anon_sym_sizeof] = ACTIONS(1507), - [anon_sym___alignof__] = ACTIONS(1507), - [anon_sym___alignof] = ACTIONS(1507), - [anon_sym__alignof] = ACTIONS(1507), - [anon_sym_alignof] = ACTIONS(1507), - [anon_sym__Alignof] = ACTIONS(1507), - [anon_sym_offsetof] = ACTIONS(1507), - [anon_sym__Generic] = ACTIONS(1507), - [anon_sym_asm] = ACTIONS(1507), - [anon_sym___asm__] = ACTIONS(1507), - [sym_number_literal] = ACTIONS(1509), - [anon_sym_L_SQUOTE] = ACTIONS(1509), - [anon_sym_u_SQUOTE] = ACTIONS(1509), - [anon_sym_U_SQUOTE] = ACTIONS(1509), - [anon_sym_u8_SQUOTE] = ACTIONS(1509), - [anon_sym_SQUOTE] = ACTIONS(1509), - [anon_sym_L_DQUOTE] = ACTIONS(1509), - [anon_sym_u_DQUOTE] = ACTIONS(1509), - [anon_sym_U_DQUOTE] = ACTIONS(1509), - [anon_sym_u8_DQUOTE] = ACTIONS(1509), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_true] = ACTIONS(1507), - [sym_false] = ACTIONS(1507), - [anon_sym_NULL] = ACTIONS(1507), - [anon_sym_nullptr] = ACTIONS(1507), + [sym_identifier] = ACTIONS(1464), + [aux_sym_preproc_include_token1] = ACTIONS(1464), + [aux_sym_preproc_def_token1] = ACTIONS(1464), + [aux_sym_preproc_if_token1] = ACTIONS(1464), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1464), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1464), + [sym_preproc_directive] = ACTIONS(1464), + [anon_sym_LPAREN2] = ACTIONS(1466), + [anon_sym_BANG] = ACTIONS(1466), + [anon_sym_TILDE] = ACTIONS(1466), + [anon_sym_DASH] = ACTIONS(1464), + [anon_sym_PLUS] = ACTIONS(1464), + [anon_sym_STAR] = ACTIONS(1466), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_SEMI] = ACTIONS(1466), + [anon_sym___extension__] = ACTIONS(1464), + [anon_sym_typedef] = ACTIONS(1464), + [anon_sym_extern] = ACTIONS(1464), + [anon_sym___attribute__] = ACTIONS(1464), + [anon_sym___scanf] = ACTIONS(1464), + [anon_sym___printf] = ACTIONS(1464), + [anon_sym___read_mostly] = ACTIONS(1464), + [anon_sym___must_hold] = ACTIONS(1464), + [anon_sym___ro_after_init] = ACTIONS(1464), + [anon_sym___init] = ACTIONS(1464), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1466), + [anon_sym___declspec] = ACTIONS(1464), + [anon_sym___cdecl] = ACTIONS(1464), + [anon_sym___clrcall] = ACTIONS(1464), + [anon_sym___stdcall] = ACTIONS(1464), + [anon_sym___fastcall] = ACTIONS(1464), + [anon_sym___thiscall] = ACTIONS(1464), + [anon_sym___vectorcall] = ACTIONS(1464), + [anon_sym_LBRACE] = ACTIONS(1466), + [anon_sym_RBRACE] = ACTIONS(1466), + [anon_sym_signed] = ACTIONS(1464), + [anon_sym_unsigned] = ACTIONS(1464), + [anon_sym_long] = ACTIONS(1464), + [anon_sym_short] = ACTIONS(1464), + [anon_sym_static] = ACTIONS(1464), + [anon_sym_auto] = ACTIONS(1464), + [anon_sym_register] = ACTIONS(1464), + [anon_sym_inline] = ACTIONS(1464), + [anon_sym___inline] = ACTIONS(1464), + [anon_sym___inline__] = ACTIONS(1464), + [anon_sym___forceinline] = ACTIONS(1464), + [anon_sym_thread_local] = ACTIONS(1464), + [anon_sym___thread] = ACTIONS(1464), + [anon_sym_const] = ACTIONS(1464), + [anon_sym_constexpr] = ACTIONS(1464), + [anon_sym_volatile] = ACTIONS(1464), + [anon_sym_restrict] = ACTIONS(1464), + [anon_sym___restrict__] = ACTIONS(1464), + [anon_sym__Atomic] = ACTIONS(1464), + [anon_sym__Noreturn] = ACTIONS(1464), + [anon_sym_noreturn] = ACTIONS(1464), + [sym_primitive_type] = ACTIONS(1464), + [anon_sym_enum] = ACTIONS(1464), + [anon_sym_struct] = ACTIONS(1464), + [anon_sym_union] = ACTIONS(1464), + [anon_sym_if] = ACTIONS(1464), + [anon_sym_switch] = ACTIONS(1464), + [anon_sym_case] = ACTIONS(1464), + [anon_sym_default] = ACTIONS(1464), + [anon_sym_while] = ACTIONS(1464), + [anon_sym_do] = ACTIONS(1464), + [anon_sym_for] = ACTIONS(1464), + [anon_sym_return] = ACTIONS(1464), + [anon_sym_break] = ACTIONS(1464), + [anon_sym_continue] = ACTIONS(1464), + [anon_sym_goto] = ACTIONS(1464), + [anon_sym___try] = ACTIONS(1464), + [anon_sym___leave] = ACTIONS(1464), + [anon_sym_DASH_DASH] = ACTIONS(1466), + [anon_sym_PLUS_PLUS] = ACTIONS(1466), + [anon_sym_sizeof] = ACTIONS(1464), + [anon_sym___alignof__] = ACTIONS(1464), + [anon_sym___alignof] = ACTIONS(1464), + [anon_sym__alignof] = ACTIONS(1464), + [anon_sym_alignof] = ACTIONS(1464), + [anon_sym__Alignof] = ACTIONS(1464), + [anon_sym_offsetof] = ACTIONS(1464), + [anon_sym__Generic] = ACTIONS(1464), + [anon_sym_asm] = ACTIONS(1464), + [anon_sym___asm__] = ACTIONS(1464), + [sym_number_literal] = ACTIONS(1466), + [anon_sym_L_SQUOTE] = ACTIONS(1466), + [anon_sym_u_SQUOTE] = ACTIONS(1466), + [anon_sym_U_SQUOTE] = ACTIONS(1466), + [anon_sym_u8_SQUOTE] = ACTIONS(1466), + [anon_sym_SQUOTE] = ACTIONS(1466), + [anon_sym_L_DQUOTE] = ACTIONS(1466), + [anon_sym_u_DQUOTE] = ACTIONS(1466), + [anon_sym_U_DQUOTE] = ACTIONS(1466), + [anon_sym_u8_DQUOTE] = ACTIONS(1466), + [anon_sym_DQUOTE] = ACTIONS(1466), + [sym_true] = ACTIONS(1464), + [sym_false] = ACTIONS(1464), + [anon_sym_NULL] = ACTIONS(1464), + [anon_sym_nullptr] = ACTIONS(1464), [sym_comment] = ACTIONS(3), }, [373] = { - [sym_identifier] = ACTIONS(1515), - [aux_sym_preproc_include_token1] = ACTIONS(1515), - [aux_sym_preproc_def_token1] = ACTIONS(1515), - [aux_sym_preproc_if_token1] = ACTIONS(1515), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1515), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1515), - [sym_preproc_directive] = ACTIONS(1515), - [anon_sym_LPAREN2] = ACTIONS(1517), - [anon_sym_BANG] = ACTIONS(1517), - [anon_sym_TILDE] = ACTIONS(1517), - [anon_sym_DASH] = ACTIONS(1515), - [anon_sym_PLUS] = ACTIONS(1515), - [anon_sym_STAR] = ACTIONS(1517), - [anon_sym_AMP] = ACTIONS(1517), - [anon_sym_SEMI] = ACTIONS(1517), - [anon_sym___extension__] = ACTIONS(1515), - [anon_sym_typedef] = ACTIONS(1515), - [anon_sym_extern] = ACTIONS(1515), - [anon_sym___attribute__] = ACTIONS(1515), - [anon_sym___scanf] = ACTIONS(1515), - [anon_sym___printf] = ACTIONS(1515), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1517), - [anon_sym___declspec] = ACTIONS(1515), - [anon_sym___cdecl] = ACTIONS(1515), - [anon_sym___clrcall] = ACTIONS(1515), - [anon_sym___stdcall] = ACTIONS(1515), - [anon_sym___fastcall] = ACTIONS(1515), - [anon_sym___thiscall] = ACTIONS(1515), - [anon_sym___vectorcall] = ACTIONS(1515), - [anon_sym_LBRACE] = ACTIONS(1517), - [anon_sym_RBRACE] = ACTIONS(1517), - [anon_sym_signed] = ACTIONS(1515), - [anon_sym_unsigned] = ACTIONS(1515), - [anon_sym_long] = ACTIONS(1515), - [anon_sym_short] = ACTIONS(1515), - [anon_sym_static] = ACTIONS(1515), - [anon_sym_auto] = ACTIONS(1515), - [anon_sym_register] = ACTIONS(1515), - [anon_sym_inline] = ACTIONS(1515), - [anon_sym___inline] = ACTIONS(1515), - [anon_sym___inline__] = ACTIONS(1515), - [anon_sym___forceinline] = ACTIONS(1515), - [anon_sym_thread_local] = ACTIONS(1515), - [anon_sym___thread] = ACTIONS(1515), - [anon_sym_const] = ACTIONS(1515), - [anon_sym_constexpr] = ACTIONS(1515), - [anon_sym_volatile] = ACTIONS(1515), - [anon_sym_restrict] = ACTIONS(1515), - [anon_sym___restrict__] = ACTIONS(1515), - [anon_sym__Atomic] = ACTIONS(1515), - [anon_sym__Noreturn] = ACTIONS(1515), - [anon_sym_noreturn] = ACTIONS(1515), - [sym_primitive_type] = ACTIONS(1515), - [anon_sym_enum] = ACTIONS(1515), - [anon_sym_struct] = ACTIONS(1515), - [anon_sym_union] = ACTIONS(1515), - [anon_sym_if] = ACTIONS(1515), - [anon_sym_switch] = ACTIONS(1515), - [anon_sym_case] = ACTIONS(1515), - [anon_sym_default] = ACTIONS(1515), - [anon_sym_while] = ACTIONS(1515), - [anon_sym_do] = ACTIONS(1515), - [anon_sym_for] = ACTIONS(1515), - [anon_sym_return] = ACTIONS(1515), - [anon_sym_break] = ACTIONS(1515), - [anon_sym_continue] = ACTIONS(1515), - [anon_sym_goto] = ACTIONS(1515), - [anon_sym___try] = ACTIONS(1515), - [anon_sym___leave] = ACTIONS(1515), - [anon_sym_DASH_DASH] = ACTIONS(1517), - [anon_sym_PLUS_PLUS] = ACTIONS(1517), - [anon_sym_sizeof] = ACTIONS(1515), - [anon_sym___alignof__] = ACTIONS(1515), - [anon_sym___alignof] = ACTIONS(1515), - [anon_sym__alignof] = ACTIONS(1515), - [anon_sym_alignof] = ACTIONS(1515), - [anon_sym__Alignof] = ACTIONS(1515), - [anon_sym_offsetof] = ACTIONS(1515), - [anon_sym__Generic] = ACTIONS(1515), - [anon_sym_asm] = ACTIONS(1515), - [anon_sym___asm__] = ACTIONS(1515), - [sym_number_literal] = ACTIONS(1517), - [anon_sym_L_SQUOTE] = ACTIONS(1517), - [anon_sym_u_SQUOTE] = ACTIONS(1517), - [anon_sym_U_SQUOTE] = ACTIONS(1517), - [anon_sym_u8_SQUOTE] = ACTIONS(1517), - [anon_sym_SQUOTE] = ACTIONS(1517), - [anon_sym_L_DQUOTE] = ACTIONS(1517), - [anon_sym_u_DQUOTE] = ACTIONS(1517), - [anon_sym_U_DQUOTE] = ACTIONS(1517), - [anon_sym_u8_DQUOTE] = ACTIONS(1517), - [anon_sym_DQUOTE] = ACTIONS(1517), - [sym_true] = ACTIONS(1515), - [sym_false] = ACTIONS(1515), - [anon_sym_NULL] = ACTIONS(1515), - [anon_sym_nullptr] = ACTIONS(1515), + [sym_identifier] = ACTIONS(1488), + [aux_sym_preproc_include_token1] = ACTIONS(1488), + [aux_sym_preproc_def_token1] = ACTIONS(1488), + [aux_sym_preproc_if_token1] = ACTIONS(1488), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1488), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1488), + [sym_preproc_directive] = ACTIONS(1488), + [anon_sym_LPAREN2] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(1490), + [anon_sym_TILDE] = ACTIONS(1490), + [anon_sym_DASH] = ACTIONS(1488), + [anon_sym_PLUS] = ACTIONS(1488), + [anon_sym_STAR] = ACTIONS(1490), + [anon_sym_AMP] = ACTIONS(1490), + [anon_sym_SEMI] = ACTIONS(1490), + [anon_sym___extension__] = ACTIONS(1488), + [anon_sym_typedef] = ACTIONS(1488), + [anon_sym_extern] = ACTIONS(1488), + [anon_sym___attribute__] = ACTIONS(1488), + [anon_sym___scanf] = ACTIONS(1488), + [anon_sym___printf] = ACTIONS(1488), + [anon_sym___read_mostly] = ACTIONS(1488), + [anon_sym___must_hold] = ACTIONS(1488), + [anon_sym___ro_after_init] = ACTIONS(1488), + [anon_sym___init] = ACTIONS(1488), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1490), + [anon_sym___declspec] = ACTIONS(1488), + [anon_sym___cdecl] = ACTIONS(1488), + [anon_sym___clrcall] = ACTIONS(1488), + [anon_sym___stdcall] = ACTIONS(1488), + [anon_sym___fastcall] = ACTIONS(1488), + [anon_sym___thiscall] = ACTIONS(1488), + [anon_sym___vectorcall] = ACTIONS(1488), + [anon_sym_LBRACE] = ACTIONS(1490), + [anon_sym_RBRACE] = ACTIONS(1490), + [anon_sym_signed] = ACTIONS(1488), + [anon_sym_unsigned] = ACTIONS(1488), + [anon_sym_long] = ACTIONS(1488), + [anon_sym_short] = ACTIONS(1488), + [anon_sym_static] = ACTIONS(1488), + [anon_sym_auto] = ACTIONS(1488), + [anon_sym_register] = ACTIONS(1488), + [anon_sym_inline] = ACTIONS(1488), + [anon_sym___inline] = ACTIONS(1488), + [anon_sym___inline__] = ACTIONS(1488), + [anon_sym___forceinline] = ACTIONS(1488), + [anon_sym_thread_local] = ACTIONS(1488), + [anon_sym___thread] = ACTIONS(1488), + [anon_sym_const] = ACTIONS(1488), + [anon_sym_constexpr] = ACTIONS(1488), + [anon_sym_volatile] = ACTIONS(1488), + [anon_sym_restrict] = ACTIONS(1488), + [anon_sym___restrict__] = ACTIONS(1488), + [anon_sym__Atomic] = ACTIONS(1488), + [anon_sym__Noreturn] = ACTIONS(1488), + [anon_sym_noreturn] = ACTIONS(1488), + [sym_primitive_type] = ACTIONS(1488), + [anon_sym_enum] = ACTIONS(1488), + [anon_sym_struct] = ACTIONS(1488), + [anon_sym_union] = ACTIONS(1488), + [anon_sym_if] = ACTIONS(1488), + [anon_sym_switch] = ACTIONS(1488), + [anon_sym_case] = ACTIONS(1488), + [anon_sym_default] = ACTIONS(1488), + [anon_sym_while] = ACTIONS(1488), + [anon_sym_do] = ACTIONS(1488), + [anon_sym_for] = ACTIONS(1488), + [anon_sym_return] = ACTIONS(1488), + [anon_sym_break] = ACTIONS(1488), + [anon_sym_continue] = ACTIONS(1488), + [anon_sym_goto] = ACTIONS(1488), + [anon_sym___try] = ACTIONS(1488), + [anon_sym___leave] = ACTIONS(1488), + [anon_sym_DASH_DASH] = ACTIONS(1490), + [anon_sym_PLUS_PLUS] = ACTIONS(1490), + [anon_sym_sizeof] = ACTIONS(1488), + [anon_sym___alignof__] = ACTIONS(1488), + [anon_sym___alignof] = ACTIONS(1488), + [anon_sym__alignof] = ACTIONS(1488), + [anon_sym_alignof] = ACTIONS(1488), + [anon_sym__Alignof] = ACTIONS(1488), + [anon_sym_offsetof] = ACTIONS(1488), + [anon_sym__Generic] = ACTIONS(1488), + [anon_sym_asm] = ACTIONS(1488), + [anon_sym___asm__] = ACTIONS(1488), + [sym_number_literal] = ACTIONS(1490), + [anon_sym_L_SQUOTE] = ACTIONS(1490), + [anon_sym_u_SQUOTE] = ACTIONS(1490), + [anon_sym_U_SQUOTE] = ACTIONS(1490), + [anon_sym_u8_SQUOTE] = ACTIONS(1490), + [anon_sym_SQUOTE] = ACTIONS(1490), + [anon_sym_L_DQUOTE] = ACTIONS(1490), + [anon_sym_u_DQUOTE] = ACTIONS(1490), + [anon_sym_U_DQUOTE] = ACTIONS(1490), + [anon_sym_u8_DQUOTE] = ACTIONS(1490), + [anon_sym_DQUOTE] = ACTIONS(1490), + [sym_true] = ACTIONS(1488), + [sym_false] = ACTIONS(1488), + [anon_sym_NULL] = ACTIONS(1488), + [anon_sym_nullptr] = ACTIONS(1488), [sym_comment] = ACTIONS(3), }, [374] = { - [sym_identifier] = ACTIONS(1429), - [aux_sym_preproc_include_token1] = ACTIONS(1429), - [aux_sym_preproc_def_token1] = ACTIONS(1429), - [aux_sym_preproc_if_token1] = ACTIONS(1429), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1429), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1429), - [sym_preproc_directive] = ACTIONS(1429), - [anon_sym_LPAREN2] = ACTIONS(1431), - [anon_sym_BANG] = ACTIONS(1431), - [anon_sym_TILDE] = ACTIONS(1431), - [anon_sym_DASH] = ACTIONS(1429), - [anon_sym_PLUS] = ACTIONS(1429), - [anon_sym_STAR] = ACTIONS(1431), - [anon_sym_AMP] = ACTIONS(1431), - [anon_sym_SEMI] = ACTIONS(1431), - [anon_sym___extension__] = ACTIONS(1429), - [anon_sym_typedef] = ACTIONS(1429), - [anon_sym_extern] = ACTIONS(1429), - [anon_sym___attribute__] = ACTIONS(1429), - [anon_sym___scanf] = ACTIONS(1429), - [anon_sym___printf] = ACTIONS(1429), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1431), - [anon_sym___declspec] = ACTIONS(1429), - [anon_sym___cdecl] = ACTIONS(1429), - [anon_sym___clrcall] = ACTIONS(1429), - [anon_sym___stdcall] = ACTIONS(1429), - [anon_sym___fastcall] = ACTIONS(1429), - [anon_sym___thiscall] = ACTIONS(1429), - [anon_sym___vectorcall] = ACTIONS(1429), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_RBRACE] = ACTIONS(1431), - [anon_sym_signed] = ACTIONS(1429), - [anon_sym_unsigned] = ACTIONS(1429), - [anon_sym_long] = ACTIONS(1429), - [anon_sym_short] = ACTIONS(1429), - [anon_sym_static] = ACTIONS(1429), - [anon_sym_auto] = ACTIONS(1429), - [anon_sym_register] = ACTIONS(1429), - [anon_sym_inline] = ACTIONS(1429), - [anon_sym___inline] = ACTIONS(1429), - [anon_sym___inline__] = ACTIONS(1429), - [anon_sym___forceinline] = ACTIONS(1429), - [anon_sym_thread_local] = ACTIONS(1429), - [anon_sym___thread] = ACTIONS(1429), - [anon_sym_const] = ACTIONS(1429), - [anon_sym_constexpr] = ACTIONS(1429), - [anon_sym_volatile] = ACTIONS(1429), - [anon_sym_restrict] = ACTIONS(1429), - [anon_sym___restrict__] = ACTIONS(1429), - [anon_sym__Atomic] = ACTIONS(1429), - [anon_sym__Noreturn] = ACTIONS(1429), - [anon_sym_noreturn] = ACTIONS(1429), - [sym_primitive_type] = ACTIONS(1429), - [anon_sym_enum] = ACTIONS(1429), - [anon_sym_struct] = ACTIONS(1429), - [anon_sym_union] = ACTIONS(1429), - [anon_sym_if] = ACTIONS(1429), - [anon_sym_switch] = ACTIONS(1429), - [anon_sym_case] = ACTIONS(1429), - [anon_sym_default] = ACTIONS(1429), - [anon_sym_while] = ACTIONS(1429), - [anon_sym_do] = ACTIONS(1429), - [anon_sym_for] = ACTIONS(1429), - [anon_sym_return] = ACTIONS(1429), - [anon_sym_break] = ACTIONS(1429), - [anon_sym_continue] = ACTIONS(1429), - [anon_sym_goto] = ACTIONS(1429), - [anon_sym___try] = ACTIONS(1429), - [anon_sym___leave] = ACTIONS(1429), - [anon_sym_DASH_DASH] = ACTIONS(1431), - [anon_sym_PLUS_PLUS] = ACTIONS(1431), - [anon_sym_sizeof] = ACTIONS(1429), - [anon_sym___alignof__] = ACTIONS(1429), - [anon_sym___alignof] = ACTIONS(1429), - [anon_sym__alignof] = ACTIONS(1429), - [anon_sym_alignof] = ACTIONS(1429), - [anon_sym__Alignof] = ACTIONS(1429), - [anon_sym_offsetof] = ACTIONS(1429), - [anon_sym__Generic] = ACTIONS(1429), - [anon_sym_asm] = ACTIONS(1429), - [anon_sym___asm__] = ACTIONS(1429), - [sym_number_literal] = ACTIONS(1431), - [anon_sym_L_SQUOTE] = ACTIONS(1431), - [anon_sym_u_SQUOTE] = ACTIONS(1431), - [anon_sym_U_SQUOTE] = ACTIONS(1431), - [anon_sym_u8_SQUOTE] = ACTIONS(1431), - [anon_sym_SQUOTE] = ACTIONS(1431), - [anon_sym_L_DQUOTE] = ACTIONS(1431), - [anon_sym_u_DQUOTE] = ACTIONS(1431), - [anon_sym_U_DQUOTE] = ACTIONS(1431), - [anon_sym_u8_DQUOTE] = ACTIONS(1431), - [anon_sym_DQUOTE] = ACTIONS(1431), - [sym_true] = ACTIONS(1429), - [sym_false] = ACTIONS(1429), - [anon_sym_NULL] = ACTIONS(1429), - [anon_sym_nullptr] = ACTIONS(1429), + [sym_identifier] = ACTIONS(1516), + [aux_sym_preproc_include_token1] = ACTIONS(1516), + [aux_sym_preproc_def_token1] = ACTIONS(1516), + [aux_sym_preproc_if_token1] = ACTIONS(1516), + [aux_sym_preproc_if_token2] = ACTIONS(1516), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1516), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1516), + [sym_preproc_directive] = ACTIONS(1516), + [anon_sym_LPAREN2] = ACTIONS(1518), + [anon_sym_BANG] = ACTIONS(1518), + [anon_sym_TILDE] = ACTIONS(1518), + [anon_sym_DASH] = ACTIONS(1516), + [anon_sym_PLUS] = ACTIONS(1516), + [anon_sym_STAR] = ACTIONS(1518), + [anon_sym_AMP] = ACTIONS(1518), + [anon_sym_SEMI] = ACTIONS(1518), + [anon_sym___extension__] = ACTIONS(1516), + [anon_sym_typedef] = ACTIONS(1516), + [anon_sym_extern] = ACTIONS(1516), + [anon_sym___attribute__] = ACTIONS(1516), + [anon_sym___scanf] = ACTIONS(1516), + [anon_sym___printf] = ACTIONS(1516), + [anon_sym___read_mostly] = ACTIONS(1516), + [anon_sym___must_hold] = ACTIONS(1516), + [anon_sym___ro_after_init] = ACTIONS(1516), + [anon_sym___init] = ACTIONS(1516), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1518), + [anon_sym___declspec] = ACTIONS(1516), + [anon_sym___cdecl] = ACTIONS(1516), + [anon_sym___clrcall] = ACTIONS(1516), + [anon_sym___stdcall] = ACTIONS(1516), + [anon_sym___fastcall] = ACTIONS(1516), + [anon_sym___thiscall] = ACTIONS(1516), + [anon_sym___vectorcall] = ACTIONS(1516), + [anon_sym_LBRACE] = ACTIONS(1518), + [anon_sym_signed] = ACTIONS(1516), + [anon_sym_unsigned] = ACTIONS(1516), + [anon_sym_long] = ACTIONS(1516), + [anon_sym_short] = ACTIONS(1516), + [anon_sym_static] = ACTIONS(1516), + [anon_sym_auto] = ACTIONS(1516), + [anon_sym_register] = ACTIONS(1516), + [anon_sym_inline] = ACTIONS(1516), + [anon_sym___inline] = ACTIONS(1516), + [anon_sym___inline__] = ACTIONS(1516), + [anon_sym___forceinline] = ACTIONS(1516), + [anon_sym_thread_local] = ACTIONS(1516), + [anon_sym___thread] = ACTIONS(1516), + [anon_sym_const] = ACTIONS(1516), + [anon_sym_constexpr] = ACTIONS(1516), + [anon_sym_volatile] = ACTIONS(1516), + [anon_sym_restrict] = ACTIONS(1516), + [anon_sym___restrict__] = ACTIONS(1516), + [anon_sym__Atomic] = ACTIONS(1516), + [anon_sym__Noreturn] = ACTIONS(1516), + [anon_sym_noreturn] = ACTIONS(1516), + [sym_primitive_type] = ACTIONS(1516), + [anon_sym_enum] = ACTIONS(1516), + [anon_sym_struct] = ACTIONS(1516), + [anon_sym_union] = ACTIONS(1516), + [anon_sym_if] = ACTIONS(1516), + [anon_sym_switch] = ACTIONS(1516), + [anon_sym_case] = ACTIONS(1516), + [anon_sym_default] = ACTIONS(1516), + [anon_sym_while] = ACTIONS(1516), + [anon_sym_do] = ACTIONS(1516), + [anon_sym_for] = ACTIONS(1516), + [anon_sym_return] = ACTIONS(1516), + [anon_sym_break] = ACTIONS(1516), + [anon_sym_continue] = ACTIONS(1516), + [anon_sym_goto] = ACTIONS(1516), + [anon_sym___try] = ACTIONS(1516), + [anon_sym___leave] = ACTIONS(1516), + [anon_sym_DASH_DASH] = ACTIONS(1518), + [anon_sym_PLUS_PLUS] = ACTIONS(1518), + [anon_sym_sizeof] = ACTIONS(1516), + [anon_sym___alignof__] = ACTIONS(1516), + [anon_sym___alignof] = ACTIONS(1516), + [anon_sym__alignof] = ACTIONS(1516), + [anon_sym_alignof] = ACTIONS(1516), + [anon_sym__Alignof] = ACTIONS(1516), + [anon_sym_offsetof] = ACTIONS(1516), + [anon_sym__Generic] = ACTIONS(1516), + [anon_sym_asm] = ACTIONS(1516), + [anon_sym___asm__] = ACTIONS(1516), + [sym_number_literal] = ACTIONS(1518), + [anon_sym_L_SQUOTE] = ACTIONS(1518), + [anon_sym_u_SQUOTE] = ACTIONS(1518), + [anon_sym_U_SQUOTE] = ACTIONS(1518), + [anon_sym_u8_SQUOTE] = ACTIONS(1518), + [anon_sym_SQUOTE] = ACTIONS(1518), + [anon_sym_L_DQUOTE] = ACTIONS(1518), + [anon_sym_u_DQUOTE] = ACTIONS(1518), + [anon_sym_U_DQUOTE] = ACTIONS(1518), + [anon_sym_u8_DQUOTE] = ACTIONS(1518), + [anon_sym_DQUOTE] = ACTIONS(1518), + [sym_true] = ACTIONS(1516), + [sym_false] = ACTIONS(1516), + [anon_sym_NULL] = ACTIONS(1516), + [anon_sym_nullptr] = ACTIONS(1516), [sym_comment] = ACTIONS(3), }, [375] = { - [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(1419), - [anon_sym_BANG] = ACTIONS(1419), - [anon_sym_TILDE] = ACTIONS(1419), - [anon_sym_DASH] = ACTIONS(1417), - [anon_sym_PLUS] = ACTIONS(1417), - [anon_sym_STAR] = ACTIONS(1419), - [anon_sym_AMP] = ACTIONS(1419), - [anon_sym_SEMI] = ACTIONS(1419), - [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_LBRACK_LBRACK] = ACTIONS(1419), - [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(1419), - [anon_sym_RBRACE] = ACTIONS(1419), - [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), - [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___try] = ACTIONS(1417), - [anon_sym___leave] = ACTIONS(1417), - [anon_sym_DASH_DASH] = ACTIONS(1419), - [anon_sym_PLUS_PLUS] = ACTIONS(1419), - [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(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(1417), - [sym_false] = ACTIONS(1417), - [anon_sym_NULL] = ACTIONS(1417), - [anon_sym_nullptr] = ACTIONS(1417), + [sym_identifier] = ACTIONS(1460), + [aux_sym_preproc_include_token1] = ACTIONS(1460), + [aux_sym_preproc_def_token1] = ACTIONS(1460), + [aux_sym_preproc_if_token1] = ACTIONS(1460), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1460), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1460), + [sym_preproc_directive] = ACTIONS(1460), + [anon_sym_LPAREN2] = ACTIONS(1462), + [anon_sym_BANG] = ACTIONS(1462), + [anon_sym_TILDE] = ACTIONS(1462), + [anon_sym_DASH] = ACTIONS(1460), + [anon_sym_PLUS] = ACTIONS(1460), + [anon_sym_STAR] = ACTIONS(1462), + [anon_sym_AMP] = ACTIONS(1462), + [anon_sym_SEMI] = ACTIONS(1462), + [anon_sym___extension__] = ACTIONS(1460), + [anon_sym_typedef] = ACTIONS(1460), + [anon_sym_extern] = ACTIONS(1460), + [anon_sym___attribute__] = ACTIONS(1460), + [anon_sym___scanf] = ACTIONS(1460), + [anon_sym___printf] = ACTIONS(1460), + [anon_sym___read_mostly] = ACTIONS(1460), + [anon_sym___must_hold] = ACTIONS(1460), + [anon_sym___ro_after_init] = ACTIONS(1460), + [anon_sym___init] = ACTIONS(1460), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1462), + [anon_sym___declspec] = ACTIONS(1460), + [anon_sym___cdecl] = ACTIONS(1460), + [anon_sym___clrcall] = ACTIONS(1460), + [anon_sym___stdcall] = ACTIONS(1460), + [anon_sym___fastcall] = ACTIONS(1460), + [anon_sym___thiscall] = ACTIONS(1460), + [anon_sym___vectorcall] = ACTIONS(1460), + [anon_sym_LBRACE] = ACTIONS(1462), + [anon_sym_RBRACE] = ACTIONS(1462), + [anon_sym_signed] = ACTIONS(1460), + [anon_sym_unsigned] = ACTIONS(1460), + [anon_sym_long] = ACTIONS(1460), + [anon_sym_short] = ACTIONS(1460), + [anon_sym_static] = ACTIONS(1460), + [anon_sym_auto] = ACTIONS(1460), + [anon_sym_register] = ACTIONS(1460), + [anon_sym_inline] = ACTIONS(1460), + [anon_sym___inline] = ACTIONS(1460), + [anon_sym___inline__] = ACTIONS(1460), + [anon_sym___forceinline] = ACTIONS(1460), + [anon_sym_thread_local] = ACTIONS(1460), + [anon_sym___thread] = ACTIONS(1460), + [anon_sym_const] = ACTIONS(1460), + [anon_sym_constexpr] = ACTIONS(1460), + [anon_sym_volatile] = ACTIONS(1460), + [anon_sym_restrict] = ACTIONS(1460), + [anon_sym___restrict__] = ACTIONS(1460), + [anon_sym__Atomic] = ACTIONS(1460), + [anon_sym__Noreturn] = ACTIONS(1460), + [anon_sym_noreturn] = ACTIONS(1460), + [sym_primitive_type] = ACTIONS(1460), + [anon_sym_enum] = ACTIONS(1460), + [anon_sym_struct] = ACTIONS(1460), + [anon_sym_union] = ACTIONS(1460), + [anon_sym_if] = ACTIONS(1460), + [anon_sym_switch] = ACTIONS(1460), + [anon_sym_case] = ACTIONS(1460), + [anon_sym_default] = ACTIONS(1460), + [anon_sym_while] = ACTIONS(1460), + [anon_sym_do] = ACTIONS(1460), + [anon_sym_for] = ACTIONS(1460), + [anon_sym_return] = ACTIONS(1460), + [anon_sym_break] = ACTIONS(1460), + [anon_sym_continue] = ACTIONS(1460), + [anon_sym_goto] = ACTIONS(1460), + [anon_sym___try] = ACTIONS(1460), + [anon_sym___leave] = ACTIONS(1460), + [anon_sym_DASH_DASH] = ACTIONS(1462), + [anon_sym_PLUS_PLUS] = ACTIONS(1462), + [anon_sym_sizeof] = ACTIONS(1460), + [anon_sym___alignof__] = ACTIONS(1460), + [anon_sym___alignof] = ACTIONS(1460), + [anon_sym__alignof] = ACTIONS(1460), + [anon_sym_alignof] = ACTIONS(1460), + [anon_sym__Alignof] = ACTIONS(1460), + [anon_sym_offsetof] = ACTIONS(1460), + [anon_sym__Generic] = ACTIONS(1460), + [anon_sym_asm] = ACTIONS(1460), + [anon_sym___asm__] = ACTIONS(1460), + [sym_number_literal] = ACTIONS(1462), + [anon_sym_L_SQUOTE] = ACTIONS(1462), + [anon_sym_u_SQUOTE] = ACTIONS(1462), + [anon_sym_U_SQUOTE] = ACTIONS(1462), + [anon_sym_u8_SQUOTE] = ACTIONS(1462), + [anon_sym_SQUOTE] = ACTIONS(1462), + [anon_sym_L_DQUOTE] = ACTIONS(1462), + [anon_sym_u_DQUOTE] = ACTIONS(1462), + [anon_sym_U_DQUOTE] = ACTIONS(1462), + [anon_sym_u8_DQUOTE] = ACTIONS(1462), + [anon_sym_DQUOTE] = ACTIONS(1462), + [sym_true] = ACTIONS(1460), + [sym_false] = ACTIONS(1460), + [anon_sym_NULL] = ACTIONS(1460), + [anon_sym_nullptr] = ACTIONS(1460), [sym_comment] = ACTIONS(3), }, [376] = { - [sym_identifier] = ACTIONS(1421), - [aux_sym_preproc_include_token1] = ACTIONS(1421), - [aux_sym_preproc_def_token1] = ACTIONS(1421), - [aux_sym_preproc_if_token1] = ACTIONS(1421), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1421), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1421), - [sym_preproc_directive] = ACTIONS(1421), - [anon_sym_LPAREN2] = ACTIONS(1423), - [anon_sym_BANG] = ACTIONS(1423), - [anon_sym_TILDE] = ACTIONS(1423), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_PLUS] = ACTIONS(1421), - [anon_sym_STAR] = ACTIONS(1423), - [anon_sym_AMP] = ACTIONS(1423), - [anon_sym_SEMI] = ACTIONS(1423), - [anon_sym___extension__] = ACTIONS(1421), - [anon_sym_typedef] = ACTIONS(1421), - [anon_sym_extern] = ACTIONS(1421), - [anon_sym___attribute__] = ACTIONS(1421), - [anon_sym___scanf] = ACTIONS(1421), - [anon_sym___printf] = ACTIONS(1421), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1423), - [anon_sym___declspec] = ACTIONS(1421), - [anon_sym___cdecl] = ACTIONS(1421), - [anon_sym___clrcall] = ACTIONS(1421), - [anon_sym___stdcall] = ACTIONS(1421), - [anon_sym___fastcall] = ACTIONS(1421), - [anon_sym___thiscall] = ACTIONS(1421), - [anon_sym___vectorcall] = ACTIONS(1421), - [anon_sym_LBRACE] = ACTIONS(1423), - [anon_sym_RBRACE] = ACTIONS(1423), - [anon_sym_signed] = ACTIONS(1421), - [anon_sym_unsigned] = ACTIONS(1421), - [anon_sym_long] = ACTIONS(1421), - [anon_sym_short] = ACTIONS(1421), - [anon_sym_static] = ACTIONS(1421), - [anon_sym_auto] = ACTIONS(1421), - [anon_sym_register] = ACTIONS(1421), - [anon_sym_inline] = ACTIONS(1421), - [anon_sym___inline] = ACTIONS(1421), - [anon_sym___inline__] = ACTIONS(1421), - [anon_sym___forceinline] = ACTIONS(1421), - [anon_sym_thread_local] = ACTIONS(1421), - [anon_sym___thread] = ACTIONS(1421), - [anon_sym_const] = ACTIONS(1421), - [anon_sym_constexpr] = ACTIONS(1421), - [anon_sym_volatile] = ACTIONS(1421), - [anon_sym_restrict] = ACTIONS(1421), - [anon_sym___restrict__] = ACTIONS(1421), - [anon_sym__Atomic] = ACTIONS(1421), - [anon_sym__Noreturn] = ACTIONS(1421), - [anon_sym_noreturn] = ACTIONS(1421), - [sym_primitive_type] = ACTIONS(1421), - [anon_sym_enum] = ACTIONS(1421), - [anon_sym_struct] = ACTIONS(1421), - [anon_sym_union] = ACTIONS(1421), - [anon_sym_if] = ACTIONS(1421), - [anon_sym_switch] = ACTIONS(1421), - [anon_sym_case] = ACTIONS(1421), - [anon_sym_default] = ACTIONS(1421), - [anon_sym_while] = ACTIONS(1421), - [anon_sym_do] = ACTIONS(1421), - [anon_sym_for] = ACTIONS(1421), - [anon_sym_return] = ACTIONS(1421), - [anon_sym_break] = ACTIONS(1421), - [anon_sym_continue] = ACTIONS(1421), - [anon_sym_goto] = ACTIONS(1421), - [anon_sym___try] = ACTIONS(1421), - [anon_sym___leave] = ACTIONS(1421), - [anon_sym_DASH_DASH] = ACTIONS(1423), - [anon_sym_PLUS_PLUS] = ACTIONS(1423), - [anon_sym_sizeof] = ACTIONS(1421), - [anon_sym___alignof__] = ACTIONS(1421), - [anon_sym___alignof] = ACTIONS(1421), - [anon_sym__alignof] = ACTIONS(1421), - [anon_sym_alignof] = ACTIONS(1421), - [anon_sym__Alignof] = ACTIONS(1421), - [anon_sym_offsetof] = ACTIONS(1421), - [anon_sym__Generic] = ACTIONS(1421), - [anon_sym_asm] = ACTIONS(1421), - [anon_sym___asm__] = ACTIONS(1421), - [sym_number_literal] = ACTIONS(1423), - [anon_sym_L_SQUOTE] = ACTIONS(1423), - [anon_sym_u_SQUOTE] = ACTIONS(1423), - [anon_sym_U_SQUOTE] = ACTIONS(1423), - [anon_sym_u8_SQUOTE] = ACTIONS(1423), - [anon_sym_SQUOTE] = ACTIONS(1423), - [anon_sym_L_DQUOTE] = ACTIONS(1423), - [anon_sym_u_DQUOTE] = ACTIONS(1423), - [anon_sym_U_DQUOTE] = ACTIONS(1423), - [anon_sym_u8_DQUOTE] = ACTIONS(1423), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_true] = ACTIONS(1421), - [sym_false] = ACTIONS(1421), - [anon_sym_NULL] = ACTIONS(1421), - [anon_sym_nullptr] = ACTIONS(1421), + [sym_identifier] = ACTIONS(1424), + [aux_sym_preproc_include_token1] = ACTIONS(1424), + [aux_sym_preproc_def_token1] = ACTIONS(1424), + [aux_sym_preproc_if_token1] = ACTIONS(1424), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1424), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1424), + [sym_preproc_directive] = ACTIONS(1424), + [anon_sym_LPAREN2] = ACTIONS(1426), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_DASH] = ACTIONS(1424), + [anon_sym_PLUS] = ACTIONS(1424), + [anon_sym_STAR] = ACTIONS(1426), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_SEMI] = ACTIONS(1426), + [anon_sym___extension__] = ACTIONS(1424), + [anon_sym_typedef] = ACTIONS(1424), + [anon_sym_extern] = ACTIONS(1424), + [anon_sym___attribute__] = ACTIONS(1424), + [anon_sym___scanf] = ACTIONS(1424), + [anon_sym___printf] = ACTIONS(1424), + [anon_sym___read_mostly] = ACTIONS(1424), + [anon_sym___must_hold] = ACTIONS(1424), + [anon_sym___ro_after_init] = ACTIONS(1424), + [anon_sym___init] = ACTIONS(1424), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1426), + [anon_sym___declspec] = ACTIONS(1424), + [anon_sym___cdecl] = ACTIONS(1424), + [anon_sym___clrcall] = ACTIONS(1424), + [anon_sym___stdcall] = ACTIONS(1424), + [anon_sym___fastcall] = ACTIONS(1424), + [anon_sym___thiscall] = ACTIONS(1424), + [anon_sym___vectorcall] = ACTIONS(1424), + [anon_sym_LBRACE] = ACTIONS(1426), + [anon_sym_RBRACE] = ACTIONS(1426), + [anon_sym_signed] = ACTIONS(1424), + [anon_sym_unsigned] = ACTIONS(1424), + [anon_sym_long] = ACTIONS(1424), + [anon_sym_short] = ACTIONS(1424), + [anon_sym_static] = ACTIONS(1424), + [anon_sym_auto] = ACTIONS(1424), + [anon_sym_register] = ACTIONS(1424), + [anon_sym_inline] = ACTIONS(1424), + [anon_sym___inline] = ACTIONS(1424), + [anon_sym___inline__] = ACTIONS(1424), + [anon_sym___forceinline] = ACTIONS(1424), + [anon_sym_thread_local] = ACTIONS(1424), + [anon_sym___thread] = ACTIONS(1424), + [anon_sym_const] = ACTIONS(1424), + [anon_sym_constexpr] = ACTIONS(1424), + [anon_sym_volatile] = ACTIONS(1424), + [anon_sym_restrict] = ACTIONS(1424), + [anon_sym___restrict__] = ACTIONS(1424), + [anon_sym__Atomic] = ACTIONS(1424), + [anon_sym__Noreturn] = ACTIONS(1424), + [anon_sym_noreturn] = ACTIONS(1424), + [sym_primitive_type] = ACTIONS(1424), + [anon_sym_enum] = ACTIONS(1424), + [anon_sym_struct] = ACTIONS(1424), + [anon_sym_union] = ACTIONS(1424), + [anon_sym_if] = ACTIONS(1424), + [anon_sym_switch] = ACTIONS(1424), + [anon_sym_case] = ACTIONS(1424), + [anon_sym_default] = ACTIONS(1424), + [anon_sym_while] = ACTIONS(1424), + [anon_sym_do] = ACTIONS(1424), + [anon_sym_for] = ACTIONS(1424), + [anon_sym_return] = ACTIONS(1424), + [anon_sym_break] = ACTIONS(1424), + [anon_sym_continue] = ACTIONS(1424), + [anon_sym_goto] = ACTIONS(1424), + [anon_sym___try] = ACTIONS(1424), + [anon_sym___leave] = ACTIONS(1424), + [anon_sym_DASH_DASH] = ACTIONS(1426), + [anon_sym_PLUS_PLUS] = ACTIONS(1426), + [anon_sym_sizeof] = ACTIONS(1424), + [anon_sym___alignof__] = ACTIONS(1424), + [anon_sym___alignof] = ACTIONS(1424), + [anon_sym__alignof] = ACTIONS(1424), + [anon_sym_alignof] = ACTIONS(1424), + [anon_sym__Alignof] = ACTIONS(1424), + [anon_sym_offsetof] = ACTIONS(1424), + [anon_sym__Generic] = ACTIONS(1424), + [anon_sym_asm] = ACTIONS(1424), + [anon_sym___asm__] = ACTIONS(1424), + [sym_number_literal] = ACTIONS(1426), + [anon_sym_L_SQUOTE] = ACTIONS(1426), + [anon_sym_u_SQUOTE] = ACTIONS(1426), + [anon_sym_U_SQUOTE] = ACTIONS(1426), + [anon_sym_u8_SQUOTE] = ACTIONS(1426), + [anon_sym_SQUOTE] = ACTIONS(1426), + [anon_sym_L_DQUOTE] = ACTIONS(1426), + [anon_sym_u_DQUOTE] = ACTIONS(1426), + [anon_sym_U_DQUOTE] = ACTIONS(1426), + [anon_sym_u8_DQUOTE] = ACTIONS(1426), + [anon_sym_DQUOTE] = ACTIONS(1426), + [sym_true] = ACTIONS(1424), + [sym_false] = ACTIONS(1424), + [anon_sym_NULL] = ACTIONS(1424), + [anon_sym_nullptr] = ACTIONS(1424), [sym_comment] = ACTIONS(3), }, [377] = { - [sym_identifier] = ACTIONS(1429), - [aux_sym_preproc_include_token1] = ACTIONS(1429), - [aux_sym_preproc_def_token1] = ACTIONS(1429), - [aux_sym_preproc_if_token1] = ACTIONS(1429), - [aux_sym_preproc_if_token2] = ACTIONS(1429), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1429), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1429), - [sym_preproc_directive] = ACTIONS(1429), - [anon_sym_LPAREN2] = ACTIONS(1431), - [anon_sym_BANG] = ACTIONS(1431), - [anon_sym_TILDE] = ACTIONS(1431), - [anon_sym_DASH] = ACTIONS(1429), - [anon_sym_PLUS] = ACTIONS(1429), - [anon_sym_STAR] = ACTIONS(1431), - [anon_sym_AMP] = ACTIONS(1431), - [anon_sym_SEMI] = ACTIONS(1431), - [anon_sym___extension__] = ACTIONS(1429), - [anon_sym_typedef] = ACTIONS(1429), - [anon_sym_extern] = ACTIONS(1429), - [anon_sym___attribute__] = ACTIONS(1429), - [anon_sym___scanf] = ACTIONS(1429), - [anon_sym___printf] = ACTIONS(1429), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1431), - [anon_sym___declspec] = ACTIONS(1429), - [anon_sym___cdecl] = ACTIONS(1429), - [anon_sym___clrcall] = ACTIONS(1429), - [anon_sym___stdcall] = ACTIONS(1429), - [anon_sym___fastcall] = ACTIONS(1429), - [anon_sym___thiscall] = ACTIONS(1429), - [anon_sym___vectorcall] = ACTIONS(1429), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_signed] = ACTIONS(1429), - [anon_sym_unsigned] = ACTIONS(1429), - [anon_sym_long] = ACTIONS(1429), - [anon_sym_short] = ACTIONS(1429), - [anon_sym_static] = ACTIONS(1429), - [anon_sym_auto] = ACTIONS(1429), - [anon_sym_register] = ACTIONS(1429), - [anon_sym_inline] = ACTIONS(1429), - [anon_sym___inline] = ACTIONS(1429), - [anon_sym___inline__] = ACTIONS(1429), - [anon_sym___forceinline] = ACTIONS(1429), - [anon_sym_thread_local] = ACTIONS(1429), - [anon_sym___thread] = ACTIONS(1429), - [anon_sym_const] = ACTIONS(1429), - [anon_sym_constexpr] = ACTIONS(1429), - [anon_sym_volatile] = ACTIONS(1429), - [anon_sym_restrict] = ACTIONS(1429), - [anon_sym___restrict__] = ACTIONS(1429), - [anon_sym__Atomic] = ACTIONS(1429), - [anon_sym__Noreturn] = ACTIONS(1429), - [anon_sym_noreturn] = ACTIONS(1429), - [sym_primitive_type] = ACTIONS(1429), - [anon_sym_enum] = ACTIONS(1429), - [anon_sym_struct] = ACTIONS(1429), - [anon_sym_union] = ACTIONS(1429), - [anon_sym_if] = ACTIONS(1429), - [anon_sym_switch] = ACTIONS(1429), - [anon_sym_case] = ACTIONS(1429), - [anon_sym_default] = ACTIONS(1429), - [anon_sym_while] = ACTIONS(1429), - [anon_sym_do] = ACTIONS(1429), - [anon_sym_for] = ACTIONS(1429), - [anon_sym_return] = ACTIONS(1429), - [anon_sym_break] = ACTIONS(1429), - [anon_sym_continue] = ACTIONS(1429), - [anon_sym_goto] = ACTIONS(1429), - [anon_sym___try] = ACTIONS(1429), - [anon_sym___leave] = ACTIONS(1429), - [anon_sym_DASH_DASH] = ACTIONS(1431), - [anon_sym_PLUS_PLUS] = ACTIONS(1431), - [anon_sym_sizeof] = ACTIONS(1429), - [anon_sym___alignof__] = ACTIONS(1429), - [anon_sym___alignof] = ACTIONS(1429), - [anon_sym__alignof] = ACTIONS(1429), - [anon_sym_alignof] = ACTIONS(1429), - [anon_sym__Alignof] = ACTIONS(1429), - [anon_sym_offsetof] = ACTIONS(1429), - [anon_sym__Generic] = ACTIONS(1429), - [anon_sym_asm] = ACTIONS(1429), - [anon_sym___asm__] = ACTIONS(1429), - [sym_number_literal] = ACTIONS(1431), - [anon_sym_L_SQUOTE] = ACTIONS(1431), - [anon_sym_u_SQUOTE] = ACTIONS(1431), - [anon_sym_U_SQUOTE] = ACTIONS(1431), - [anon_sym_u8_SQUOTE] = ACTIONS(1431), - [anon_sym_SQUOTE] = ACTIONS(1431), - [anon_sym_L_DQUOTE] = ACTIONS(1431), - [anon_sym_u_DQUOTE] = ACTIONS(1431), - [anon_sym_U_DQUOTE] = ACTIONS(1431), - [anon_sym_u8_DQUOTE] = ACTIONS(1431), - [anon_sym_DQUOTE] = ACTIONS(1431), - [sym_true] = ACTIONS(1429), - [sym_false] = ACTIONS(1429), - [anon_sym_NULL] = ACTIONS(1429), - [anon_sym_nullptr] = ACTIONS(1429), + [sym_identifier] = ACTIONS(1524), + [aux_sym_preproc_include_token1] = ACTIONS(1524), + [aux_sym_preproc_def_token1] = ACTIONS(1524), + [aux_sym_preproc_if_token1] = ACTIONS(1524), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1524), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1524), + [sym_preproc_directive] = ACTIONS(1524), + [anon_sym_LPAREN2] = ACTIONS(1526), + [anon_sym_BANG] = ACTIONS(1526), + [anon_sym_TILDE] = ACTIONS(1526), + [anon_sym_DASH] = ACTIONS(1524), + [anon_sym_PLUS] = ACTIONS(1524), + [anon_sym_STAR] = ACTIONS(1526), + [anon_sym_AMP] = ACTIONS(1526), + [anon_sym_SEMI] = ACTIONS(1526), + [anon_sym___extension__] = ACTIONS(1524), + [anon_sym_typedef] = ACTIONS(1524), + [anon_sym_extern] = ACTIONS(1524), + [anon_sym___attribute__] = ACTIONS(1524), + [anon_sym___scanf] = ACTIONS(1524), + [anon_sym___printf] = ACTIONS(1524), + [anon_sym___read_mostly] = ACTIONS(1524), + [anon_sym___must_hold] = ACTIONS(1524), + [anon_sym___ro_after_init] = ACTIONS(1524), + [anon_sym___init] = ACTIONS(1524), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1526), + [anon_sym___declspec] = ACTIONS(1524), + [anon_sym___cdecl] = ACTIONS(1524), + [anon_sym___clrcall] = ACTIONS(1524), + [anon_sym___stdcall] = ACTIONS(1524), + [anon_sym___fastcall] = ACTIONS(1524), + [anon_sym___thiscall] = ACTIONS(1524), + [anon_sym___vectorcall] = ACTIONS(1524), + [anon_sym_LBRACE] = ACTIONS(1526), + [anon_sym_RBRACE] = ACTIONS(1526), + [anon_sym_signed] = ACTIONS(1524), + [anon_sym_unsigned] = ACTIONS(1524), + [anon_sym_long] = ACTIONS(1524), + [anon_sym_short] = ACTIONS(1524), + [anon_sym_static] = ACTIONS(1524), + [anon_sym_auto] = ACTIONS(1524), + [anon_sym_register] = ACTIONS(1524), + [anon_sym_inline] = ACTIONS(1524), + [anon_sym___inline] = ACTIONS(1524), + [anon_sym___inline__] = ACTIONS(1524), + [anon_sym___forceinline] = ACTIONS(1524), + [anon_sym_thread_local] = ACTIONS(1524), + [anon_sym___thread] = ACTIONS(1524), + [anon_sym_const] = ACTIONS(1524), + [anon_sym_constexpr] = ACTIONS(1524), + [anon_sym_volatile] = ACTIONS(1524), + [anon_sym_restrict] = ACTIONS(1524), + [anon_sym___restrict__] = ACTIONS(1524), + [anon_sym__Atomic] = ACTIONS(1524), + [anon_sym__Noreturn] = ACTIONS(1524), + [anon_sym_noreturn] = ACTIONS(1524), + [sym_primitive_type] = ACTIONS(1524), + [anon_sym_enum] = ACTIONS(1524), + [anon_sym_struct] = ACTIONS(1524), + [anon_sym_union] = ACTIONS(1524), + [anon_sym_if] = ACTIONS(1524), + [anon_sym_switch] = ACTIONS(1524), + [anon_sym_case] = ACTIONS(1524), + [anon_sym_default] = ACTIONS(1524), + [anon_sym_while] = ACTIONS(1524), + [anon_sym_do] = ACTIONS(1524), + [anon_sym_for] = ACTIONS(1524), + [anon_sym_return] = ACTIONS(1524), + [anon_sym_break] = ACTIONS(1524), + [anon_sym_continue] = ACTIONS(1524), + [anon_sym_goto] = ACTIONS(1524), + [anon_sym___try] = ACTIONS(1524), + [anon_sym___leave] = ACTIONS(1524), + [anon_sym_DASH_DASH] = ACTIONS(1526), + [anon_sym_PLUS_PLUS] = ACTIONS(1526), + [anon_sym_sizeof] = ACTIONS(1524), + [anon_sym___alignof__] = ACTIONS(1524), + [anon_sym___alignof] = ACTIONS(1524), + [anon_sym__alignof] = ACTIONS(1524), + [anon_sym_alignof] = ACTIONS(1524), + [anon_sym__Alignof] = ACTIONS(1524), + [anon_sym_offsetof] = ACTIONS(1524), + [anon_sym__Generic] = ACTIONS(1524), + [anon_sym_asm] = ACTIONS(1524), + [anon_sym___asm__] = ACTIONS(1524), + [sym_number_literal] = ACTIONS(1526), + [anon_sym_L_SQUOTE] = ACTIONS(1526), + [anon_sym_u_SQUOTE] = ACTIONS(1526), + [anon_sym_U_SQUOTE] = ACTIONS(1526), + [anon_sym_u8_SQUOTE] = ACTIONS(1526), + [anon_sym_SQUOTE] = ACTIONS(1526), + [anon_sym_L_DQUOTE] = ACTIONS(1526), + [anon_sym_u_DQUOTE] = ACTIONS(1526), + [anon_sym_U_DQUOTE] = ACTIONS(1526), + [anon_sym_u8_DQUOTE] = ACTIONS(1526), + [anon_sym_DQUOTE] = ACTIONS(1526), + [sym_true] = ACTIONS(1524), + [sym_false] = ACTIONS(1524), + [anon_sym_NULL] = ACTIONS(1524), + [anon_sym_nullptr] = ACTIONS(1524), [sym_comment] = ACTIONS(3), }, [378] = { - [sym_identifier] = ACTIONS(1511), - [aux_sym_preproc_include_token1] = ACTIONS(1511), - [aux_sym_preproc_def_token1] = ACTIONS(1511), - [aux_sym_preproc_if_token1] = ACTIONS(1511), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1511), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1511), - [sym_preproc_directive] = ACTIONS(1511), - [anon_sym_LPAREN2] = ACTIONS(1513), - [anon_sym_BANG] = ACTIONS(1513), - [anon_sym_TILDE] = ACTIONS(1513), - [anon_sym_DASH] = ACTIONS(1511), - [anon_sym_PLUS] = ACTIONS(1511), - [anon_sym_STAR] = ACTIONS(1513), - [anon_sym_AMP] = ACTIONS(1513), - [anon_sym_SEMI] = ACTIONS(1513), - [anon_sym___extension__] = ACTIONS(1511), - [anon_sym_typedef] = ACTIONS(1511), - [anon_sym_extern] = ACTIONS(1511), - [anon_sym___attribute__] = ACTIONS(1511), - [anon_sym___scanf] = ACTIONS(1511), - [anon_sym___printf] = ACTIONS(1511), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1513), - [anon_sym___declspec] = ACTIONS(1511), - [anon_sym___cdecl] = ACTIONS(1511), - [anon_sym___clrcall] = ACTIONS(1511), - [anon_sym___stdcall] = ACTIONS(1511), - [anon_sym___fastcall] = ACTIONS(1511), - [anon_sym___thiscall] = ACTIONS(1511), - [anon_sym___vectorcall] = ACTIONS(1511), - [anon_sym_LBRACE] = ACTIONS(1513), - [anon_sym_RBRACE] = ACTIONS(1513), - [anon_sym_signed] = ACTIONS(1511), - [anon_sym_unsigned] = ACTIONS(1511), - [anon_sym_long] = ACTIONS(1511), - [anon_sym_short] = ACTIONS(1511), - [anon_sym_static] = ACTIONS(1511), - [anon_sym_auto] = ACTIONS(1511), - [anon_sym_register] = ACTIONS(1511), - [anon_sym_inline] = ACTIONS(1511), - [anon_sym___inline] = ACTIONS(1511), - [anon_sym___inline__] = ACTIONS(1511), - [anon_sym___forceinline] = ACTIONS(1511), - [anon_sym_thread_local] = ACTIONS(1511), - [anon_sym___thread] = ACTIONS(1511), - [anon_sym_const] = ACTIONS(1511), - [anon_sym_constexpr] = ACTIONS(1511), - [anon_sym_volatile] = ACTIONS(1511), - [anon_sym_restrict] = ACTIONS(1511), - [anon_sym___restrict__] = ACTIONS(1511), - [anon_sym__Atomic] = ACTIONS(1511), - [anon_sym__Noreturn] = ACTIONS(1511), - [anon_sym_noreturn] = ACTIONS(1511), - [sym_primitive_type] = ACTIONS(1511), - [anon_sym_enum] = ACTIONS(1511), - [anon_sym_struct] = ACTIONS(1511), - [anon_sym_union] = ACTIONS(1511), - [anon_sym_if] = ACTIONS(1511), - [anon_sym_switch] = ACTIONS(1511), - [anon_sym_case] = ACTIONS(1511), - [anon_sym_default] = ACTIONS(1511), - [anon_sym_while] = ACTIONS(1511), - [anon_sym_do] = ACTIONS(1511), - [anon_sym_for] = ACTIONS(1511), - [anon_sym_return] = ACTIONS(1511), - [anon_sym_break] = ACTIONS(1511), - [anon_sym_continue] = ACTIONS(1511), - [anon_sym_goto] = ACTIONS(1511), - [anon_sym___try] = ACTIONS(1511), - [anon_sym___leave] = ACTIONS(1511), - [anon_sym_DASH_DASH] = ACTIONS(1513), - [anon_sym_PLUS_PLUS] = ACTIONS(1513), - [anon_sym_sizeof] = ACTIONS(1511), - [anon_sym___alignof__] = ACTIONS(1511), - [anon_sym___alignof] = ACTIONS(1511), - [anon_sym__alignof] = ACTIONS(1511), - [anon_sym_alignof] = ACTIONS(1511), - [anon_sym__Alignof] = ACTIONS(1511), - [anon_sym_offsetof] = ACTIONS(1511), - [anon_sym__Generic] = ACTIONS(1511), - [anon_sym_asm] = ACTIONS(1511), - [anon_sym___asm__] = ACTIONS(1511), - [sym_number_literal] = ACTIONS(1513), - [anon_sym_L_SQUOTE] = ACTIONS(1513), - [anon_sym_u_SQUOTE] = ACTIONS(1513), - [anon_sym_U_SQUOTE] = ACTIONS(1513), - [anon_sym_u8_SQUOTE] = ACTIONS(1513), - [anon_sym_SQUOTE] = ACTIONS(1513), - [anon_sym_L_DQUOTE] = ACTIONS(1513), - [anon_sym_u_DQUOTE] = ACTIONS(1513), - [anon_sym_U_DQUOTE] = ACTIONS(1513), - [anon_sym_u8_DQUOTE] = ACTIONS(1513), - [anon_sym_DQUOTE] = ACTIONS(1513), - [sym_true] = ACTIONS(1511), - [sym_false] = ACTIONS(1511), - [anon_sym_NULL] = ACTIONS(1511), - [anon_sym_nullptr] = ACTIONS(1511), + [sym_identifier] = ACTIONS(1436), + [aux_sym_preproc_include_token1] = ACTIONS(1436), + [aux_sym_preproc_def_token1] = ACTIONS(1436), + [aux_sym_preproc_if_token1] = ACTIONS(1436), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1436), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1436), + [sym_preproc_directive] = ACTIONS(1436), + [anon_sym_LPAREN2] = ACTIONS(1438), + [anon_sym_BANG] = ACTIONS(1438), + [anon_sym_TILDE] = ACTIONS(1438), + [anon_sym_DASH] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1436), + [anon_sym_STAR] = ACTIONS(1438), + [anon_sym_AMP] = ACTIONS(1438), + [anon_sym_SEMI] = ACTIONS(1438), + [anon_sym___extension__] = ACTIONS(1436), + [anon_sym_typedef] = ACTIONS(1436), + [anon_sym_extern] = ACTIONS(1436), + [anon_sym___attribute__] = ACTIONS(1436), + [anon_sym___scanf] = ACTIONS(1436), + [anon_sym___printf] = ACTIONS(1436), + [anon_sym___read_mostly] = ACTIONS(1436), + [anon_sym___must_hold] = ACTIONS(1436), + [anon_sym___ro_after_init] = ACTIONS(1436), + [anon_sym___init] = ACTIONS(1436), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1438), + [anon_sym___declspec] = ACTIONS(1436), + [anon_sym___cdecl] = ACTIONS(1436), + [anon_sym___clrcall] = ACTIONS(1436), + [anon_sym___stdcall] = ACTIONS(1436), + [anon_sym___fastcall] = ACTIONS(1436), + [anon_sym___thiscall] = ACTIONS(1436), + [anon_sym___vectorcall] = ACTIONS(1436), + [anon_sym_LBRACE] = ACTIONS(1438), + [anon_sym_RBRACE] = ACTIONS(1438), + [anon_sym_signed] = ACTIONS(1436), + [anon_sym_unsigned] = ACTIONS(1436), + [anon_sym_long] = ACTIONS(1436), + [anon_sym_short] = ACTIONS(1436), + [anon_sym_static] = ACTIONS(1436), + [anon_sym_auto] = ACTIONS(1436), + [anon_sym_register] = ACTIONS(1436), + [anon_sym_inline] = ACTIONS(1436), + [anon_sym___inline] = ACTIONS(1436), + [anon_sym___inline__] = ACTIONS(1436), + [anon_sym___forceinline] = ACTIONS(1436), + [anon_sym_thread_local] = ACTIONS(1436), + [anon_sym___thread] = ACTIONS(1436), + [anon_sym_const] = ACTIONS(1436), + [anon_sym_constexpr] = ACTIONS(1436), + [anon_sym_volatile] = ACTIONS(1436), + [anon_sym_restrict] = ACTIONS(1436), + [anon_sym___restrict__] = ACTIONS(1436), + [anon_sym__Atomic] = ACTIONS(1436), + [anon_sym__Noreturn] = ACTIONS(1436), + [anon_sym_noreturn] = ACTIONS(1436), + [sym_primitive_type] = ACTIONS(1436), + [anon_sym_enum] = ACTIONS(1436), + [anon_sym_struct] = ACTIONS(1436), + [anon_sym_union] = ACTIONS(1436), + [anon_sym_if] = ACTIONS(1436), + [anon_sym_switch] = ACTIONS(1436), + [anon_sym_case] = ACTIONS(1436), + [anon_sym_default] = ACTIONS(1436), + [anon_sym_while] = ACTIONS(1436), + [anon_sym_do] = ACTIONS(1436), + [anon_sym_for] = ACTIONS(1436), + [anon_sym_return] = ACTIONS(1436), + [anon_sym_break] = ACTIONS(1436), + [anon_sym_continue] = ACTIONS(1436), + [anon_sym_goto] = ACTIONS(1436), + [anon_sym___try] = ACTIONS(1436), + [anon_sym___leave] = ACTIONS(1436), + [anon_sym_DASH_DASH] = ACTIONS(1438), + [anon_sym_PLUS_PLUS] = ACTIONS(1438), + [anon_sym_sizeof] = ACTIONS(1436), + [anon_sym___alignof__] = ACTIONS(1436), + [anon_sym___alignof] = ACTIONS(1436), + [anon_sym__alignof] = ACTIONS(1436), + [anon_sym_alignof] = ACTIONS(1436), + [anon_sym__Alignof] = ACTIONS(1436), + [anon_sym_offsetof] = ACTIONS(1436), + [anon_sym__Generic] = ACTIONS(1436), + [anon_sym_asm] = ACTIONS(1436), + [anon_sym___asm__] = ACTIONS(1436), + [sym_number_literal] = ACTIONS(1438), + [anon_sym_L_SQUOTE] = ACTIONS(1438), + [anon_sym_u_SQUOTE] = ACTIONS(1438), + [anon_sym_U_SQUOTE] = ACTIONS(1438), + [anon_sym_u8_SQUOTE] = ACTIONS(1438), + [anon_sym_SQUOTE] = ACTIONS(1438), + [anon_sym_L_DQUOTE] = ACTIONS(1438), + [anon_sym_u_DQUOTE] = ACTIONS(1438), + [anon_sym_U_DQUOTE] = ACTIONS(1438), + [anon_sym_u8_DQUOTE] = ACTIONS(1438), + [anon_sym_DQUOTE] = ACTIONS(1438), + [sym_true] = ACTIONS(1436), + [sym_false] = ACTIONS(1436), + [anon_sym_NULL] = ACTIONS(1436), + [anon_sym_nullptr] = ACTIONS(1436), [sym_comment] = ACTIONS(3), }, [379] = { - [sym_identifier] = ACTIONS(1425), - [aux_sym_preproc_include_token1] = ACTIONS(1425), - [aux_sym_preproc_def_token1] = ACTIONS(1425), - [aux_sym_preproc_if_token1] = ACTIONS(1425), - [aux_sym_preproc_if_token2] = ACTIONS(1425), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1425), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1425), - [sym_preproc_directive] = ACTIONS(1425), - [anon_sym_LPAREN2] = ACTIONS(1427), - [anon_sym_BANG] = ACTIONS(1427), - [anon_sym_TILDE] = ACTIONS(1427), - [anon_sym_DASH] = ACTIONS(1425), - [anon_sym_PLUS] = ACTIONS(1425), - [anon_sym_STAR] = ACTIONS(1427), - [anon_sym_AMP] = ACTIONS(1427), - [anon_sym_SEMI] = ACTIONS(1427), - [anon_sym___extension__] = ACTIONS(1425), - [anon_sym_typedef] = ACTIONS(1425), - [anon_sym_extern] = ACTIONS(1425), - [anon_sym___attribute__] = ACTIONS(1425), - [anon_sym___scanf] = ACTIONS(1425), - [anon_sym___printf] = ACTIONS(1425), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1427), - [anon_sym___declspec] = ACTIONS(1425), - [anon_sym___cdecl] = ACTIONS(1425), - [anon_sym___clrcall] = ACTIONS(1425), - [anon_sym___stdcall] = ACTIONS(1425), - [anon_sym___fastcall] = ACTIONS(1425), - [anon_sym___thiscall] = ACTIONS(1425), - [anon_sym___vectorcall] = ACTIONS(1425), - [anon_sym_LBRACE] = ACTIONS(1427), - [anon_sym_signed] = ACTIONS(1425), - [anon_sym_unsigned] = ACTIONS(1425), - [anon_sym_long] = ACTIONS(1425), - [anon_sym_short] = ACTIONS(1425), - [anon_sym_static] = ACTIONS(1425), - [anon_sym_auto] = ACTIONS(1425), - [anon_sym_register] = ACTIONS(1425), - [anon_sym_inline] = ACTIONS(1425), - [anon_sym___inline] = ACTIONS(1425), - [anon_sym___inline__] = ACTIONS(1425), - [anon_sym___forceinline] = ACTIONS(1425), - [anon_sym_thread_local] = ACTIONS(1425), - [anon_sym___thread] = ACTIONS(1425), - [anon_sym_const] = ACTIONS(1425), - [anon_sym_constexpr] = ACTIONS(1425), - [anon_sym_volatile] = ACTIONS(1425), - [anon_sym_restrict] = ACTIONS(1425), - [anon_sym___restrict__] = ACTIONS(1425), - [anon_sym__Atomic] = ACTIONS(1425), - [anon_sym__Noreturn] = ACTIONS(1425), - [anon_sym_noreturn] = ACTIONS(1425), - [sym_primitive_type] = ACTIONS(1425), - [anon_sym_enum] = ACTIONS(1425), - [anon_sym_struct] = ACTIONS(1425), - [anon_sym_union] = ACTIONS(1425), - [anon_sym_if] = ACTIONS(1425), - [anon_sym_switch] = ACTIONS(1425), - [anon_sym_case] = ACTIONS(1425), - [anon_sym_default] = ACTIONS(1425), - [anon_sym_while] = ACTIONS(1425), - [anon_sym_do] = ACTIONS(1425), - [anon_sym_for] = ACTIONS(1425), - [anon_sym_return] = ACTIONS(1425), - [anon_sym_break] = ACTIONS(1425), - [anon_sym_continue] = ACTIONS(1425), - [anon_sym_goto] = ACTIONS(1425), - [anon_sym___try] = ACTIONS(1425), - [anon_sym___leave] = ACTIONS(1425), - [anon_sym_DASH_DASH] = ACTIONS(1427), - [anon_sym_PLUS_PLUS] = ACTIONS(1427), - [anon_sym_sizeof] = ACTIONS(1425), - [anon_sym___alignof__] = ACTIONS(1425), - [anon_sym___alignof] = ACTIONS(1425), - [anon_sym__alignof] = ACTIONS(1425), - [anon_sym_alignof] = ACTIONS(1425), - [anon_sym__Alignof] = ACTIONS(1425), - [anon_sym_offsetof] = ACTIONS(1425), - [anon_sym__Generic] = ACTIONS(1425), - [anon_sym_asm] = ACTIONS(1425), - [anon_sym___asm__] = ACTIONS(1425), - [sym_number_literal] = ACTIONS(1427), - [anon_sym_L_SQUOTE] = ACTIONS(1427), - [anon_sym_u_SQUOTE] = ACTIONS(1427), - [anon_sym_U_SQUOTE] = ACTIONS(1427), - [anon_sym_u8_SQUOTE] = ACTIONS(1427), - [anon_sym_SQUOTE] = ACTIONS(1427), - [anon_sym_L_DQUOTE] = ACTIONS(1427), - [anon_sym_u_DQUOTE] = ACTIONS(1427), - [anon_sym_U_DQUOTE] = ACTIONS(1427), - [anon_sym_u8_DQUOTE] = ACTIONS(1427), - [anon_sym_DQUOTE] = ACTIONS(1427), - [sym_true] = ACTIONS(1425), - [sym_false] = ACTIONS(1425), - [anon_sym_NULL] = ACTIONS(1425), - [anon_sym_nullptr] = ACTIONS(1425), + [sym_identifier] = ACTIONS(1488), + [aux_sym_preproc_include_token1] = ACTIONS(1488), + [aux_sym_preproc_def_token1] = ACTIONS(1488), + [aux_sym_preproc_if_token1] = ACTIONS(1488), + [aux_sym_preproc_if_token2] = ACTIONS(1488), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1488), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1488), + [sym_preproc_directive] = ACTIONS(1488), + [anon_sym_LPAREN2] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(1490), + [anon_sym_TILDE] = ACTIONS(1490), + [anon_sym_DASH] = ACTIONS(1488), + [anon_sym_PLUS] = ACTIONS(1488), + [anon_sym_STAR] = ACTIONS(1490), + [anon_sym_AMP] = ACTIONS(1490), + [anon_sym_SEMI] = ACTIONS(1490), + [anon_sym___extension__] = ACTIONS(1488), + [anon_sym_typedef] = ACTIONS(1488), + [anon_sym_extern] = ACTIONS(1488), + [anon_sym___attribute__] = ACTIONS(1488), + [anon_sym___scanf] = ACTIONS(1488), + [anon_sym___printf] = ACTIONS(1488), + [anon_sym___read_mostly] = ACTIONS(1488), + [anon_sym___must_hold] = ACTIONS(1488), + [anon_sym___ro_after_init] = ACTIONS(1488), + [anon_sym___init] = ACTIONS(1488), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1490), + [anon_sym___declspec] = ACTIONS(1488), + [anon_sym___cdecl] = ACTIONS(1488), + [anon_sym___clrcall] = ACTIONS(1488), + [anon_sym___stdcall] = ACTIONS(1488), + [anon_sym___fastcall] = ACTIONS(1488), + [anon_sym___thiscall] = ACTIONS(1488), + [anon_sym___vectorcall] = ACTIONS(1488), + [anon_sym_LBRACE] = ACTIONS(1490), + [anon_sym_signed] = ACTIONS(1488), + [anon_sym_unsigned] = ACTIONS(1488), + [anon_sym_long] = ACTIONS(1488), + [anon_sym_short] = ACTIONS(1488), + [anon_sym_static] = ACTIONS(1488), + [anon_sym_auto] = ACTIONS(1488), + [anon_sym_register] = ACTIONS(1488), + [anon_sym_inline] = ACTIONS(1488), + [anon_sym___inline] = ACTIONS(1488), + [anon_sym___inline__] = ACTIONS(1488), + [anon_sym___forceinline] = ACTIONS(1488), + [anon_sym_thread_local] = ACTIONS(1488), + [anon_sym___thread] = ACTIONS(1488), + [anon_sym_const] = ACTIONS(1488), + [anon_sym_constexpr] = ACTIONS(1488), + [anon_sym_volatile] = ACTIONS(1488), + [anon_sym_restrict] = ACTIONS(1488), + [anon_sym___restrict__] = ACTIONS(1488), + [anon_sym__Atomic] = ACTIONS(1488), + [anon_sym__Noreturn] = ACTIONS(1488), + [anon_sym_noreturn] = ACTIONS(1488), + [sym_primitive_type] = ACTIONS(1488), + [anon_sym_enum] = ACTIONS(1488), + [anon_sym_struct] = ACTIONS(1488), + [anon_sym_union] = ACTIONS(1488), + [anon_sym_if] = ACTIONS(1488), + [anon_sym_switch] = ACTIONS(1488), + [anon_sym_case] = ACTIONS(1488), + [anon_sym_default] = ACTIONS(1488), + [anon_sym_while] = ACTIONS(1488), + [anon_sym_do] = ACTIONS(1488), + [anon_sym_for] = ACTIONS(1488), + [anon_sym_return] = ACTIONS(1488), + [anon_sym_break] = ACTIONS(1488), + [anon_sym_continue] = ACTIONS(1488), + [anon_sym_goto] = ACTIONS(1488), + [anon_sym___try] = ACTIONS(1488), + [anon_sym___leave] = ACTIONS(1488), + [anon_sym_DASH_DASH] = ACTIONS(1490), + [anon_sym_PLUS_PLUS] = ACTIONS(1490), + [anon_sym_sizeof] = ACTIONS(1488), + [anon_sym___alignof__] = ACTIONS(1488), + [anon_sym___alignof] = ACTIONS(1488), + [anon_sym__alignof] = ACTIONS(1488), + [anon_sym_alignof] = ACTIONS(1488), + [anon_sym__Alignof] = ACTIONS(1488), + [anon_sym_offsetof] = ACTIONS(1488), + [anon_sym__Generic] = ACTIONS(1488), + [anon_sym_asm] = ACTIONS(1488), + [anon_sym___asm__] = ACTIONS(1488), + [sym_number_literal] = ACTIONS(1490), + [anon_sym_L_SQUOTE] = ACTIONS(1490), + [anon_sym_u_SQUOTE] = ACTIONS(1490), + [anon_sym_U_SQUOTE] = ACTIONS(1490), + [anon_sym_u8_SQUOTE] = ACTIONS(1490), + [anon_sym_SQUOTE] = ACTIONS(1490), + [anon_sym_L_DQUOTE] = ACTIONS(1490), + [anon_sym_u_DQUOTE] = ACTIONS(1490), + [anon_sym_U_DQUOTE] = ACTIONS(1490), + [anon_sym_u8_DQUOTE] = ACTIONS(1490), + [anon_sym_DQUOTE] = ACTIONS(1490), + [sym_true] = ACTIONS(1488), + [sym_false] = ACTIONS(1488), + [anon_sym_NULL] = ACTIONS(1488), + [anon_sym_nullptr] = ACTIONS(1488), [sym_comment] = ACTIONS(3), }, [380] = { - [sym_identifier] = ACTIONS(1477), - [aux_sym_preproc_include_token1] = ACTIONS(1477), - [aux_sym_preproc_def_token1] = ACTIONS(1477), - [aux_sym_preproc_if_token1] = ACTIONS(1477), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1477), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1477), - [sym_preproc_directive] = ACTIONS(1477), - [anon_sym_LPAREN2] = ACTIONS(1479), - [anon_sym_BANG] = ACTIONS(1479), - [anon_sym_TILDE] = ACTIONS(1479), - [anon_sym_DASH] = ACTIONS(1477), - [anon_sym_PLUS] = ACTIONS(1477), - [anon_sym_STAR] = ACTIONS(1479), - [anon_sym_AMP] = ACTIONS(1479), - [anon_sym_SEMI] = ACTIONS(1479), - [anon_sym___extension__] = ACTIONS(1477), - [anon_sym_typedef] = ACTIONS(1477), - [anon_sym_extern] = ACTIONS(1477), - [anon_sym___attribute__] = ACTIONS(1477), - [anon_sym___scanf] = ACTIONS(1477), - [anon_sym___printf] = ACTIONS(1477), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1479), - [anon_sym___declspec] = ACTIONS(1477), - [anon_sym___cdecl] = ACTIONS(1477), - [anon_sym___clrcall] = ACTIONS(1477), - [anon_sym___stdcall] = ACTIONS(1477), - [anon_sym___fastcall] = ACTIONS(1477), - [anon_sym___thiscall] = ACTIONS(1477), - [anon_sym___vectorcall] = ACTIONS(1477), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_RBRACE] = ACTIONS(1479), - [anon_sym_signed] = ACTIONS(1477), - [anon_sym_unsigned] = ACTIONS(1477), - [anon_sym_long] = ACTIONS(1477), - [anon_sym_short] = ACTIONS(1477), - [anon_sym_static] = ACTIONS(1477), - [anon_sym_auto] = ACTIONS(1477), - [anon_sym_register] = ACTIONS(1477), - [anon_sym_inline] = ACTIONS(1477), - [anon_sym___inline] = ACTIONS(1477), - [anon_sym___inline__] = ACTIONS(1477), - [anon_sym___forceinline] = ACTIONS(1477), - [anon_sym_thread_local] = ACTIONS(1477), - [anon_sym___thread] = ACTIONS(1477), - [anon_sym_const] = ACTIONS(1477), - [anon_sym_constexpr] = ACTIONS(1477), - [anon_sym_volatile] = ACTIONS(1477), - [anon_sym_restrict] = ACTIONS(1477), - [anon_sym___restrict__] = ACTIONS(1477), - [anon_sym__Atomic] = ACTIONS(1477), - [anon_sym__Noreturn] = ACTIONS(1477), - [anon_sym_noreturn] = ACTIONS(1477), - [sym_primitive_type] = ACTIONS(1477), - [anon_sym_enum] = ACTIONS(1477), - [anon_sym_struct] = ACTIONS(1477), - [anon_sym_union] = ACTIONS(1477), - [anon_sym_if] = ACTIONS(1477), - [anon_sym_switch] = ACTIONS(1477), - [anon_sym_case] = ACTIONS(1477), - [anon_sym_default] = ACTIONS(1477), - [anon_sym_while] = ACTIONS(1477), - [anon_sym_do] = ACTIONS(1477), - [anon_sym_for] = ACTIONS(1477), - [anon_sym_return] = ACTIONS(1477), - [anon_sym_break] = ACTIONS(1477), - [anon_sym_continue] = ACTIONS(1477), - [anon_sym_goto] = ACTIONS(1477), - [anon_sym___try] = ACTIONS(1477), - [anon_sym___leave] = ACTIONS(1477), - [anon_sym_DASH_DASH] = ACTIONS(1479), - [anon_sym_PLUS_PLUS] = ACTIONS(1479), - [anon_sym_sizeof] = ACTIONS(1477), - [anon_sym___alignof__] = ACTIONS(1477), - [anon_sym___alignof] = ACTIONS(1477), - [anon_sym__alignof] = ACTIONS(1477), - [anon_sym_alignof] = ACTIONS(1477), - [anon_sym__Alignof] = ACTIONS(1477), - [anon_sym_offsetof] = ACTIONS(1477), - [anon_sym__Generic] = ACTIONS(1477), - [anon_sym_asm] = ACTIONS(1477), - [anon_sym___asm__] = ACTIONS(1477), - [sym_number_literal] = ACTIONS(1479), - [anon_sym_L_SQUOTE] = ACTIONS(1479), - [anon_sym_u_SQUOTE] = ACTIONS(1479), - [anon_sym_U_SQUOTE] = ACTIONS(1479), - [anon_sym_u8_SQUOTE] = ACTIONS(1479), - [anon_sym_SQUOTE] = ACTIONS(1479), - [anon_sym_L_DQUOTE] = ACTIONS(1479), - [anon_sym_u_DQUOTE] = ACTIONS(1479), - [anon_sym_U_DQUOTE] = ACTIONS(1479), - [anon_sym_u8_DQUOTE] = ACTIONS(1479), - [anon_sym_DQUOTE] = ACTIONS(1479), - [sym_true] = ACTIONS(1477), - [sym_false] = ACTIONS(1477), - [anon_sym_NULL] = ACTIONS(1477), - [anon_sym_nullptr] = ACTIONS(1477), + [sym_identifier] = ACTIONS(1500), + [aux_sym_preproc_include_token1] = ACTIONS(1500), + [aux_sym_preproc_def_token1] = ACTIONS(1500), + [aux_sym_preproc_if_token1] = ACTIONS(1500), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1500), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1500), + [sym_preproc_directive] = ACTIONS(1500), + [anon_sym_LPAREN2] = ACTIONS(1502), + [anon_sym_BANG] = ACTIONS(1502), + [anon_sym_TILDE] = ACTIONS(1502), + [anon_sym_DASH] = ACTIONS(1500), + [anon_sym_PLUS] = ACTIONS(1500), + [anon_sym_STAR] = ACTIONS(1502), + [anon_sym_AMP] = ACTIONS(1502), + [anon_sym_SEMI] = ACTIONS(1502), + [anon_sym___extension__] = ACTIONS(1500), + [anon_sym_typedef] = ACTIONS(1500), + [anon_sym_extern] = ACTIONS(1500), + [anon_sym___attribute__] = ACTIONS(1500), + [anon_sym___scanf] = ACTIONS(1500), + [anon_sym___printf] = ACTIONS(1500), + [anon_sym___read_mostly] = ACTIONS(1500), + [anon_sym___must_hold] = ACTIONS(1500), + [anon_sym___ro_after_init] = ACTIONS(1500), + [anon_sym___init] = ACTIONS(1500), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1502), + [anon_sym___declspec] = ACTIONS(1500), + [anon_sym___cdecl] = ACTIONS(1500), + [anon_sym___clrcall] = ACTIONS(1500), + [anon_sym___stdcall] = ACTIONS(1500), + [anon_sym___fastcall] = ACTIONS(1500), + [anon_sym___thiscall] = ACTIONS(1500), + [anon_sym___vectorcall] = ACTIONS(1500), + [anon_sym_LBRACE] = ACTIONS(1502), + [anon_sym_RBRACE] = ACTIONS(1502), + [anon_sym_signed] = ACTIONS(1500), + [anon_sym_unsigned] = ACTIONS(1500), + [anon_sym_long] = ACTIONS(1500), + [anon_sym_short] = ACTIONS(1500), + [anon_sym_static] = ACTIONS(1500), + [anon_sym_auto] = ACTIONS(1500), + [anon_sym_register] = ACTIONS(1500), + [anon_sym_inline] = ACTIONS(1500), + [anon_sym___inline] = ACTIONS(1500), + [anon_sym___inline__] = ACTIONS(1500), + [anon_sym___forceinline] = ACTIONS(1500), + [anon_sym_thread_local] = ACTIONS(1500), + [anon_sym___thread] = ACTIONS(1500), + [anon_sym_const] = ACTIONS(1500), + [anon_sym_constexpr] = ACTIONS(1500), + [anon_sym_volatile] = ACTIONS(1500), + [anon_sym_restrict] = ACTIONS(1500), + [anon_sym___restrict__] = ACTIONS(1500), + [anon_sym__Atomic] = ACTIONS(1500), + [anon_sym__Noreturn] = ACTIONS(1500), + [anon_sym_noreturn] = ACTIONS(1500), + [sym_primitive_type] = ACTIONS(1500), + [anon_sym_enum] = ACTIONS(1500), + [anon_sym_struct] = ACTIONS(1500), + [anon_sym_union] = ACTIONS(1500), + [anon_sym_if] = ACTIONS(1500), + [anon_sym_switch] = ACTIONS(1500), + [anon_sym_case] = ACTIONS(1500), + [anon_sym_default] = ACTIONS(1500), + [anon_sym_while] = ACTIONS(1500), + [anon_sym_do] = ACTIONS(1500), + [anon_sym_for] = ACTIONS(1500), + [anon_sym_return] = ACTIONS(1500), + [anon_sym_break] = ACTIONS(1500), + [anon_sym_continue] = ACTIONS(1500), + [anon_sym_goto] = ACTIONS(1500), + [anon_sym___try] = ACTIONS(1500), + [anon_sym___leave] = ACTIONS(1500), + [anon_sym_DASH_DASH] = ACTIONS(1502), + [anon_sym_PLUS_PLUS] = ACTIONS(1502), + [anon_sym_sizeof] = ACTIONS(1500), + [anon_sym___alignof__] = ACTIONS(1500), + [anon_sym___alignof] = ACTIONS(1500), + [anon_sym__alignof] = ACTIONS(1500), + [anon_sym_alignof] = ACTIONS(1500), + [anon_sym__Alignof] = ACTIONS(1500), + [anon_sym_offsetof] = ACTIONS(1500), + [anon_sym__Generic] = ACTIONS(1500), + [anon_sym_asm] = ACTIONS(1500), + [anon_sym___asm__] = ACTIONS(1500), + [sym_number_literal] = ACTIONS(1502), + [anon_sym_L_SQUOTE] = ACTIONS(1502), + [anon_sym_u_SQUOTE] = ACTIONS(1502), + [anon_sym_U_SQUOTE] = ACTIONS(1502), + [anon_sym_u8_SQUOTE] = ACTIONS(1502), + [anon_sym_SQUOTE] = ACTIONS(1502), + [anon_sym_L_DQUOTE] = ACTIONS(1502), + [anon_sym_u_DQUOTE] = ACTIONS(1502), + [anon_sym_U_DQUOTE] = ACTIONS(1502), + [anon_sym_u8_DQUOTE] = ACTIONS(1502), + [anon_sym_DQUOTE] = ACTIONS(1502), + [sym_true] = ACTIONS(1500), + [sym_false] = ACTIONS(1500), + [anon_sym_NULL] = ACTIONS(1500), + [anon_sym_nullptr] = ACTIONS(1500), [sym_comment] = ACTIONS(3), }, [381] = { - [sym_identifier] = ACTIONS(1441), - [aux_sym_preproc_include_token1] = ACTIONS(1441), - [aux_sym_preproc_def_token1] = ACTIONS(1441), - [aux_sym_preproc_if_token1] = ACTIONS(1441), - [aux_sym_preproc_if_token2] = ACTIONS(1441), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1441), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1441), - [sym_preproc_directive] = ACTIONS(1441), - [anon_sym_LPAREN2] = ACTIONS(1443), - [anon_sym_BANG] = ACTIONS(1443), - [anon_sym_TILDE] = ACTIONS(1443), - [anon_sym_DASH] = ACTIONS(1441), - [anon_sym_PLUS] = ACTIONS(1441), - [anon_sym_STAR] = ACTIONS(1443), - [anon_sym_AMP] = ACTIONS(1443), - [anon_sym_SEMI] = ACTIONS(1443), - [anon_sym___extension__] = ACTIONS(1441), - [anon_sym_typedef] = ACTIONS(1441), - [anon_sym_extern] = ACTIONS(1441), - [anon_sym___attribute__] = ACTIONS(1441), - [anon_sym___scanf] = ACTIONS(1441), - [anon_sym___printf] = ACTIONS(1441), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1443), - [anon_sym___declspec] = ACTIONS(1441), - [anon_sym___cdecl] = ACTIONS(1441), - [anon_sym___clrcall] = ACTIONS(1441), - [anon_sym___stdcall] = ACTIONS(1441), - [anon_sym___fastcall] = ACTIONS(1441), - [anon_sym___thiscall] = ACTIONS(1441), - [anon_sym___vectorcall] = ACTIONS(1441), - [anon_sym_LBRACE] = ACTIONS(1443), - [anon_sym_signed] = ACTIONS(1441), - [anon_sym_unsigned] = ACTIONS(1441), - [anon_sym_long] = ACTIONS(1441), - [anon_sym_short] = ACTIONS(1441), - [anon_sym_static] = ACTIONS(1441), - [anon_sym_auto] = ACTIONS(1441), - [anon_sym_register] = ACTIONS(1441), - [anon_sym_inline] = ACTIONS(1441), - [anon_sym___inline] = ACTIONS(1441), - [anon_sym___inline__] = ACTIONS(1441), - [anon_sym___forceinline] = ACTIONS(1441), - [anon_sym_thread_local] = ACTIONS(1441), - [anon_sym___thread] = ACTIONS(1441), - [anon_sym_const] = ACTIONS(1441), - [anon_sym_constexpr] = ACTIONS(1441), - [anon_sym_volatile] = ACTIONS(1441), - [anon_sym_restrict] = ACTIONS(1441), - [anon_sym___restrict__] = ACTIONS(1441), - [anon_sym__Atomic] = ACTIONS(1441), - [anon_sym__Noreturn] = ACTIONS(1441), - [anon_sym_noreturn] = ACTIONS(1441), - [sym_primitive_type] = ACTIONS(1441), - [anon_sym_enum] = ACTIONS(1441), - [anon_sym_struct] = ACTIONS(1441), - [anon_sym_union] = ACTIONS(1441), - [anon_sym_if] = ACTIONS(1441), - [anon_sym_switch] = ACTIONS(1441), - [anon_sym_case] = ACTIONS(1441), - [anon_sym_default] = ACTIONS(1441), - [anon_sym_while] = ACTIONS(1441), - [anon_sym_do] = ACTIONS(1441), - [anon_sym_for] = ACTIONS(1441), - [anon_sym_return] = ACTIONS(1441), - [anon_sym_break] = ACTIONS(1441), - [anon_sym_continue] = ACTIONS(1441), - [anon_sym_goto] = ACTIONS(1441), - [anon_sym___try] = ACTIONS(1441), - [anon_sym___leave] = ACTIONS(1441), - [anon_sym_DASH_DASH] = ACTIONS(1443), - [anon_sym_PLUS_PLUS] = ACTIONS(1443), - [anon_sym_sizeof] = ACTIONS(1441), - [anon_sym___alignof__] = ACTIONS(1441), - [anon_sym___alignof] = ACTIONS(1441), - [anon_sym__alignof] = ACTIONS(1441), - [anon_sym_alignof] = ACTIONS(1441), - [anon_sym__Alignof] = ACTIONS(1441), - [anon_sym_offsetof] = ACTIONS(1441), - [anon_sym__Generic] = ACTIONS(1441), - [anon_sym_asm] = ACTIONS(1441), - [anon_sym___asm__] = ACTIONS(1441), - [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(1441), - [sym_false] = ACTIONS(1441), - [anon_sym_NULL] = ACTIONS(1441), - [anon_sym_nullptr] = ACTIONS(1441), + [sym_identifier] = ACTIONS(1504), + [aux_sym_preproc_include_token1] = ACTIONS(1504), + [aux_sym_preproc_def_token1] = ACTIONS(1504), + [aux_sym_preproc_if_token1] = ACTIONS(1504), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1504), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1504), + [sym_preproc_directive] = ACTIONS(1504), + [anon_sym_LPAREN2] = ACTIONS(1506), + [anon_sym_BANG] = ACTIONS(1506), + [anon_sym_TILDE] = ACTIONS(1506), + [anon_sym_DASH] = ACTIONS(1504), + [anon_sym_PLUS] = ACTIONS(1504), + [anon_sym_STAR] = ACTIONS(1506), + [anon_sym_AMP] = ACTIONS(1506), + [anon_sym_SEMI] = ACTIONS(1506), + [anon_sym___extension__] = ACTIONS(1504), + [anon_sym_typedef] = ACTIONS(1504), + [anon_sym_extern] = ACTIONS(1504), + [anon_sym___attribute__] = ACTIONS(1504), + [anon_sym___scanf] = ACTIONS(1504), + [anon_sym___printf] = ACTIONS(1504), + [anon_sym___read_mostly] = ACTIONS(1504), + [anon_sym___must_hold] = ACTIONS(1504), + [anon_sym___ro_after_init] = ACTIONS(1504), + [anon_sym___init] = ACTIONS(1504), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1506), + [anon_sym___declspec] = ACTIONS(1504), + [anon_sym___cdecl] = ACTIONS(1504), + [anon_sym___clrcall] = ACTIONS(1504), + [anon_sym___stdcall] = ACTIONS(1504), + [anon_sym___fastcall] = ACTIONS(1504), + [anon_sym___thiscall] = ACTIONS(1504), + [anon_sym___vectorcall] = ACTIONS(1504), + [anon_sym_LBRACE] = ACTIONS(1506), + [anon_sym_RBRACE] = ACTIONS(1506), + [anon_sym_signed] = ACTIONS(1504), + [anon_sym_unsigned] = ACTIONS(1504), + [anon_sym_long] = ACTIONS(1504), + [anon_sym_short] = ACTIONS(1504), + [anon_sym_static] = ACTIONS(1504), + [anon_sym_auto] = ACTIONS(1504), + [anon_sym_register] = ACTIONS(1504), + [anon_sym_inline] = ACTIONS(1504), + [anon_sym___inline] = ACTIONS(1504), + [anon_sym___inline__] = ACTIONS(1504), + [anon_sym___forceinline] = ACTIONS(1504), + [anon_sym_thread_local] = ACTIONS(1504), + [anon_sym___thread] = ACTIONS(1504), + [anon_sym_const] = ACTIONS(1504), + [anon_sym_constexpr] = ACTIONS(1504), + [anon_sym_volatile] = ACTIONS(1504), + [anon_sym_restrict] = ACTIONS(1504), + [anon_sym___restrict__] = ACTIONS(1504), + [anon_sym__Atomic] = ACTIONS(1504), + [anon_sym__Noreturn] = ACTIONS(1504), + [anon_sym_noreturn] = ACTIONS(1504), + [sym_primitive_type] = ACTIONS(1504), + [anon_sym_enum] = ACTIONS(1504), + [anon_sym_struct] = ACTIONS(1504), + [anon_sym_union] = ACTIONS(1504), + [anon_sym_if] = ACTIONS(1504), + [anon_sym_switch] = ACTIONS(1504), + [anon_sym_case] = ACTIONS(1504), + [anon_sym_default] = ACTIONS(1504), + [anon_sym_while] = ACTIONS(1504), + [anon_sym_do] = ACTIONS(1504), + [anon_sym_for] = ACTIONS(1504), + [anon_sym_return] = ACTIONS(1504), + [anon_sym_break] = ACTIONS(1504), + [anon_sym_continue] = ACTIONS(1504), + [anon_sym_goto] = ACTIONS(1504), + [anon_sym___try] = ACTIONS(1504), + [anon_sym___leave] = ACTIONS(1504), + [anon_sym_DASH_DASH] = ACTIONS(1506), + [anon_sym_PLUS_PLUS] = ACTIONS(1506), + [anon_sym_sizeof] = ACTIONS(1504), + [anon_sym___alignof__] = ACTIONS(1504), + [anon_sym___alignof] = ACTIONS(1504), + [anon_sym__alignof] = ACTIONS(1504), + [anon_sym_alignof] = ACTIONS(1504), + [anon_sym__Alignof] = ACTIONS(1504), + [anon_sym_offsetof] = ACTIONS(1504), + [anon_sym__Generic] = ACTIONS(1504), + [anon_sym_asm] = ACTIONS(1504), + [anon_sym___asm__] = ACTIONS(1504), + [sym_number_literal] = ACTIONS(1506), + [anon_sym_L_SQUOTE] = ACTIONS(1506), + [anon_sym_u_SQUOTE] = ACTIONS(1506), + [anon_sym_U_SQUOTE] = ACTIONS(1506), + [anon_sym_u8_SQUOTE] = ACTIONS(1506), + [anon_sym_SQUOTE] = ACTIONS(1506), + [anon_sym_L_DQUOTE] = ACTIONS(1506), + [anon_sym_u_DQUOTE] = ACTIONS(1506), + [anon_sym_U_DQUOTE] = ACTIONS(1506), + [anon_sym_u8_DQUOTE] = ACTIONS(1506), + [anon_sym_DQUOTE] = ACTIONS(1506), + [sym_true] = ACTIONS(1504), + [sym_false] = ACTIONS(1504), + [anon_sym_NULL] = ACTIONS(1504), + [anon_sym_nullptr] = ACTIONS(1504), [sym_comment] = ACTIONS(3), }, [382] = { - [sym_identifier] = ACTIONS(1481), - [aux_sym_preproc_include_token1] = ACTIONS(1481), - [aux_sym_preproc_def_token1] = ACTIONS(1481), - [aux_sym_preproc_if_token1] = ACTIONS(1481), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1481), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1481), - [sym_preproc_directive] = ACTIONS(1481), - [anon_sym_LPAREN2] = ACTIONS(1483), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_PLUS] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_SEMI] = ACTIONS(1483), - [anon_sym___extension__] = ACTIONS(1481), - [anon_sym_typedef] = ACTIONS(1481), - [anon_sym_extern] = ACTIONS(1481), - [anon_sym___attribute__] = ACTIONS(1481), - [anon_sym___scanf] = ACTIONS(1481), - [anon_sym___printf] = ACTIONS(1481), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1483), - [anon_sym___declspec] = ACTIONS(1481), - [anon_sym___cdecl] = ACTIONS(1481), - [anon_sym___clrcall] = ACTIONS(1481), - [anon_sym___stdcall] = ACTIONS(1481), - [anon_sym___fastcall] = ACTIONS(1481), - [anon_sym___thiscall] = ACTIONS(1481), - [anon_sym___vectorcall] = ACTIONS(1481), - [anon_sym_LBRACE] = ACTIONS(1483), - [anon_sym_RBRACE] = ACTIONS(1483), - [anon_sym_signed] = ACTIONS(1481), - [anon_sym_unsigned] = ACTIONS(1481), - [anon_sym_long] = ACTIONS(1481), - [anon_sym_short] = ACTIONS(1481), - [anon_sym_static] = ACTIONS(1481), - [anon_sym_auto] = ACTIONS(1481), - [anon_sym_register] = ACTIONS(1481), - [anon_sym_inline] = ACTIONS(1481), - [anon_sym___inline] = ACTIONS(1481), - [anon_sym___inline__] = ACTIONS(1481), - [anon_sym___forceinline] = ACTIONS(1481), - [anon_sym_thread_local] = ACTIONS(1481), - [anon_sym___thread] = ACTIONS(1481), - [anon_sym_const] = ACTIONS(1481), - [anon_sym_constexpr] = ACTIONS(1481), - [anon_sym_volatile] = ACTIONS(1481), - [anon_sym_restrict] = ACTIONS(1481), - [anon_sym___restrict__] = ACTIONS(1481), - [anon_sym__Atomic] = ACTIONS(1481), - [anon_sym__Noreturn] = ACTIONS(1481), - [anon_sym_noreturn] = ACTIONS(1481), - [sym_primitive_type] = ACTIONS(1481), - [anon_sym_enum] = ACTIONS(1481), - [anon_sym_struct] = ACTIONS(1481), - [anon_sym_union] = ACTIONS(1481), - [anon_sym_if] = ACTIONS(1481), - [anon_sym_switch] = ACTIONS(1481), - [anon_sym_case] = ACTIONS(1481), - [anon_sym_default] = ACTIONS(1481), - [anon_sym_while] = ACTIONS(1481), - [anon_sym_do] = ACTIONS(1481), - [anon_sym_for] = ACTIONS(1481), - [anon_sym_return] = ACTIONS(1481), - [anon_sym_break] = ACTIONS(1481), - [anon_sym_continue] = ACTIONS(1481), - [anon_sym_goto] = ACTIONS(1481), - [anon_sym___try] = ACTIONS(1481), - [anon_sym___leave] = ACTIONS(1481), - [anon_sym_DASH_DASH] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_sizeof] = ACTIONS(1481), - [anon_sym___alignof__] = ACTIONS(1481), - [anon_sym___alignof] = ACTIONS(1481), - [anon_sym__alignof] = ACTIONS(1481), - [anon_sym_alignof] = ACTIONS(1481), - [anon_sym__Alignof] = ACTIONS(1481), - [anon_sym_offsetof] = ACTIONS(1481), - [anon_sym__Generic] = ACTIONS(1481), - [anon_sym_asm] = ACTIONS(1481), - [anon_sym___asm__] = ACTIONS(1481), - [sym_number_literal] = ACTIONS(1483), - [anon_sym_L_SQUOTE] = ACTIONS(1483), - [anon_sym_u_SQUOTE] = ACTIONS(1483), - [anon_sym_U_SQUOTE] = ACTIONS(1483), - [anon_sym_u8_SQUOTE] = ACTIONS(1483), - [anon_sym_SQUOTE] = ACTIONS(1483), - [anon_sym_L_DQUOTE] = ACTIONS(1483), - [anon_sym_u_DQUOTE] = ACTIONS(1483), - [anon_sym_U_DQUOTE] = ACTIONS(1483), - [anon_sym_u8_DQUOTE] = ACTIONS(1483), - [anon_sym_DQUOTE] = ACTIONS(1483), - [sym_true] = ACTIONS(1481), - [sym_false] = ACTIONS(1481), - [anon_sym_NULL] = ACTIONS(1481), - [anon_sym_nullptr] = ACTIONS(1481), + [sym_identifier] = ACTIONS(1520), + [aux_sym_preproc_include_token1] = ACTIONS(1520), + [aux_sym_preproc_def_token1] = ACTIONS(1520), + [aux_sym_preproc_if_token1] = ACTIONS(1520), + [aux_sym_preproc_if_token2] = ACTIONS(1520), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1520), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1520), + [sym_preproc_directive] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), + [anon_sym_BANG] = ACTIONS(1522), + [anon_sym_TILDE] = ACTIONS(1522), + [anon_sym_DASH] = ACTIONS(1520), + [anon_sym_PLUS] = ACTIONS(1520), + [anon_sym_STAR] = ACTIONS(1522), + [anon_sym_AMP] = ACTIONS(1522), + [anon_sym_SEMI] = ACTIONS(1522), + [anon_sym___extension__] = ACTIONS(1520), + [anon_sym_typedef] = ACTIONS(1520), + [anon_sym_extern] = ACTIONS(1520), + [anon_sym___attribute__] = ACTIONS(1520), + [anon_sym___scanf] = ACTIONS(1520), + [anon_sym___printf] = ACTIONS(1520), + [anon_sym___read_mostly] = ACTIONS(1520), + [anon_sym___must_hold] = ACTIONS(1520), + [anon_sym___ro_after_init] = ACTIONS(1520), + [anon_sym___init] = ACTIONS(1520), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1522), + [anon_sym___declspec] = ACTIONS(1520), + [anon_sym___cdecl] = ACTIONS(1520), + [anon_sym___clrcall] = ACTIONS(1520), + [anon_sym___stdcall] = ACTIONS(1520), + [anon_sym___fastcall] = ACTIONS(1520), + [anon_sym___thiscall] = ACTIONS(1520), + [anon_sym___vectorcall] = ACTIONS(1520), + [anon_sym_LBRACE] = ACTIONS(1522), + [anon_sym_signed] = ACTIONS(1520), + [anon_sym_unsigned] = ACTIONS(1520), + [anon_sym_long] = ACTIONS(1520), + [anon_sym_short] = ACTIONS(1520), + [anon_sym_static] = ACTIONS(1520), + [anon_sym_auto] = ACTIONS(1520), + [anon_sym_register] = ACTIONS(1520), + [anon_sym_inline] = ACTIONS(1520), + [anon_sym___inline] = ACTIONS(1520), + [anon_sym___inline__] = ACTIONS(1520), + [anon_sym___forceinline] = ACTIONS(1520), + [anon_sym_thread_local] = ACTIONS(1520), + [anon_sym___thread] = ACTIONS(1520), + [anon_sym_const] = ACTIONS(1520), + [anon_sym_constexpr] = ACTIONS(1520), + [anon_sym_volatile] = ACTIONS(1520), + [anon_sym_restrict] = ACTIONS(1520), + [anon_sym___restrict__] = ACTIONS(1520), + [anon_sym__Atomic] = ACTIONS(1520), + [anon_sym__Noreturn] = ACTIONS(1520), + [anon_sym_noreturn] = ACTIONS(1520), + [sym_primitive_type] = ACTIONS(1520), + [anon_sym_enum] = ACTIONS(1520), + [anon_sym_struct] = ACTIONS(1520), + [anon_sym_union] = ACTIONS(1520), + [anon_sym_if] = ACTIONS(1520), + [anon_sym_switch] = ACTIONS(1520), + [anon_sym_case] = ACTIONS(1520), + [anon_sym_default] = ACTIONS(1520), + [anon_sym_while] = ACTIONS(1520), + [anon_sym_do] = ACTIONS(1520), + [anon_sym_for] = ACTIONS(1520), + [anon_sym_return] = ACTIONS(1520), + [anon_sym_break] = ACTIONS(1520), + [anon_sym_continue] = ACTIONS(1520), + [anon_sym_goto] = ACTIONS(1520), + [anon_sym___try] = ACTIONS(1520), + [anon_sym___leave] = ACTIONS(1520), + [anon_sym_DASH_DASH] = ACTIONS(1522), + [anon_sym_PLUS_PLUS] = ACTIONS(1522), + [anon_sym_sizeof] = ACTIONS(1520), + [anon_sym___alignof__] = ACTIONS(1520), + [anon_sym___alignof] = ACTIONS(1520), + [anon_sym__alignof] = ACTIONS(1520), + [anon_sym_alignof] = ACTIONS(1520), + [anon_sym__Alignof] = ACTIONS(1520), + [anon_sym_offsetof] = ACTIONS(1520), + [anon_sym__Generic] = ACTIONS(1520), + [anon_sym_asm] = ACTIONS(1520), + [anon_sym___asm__] = ACTIONS(1520), + [sym_number_literal] = ACTIONS(1522), + [anon_sym_L_SQUOTE] = ACTIONS(1522), + [anon_sym_u_SQUOTE] = ACTIONS(1522), + [anon_sym_U_SQUOTE] = ACTIONS(1522), + [anon_sym_u8_SQUOTE] = ACTIONS(1522), + [anon_sym_SQUOTE] = ACTIONS(1522), + [anon_sym_L_DQUOTE] = ACTIONS(1522), + [anon_sym_u_DQUOTE] = ACTIONS(1522), + [anon_sym_U_DQUOTE] = ACTIONS(1522), + [anon_sym_u8_DQUOTE] = ACTIONS(1522), + [anon_sym_DQUOTE] = ACTIONS(1522), + [sym_true] = ACTIONS(1520), + [sym_false] = ACTIONS(1520), + [anon_sym_NULL] = ACTIONS(1520), + [anon_sym_nullptr] = ACTIONS(1520), [sym_comment] = ACTIONS(3), }, [383] = { - [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_if_token2] = 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(1451), - [anon_sym_BANG] = ACTIONS(1451), - [anon_sym_TILDE] = ACTIONS(1451), - [anon_sym_DASH] = ACTIONS(1449), - [anon_sym_PLUS] = ACTIONS(1449), - [anon_sym_STAR] = ACTIONS(1451), - [anon_sym_AMP] = ACTIONS(1451), - [anon_sym_SEMI] = ACTIONS(1451), - [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_LBRACK_LBRACK] = ACTIONS(1451), - [anon_sym___declspec] = 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(1451), - [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), - [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___try] = ACTIONS(1449), - [anon_sym___leave] = ACTIONS(1449), - [anon_sym_DASH_DASH] = ACTIONS(1451), - [anon_sym_PLUS_PLUS] = ACTIONS(1451), - [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(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(1449), - [sym_false] = ACTIONS(1449), - [anon_sym_NULL] = ACTIONS(1449), - [anon_sym_nullptr] = ACTIONS(1449), + [sym_identifier] = ACTIONS(1524), + [aux_sym_preproc_include_token1] = ACTIONS(1524), + [aux_sym_preproc_def_token1] = ACTIONS(1524), + [aux_sym_preproc_if_token1] = ACTIONS(1524), + [aux_sym_preproc_if_token2] = ACTIONS(1524), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1524), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1524), + [sym_preproc_directive] = ACTIONS(1524), + [anon_sym_LPAREN2] = ACTIONS(1526), + [anon_sym_BANG] = ACTIONS(1526), + [anon_sym_TILDE] = ACTIONS(1526), + [anon_sym_DASH] = ACTIONS(1524), + [anon_sym_PLUS] = ACTIONS(1524), + [anon_sym_STAR] = ACTIONS(1526), + [anon_sym_AMP] = ACTIONS(1526), + [anon_sym_SEMI] = ACTIONS(1526), + [anon_sym___extension__] = ACTIONS(1524), + [anon_sym_typedef] = ACTIONS(1524), + [anon_sym_extern] = ACTIONS(1524), + [anon_sym___attribute__] = ACTIONS(1524), + [anon_sym___scanf] = ACTIONS(1524), + [anon_sym___printf] = ACTIONS(1524), + [anon_sym___read_mostly] = ACTIONS(1524), + [anon_sym___must_hold] = ACTIONS(1524), + [anon_sym___ro_after_init] = ACTIONS(1524), + [anon_sym___init] = ACTIONS(1524), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1526), + [anon_sym___declspec] = ACTIONS(1524), + [anon_sym___cdecl] = ACTIONS(1524), + [anon_sym___clrcall] = ACTIONS(1524), + [anon_sym___stdcall] = ACTIONS(1524), + [anon_sym___fastcall] = ACTIONS(1524), + [anon_sym___thiscall] = ACTIONS(1524), + [anon_sym___vectorcall] = ACTIONS(1524), + [anon_sym_LBRACE] = ACTIONS(1526), + [anon_sym_signed] = ACTIONS(1524), + [anon_sym_unsigned] = ACTIONS(1524), + [anon_sym_long] = ACTIONS(1524), + [anon_sym_short] = ACTIONS(1524), + [anon_sym_static] = ACTIONS(1524), + [anon_sym_auto] = ACTIONS(1524), + [anon_sym_register] = ACTIONS(1524), + [anon_sym_inline] = ACTIONS(1524), + [anon_sym___inline] = ACTIONS(1524), + [anon_sym___inline__] = ACTIONS(1524), + [anon_sym___forceinline] = ACTIONS(1524), + [anon_sym_thread_local] = ACTIONS(1524), + [anon_sym___thread] = ACTIONS(1524), + [anon_sym_const] = ACTIONS(1524), + [anon_sym_constexpr] = ACTIONS(1524), + [anon_sym_volatile] = ACTIONS(1524), + [anon_sym_restrict] = ACTIONS(1524), + [anon_sym___restrict__] = ACTIONS(1524), + [anon_sym__Atomic] = ACTIONS(1524), + [anon_sym__Noreturn] = ACTIONS(1524), + [anon_sym_noreturn] = ACTIONS(1524), + [sym_primitive_type] = ACTIONS(1524), + [anon_sym_enum] = ACTIONS(1524), + [anon_sym_struct] = ACTIONS(1524), + [anon_sym_union] = ACTIONS(1524), + [anon_sym_if] = ACTIONS(1524), + [anon_sym_switch] = ACTIONS(1524), + [anon_sym_case] = ACTIONS(1524), + [anon_sym_default] = ACTIONS(1524), + [anon_sym_while] = ACTIONS(1524), + [anon_sym_do] = ACTIONS(1524), + [anon_sym_for] = ACTIONS(1524), + [anon_sym_return] = ACTIONS(1524), + [anon_sym_break] = ACTIONS(1524), + [anon_sym_continue] = ACTIONS(1524), + [anon_sym_goto] = ACTIONS(1524), + [anon_sym___try] = ACTIONS(1524), + [anon_sym___leave] = ACTIONS(1524), + [anon_sym_DASH_DASH] = ACTIONS(1526), + [anon_sym_PLUS_PLUS] = ACTIONS(1526), + [anon_sym_sizeof] = ACTIONS(1524), + [anon_sym___alignof__] = ACTIONS(1524), + [anon_sym___alignof] = ACTIONS(1524), + [anon_sym__alignof] = ACTIONS(1524), + [anon_sym_alignof] = ACTIONS(1524), + [anon_sym__Alignof] = ACTIONS(1524), + [anon_sym_offsetof] = ACTIONS(1524), + [anon_sym__Generic] = ACTIONS(1524), + [anon_sym_asm] = ACTIONS(1524), + [anon_sym___asm__] = ACTIONS(1524), + [sym_number_literal] = ACTIONS(1526), + [anon_sym_L_SQUOTE] = ACTIONS(1526), + [anon_sym_u_SQUOTE] = ACTIONS(1526), + [anon_sym_U_SQUOTE] = ACTIONS(1526), + [anon_sym_u8_SQUOTE] = ACTIONS(1526), + [anon_sym_SQUOTE] = ACTIONS(1526), + [anon_sym_L_DQUOTE] = ACTIONS(1526), + [anon_sym_u_DQUOTE] = ACTIONS(1526), + [anon_sym_U_DQUOTE] = ACTIONS(1526), + [anon_sym_u8_DQUOTE] = ACTIONS(1526), + [anon_sym_DQUOTE] = ACTIONS(1526), + [sym_true] = ACTIONS(1524), + [sym_false] = ACTIONS(1524), + [anon_sym_NULL] = ACTIONS(1524), + [anon_sym_nullptr] = ACTIONS(1524), [sym_comment] = ACTIONS(3), }, [384] = { - [sym_identifier] = ACTIONS(1511), - [aux_sym_preproc_include_token1] = ACTIONS(1511), - [aux_sym_preproc_def_token1] = ACTIONS(1511), - [aux_sym_preproc_if_token1] = ACTIONS(1511), - [aux_sym_preproc_if_token2] = ACTIONS(1511), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1511), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1511), - [sym_preproc_directive] = ACTIONS(1511), - [anon_sym_LPAREN2] = ACTIONS(1513), - [anon_sym_BANG] = ACTIONS(1513), - [anon_sym_TILDE] = ACTIONS(1513), - [anon_sym_DASH] = ACTIONS(1511), - [anon_sym_PLUS] = ACTIONS(1511), - [anon_sym_STAR] = ACTIONS(1513), - [anon_sym_AMP] = ACTIONS(1513), - [anon_sym_SEMI] = ACTIONS(1513), - [anon_sym___extension__] = ACTIONS(1511), - [anon_sym_typedef] = ACTIONS(1511), - [anon_sym_extern] = ACTIONS(1511), - [anon_sym___attribute__] = ACTIONS(1511), - [anon_sym___scanf] = ACTIONS(1511), - [anon_sym___printf] = ACTIONS(1511), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1513), - [anon_sym___declspec] = ACTIONS(1511), - [anon_sym___cdecl] = ACTIONS(1511), - [anon_sym___clrcall] = ACTIONS(1511), - [anon_sym___stdcall] = ACTIONS(1511), - [anon_sym___fastcall] = ACTIONS(1511), - [anon_sym___thiscall] = ACTIONS(1511), - [anon_sym___vectorcall] = ACTIONS(1511), - [anon_sym_LBRACE] = ACTIONS(1513), - [anon_sym_signed] = ACTIONS(1511), - [anon_sym_unsigned] = ACTIONS(1511), - [anon_sym_long] = ACTIONS(1511), - [anon_sym_short] = ACTIONS(1511), - [anon_sym_static] = ACTIONS(1511), - [anon_sym_auto] = ACTIONS(1511), - [anon_sym_register] = ACTIONS(1511), - [anon_sym_inline] = ACTIONS(1511), - [anon_sym___inline] = ACTIONS(1511), - [anon_sym___inline__] = ACTIONS(1511), - [anon_sym___forceinline] = ACTIONS(1511), - [anon_sym_thread_local] = ACTIONS(1511), - [anon_sym___thread] = ACTIONS(1511), - [anon_sym_const] = ACTIONS(1511), - [anon_sym_constexpr] = ACTIONS(1511), - [anon_sym_volatile] = ACTIONS(1511), - [anon_sym_restrict] = ACTIONS(1511), - [anon_sym___restrict__] = ACTIONS(1511), - [anon_sym__Atomic] = ACTIONS(1511), - [anon_sym__Noreturn] = ACTIONS(1511), - [anon_sym_noreturn] = ACTIONS(1511), - [sym_primitive_type] = ACTIONS(1511), - [anon_sym_enum] = ACTIONS(1511), - [anon_sym_struct] = ACTIONS(1511), - [anon_sym_union] = ACTIONS(1511), - [anon_sym_if] = ACTIONS(1511), - [anon_sym_switch] = ACTIONS(1511), - [anon_sym_case] = ACTIONS(1511), - [anon_sym_default] = ACTIONS(1511), - [anon_sym_while] = ACTIONS(1511), - [anon_sym_do] = ACTIONS(1511), - [anon_sym_for] = ACTIONS(1511), - [anon_sym_return] = ACTIONS(1511), - [anon_sym_break] = ACTIONS(1511), - [anon_sym_continue] = ACTIONS(1511), - [anon_sym_goto] = ACTIONS(1511), - [anon_sym___try] = ACTIONS(1511), - [anon_sym___leave] = ACTIONS(1511), - [anon_sym_DASH_DASH] = ACTIONS(1513), - [anon_sym_PLUS_PLUS] = ACTIONS(1513), - [anon_sym_sizeof] = ACTIONS(1511), - [anon_sym___alignof__] = ACTIONS(1511), - [anon_sym___alignof] = ACTIONS(1511), - [anon_sym__alignof] = ACTIONS(1511), - [anon_sym_alignof] = ACTIONS(1511), - [anon_sym__Alignof] = ACTIONS(1511), - [anon_sym_offsetof] = ACTIONS(1511), - [anon_sym__Generic] = ACTIONS(1511), - [anon_sym_asm] = ACTIONS(1511), - [anon_sym___asm__] = ACTIONS(1511), - [sym_number_literal] = ACTIONS(1513), - [anon_sym_L_SQUOTE] = ACTIONS(1513), - [anon_sym_u_SQUOTE] = ACTIONS(1513), - [anon_sym_U_SQUOTE] = ACTIONS(1513), - [anon_sym_u8_SQUOTE] = ACTIONS(1513), - [anon_sym_SQUOTE] = ACTIONS(1513), - [anon_sym_L_DQUOTE] = ACTIONS(1513), - [anon_sym_u_DQUOTE] = ACTIONS(1513), - [anon_sym_U_DQUOTE] = ACTIONS(1513), - [anon_sym_u8_DQUOTE] = ACTIONS(1513), - [anon_sym_DQUOTE] = ACTIONS(1513), - [sym_true] = ACTIONS(1511), - [sym_false] = ACTIONS(1511), - [anon_sym_NULL] = ACTIONS(1511), - [anon_sym_nullptr] = ACTIONS(1511), + [sym_identifier] = ACTIONS(1440), + [aux_sym_preproc_include_token1] = ACTIONS(1440), + [aux_sym_preproc_def_token1] = ACTIONS(1440), + [aux_sym_preproc_if_token1] = ACTIONS(1440), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1440), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1440), + [sym_preproc_directive] = ACTIONS(1440), + [anon_sym_LPAREN2] = ACTIONS(1442), + [anon_sym_BANG] = ACTIONS(1442), + [anon_sym_TILDE] = ACTIONS(1442), + [anon_sym_DASH] = ACTIONS(1440), + [anon_sym_PLUS] = ACTIONS(1440), + [anon_sym_STAR] = ACTIONS(1442), + [anon_sym_AMP] = ACTIONS(1442), + [anon_sym_SEMI] = ACTIONS(1442), + [anon_sym___extension__] = ACTIONS(1440), + [anon_sym_typedef] = ACTIONS(1440), + [anon_sym_extern] = ACTIONS(1440), + [anon_sym___attribute__] = ACTIONS(1440), + [anon_sym___scanf] = ACTIONS(1440), + [anon_sym___printf] = ACTIONS(1440), + [anon_sym___read_mostly] = ACTIONS(1440), + [anon_sym___must_hold] = ACTIONS(1440), + [anon_sym___ro_after_init] = ACTIONS(1440), + [anon_sym___init] = ACTIONS(1440), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1442), + [anon_sym___declspec] = ACTIONS(1440), + [anon_sym___cdecl] = ACTIONS(1440), + [anon_sym___clrcall] = ACTIONS(1440), + [anon_sym___stdcall] = ACTIONS(1440), + [anon_sym___fastcall] = ACTIONS(1440), + [anon_sym___thiscall] = ACTIONS(1440), + [anon_sym___vectorcall] = ACTIONS(1440), + [anon_sym_LBRACE] = ACTIONS(1442), + [anon_sym_RBRACE] = ACTIONS(1442), + [anon_sym_signed] = ACTIONS(1440), + [anon_sym_unsigned] = ACTIONS(1440), + [anon_sym_long] = ACTIONS(1440), + [anon_sym_short] = ACTIONS(1440), + [anon_sym_static] = ACTIONS(1440), + [anon_sym_auto] = ACTIONS(1440), + [anon_sym_register] = ACTIONS(1440), + [anon_sym_inline] = ACTIONS(1440), + [anon_sym___inline] = ACTIONS(1440), + [anon_sym___inline__] = ACTIONS(1440), + [anon_sym___forceinline] = ACTIONS(1440), + [anon_sym_thread_local] = ACTIONS(1440), + [anon_sym___thread] = ACTIONS(1440), + [anon_sym_const] = ACTIONS(1440), + [anon_sym_constexpr] = ACTIONS(1440), + [anon_sym_volatile] = ACTIONS(1440), + [anon_sym_restrict] = ACTIONS(1440), + [anon_sym___restrict__] = ACTIONS(1440), + [anon_sym__Atomic] = ACTIONS(1440), + [anon_sym__Noreturn] = ACTIONS(1440), + [anon_sym_noreturn] = ACTIONS(1440), + [sym_primitive_type] = ACTIONS(1440), + [anon_sym_enum] = ACTIONS(1440), + [anon_sym_struct] = ACTIONS(1440), + [anon_sym_union] = ACTIONS(1440), + [anon_sym_if] = ACTIONS(1440), + [anon_sym_switch] = ACTIONS(1440), + [anon_sym_case] = ACTIONS(1440), + [anon_sym_default] = ACTIONS(1440), + [anon_sym_while] = ACTIONS(1440), + [anon_sym_do] = ACTIONS(1440), + [anon_sym_for] = ACTIONS(1440), + [anon_sym_return] = ACTIONS(1440), + [anon_sym_break] = ACTIONS(1440), + [anon_sym_continue] = ACTIONS(1440), + [anon_sym_goto] = ACTIONS(1440), + [anon_sym___try] = ACTIONS(1440), + [anon_sym___leave] = ACTIONS(1440), + [anon_sym_DASH_DASH] = ACTIONS(1442), + [anon_sym_PLUS_PLUS] = ACTIONS(1442), + [anon_sym_sizeof] = ACTIONS(1440), + [anon_sym___alignof__] = ACTIONS(1440), + [anon_sym___alignof] = ACTIONS(1440), + [anon_sym__alignof] = ACTIONS(1440), + [anon_sym_alignof] = ACTIONS(1440), + [anon_sym__Alignof] = ACTIONS(1440), + [anon_sym_offsetof] = ACTIONS(1440), + [anon_sym__Generic] = ACTIONS(1440), + [anon_sym_asm] = ACTIONS(1440), + [anon_sym___asm__] = ACTIONS(1440), + [sym_number_literal] = ACTIONS(1442), + [anon_sym_L_SQUOTE] = ACTIONS(1442), + [anon_sym_u_SQUOTE] = ACTIONS(1442), + [anon_sym_U_SQUOTE] = ACTIONS(1442), + [anon_sym_u8_SQUOTE] = ACTIONS(1442), + [anon_sym_SQUOTE] = ACTIONS(1442), + [anon_sym_L_DQUOTE] = ACTIONS(1442), + [anon_sym_u_DQUOTE] = ACTIONS(1442), + [anon_sym_U_DQUOTE] = ACTIONS(1442), + [anon_sym_u8_DQUOTE] = ACTIONS(1442), + [anon_sym_DQUOTE] = ACTIONS(1442), + [sym_true] = ACTIONS(1440), + [sym_false] = ACTIONS(1440), + [anon_sym_NULL] = ACTIONS(1440), + [anon_sym_nullptr] = ACTIONS(1440), [sym_comment] = ACTIONS(3), }, [385] = { - [sym_identifier] = ACTIONS(1421), - [aux_sym_preproc_include_token1] = ACTIONS(1421), - [aux_sym_preproc_def_token1] = ACTIONS(1421), - [aux_sym_preproc_if_token1] = ACTIONS(1421), - [aux_sym_preproc_if_token2] = ACTIONS(1421), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1421), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1421), - [sym_preproc_directive] = ACTIONS(1421), - [anon_sym_LPAREN2] = ACTIONS(1423), - [anon_sym_BANG] = ACTIONS(1423), - [anon_sym_TILDE] = ACTIONS(1423), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_PLUS] = ACTIONS(1421), - [anon_sym_STAR] = ACTIONS(1423), - [anon_sym_AMP] = ACTIONS(1423), - [anon_sym_SEMI] = ACTIONS(1423), - [anon_sym___extension__] = ACTIONS(1421), - [anon_sym_typedef] = ACTIONS(1421), - [anon_sym_extern] = ACTIONS(1421), - [anon_sym___attribute__] = ACTIONS(1421), - [anon_sym___scanf] = ACTIONS(1421), - [anon_sym___printf] = ACTIONS(1421), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1423), - [anon_sym___declspec] = ACTIONS(1421), - [anon_sym___cdecl] = ACTIONS(1421), - [anon_sym___clrcall] = ACTIONS(1421), - [anon_sym___stdcall] = ACTIONS(1421), - [anon_sym___fastcall] = ACTIONS(1421), - [anon_sym___thiscall] = ACTIONS(1421), - [anon_sym___vectorcall] = ACTIONS(1421), - [anon_sym_LBRACE] = ACTIONS(1423), - [anon_sym_signed] = ACTIONS(1421), - [anon_sym_unsigned] = ACTIONS(1421), - [anon_sym_long] = ACTIONS(1421), - [anon_sym_short] = ACTIONS(1421), - [anon_sym_static] = ACTIONS(1421), - [anon_sym_auto] = ACTIONS(1421), - [anon_sym_register] = ACTIONS(1421), - [anon_sym_inline] = ACTIONS(1421), - [anon_sym___inline] = ACTIONS(1421), - [anon_sym___inline__] = ACTIONS(1421), - [anon_sym___forceinline] = ACTIONS(1421), - [anon_sym_thread_local] = ACTIONS(1421), - [anon_sym___thread] = ACTIONS(1421), - [anon_sym_const] = ACTIONS(1421), - [anon_sym_constexpr] = ACTIONS(1421), - [anon_sym_volatile] = ACTIONS(1421), - [anon_sym_restrict] = ACTIONS(1421), - [anon_sym___restrict__] = ACTIONS(1421), - [anon_sym__Atomic] = ACTIONS(1421), - [anon_sym__Noreturn] = ACTIONS(1421), - [anon_sym_noreturn] = ACTIONS(1421), - [sym_primitive_type] = ACTIONS(1421), - [anon_sym_enum] = ACTIONS(1421), - [anon_sym_struct] = ACTIONS(1421), - [anon_sym_union] = ACTIONS(1421), - [anon_sym_if] = ACTIONS(1421), - [anon_sym_switch] = ACTIONS(1421), - [anon_sym_case] = ACTIONS(1421), - [anon_sym_default] = ACTIONS(1421), - [anon_sym_while] = ACTIONS(1421), - [anon_sym_do] = ACTIONS(1421), - [anon_sym_for] = ACTIONS(1421), - [anon_sym_return] = ACTIONS(1421), - [anon_sym_break] = ACTIONS(1421), - [anon_sym_continue] = ACTIONS(1421), - [anon_sym_goto] = ACTIONS(1421), - [anon_sym___try] = ACTIONS(1421), - [anon_sym___leave] = ACTIONS(1421), - [anon_sym_DASH_DASH] = ACTIONS(1423), - [anon_sym_PLUS_PLUS] = ACTIONS(1423), - [anon_sym_sizeof] = ACTIONS(1421), - [anon_sym___alignof__] = ACTIONS(1421), - [anon_sym___alignof] = ACTIONS(1421), - [anon_sym__alignof] = ACTIONS(1421), - [anon_sym_alignof] = ACTIONS(1421), - [anon_sym__Alignof] = ACTIONS(1421), - [anon_sym_offsetof] = ACTIONS(1421), - [anon_sym__Generic] = ACTIONS(1421), - [anon_sym_asm] = ACTIONS(1421), - [anon_sym___asm__] = ACTIONS(1421), - [sym_number_literal] = ACTIONS(1423), - [anon_sym_L_SQUOTE] = ACTIONS(1423), - [anon_sym_u_SQUOTE] = ACTIONS(1423), - [anon_sym_U_SQUOTE] = ACTIONS(1423), - [anon_sym_u8_SQUOTE] = ACTIONS(1423), - [anon_sym_SQUOTE] = ACTIONS(1423), - [anon_sym_L_DQUOTE] = ACTIONS(1423), - [anon_sym_u_DQUOTE] = ACTIONS(1423), - [anon_sym_U_DQUOTE] = ACTIONS(1423), - [anon_sym_u8_DQUOTE] = ACTIONS(1423), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_true] = ACTIONS(1421), - [sym_false] = ACTIONS(1421), - [anon_sym_NULL] = ACTIONS(1421), - [anon_sym_nullptr] = ACTIONS(1421), + [sym_identifier] = ACTIONS(1444), + [aux_sym_preproc_include_token1] = ACTIONS(1444), + [aux_sym_preproc_def_token1] = ACTIONS(1444), + [aux_sym_preproc_if_token1] = ACTIONS(1444), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1444), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1444), + [sym_preproc_directive] = ACTIONS(1444), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_BANG] = ACTIONS(1446), + [anon_sym_TILDE] = ACTIONS(1446), + [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_STAR] = ACTIONS(1446), + [anon_sym_AMP] = ACTIONS(1446), + [anon_sym_SEMI] = ACTIONS(1446), + [anon_sym___extension__] = ACTIONS(1444), + [anon_sym_typedef] = ACTIONS(1444), + [anon_sym_extern] = ACTIONS(1444), + [anon_sym___attribute__] = ACTIONS(1444), + [anon_sym___scanf] = ACTIONS(1444), + [anon_sym___printf] = ACTIONS(1444), + [anon_sym___read_mostly] = ACTIONS(1444), + [anon_sym___must_hold] = ACTIONS(1444), + [anon_sym___ro_after_init] = ACTIONS(1444), + [anon_sym___init] = ACTIONS(1444), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1446), + [anon_sym___declspec] = ACTIONS(1444), + [anon_sym___cdecl] = ACTIONS(1444), + [anon_sym___clrcall] = ACTIONS(1444), + [anon_sym___stdcall] = ACTIONS(1444), + [anon_sym___fastcall] = ACTIONS(1444), + [anon_sym___thiscall] = ACTIONS(1444), + [anon_sym___vectorcall] = ACTIONS(1444), + [anon_sym_LBRACE] = ACTIONS(1446), + [anon_sym_RBRACE] = ACTIONS(1446), + [anon_sym_signed] = ACTIONS(1444), + [anon_sym_unsigned] = ACTIONS(1444), + [anon_sym_long] = ACTIONS(1444), + [anon_sym_short] = ACTIONS(1444), + [anon_sym_static] = ACTIONS(1444), + [anon_sym_auto] = ACTIONS(1444), + [anon_sym_register] = ACTIONS(1444), + [anon_sym_inline] = ACTIONS(1444), + [anon_sym___inline] = ACTIONS(1444), + [anon_sym___inline__] = ACTIONS(1444), + [anon_sym___forceinline] = ACTIONS(1444), + [anon_sym_thread_local] = ACTIONS(1444), + [anon_sym___thread] = ACTIONS(1444), + [anon_sym_const] = ACTIONS(1444), + [anon_sym_constexpr] = ACTIONS(1444), + [anon_sym_volatile] = ACTIONS(1444), + [anon_sym_restrict] = ACTIONS(1444), + [anon_sym___restrict__] = ACTIONS(1444), + [anon_sym__Atomic] = ACTIONS(1444), + [anon_sym__Noreturn] = ACTIONS(1444), + [anon_sym_noreturn] = ACTIONS(1444), + [sym_primitive_type] = ACTIONS(1444), + [anon_sym_enum] = ACTIONS(1444), + [anon_sym_struct] = ACTIONS(1444), + [anon_sym_union] = ACTIONS(1444), + [anon_sym_if] = ACTIONS(1444), + [anon_sym_switch] = ACTIONS(1444), + [anon_sym_case] = ACTIONS(1444), + [anon_sym_default] = ACTIONS(1444), + [anon_sym_while] = ACTIONS(1444), + [anon_sym_do] = ACTIONS(1444), + [anon_sym_for] = ACTIONS(1444), + [anon_sym_return] = ACTIONS(1444), + [anon_sym_break] = ACTIONS(1444), + [anon_sym_continue] = ACTIONS(1444), + [anon_sym_goto] = ACTIONS(1444), + [anon_sym___try] = ACTIONS(1444), + [anon_sym___leave] = ACTIONS(1444), + [anon_sym_DASH_DASH] = ACTIONS(1446), + [anon_sym_PLUS_PLUS] = ACTIONS(1446), + [anon_sym_sizeof] = ACTIONS(1444), + [anon_sym___alignof__] = ACTIONS(1444), + [anon_sym___alignof] = ACTIONS(1444), + [anon_sym__alignof] = ACTIONS(1444), + [anon_sym_alignof] = ACTIONS(1444), + [anon_sym__Alignof] = ACTIONS(1444), + [anon_sym_offsetof] = ACTIONS(1444), + [anon_sym__Generic] = ACTIONS(1444), + [anon_sym_asm] = ACTIONS(1444), + [anon_sym___asm__] = ACTIONS(1444), + [sym_number_literal] = ACTIONS(1446), + [anon_sym_L_SQUOTE] = ACTIONS(1446), + [anon_sym_u_SQUOTE] = ACTIONS(1446), + [anon_sym_U_SQUOTE] = ACTIONS(1446), + [anon_sym_u8_SQUOTE] = ACTIONS(1446), + [anon_sym_SQUOTE] = ACTIONS(1446), + [anon_sym_L_DQUOTE] = ACTIONS(1446), + [anon_sym_u_DQUOTE] = ACTIONS(1446), + [anon_sym_U_DQUOTE] = ACTIONS(1446), + [anon_sym_u8_DQUOTE] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1446), + [sym_true] = ACTIONS(1444), + [sym_false] = ACTIONS(1444), + [anon_sym_NULL] = ACTIONS(1444), + [anon_sym_nullptr] = ACTIONS(1444), [sym_comment] = ACTIONS(3), }, [386] = { - [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_if_token2] = 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(1419), - [anon_sym_BANG] = ACTIONS(1419), - [anon_sym_TILDE] = ACTIONS(1419), - [anon_sym_DASH] = ACTIONS(1417), - [anon_sym_PLUS] = ACTIONS(1417), - [anon_sym_STAR] = ACTIONS(1419), - [anon_sym_AMP] = ACTIONS(1419), - [anon_sym_SEMI] = ACTIONS(1419), - [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_LBRACK_LBRACK] = ACTIONS(1419), - [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(1419), - [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), - [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___try] = ACTIONS(1417), - [anon_sym___leave] = ACTIONS(1417), - [anon_sym_DASH_DASH] = ACTIONS(1419), - [anon_sym_PLUS_PLUS] = ACTIONS(1419), - [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(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(1417), - [sym_false] = ACTIONS(1417), - [anon_sym_NULL] = ACTIONS(1417), - [anon_sym_nullptr] = ACTIONS(1417), + [sym_identifier] = ACTIONS(1432), + [aux_sym_preproc_include_token1] = ACTIONS(1432), + [aux_sym_preproc_def_token1] = ACTIONS(1432), + [aux_sym_preproc_if_token1] = ACTIONS(1432), + [aux_sym_preproc_if_token2] = ACTIONS(1432), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1432), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1432), + [sym_preproc_directive] = ACTIONS(1432), + [anon_sym_LPAREN2] = ACTIONS(1434), + [anon_sym_BANG] = ACTIONS(1434), + [anon_sym_TILDE] = ACTIONS(1434), + [anon_sym_DASH] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1432), + [anon_sym_STAR] = ACTIONS(1434), + [anon_sym_AMP] = ACTIONS(1434), + [anon_sym_SEMI] = ACTIONS(1434), + [anon_sym___extension__] = ACTIONS(1432), + [anon_sym_typedef] = ACTIONS(1432), + [anon_sym_extern] = ACTIONS(1432), + [anon_sym___attribute__] = ACTIONS(1432), + [anon_sym___scanf] = ACTIONS(1432), + [anon_sym___printf] = ACTIONS(1432), + [anon_sym___read_mostly] = ACTIONS(1432), + [anon_sym___must_hold] = ACTIONS(1432), + [anon_sym___ro_after_init] = ACTIONS(1432), + [anon_sym___init] = ACTIONS(1432), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1434), + [anon_sym___declspec] = ACTIONS(1432), + [anon_sym___cdecl] = ACTIONS(1432), + [anon_sym___clrcall] = ACTIONS(1432), + [anon_sym___stdcall] = ACTIONS(1432), + [anon_sym___fastcall] = ACTIONS(1432), + [anon_sym___thiscall] = ACTIONS(1432), + [anon_sym___vectorcall] = ACTIONS(1432), + [anon_sym_LBRACE] = ACTIONS(1434), + [anon_sym_signed] = ACTIONS(1432), + [anon_sym_unsigned] = ACTIONS(1432), + [anon_sym_long] = ACTIONS(1432), + [anon_sym_short] = ACTIONS(1432), + [anon_sym_static] = ACTIONS(1432), + [anon_sym_auto] = ACTIONS(1432), + [anon_sym_register] = ACTIONS(1432), + [anon_sym_inline] = ACTIONS(1432), + [anon_sym___inline] = ACTIONS(1432), + [anon_sym___inline__] = ACTIONS(1432), + [anon_sym___forceinline] = ACTIONS(1432), + [anon_sym_thread_local] = ACTIONS(1432), + [anon_sym___thread] = ACTIONS(1432), + [anon_sym_const] = ACTIONS(1432), + [anon_sym_constexpr] = ACTIONS(1432), + [anon_sym_volatile] = ACTIONS(1432), + [anon_sym_restrict] = ACTIONS(1432), + [anon_sym___restrict__] = ACTIONS(1432), + [anon_sym__Atomic] = ACTIONS(1432), + [anon_sym__Noreturn] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [sym_primitive_type] = ACTIONS(1432), + [anon_sym_enum] = ACTIONS(1432), + [anon_sym_struct] = ACTIONS(1432), + [anon_sym_union] = ACTIONS(1432), + [anon_sym_if] = ACTIONS(1432), + [anon_sym_switch] = ACTIONS(1432), + [anon_sym_case] = ACTIONS(1432), + [anon_sym_default] = ACTIONS(1432), + [anon_sym_while] = ACTIONS(1432), + [anon_sym_do] = ACTIONS(1432), + [anon_sym_for] = ACTIONS(1432), + [anon_sym_return] = ACTIONS(1432), + [anon_sym_break] = ACTIONS(1432), + [anon_sym_continue] = ACTIONS(1432), + [anon_sym_goto] = ACTIONS(1432), + [anon_sym___try] = ACTIONS(1432), + [anon_sym___leave] = ACTIONS(1432), + [anon_sym_DASH_DASH] = ACTIONS(1434), + [anon_sym_PLUS_PLUS] = ACTIONS(1434), + [anon_sym_sizeof] = ACTIONS(1432), + [anon_sym___alignof__] = ACTIONS(1432), + [anon_sym___alignof] = ACTIONS(1432), + [anon_sym__alignof] = ACTIONS(1432), + [anon_sym_alignof] = ACTIONS(1432), + [anon_sym__Alignof] = ACTIONS(1432), + [anon_sym_offsetof] = ACTIONS(1432), + [anon_sym__Generic] = ACTIONS(1432), + [anon_sym_asm] = ACTIONS(1432), + [anon_sym___asm__] = ACTIONS(1432), + [sym_number_literal] = ACTIONS(1434), + [anon_sym_L_SQUOTE] = ACTIONS(1434), + [anon_sym_u_SQUOTE] = ACTIONS(1434), + [anon_sym_U_SQUOTE] = ACTIONS(1434), + [anon_sym_u8_SQUOTE] = ACTIONS(1434), + [anon_sym_SQUOTE] = ACTIONS(1434), + [anon_sym_L_DQUOTE] = ACTIONS(1434), + [anon_sym_u_DQUOTE] = ACTIONS(1434), + [anon_sym_U_DQUOTE] = ACTIONS(1434), + [anon_sym_u8_DQUOTE] = ACTIONS(1434), + [anon_sym_DQUOTE] = ACTIONS(1434), + [sym_true] = ACTIONS(1432), + [sym_false] = ACTIONS(1432), + [anon_sym_NULL] = ACTIONS(1432), + [anon_sym_nullptr] = ACTIONS(1432), [sym_comment] = ACTIONS(3), }, [387] = { - [sym_identifier] = ACTIONS(1515), - [aux_sym_preproc_include_token1] = ACTIONS(1515), - [aux_sym_preproc_def_token1] = ACTIONS(1515), - [aux_sym_preproc_if_token1] = ACTIONS(1515), - [aux_sym_preproc_if_token2] = ACTIONS(1515), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1515), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1515), - [sym_preproc_directive] = ACTIONS(1515), - [anon_sym_LPAREN2] = ACTIONS(1517), - [anon_sym_BANG] = ACTIONS(1517), - [anon_sym_TILDE] = ACTIONS(1517), - [anon_sym_DASH] = ACTIONS(1515), - [anon_sym_PLUS] = ACTIONS(1515), - [anon_sym_STAR] = ACTIONS(1517), - [anon_sym_AMP] = ACTIONS(1517), - [anon_sym_SEMI] = ACTIONS(1517), - [anon_sym___extension__] = ACTIONS(1515), - [anon_sym_typedef] = ACTIONS(1515), - [anon_sym_extern] = ACTIONS(1515), - [anon_sym___attribute__] = ACTIONS(1515), - [anon_sym___scanf] = ACTIONS(1515), - [anon_sym___printf] = ACTIONS(1515), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1517), - [anon_sym___declspec] = ACTIONS(1515), - [anon_sym___cdecl] = ACTIONS(1515), - [anon_sym___clrcall] = ACTIONS(1515), - [anon_sym___stdcall] = ACTIONS(1515), - [anon_sym___fastcall] = ACTIONS(1515), - [anon_sym___thiscall] = ACTIONS(1515), - [anon_sym___vectorcall] = ACTIONS(1515), - [anon_sym_LBRACE] = ACTIONS(1517), - [anon_sym_signed] = ACTIONS(1515), - [anon_sym_unsigned] = ACTIONS(1515), - [anon_sym_long] = ACTIONS(1515), - [anon_sym_short] = ACTIONS(1515), - [anon_sym_static] = ACTIONS(1515), - [anon_sym_auto] = ACTIONS(1515), - [anon_sym_register] = ACTIONS(1515), - [anon_sym_inline] = ACTIONS(1515), - [anon_sym___inline] = ACTIONS(1515), - [anon_sym___inline__] = ACTIONS(1515), - [anon_sym___forceinline] = ACTIONS(1515), - [anon_sym_thread_local] = ACTIONS(1515), - [anon_sym___thread] = ACTIONS(1515), - [anon_sym_const] = ACTIONS(1515), - [anon_sym_constexpr] = ACTIONS(1515), - [anon_sym_volatile] = ACTIONS(1515), - [anon_sym_restrict] = ACTIONS(1515), - [anon_sym___restrict__] = ACTIONS(1515), - [anon_sym__Atomic] = ACTIONS(1515), - [anon_sym__Noreturn] = ACTIONS(1515), - [anon_sym_noreturn] = ACTIONS(1515), - [sym_primitive_type] = ACTIONS(1515), - [anon_sym_enum] = ACTIONS(1515), - [anon_sym_struct] = ACTIONS(1515), - [anon_sym_union] = ACTIONS(1515), - [anon_sym_if] = ACTIONS(1515), - [anon_sym_switch] = ACTIONS(1515), - [anon_sym_case] = ACTIONS(1515), - [anon_sym_default] = ACTIONS(1515), - [anon_sym_while] = ACTIONS(1515), - [anon_sym_do] = ACTIONS(1515), - [anon_sym_for] = ACTIONS(1515), - [anon_sym_return] = ACTIONS(1515), - [anon_sym_break] = ACTIONS(1515), - [anon_sym_continue] = ACTIONS(1515), - [anon_sym_goto] = ACTIONS(1515), - [anon_sym___try] = ACTIONS(1515), - [anon_sym___leave] = ACTIONS(1515), - [anon_sym_DASH_DASH] = ACTIONS(1517), - [anon_sym_PLUS_PLUS] = ACTIONS(1517), - [anon_sym_sizeof] = ACTIONS(1515), - [anon_sym___alignof__] = ACTIONS(1515), - [anon_sym___alignof] = ACTIONS(1515), - [anon_sym__alignof] = ACTIONS(1515), - [anon_sym_alignof] = ACTIONS(1515), - [anon_sym__Alignof] = ACTIONS(1515), - [anon_sym_offsetof] = ACTIONS(1515), - [anon_sym__Generic] = ACTIONS(1515), - [anon_sym_asm] = ACTIONS(1515), - [anon_sym___asm__] = ACTIONS(1515), - [sym_number_literal] = ACTIONS(1517), - [anon_sym_L_SQUOTE] = ACTIONS(1517), - [anon_sym_u_SQUOTE] = ACTIONS(1517), - [anon_sym_U_SQUOTE] = ACTIONS(1517), - [anon_sym_u8_SQUOTE] = ACTIONS(1517), - [anon_sym_SQUOTE] = ACTIONS(1517), - [anon_sym_L_DQUOTE] = ACTIONS(1517), - [anon_sym_u_DQUOTE] = ACTIONS(1517), - [anon_sym_U_DQUOTE] = ACTIONS(1517), - [anon_sym_u8_DQUOTE] = ACTIONS(1517), - [anon_sym_DQUOTE] = ACTIONS(1517), - [sym_true] = ACTIONS(1515), - [sym_false] = ACTIONS(1515), - [anon_sym_NULL] = ACTIONS(1515), - [anon_sym_nullptr] = ACTIONS(1515), + [sym_identifier] = ACTIONS(1444), + [aux_sym_preproc_include_token1] = ACTIONS(1444), + [aux_sym_preproc_def_token1] = ACTIONS(1444), + [aux_sym_preproc_if_token1] = ACTIONS(1444), + [aux_sym_preproc_if_token2] = ACTIONS(1444), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1444), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1444), + [sym_preproc_directive] = ACTIONS(1444), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_BANG] = ACTIONS(1446), + [anon_sym_TILDE] = ACTIONS(1446), + [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_STAR] = ACTIONS(1446), + [anon_sym_AMP] = ACTIONS(1446), + [anon_sym_SEMI] = ACTIONS(1446), + [anon_sym___extension__] = ACTIONS(1444), + [anon_sym_typedef] = ACTIONS(1444), + [anon_sym_extern] = ACTIONS(1444), + [anon_sym___attribute__] = ACTIONS(1444), + [anon_sym___scanf] = ACTIONS(1444), + [anon_sym___printf] = ACTIONS(1444), + [anon_sym___read_mostly] = ACTIONS(1444), + [anon_sym___must_hold] = ACTIONS(1444), + [anon_sym___ro_after_init] = ACTIONS(1444), + [anon_sym___init] = ACTIONS(1444), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1446), + [anon_sym___declspec] = ACTIONS(1444), + [anon_sym___cdecl] = ACTIONS(1444), + [anon_sym___clrcall] = ACTIONS(1444), + [anon_sym___stdcall] = ACTIONS(1444), + [anon_sym___fastcall] = ACTIONS(1444), + [anon_sym___thiscall] = ACTIONS(1444), + [anon_sym___vectorcall] = ACTIONS(1444), + [anon_sym_LBRACE] = ACTIONS(1446), + [anon_sym_signed] = ACTIONS(1444), + [anon_sym_unsigned] = ACTIONS(1444), + [anon_sym_long] = ACTIONS(1444), + [anon_sym_short] = ACTIONS(1444), + [anon_sym_static] = ACTIONS(1444), + [anon_sym_auto] = ACTIONS(1444), + [anon_sym_register] = ACTIONS(1444), + [anon_sym_inline] = ACTIONS(1444), + [anon_sym___inline] = ACTIONS(1444), + [anon_sym___inline__] = ACTIONS(1444), + [anon_sym___forceinline] = ACTIONS(1444), + [anon_sym_thread_local] = ACTIONS(1444), + [anon_sym___thread] = ACTIONS(1444), + [anon_sym_const] = ACTIONS(1444), + [anon_sym_constexpr] = ACTIONS(1444), + [anon_sym_volatile] = ACTIONS(1444), + [anon_sym_restrict] = ACTIONS(1444), + [anon_sym___restrict__] = ACTIONS(1444), + [anon_sym__Atomic] = ACTIONS(1444), + [anon_sym__Noreturn] = ACTIONS(1444), + [anon_sym_noreturn] = ACTIONS(1444), + [sym_primitive_type] = ACTIONS(1444), + [anon_sym_enum] = ACTIONS(1444), + [anon_sym_struct] = ACTIONS(1444), + [anon_sym_union] = ACTIONS(1444), + [anon_sym_if] = ACTIONS(1444), + [anon_sym_switch] = ACTIONS(1444), + [anon_sym_case] = ACTIONS(1444), + [anon_sym_default] = ACTIONS(1444), + [anon_sym_while] = ACTIONS(1444), + [anon_sym_do] = ACTIONS(1444), + [anon_sym_for] = ACTIONS(1444), + [anon_sym_return] = ACTIONS(1444), + [anon_sym_break] = ACTIONS(1444), + [anon_sym_continue] = ACTIONS(1444), + [anon_sym_goto] = ACTIONS(1444), + [anon_sym___try] = ACTIONS(1444), + [anon_sym___leave] = ACTIONS(1444), + [anon_sym_DASH_DASH] = ACTIONS(1446), + [anon_sym_PLUS_PLUS] = ACTIONS(1446), + [anon_sym_sizeof] = ACTIONS(1444), + [anon_sym___alignof__] = ACTIONS(1444), + [anon_sym___alignof] = ACTIONS(1444), + [anon_sym__alignof] = ACTIONS(1444), + [anon_sym_alignof] = ACTIONS(1444), + [anon_sym__Alignof] = ACTIONS(1444), + [anon_sym_offsetof] = ACTIONS(1444), + [anon_sym__Generic] = ACTIONS(1444), + [anon_sym_asm] = ACTIONS(1444), + [anon_sym___asm__] = ACTIONS(1444), + [sym_number_literal] = ACTIONS(1446), + [anon_sym_L_SQUOTE] = ACTIONS(1446), + [anon_sym_u_SQUOTE] = ACTIONS(1446), + [anon_sym_U_SQUOTE] = ACTIONS(1446), + [anon_sym_u8_SQUOTE] = ACTIONS(1446), + [anon_sym_SQUOTE] = ACTIONS(1446), + [anon_sym_L_DQUOTE] = ACTIONS(1446), + [anon_sym_u_DQUOTE] = ACTIONS(1446), + [anon_sym_U_DQUOTE] = ACTIONS(1446), + [anon_sym_u8_DQUOTE] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1446), + [sym_true] = ACTIONS(1444), + [sym_false] = ACTIONS(1444), + [anon_sym_NULL] = ACTIONS(1444), + [anon_sym_nullptr] = ACTIONS(1444), [sym_comment] = ACTIONS(3), }, [388] = { - [sym_identifier] = ACTIONS(1503), - [aux_sym_preproc_include_token1] = ACTIONS(1503), - [aux_sym_preproc_def_token1] = ACTIONS(1503), - [aux_sym_preproc_if_token1] = ACTIONS(1503), - [aux_sym_preproc_if_token2] = ACTIONS(1503), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1503), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1503), - [sym_preproc_directive] = ACTIONS(1503), - [anon_sym_LPAREN2] = ACTIONS(1505), - [anon_sym_BANG] = ACTIONS(1505), - [anon_sym_TILDE] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1503), - [anon_sym_PLUS] = ACTIONS(1503), - [anon_sym_STAR] = ACTIONS(1505), - [anon_sym_AMP] = ACTIONS(1505), - [anon_sym_SEMI] = ACTIONS(1505), - [anon_sym___extension__] = ACTIONS(1503), - [anon_sym_typedef] = ACTIONS(1503), - [anon_sym_extern] = ACTIONS(1503), - [anon_sym___attribute__] = ACTIONS(1503), - [anon_sym___scanf] = ACTIONS(1503), - [anon_sym___printf] = ACTIONS(1503), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1505), - [anon_sym___declspec] = ACTIONS(1503), - [anon_sym___cdecl] = ACTIONS(1503), - [anon_sym___clrcall] = ACTIONS(1503), - [anon_sym___stdcall] = ACTIONS(1503), - [anon_sym___fastcall] = ACTIONS(1503), - [anon_sym___thiscall] = ACTIONS(1503), - [anon_sym___vectorcall] = ACTIONS(1503), - [anon_sym_LBRACE] = ACTIONS(1505), - [anon_sym_signed] = ACTIONS(1503), - [anon_sym_unsigned] = ACTIONS(1503), - [anon_sym_long] = ACTIONS(1503), - [anon_sym_short] = ACTIONS(1503), - [anon_sym_static] = ACTIONS(1503), - [anon_sym_auto] = ACTIONS(1503), - [anon_sym_register] = ACTIONS(1503), - [anon_sym_inline] = ACTIONS(1503), - [anon_sym___inline] = ACTIONS(1503), - [anon_sym___inline__] = ACTIONS(1503), - [anon_sym___forceinline] = ACTIONS(1503), - [anon_sym_thread_local] = ACTIONS(1503), - [anon_sym___thread] = ACTIONS(1503), - [anon_sym_const] = ACTIONS(1503), - [anon_sym_constexpr] = ACTIONS(1503), - [anon_sym_volatile] = ACTIONS(1503), - [anon_sym_restrict] = ACTIONS(1503), - [anon_sym___restrict__] = ACTIONS(1503), - [anon_sym__Atomic] = ACTIONS(1503), - [anon_sym__Noreturn] = ACTIONS(1503), - [anon_sym_noreturn] = ACTIONS(1503), - [sym_primitive_type] = ACTIONS(1503), - [anon_sym_enum] = ACTIONS(1503), - [anon_sym_struct] = ACTIONS(1503), - [anon_sym_union] = ACTIONS(1503), - [anon_sym_if] = ACTIONS(1503), - [anon_sym_switch] = ACTIONS(1503), - [anon_sym_case] = ACTIONS(1503), - [anon_sym_default] = ACTIONS(1503), - [anon_sym_while] = ACTIONS(1503), - [anon_sym_do] = ACTIONS(1503), - [anon_sym_for] = ACTIONS(1503), - [anon_sym_return] = ACTIONS(1503), - [anon_sym_break] = ACTIONS(1503), - [anon_sym_continue] = ACTIONS(1503), - [anon_sym_goto] = ACTIONS(1503), - [anon_sym___try] = ACTIONS(1503), - [anon_sym___leave] = ACTIONS(1503), - [anon_sym_DASH_DASH] = ACTIONS(1505), - [anon_sym_PLUS_PLUS] = ACTIONS(1505), - [anon_sym_sizeof] = ACTIONS(1503), - [anon_sym___alignof__] = ACTIONS(1503), - [anon_sym___alignof] = ACTIONS(1503), - [anon_sym__alignof] = ACTIONS(1503), - [anon_sym_alignof] = ACTIONS(1503), - [anon_sym__Alignof] = ACTIONS(1503), - [anon_sym_offsetof] = ACTIONS(1503), - [anon_sym__Generic] = ACTIONS(1503), - [anon_sym_asm] = ACTIONS(1503), - [anon_sym___asm__] = ACTIONS(1503), - [sym_number_literal] = ACTIONS(1505), - [anon_sym_L_SQUOTE] = ACTIONS(1505), - [anon_sym_u_SQUOTE] = ACTIONS(1505), - [anon_sym_U_SQUOTE] = ACTIONS(1505), - [anon_sym_u8_SQUOTE] = ACTIONS(1505), - [anon_sym_SQUOTE] = ACTIONS(1505), - [anon_sym_L_DQUOTE] = ACTIONS(1505), - [anon_sym_u_DQUOTE] = ACTIONS(1505), - [anon_sym_U_DQUOTE] = ACTIONS(1505), - [anon_sym_u8_DQUOTE] = ACTIONS(1505), - [anon_sym_DQUOTE] = ACTIONS(1505), - [sym_true] = ACTIONS(1503), - [sym_false] = ACTIONS(1503), - [anon_sym_NULL] = ACTIONS(1503), - [anon_sym_nullptr] = ACTIONS(1503), + [sym_identifier] = ACTIONS(1452), + [aux_sym_preproc_include_token1] = ACTIONS(1452), + [aux_sym_preproc_def_token1] = ACTIONS(1452), + [aux_sym_preproc_if_token1] = ACTIONS(1452), + [aux_sym_preproc_if_token2] = ACTIONS(1452), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1452), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1452), + [sym_preproc_directive] = ACTIONS(1452), + [anon_sym_LPAREN2] = ACTIONS(1454), + [anon_sym_BANG] = ACTIONS(1454), + [anon_sym_TILDE] = ACTIONS(1454), + [anon_sym_DASH] = ACTIONS(1452), + [anon_sym_PLUS] = ACTIONS(1452), + [anon_sym_STAR] = ACTIONS(1454), + [anon_sym_AMP] = ACTIONS(1454), + [anon_sym_SEMI] = ACTIONS(1454), + [anon_sym___extension__] = ACTIONS(1452), + [anon_sym_typedef] = ACTIONS(1452), + [anon_sym_extern] = ACTIONS(1452), + [anon_sym___attribute__] = ACTIONS(1452), + [anon_sym___scanf] = ACTIONS(1452), + [anon_sym___printf] = ACTIONS(1452), + [anon_sym___read_mostly] = ACTIONS(1452), + [anon_sym___must_hold] = ACTIONS(1452), + [anon_sym___ro_after_init] = ACTIONS(1452), + [anon_sym___init] = ACTIONS(1452), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), + [anon_sym___declspec] = ACTIONS(1452), + [anon_sym___cdecl] = ACTIONS(1452), + [anon_sym___clrcall] = ACTIONS(1452), + [anon_sym___stdcall] = ACTIONS(1452), + [anon_sym___fastcall] = ACTIONS(1452), + [anon_sym___thiscall] = ACTIONS(1452), + [anon_sym___vectorcall] = ACTIONS(1452), + [anon_sym_LBRACE] = ACTIONS(1454), + [anon_sym_signed] = ACTIONS(1452), + [anon_sym_unsigned] = ACTIONS(1452), + [anon_sym_long] = ACTIONS(1452), + [anon_sym_short] = ACTIONS(1452), + [anon_sym_static] = ACTIONS(1452), + [anon_sym_auto] = ACTIONS(1452), + [anon_sym_register] = ACTIONS(1452), + [anon_sym_inline] = ACTIONS(1452), + [anon_sym___inline] = ACTIONS(1452), + [anon_sym___inline__] = ACTIONS(1452), + [anon_sym___forceinline] = ACTIONS(1452), + [anon_sym_thread_local] = ACTIONS(1452), + [anon_sym___thread] = ACTIONS(1452), + [anon_sym_const] = ACTIONS(1452), + [anon_sym_constexpr] = ACTIONS(1452), + [anon_sym_volatile] = ACTIONS(1452), + [anon_sym_restrict] = ACTIONS(1452), + [anon_sym___restrict__] = ACTIONS(1452), + [anon_sym__Atomic] = ACTIONS(1452), + [anon_sym__Noreturn] = ACTIONS(1452), + [anon_sym_noreturn] = ACTIONS(1452), + [sym_primitive_type] = ACTIONS(1452), + [anon_sym_enum] = ACTIONS(1452), + [anon_sym_struct] = ACTIONS(1452), + [anon_sym_union] = ACTIONS(1452), + [anon_sym_if] = ACTIONS(1452), + [anon_sym_switch] = ACTIONS(1452), + [anon_sym_case] = ACTIONS(1452), + [anon_sym_default] = ACTIONS(1452), + [anon_sym_while] = ACTIONS(1452), + [anon_sym_do] = ACTIONS(1452), + [anon_sym_for] = ACTIONS(1452), + [anon_sym_return] = ACTIONS(1452), + [anon_sym_break] = ACTIONS(1452), + [anon_sym_continue] = ACTIONS(1452), + [anon_sym_goto] = ACTIONS(1452), + [anon_sym___try] = ACTIONS(1452), + [anon_sym___leave] = ACTIONS(1452), + [anon_sym_DASH_DASH] = ACTIONS(1454), + [anon_sym_PLUS_PLUS] = ACTIONS(1454), + [anon_sym_sizeof] = ACTIONS(1452), + [anon_sym___alignof__] = ACTIONS(1452), + [anon_sym___alignof] = ACTIONS(1452), + [anon_sym__alignof] = ACTIONS(1452), + [anon_sym_alignof] = ACTIONS(1452), + [anon_sym__Alignof] = ACTIONS(1452), + [anon_sym_offsetof] = ACTIONS(1452), + [anon_sym__Generic] = ACTIONS(1452), + [anon_sym_asm] = ACTIONS(1452), + [anon_sym___asm__] = ACTIONS(1452), + [sym_number_literal] = ACTIONS(1454), + [anon_sym_L_SQUOTE] = ACTIONS(1454), + [anon_sym_u_SQUOTE] = ACTIONS(1454), + [anon_sym_U_SQUOTE] = ACTIONS(1454), + [anon_sym_u8_SQUOTE] = ACTIONS(1454), + [anon_sym_SQUOTE] = ACTIONS(1454), + [anon_sym_L_DQUOTE] = ACTIONS(1454), + [anon_sym_u_DQUOTE] = ACTIONS(1454), + [anon_sym_U_DQUOTE] = ACTIONS(1454), + [anon_sym_u8_DQUOTE] = ACTIONS(1454), + [anon_sym_DQUOTE] = ACTIONS(1454), + [sym_true] = ACTIONS(1452), + [sym_false] = ACTIONS(1452), + [anon_sym_NULL] = ACTIONS(1452), + [anon_sym_nullptr] = ACTIONS(1452), [sym_comment] = ACTIONS(3), }, [389] = { - [sym_identifier] = ACTIONS(1497), - [aux_sym_preproc_include_token1] = ACTIONS(1497), - [aux_sym_preproc_def_token1] = ACTIONS(1497), - [aux_sym_preproc_if_token1] = ACTIONS(1497), - [aux_sym_preproc_if_token2] = ACTIONS(1497), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1497), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1497), - [sym_preproc_directive] = ACTIONS(1497), - [anon_sym_LPAREN2] = ACTIONS(1499), - [anon_sym_BANG] = ACTIONS(1499), - [anon_sym_TILDE] = ACTIONS(1499), - [anon_sym_DASH] = ACTIONS(1497), - [anon_sym_PLUS] = ACTIONS(1497), - [anon_sym_STAR] = ACTIONS(1499), - [anon_sym_AMP] = ACTIONS(1499), - [anon_sym_SEMI] = ACTIONS(1499), - [anon_sym___extension__] = ACTIONS(1497), - [anon_sym_typedef] = ACTIONS(1497), - [anon_sym_extern] = ACTIONS(1497), - [anon_sym___attribute__] = ACTIONS(1497), - [anon_sym___scanf] = ACTIONS(1497), - [anon_sym___printf] = ACTIONS(1497), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1499), - [anon_sym___declspec] = ACTIONS(1497), - [anon_sym___cdecl] = ACTIONS(1497), - [anon_sym___clrcall] = ACTIONS(1497), - [anon_sym___stdcall] = ACTIONS(1497), - [anon_sym___fastcall] = ACTIONS(1497), - [anon_sym___thiscall] = ACTIONS(1497), - [anon_sym___vectorcall] = ACTIONS(1497), - [anon_sym_LBRACE] = ACTIONS(1499), - [anon_sym_signed] = ACTIONS(1497), - [anon_sym_unsigned] = ACTIONS(1497), - [anon_sym_long] = ACTIONS(1497), - [anon_sym_short] = ACTIONS(1497), - [anon_sym_static] = ACTIONS(1497), - [anon_sym_auto] = ACTIONS(1497), - [anon_sym_register] = ACTIONS(1497), - [anon_sym_inline] = ACTIONS(1497), - [anon_sym___inline] = ACTIONS(1497), - [anon_sym___inline__] = ACTIONS(1497), - [anon_sym___forceinline] = ACTIONS(1497), - [anon_sym_thread_local] = ACTIONS(1497), - [anon_sym___thread] = ACTIONS(1497), - [anon_sym_const] = ACTIONS(1497), - [anon_sym_constexpr] = ACTIONS(1497), - [anon_sym_volatile] = ACTIONS(1497), - [anon_sym_restrict] = ACTIONS(1497), - [anon_sym___restrict__] = ACTIONS(1497), - [anon_sym__Atomic] = ACTIONS(1497), - [anon_sym__Noreturn] = ACTIONS(1497), - [anon_sym_noreturn] = ACTIONS(1497), - [sym_primitive_type] = ACTIONS(1497), - [anon_sym_enum] = ACTIONS(1497), - [anon_sym_struct] = ACTIONS(1497), - [anon_sym_union] = ACTIONS(1497), - [anon_sym_if] = ACTIONS(1497), - [anon_sym_switch] = ACTIONS(1497), - [anon_sym_case] = ACTIONS(1497), - [anon_sym_default] = ACTIONS(1497), - [anon_sym_while] = ACTIONS(1497), - [anon_sym_do] = ACTIONS(1497), - [anon_sym_for] = ACTIONS(1497), - [anon_sym_return] = ACTIONS(1497), - [anon_sym_break] = ACTIONS(1497), - [anon_sym_continue] = ACTIONS(1497), - [anon_sym_goto] = ACTIONS(1497), - [anon_sym___try] = ACTIONS(1497), - [anon_sym___leave] = ACTIONS(1497), - [anon_sym_DASH_DASH] = ACTIONS(1499), - [anon_sym_PLUS_PLUS] = ACTIONS(1499), - [anon_sym_sizeof] = ACTIONS(1497), - [anon_sym___alignof__] = ACTIONS(1497), - [anon_sym___alignof] = ACTIONS(1497), - [anon_sym__alignof] = ACTIONS(1497), - [anon_sym_alignof] = ACTIONS(1497), - [anon_sym__Alignof] = ACTIONS(1497), - [anon_sym_offsetof] = ACTIONS(1497), - [anon_sym__Generic] = ACTIONS(1497), - [anon_sym_asm] = ACTIONS(1497), - [anon_sym___asm__] = ACTIONS(1497), - [sym_number_literal] = ACTIONS(1499), - [anon_sym_L_SQUOTE] = ACTIONS(1499), - [anon_sym_u_SQUOTE] = ACTIONS(1499), - [anon_sym_U_SQUOTE] = ACTIONS(1499), - [anon_sym_u8_SQUOTE] = ACTIONS(1499), - [anon_sym_SQUOTE] = ACTIONS(1499), - [anon_sym_L_DQUOTE] = ACTIONS(1499), - [anon_sym_u_DQUOTE] = ACTIONS(1499), - [anon_sym_U_DQUOTE] = ACTIONS(1499), - [anon_sym_u8_DQUOTE] = ACTIONS(1499), - [anon_sym_DQUOTE] = ACTIONS(1499), - [sym_true] = ACTIONS(1497), - [sym_false] = ACTIONS(1497), - [anon_sym_NULL] = ACTIONS(1497), - [anon_sym_nullptr] = ACTIONS(1497), + [sym_identifier] = ACTIONS(1468), + [aux_sym_preproc_include_token1] = ACTIONS(1468), + [aux_sym_preproc_def_token1] = ACTIONS(1468), + [aux_sym_preproc_if_token1] = ACTIONS(1468), + [aux_sym_preproc_if_token2] = ACTIONS(1468), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1468), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1468), + [sym_preproc_directive] = ACTIONS(1468), + [anon_sym_LPAREN2] = ACTIONS(1470), + [anon_sym_BANG] = ACTIONS(1470), + [anon_sym_TILDE] = ACTIONS(1470), + [anon_sym_DASH] = ACTIONS(1468), + [anon_sym_PLUS] = ACTIONS(1468), + [anon_sym_STAR] = ACTIONS(1470), + [anon_sym_AMP] = ACTIONS(1470), + [anon_sym_SEMI] = ACTIONS(1470), + [anon_sym___extension__] = ACTIONS(1468), + [anon_sym_typedef] = ACTIONS(1468), + [anon_sym_extern] = ACTIONS(1468), + [anon_sym___attribute__] = ACTIONS(1468), + [anon_sym___scanf] = ACTIONS(1468), + [anon_sym___printf] = ACTIONS(1468), + [anon_sym___read_mostly] = ACTIONS(1468), + [anon_sym___must_hold] = ACTIONS(1468), + [anon_sym___ro_after_init] = ACTIONS(1468), + [anon_sym___init] = ACTIONS(1468), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1470), + [anon_sym___declspec] = ACTIONS(1468), + [anon_sym___cdecl] = ACTIONS(1468), + [anon_sym___clrcall] = ACTIONS(1468), + [anon_sym___stdcall] = ACTIONS(1468), + [anon_sym___fastcall] = ACTIONS(1468), + [anon_sym___thiscall] = ACTIONS(1468), + [anon_sym___vectorcall] = ACTIONS(1468), + [anon_sym_LBRACE] = ACTIONS(1470), + [anon_sym_signed] = ACTIONS(1468), + [anon_sym_unsigned] = ACTIONS(1468), + [anon_sym_long] = ACTIONS(1468), + [anon_sym_short] = ACTIONS(1468), + [anon_sym_static] = ACTIONS(1468), + [anon_sym_auto] = ACTIONS(1468), + [anon_sym_register] = ACTIONS(1468), + [anon_sym_inline] = ACTIONS(1468), + [anon_sym___inline] = ACTIONS(1468), + [anon_sym___inline__] = ACTIONS(1468), + [anon_sym___forceinline] = ACTIONS(1468), + [anon_sym_thread_local] = ACTIONS(1468), + [anon_sym___thread] = ACTIONS(1468), + [anon_sym_const] = ACTIONS(1468), + [anon_sym_constexpr] = ACTIONS(1468), + [anon_sym_volatile] = ACTIONS(1468), + [anon_sym_restrict] = ACTIONS(1468), + [anon_sym___restrict__] = ACTIONS(1468), + [anon_sym__Atomic] = ACTIONS(1468), + [anon_sym__Noreturn] = ACTIONS(1468), + [anon_sym_noreturn] = ACTIONS(1468), + [sym_primitive_type] = ACTIONS(1468), + [anon_sym_enum] = ACTIONS(1468), + [anon_sym_struct] = ACTIONS(1468), + [anon_sym_union] = ACTIONS(1468), + [anon_sym_if] = ACTIONS(1468), + [anon_sym_switch] = ACTIONS(1468), + [anon_sym_case] = ACTIONS(1468), + [anon_sym_default] = ACTIONS(1468), + [anon_sym_while] = ACTIONS(1468), + [anon_sym_do] = ACTIONS(1468), + [anon_sym_for] = ACTIONS(1468), + [anon_sym_return] = ACTIONS(1468), + [anon_sym_break] = ACTIONS(1468), + [anon_sym_continue] = ACTIONS(1468), + [anon_sym_goto] = ACTIONS(1468), + [anon_sym___try] = ACTIONS(1468), + [anon_sym___leave] = ACTIONS(1468), + [anon_sym_DASH_DASH] = ACTIONS(1470), + [anon_sym_PLUS_PLUS] = ACTIONS(1470), + [anon_sym_sizeof] = ACTIONS(1468), + [anon_sym___alignof__] = ACTIONS(1468), + [anon_sym___alignof] = ACTIONS(1468), + [anon_sym__alignof] = ACTIONS(1468), + [anon_sym_alignof] = ACTIONS(1468), + [anon_sym__Alignof] = ACTIONS(1468), + [anon_sym_offsetof] = ACTIONS(1468), + [anon_sym__Generic] = ACTIONS(1468), + [anon_sym_asm] = ACTIONS(1468), + [anon_sym___asm__] = ACTIONS(1468), + [sym_number_literal] = ACTIONS(1470), + [anon_sym_L_SQUOTE] = ACTIONS(1470), + [anon_sym_u_SQUOTE] = ACTIONS(1470), + [anon_sym_U_SQUOTE] = ACTIONS(1470), + [anon_sym_u8_SQUOTE] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1470), + [anon_sym_L_DQUOTE] = ACTIONS(1470), + [anon_sym_u_DQUOTE] = ACTIONS(1470), + [anon_sym_U_DQUOTE] = ACTIONS(1470), + [anon_sym_u8_DQUOTE] = ACTIONS(1470), + [anon_sym_DQUOTE] = ACTIONS(1470), + [sym_true] = ACTIONS(1468), + [sym_false] = ACTIONS(1468), + [anon_sym_NULL] = ACTIONS(1468), + [anon_sym_nullptr] = ACTIONS(1468), [sym_comment] = ACTIONS(3), }, [390] = { - [sym_identifier] = ACTIONS(1493), - [aux_sym_preproc_include_token1] = ACTIONS(1493), - [aux_sym_preproc_def_token1] = ACTIONS(1493), - [aux_sym_preproc_if_token1] = ACTIONS(1493), - [aux_sym_preproc_if_token2] = ACTIONS(1493), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1493), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1493), - [sym_preproc_directive] = ACTIONS(1493), - [anon_sym_LPAREN2] = ACTIONS(1495), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), - [anon_sym_SEMI] = ACTIONS(1495), - [anon_sym___extension__] = ACTIONS(1493), - [anon_sym_typedef] = ACTIONS(1493), - [anon_sym_extern] = ACTIONS(1493), - [anon_sym___attribute__] = ACTIONS(1493), - [anon_sym___scanf] = ACTIONS(1493), - [anon_sym___printf] = ACTIONS(1493), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1495), - [anon_sym___declspec] = ACTIONS(1493), - [anon_sym___cdecl] = ACTIONS(1493), - [anon_sym___clrcall] = ACTIONS(1493), - [anon_sym___stdcall] = ACTIONS(1493), - [anon_sym___fastcall] = ACTIONS(1493), - [anon_sym___thiscall] = ACTIONS(1493), - [anon_sym___vectorcall] = ACTIONS(1493), - [anon_sym_LBRACE] = ACTIONS(1495), - [anon_sym_signed] = ACTIONS(1493), - [anon_sym_unsigned] = ACTIONS(1493), - [anon_sym_long] = ACTIONS(1493), - [anon_sym_short] = ACTIONS(1493), - [anon_sym_static] = ACTIONS(1493), - [anon_sym_auto] = ACTIONS(1493), - [anon_sym_register] = ACTIONS(1493), - [anon_sym_inline] = ACTIONS(1493), - [anon_sym___inline] = ACTIONS(1493), - [anon_sym___inline__] = ACTIONS(1493), - [anon_sym___forceinline] = ACTIONS(1493), - [anon_sym_thread_local] = ACTIONS(1493), - [anon_sym___thread] = ACTIONS(1493), - [anon_sym_const] = ACTIONS(1493), - [anon_sym_constexpr] = ACTIONS(1493), - [anon_sym_volatile] = ACTIONS(1493), - [anon_sym_restrict] = ACTIONS(1493), - [anon_sym___restrict__] = ACTIONS(1493), - [anon_sym__Atomic] = ACTIONS(1493), - [anon_sym__Noreturn] = ACTIONS(1493), - [anon_sym_noreturn] = ACTIONS(1493), - [sym_primitive_type] = ACTIONS(1493), - [anon_sym_enum] = ACTIONS(1493), - [anon_sym_struct] = ACTIONS(1493), - [anon_sym_union] = ACTIONS(1493), - [anon_sym_if] = ACTIONS(1493), - [anon_sym_switch] = ACTIONS(1493), - [anon_sym_case] = ACTIONS(1493), - [anon_sym_default] = ACTIONS(1493), - [anon_sym_while] = ACTIONS(1493), - [anon_sym_do] = ACTIONS(1493), - [anon_sym_for] = ACTIONS(1493), - [anon_sym_return] = ACTIONS(1493), - [anon_sym_break] = ACTIONS(1493), - [anon_sym_continue] = ACTIONS(1493), - [anon_sym_goto] = ACTIONS(1493), - [anon_sym___try] = ACTIONS(1493), - [anon_sym___leave] = ACTIONS(1493), - [anon_sym_DASH_DASH] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym___alignof__] = ACTIONS(1493), - [anon_sym___alignof] = ACTIONS(1493), - [anon_sym__alignof] = ACTIONS(1493), - [anon_sym_alignof] = ACTIONS(1493), - [anon_sym__Alignof] = ACTIONS(1493), - [anon_sym_offsetof] = ACTIONS(1493), - [anon_sym__Generic] = ACTIONS(1493), - [anon_sym_asm] = ACTIONS(1493), - [anon_sym___asm__] = ACTIONS(1493), - [sym_number_literal] = ACTIONS(1495), - [anon_sym_L_SQUOTE] = ACTIONS(1495), - [anon_sym_u_SQUOTE] = ACTIONS(1495), - [anon_sym_U_SQUOTE] = ACTIONS(1495), - [anon_sym_u8_SQUOTE] = ACTIONS(1495), - [anon_sym_SQUOTE] = ACTIONS(1495), - [anon_sym_L_DQUOTE] = ACTIONS(1495), - [anon_sym_u_DQUOTE] = ACTIONS(1495), - [anon_sym_U_DQUOTE] = ACTIONS(1495), - [anon_sym_u8_DQUOTE] = ACTIONS(1495), - [anon_sym_DQUOTE] = ACTIONS(1495), - [sym_true] = ACTIONS(1493), - [sym_false] = ACTIONS(1493), - [anon_sym_NULL] = ACTIONS(1493), - [anon_sym_nullptr] = ACTIONS(1493), + [sym_identifier] = ACTIONS(1472), + [aux_sym_preproc_include_token1] = ACTIONS(1472), + [aux_sym_preproc_def_token1] = ACTIONS(1472), + [aux_sym_preproc_if_token1] = ACTIONS(1472), + [aux_sym_preproc_if_token2] = ACTIONS(1472), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1472), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1472), + [sym_preproc_directive] = ACTIONS(1472), + [anon_sym_LPAREN2] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1474), + [anon_sym_TILDE] = ACTIONS(1474), + [anon_sym_DASH] = ACTIONS(1472), + [anon_sym_PLUS] = ACTIONS(1472), + [anon_sym_STAR] = ACTIONS(1474), + [anon_sym_AMP] = ACTIONS(1474), + [anon_sym_SEMI] = ACTIONS(1474), + [anon_sym___extension__] = ACTIONS(1472), + [anon_sym_typedef] = ACTIONS(1472), + [anon_sym_extern] = ACTIONS(1472), + [anon_sym___attribute__] = ACTIONS(1472), + [anon_sym___scanf] = ACTIONS(1472), + [anon_sym___printf] = ACTIONS(1472), + [anon_sym___read_mostly] = ACTIONS(1472), + [anon_sym___must_hold] = ACTIONS(1472), + [anon_sym___ro_after_init] = ACTIONS(1472), + [anon_sym___init] = ACTIONS(1472), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1474), + [anon_sym___declspec] = ACTIONS(1472), + [anon_sym___cdecl] = ACTIONS(1472), + [anon_sym___clrcall] = ACTIONS(1472), + [anon_sym___stdcall] = ACTIONS(1472), + [anon_sym___fastcall] = ACTIONS(1472), + [anon_sym___thiscall] = ACTIONS(1472), + [anon_sym___vectorcall] = ACTIONS(1472), + [anon_sym_LBRACE] = ACTIONS(1474), + [anon_sym_signed] = ACTIONS(1472), + [anon_sym_unsigned] = ACTIONS(1472), + [anon_sym_long] = ACTIONS(1472), + [anon_sym_short] = ACTIONS(1472), + [anon_sym_static] = ACTIONS(1472), + [anon_sym_auto] = ACTIONS(1472), + [anon_sym_register] = ACTIONS(1472), + [anon_sym_inline] = ACTIONS(1472), + [anon_sym___inline] = ACTIONS(1472), + [anon_sym___inline__] = ACTIONS(1472), + [anon_sym___forceinline] = ACTIONS(1472), + [anon_sym_thread_local] = ACTIONS(1472), + [anon_sym___thread] = ACTIONS(1472), + [anon_sym_const] = ACTIONS(1472), + [anon_sym_constexpr] = ACTIONS(1472), + [anon_sym_volatile] = ACTIONS(1472), + [anon_sym_restrict] = ACTIONS(1472), + [anon_sym___restrict__] = ACTIONS(1472), + [anon_sym__Atomic] = ACTIONS(1472), + [anon_sym__Noreturn] = ACTIONS(1472), + [anon_sym_noreturn] = ACTIONS(1472), + [sym_primitive_type] = ACTIONS(1472), + [anon_sym_enum] = ACTIONS(1472), + [anon_sym_struct] = ACTIONS(1472), + [anon_sym_union] = ACTIONS(1472), + [anon_sym_if] = ACTIONS(1472), + [anon_sym_switch] = ACTIONS(1472), + [anon_sym_case] = ACTIONS(1472), + [anon_sym_default] = ACTIONS(1472), + [anon_sym_while] = ACTIONS(1472), + [anon_sym_do] = ACTIONS(1472), + [anon_sym_for] = ACTIONS(1472), + [anon_sym_return] = ACTIONS(1472), + [anon_sym_break] = ACTIONS(1472), + [anon_sym_continue] = ACTIONS(1472), + [anon_sym_goto] = ACTIONS(1472), + [anon_sym___try] = ACTIONS(1472), + [anon_sym___leave] = ACTIONS(1472), + [anon_sym_DASH_DASH] = ACTIONS(1474), + [anon_sym_PLUS_PLUS] = ACTIONS(1474), + [anon_sym_sizeof] = ACTIONS(1472), + [anon_sym___alignof__] = ACTIONS(1472), + [anon_sym___alignof] = ACTIONS(1472), + [anon_sym__alignof] = ACTIONS(1472), + [anon_sym_alignof] = ACTIONS(1472), + [anon_sym__Alignof] = ACTIONS(1472), + [anon_sym_offsetof] = ACTIONS(1472), + [anon_sym__Generic] = ACTIONS(1472), + [anon_sym_asm] = ACTIONS(1472), + [anon_sym___asm__] = ACTIONS(1472), + [sym_number_literal] = ACTIONS(1474), + [anon_sym_L_SQUOTE] = ACTIONS(1474), + [anon_sym_u_SQUOTE] = ACTIONS(1474), + [anon_sym_U_SQUOTE] = ACTIONS(1474), + [anon_sym_u8_SQUOTE] = ACTIONS(1474), + [anon_sym_SQUOTE] = ACTIONS(1474), + [anon_sym_L_DQUOTE] = ACTIONS(1474), + [anon_sym_u_DQUOTE] = ACTIONS(1474), + [anon_sym_U_DQUOTE] = ACTIONS(1474), + [anon_sym_u8_DQUOTE] = ACTIONS(1474), + [anon_sym_DQUOTE] = ACTIONS(1474), + [sym_true] = ACTIONS(1472), + [sym_false] = ACTIONS(1472), + [anon_sym_NULL] = ACTIONS(1472), + [anon_sym_nullptr] = ACTIONS(1472), [sym_comment] = ACTIONS(3), }, [391] = { - [sym_identifier] = ACTIONS(1489), - [aux_sym_preproc_include_token1] = ACTIONS(1489), - [aux_sym_preproc_def_token1] = ACTIONS(1489), - [aux_sym_preproc_if_token1] = ACTIONS(1489), - [aux_sym_preproc_if_token2] = ACTIONS(1489), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1489), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1489), - [sym_preproc_directive] = ACTIONS(1489), - [anon_sym_LPAREN2] = ACTIONS(1491), - [anon_sym_BANG] = ACTIONS(1491), - [anon_sym_TILDE] = ACTIONS(1491), - [anon_sym_DASH] = ACTIONS(1489), - [anon_sym_PLUS] = ACTIONS(1489), - [anon_sym_STAR] = ACTIONS(1491), - [anon_sym_AMP] = ACTIONS(1491), - [anon_sym_SEMI] = ACTIONS(1491), - [anon_sym___extension__] = ACTIONS(1489), - [anon_sym_typedef] = ACTIONS(1489), - [anon_sym_extern] = ACTIONS(1489), - [anon_sym___attribute__] = ACTIONS(1489), - [anon_sym___scanf] = ACTIONS(1489), - [anon_sym___printf] = ACTIONS(1489), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1491), - [anon_sym___declspec] = ACTIONS(1489), - [anon_sym___cdecl] = ACTIONS(1489), - [anon_sym___clrcall] = ACTIONS(1489), - [anon_sym___stdcall] = ACTIONS(1489), - [anon_sym___fastcall] = ACTIONS(1489), - [anon_sym___thiscall] = ACTIONS(1489), - [anon_sym___vectorcall] = ACTIONS(1489), - [anon_sym_LBRACE] = ACTIONS(1491), - [anon_sym_signed] = ACTIONS(1489), - [anon_sym_unsigned] = ACTIONS(1489), - [anon_sym_long] = ACTIONS(1489), - [anon_sym_short] = ACTIONS(1489), - [anon_sym_static] = ACTIONS(1489), - [anon_sym_auto] = ACTIONS(1489), - [anon_sym_register] = ACTIONS(1489), - [anon_sym_inline] = ACTIONS(1489), - [anon_sym___inline] = ACTIONS(1489), - [anon_sym___inline__] = ACTIONS(1489), - [anon_sym___forceinline] = ACTIONS(1489), - [anon_sym_thread_local] = ACTIONS(1489), - [anon_sym___thread] = ACTIONS(1489), - [anon_sym_const] = ACTIONS(1489), - [anon_sym_constexpr] = ACTIONS(1489), - [anon_sym_volatile] = ACTIONS(1489), - [anon_sym_restrict] = ACTIONS(1489), - [anon_sym___restrict__] = ACTIONS(1489), - [anon_sym__Atomic] = ACTIONS(1489), - [anon_sym__Noreturn] = ACTIONS(1489), - [anon_sym_noreturn] = ACTIONS(1489), - [sym_primitive_type] = ACTIONS(1489), - [anon_sym_enum] = ACTIONS(1489), - [anon_sym_struct] = ACTIONS(1489), - [anon_sym_union] = ACTIONS(1489), - [anon_sym_if] = ACTIONS(1489), - [anon_sym_switch] = ACTIONS(1489), - [anon_sym_case] = ACTIONS(1489), - [anon_sym_default] = ACTIONS(1489), - [anon_sym_while] = ACTIONS(1489), - [anon_sym_do] = ACTIONS(1489), - [anon_sym_for] = ACTIONS(1489), - [anon_sym_return] = ACTIONS(1489), - [anon_sym_break] = ACTIONS(1489), - [anon_sym_continue] = ACTIONS(1489), - [anon_sym_goto] = ACTIONS(1489), - [anon_sym___try] = ACTIONS(1489), - [anon_sym___leave] = ACTIONS(1489), - [anon_sym_DASH_DASH] = ACTIONS(1491), - [anon_sym_PLUS_PLUS] = ACTIONS(1491), - [anon_sym_sizeof] = ACTIONS(1489), - [anon_sym___alignof__] = ACTIONS(1489), - [anon_sym___alignof] = ACTIONS(1489), - [anon_sym__alignof] = ACTIONS(1489), - [anon_sym_alignof] = ACTIONS(1489), - [anon_sym__Alignof] = ACTIONS(1489), - [anon_sym_offsetof] = ACTIONS(1489), - [anon_sym__Generic] = ACTIONS(1489), - [anon_sym_asm] = ACTIONS(1489), - [anon_sym___asm__] = ACTIONS(1489), - [sym_number_literal] = ACTIONS(1491), - [anon_sym_L_SQUOTE] = ACTIONS(1491), - [anon_sym_u_SQUOTE] = ACTIONS(1491), - [anon_sym_U_SQUOTE] = ACTIONS(1491), - [anon_sym_u8_SQUOTE] = ACTIONS(1491), - [anon_sym_SQUOTE] = ACTIONS(1491), - [anon_sym_L_DQUOTE] = ACTIONS(1491), - [anon_sym_u_DQUOTE] = ACTIONS(1491), - [anon_sym_U_DQUOTE] = ACTIONS(1491), - [anon_sym_u8_DQUOTE] = ACTIONS(1491), - [anon_sym_DQUOTE] = ACTIONS(1491), - [sym_true] = ACTIONS(1489), - [sym_false] = ACTIONS(1489), - [anon_sym_NULL] = ACTIONS(1489), - [anon_sym_nullptr] = ACTIONS(1489), + [sym_identifier] = ACTIONS(1448), + [aux_sym_preproc_include_token1] = ACTIONS(1448), + [aux_sym_preproc_def_token1] = ACTIONS(1448), + [aux_sym_preproc_if_token1] = ACTIONS(1448), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1448), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1448), + [sym_preproc_directive] = ACTIONS(1448), + [anon_sym_LPAREN2] = ACTIONS(1450), + [anon_sym_BANG] = ACTIONS(1450), + [anon_sym_TILDE] = ACTIONS(1450), + [anon_sym_DASH] = ACTIONS(1448), + [anon_sym_PLUS] = ACTIONS(1448), + [anon_sym_STAR] = ACTIONS(1450), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_SEMI] = ACTIONS(1450), + [anon_sym___extension__] = ACTIONS(1448), + [anon_sym_typedef] = ACTIONS(1448), + [anon_sym_extern] = ACTIONS(1448), + [anon_sym___attribute__] = ACTIONS(1448), + [anon_sym___scanf] = ACTIONS(1448), + [anon_sym___printf] = ACTIONS(1448), + [anon_sym___read_mostly] = ACTIONS(1448), + [anon_sym___must_hold] = ACTIONS(1448), + [anon_sym___ro_after_init] = ACTIONS(1448), + [anon_sym___init] = ACTIONS(1448), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1450), + [anon_sym___declspec] = ACTIONS(1448), + [anon_sym___cdecl] = ACTIONS(1448), + [anon_sym___clrcall] = ACTIONS(1448), + [anon_sym___stdcall] = ACTIONS(1448), + [anon_sym___fastcall] = ACTIONS(1448), + [anon_sym___thiscall] = ACTIONS(1448), + [anon_sym___vectorcall] = ACTIONS(1448), + [anon_sym_LBRACE] = ACTIONS(1450), + [anon_sym_RBRACE] = ACTIONS(1450), + [anon_sym_signed] = ACTIONS(1448), + [anon_sym_unsigned] = ACTIONS(1448), + [anon_sym_long] = ACTIONS(1448), + [anon_sym_short] = ACTIONS(1448), + [anon_sym_static] = ACTIONS(1448), + [anon_sym_auto] = ACTIONS(1448), + [anon_sym_register] = ACTIONS(1448), + [anon_sym_inline] = ACTIONS(1448), + [anon_sym___inline] = ACTIONS(1448), + [anon_sym___inline__] = ACTIONS(1448), + [anon_sym___forceinline] = ACTIONS(1448), + [anon_sym_thread_local] = ACTIONS(1448), + [anon_sym___thread] = ACTIONS(1448), + [anon_sym_const] = ACTIONS(1448), + [anon_sym_constexpr] = ACTIONS(1448), + [anon_sym_volatile] = ACTIONS(1448), + [anon_sym_restrict] = ACTIONS(1448), + [anon_sym___restrict__] = ACTIONS(1448), + [anon_sym__Atomic] = ACTIONS(1448), + [anon_sym__Noreturn] = ACTIONS(1448), + [anon_sym_noreturn] = ACTIONS(1448), + [sym_primitive_type] = ACTIONS(1448), + [anon_sym_enum] = ACTIONS(1448), + [anon_sym_struct] = ACTIONS(1448), + [anon_sym_union] = ACTIONS(1448), + [anon_sym_if] = ACTIONS(1448), + [anon_sym_switch] = ACTIONS(1448), + [anon_sym_case] = ACTIONS(1448), + [anon_sym_default] = ACTIONS(1448), + [anon_sym_while] = ACTIONS(1448), + [anon_sym_do] = ACTIONS(1448), + [anon_sym_for] = ACTIONS(1448), + [anon_sym_return] = ACTIONS(1448), + [anon_sym_break] = ACTIONS(1448), + [anon_sym_continue] = ACTIONS(1448), + [anon_sym_goto] = ACTIONS(1448), + [anon_sym___try] = ACTIONS(1448), + [anon_sym___leave] = ACTIONS(1448), + [anon_sym_DASH_DASH] = ACTIONS(1450), + [anon_sym_PLUS_PLUS] = ACTIONS(1450), + [anon_sym_sizeof] = ACTIONS(1448), + [anon_sym___alignof__] = ACTIONS(1448), + [anon_sym___alignof] = ACTIONS(1448), + [anon_sym__alignof] = ACTIONS(1448), + [anon_sym_alignof] = ACTIONS(1448), + [anon_sym__Alignof] = ACTIONS(1448), + [anon_sym_offsetof] = ACTIONS(1448), + [anon_sym__Generic] = ACTIONS(1448), + [anon_sym_asm] = ACTIONS(1448), + [anon_sym___asm__] = ACTIONS(1448), + [sym_number_literal] = ACTIONS(1450), + [anon_sym_L_SQUOTE] = ACTIONS(1450), + [anon_sym_u_SQUOTE] = ACTIONS(1450), + [anon_sym_U_SQUOTE] = ACTIONS(1450), + [anon_sym_u8_SQUOTE] = ACTIONS(1450), + [anon_sym_SQUOTE] = ACTIONS(1450), + [anon_sym_L_DQUOTE] = ACTIONS(1450), + [anon_sym_u_DQUOTE] = ACTIONS(1450), + [anon_sym_U_DQUOTE] = ACTIONS(1450), + [anon_sym_u8_DQUOTE] = ACTIONS(1450), + [anon_sym_DQUOTE] = ACTIONS(1450), + [sym_true] = ACTIONS(1448), + [sym_false] = ACTIONS(1448), + [anon_sym_NULL] = ACTIONS(1448), + [anon_sym_nullptr] = ACTIONS(1448), [sym_comment] = ACTIONS(3), }, [392] = { - [sym_identifier] = ACTIONS(1425), - [aux_sym_preproc_include_token1] = ACTIONS(1425), - [aux_sym_preproc_def_token1] = ACTIONS(1425), - [aux_sym_preproc_if_token1] = ACTIONS(1425), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1425), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1425), - [sym_preproc_directive] = ACTIONS(1425), - [anon_sym_LPAREN2] = ACTIONS(1427), - [anon_sym_BANG] = ACTIONS(1427), - [anon_sym_TILDE] = ACTIONS(1427), - [anon_sym_DASH] = ACTIONS(1425), - [anon_sym_PLUS] = ACTIONS(1425), - [anon_sym_STAR] = ACTIONS(1427), - [anon_sym_AMP] = ACTIONS(1427), - [anon_sym_SEMI] = ACTIONS(1427), - [anon_sym___extension__] = ACTIONS(1425), - [anon_sym_typedef] = ACTIONS(1425), - [anon_sym_extern] = ACTIONS(1425), - [anon_sym___attribute__] = ACTIONS(1425), - [anon_sym___scanf] = ACTIONS(1425), - [anon_sym___printf] = ACTIONS(1425), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1427), - [anon_sym___declspec] = ACTIONS(1425), - [anon_sym___cdecl] = ACTIONS(1425), - [anon_sym___clrcall] = ACTIONS(1425), - [anon_sym___stdcall] = ACTIONS(1425), - [anon_sym___fastcall] = ACTIONS(1425), - [anon_sym___thiscall] = ACTIONS(1425), - [anon_sym___vectorcall] = ACTIONS(1425), - [anon_sym_LBRACE] = ACTIONS(1427), - [anon_sym_RBRACE] = ACTIONS(1427), - [anon_sym_signed] = ACTIONS(1425), - [anon_sym_unsigned] = ACTIONS(1425), - [anon_sym_long] = ACTIONS(1425), - [anon_sym_short] = ACTIONS(1425), - [anon_sym_static] = ACTIONS(1425), - [anon_sym_auto] = ACTIONS(1425), - [anon_sym_register] = ACTIONS(1425), - [anon_sym_inline] = ACTIONS(1425), - [anon_sym___inline] = ACTIONS(1425), - [anon_sym___inline__] = ACTIONS(1425), - [anon_sym___forceinline] = ACTIONS(1425), - [anon_sym_thread_local] = ACTIONS(1425), - [anon_sym___thread] = ACTIONS(1425), - [anon_sym_const] = ACTIONS(1425), - [anon_sym_constexpr] = ACTIONS(1425), - [anon_sym_volatile] = ACTIONS(1425), - [anon_sym_restrict] = ACTIONS(1425), - [anon_sym___restrict__] = ACTIONS(1425), - [anon_sym__Atomic] = ACTIONS(1425), - [anon_sym__Noreturn] = ACTIONS(1425), - [anon_sym_noreturn] = ACTIONS(1425), - [sym_primitive_type] = ACTIONS(1425), - [anon_sym_enum] = ACTIONS(1425), - [anon_sym_struct] = ACTIONS(1425), - [anon_sym_union] = ACTIONS(1425), - [anon_sym_if] = ACTIONS(1425), - [anon_sym_switch] = ACTIONS(1425), - [anon_sym_case] = ACTIONS(1425), - [anon_sym_default] = ACTIONS(1425), - [anon_sym_while] = ACTIONS(1425), - [anon_sym_do] = ACTIONS(1425), - [anon_sym_for] = ACTIONS(1425), - [anon_sym_return] = ACTIONS(1425), - [anon_sym_break] = ACTIONS(1425), - [anon_sym_continue] = ACTIONS(1425), - [anon_sym_goto] = ACTIONS(1425), - [anon_sym___try] = ACTIONS(1425), - [anon_sym___leave] = ACTIONS(1425), - [anon_sym_DASH_DASH] = ACTIONS(1427), - [anon_sym_PLUS_PLUS] = ACTIONS(1427), - [anon_sym_sizeof] = ACTIONS(1425), - [anon_sym___alignof__] = ACTIONS(1425), - [anon_sym___alignof] = ACTIONS(1425), - [anon_sym__alignof] = ACTIONS(1425), - [anon_sym_alignof] = ACTIONS(1425), - [anon_sym__Alignof] = ACTIONS(1425), - [anon_sym_offsetof] = ACTIONS(1425), - [anon_sym__Generic] = ACTIONS(1425), - [anon_sym_asm] = ACTIONS(1425), - [anon_sym___asm__] = ACTIONS(1425), - [sym_number_literal] = ACTIONS(1427), - [anon_sym_L_SQUOTE] = ACTIONS(1427), - [anon_sym_u_SQUOTE] = ACTIONS(1427), - [anon_sym_U_SQUOTE] = ACTIONS(1427), - [anon_sym_u8_SQUOTE] = ACTIONS(1427), - [anon_sym_SQUOTE] = ACTIONS(1427), - [anon_sym_L_DQUOTE] = ACTIONS(1427), - [anon_sym_u_DQUOTE] = ACTIONS(1427), - [anon_sym_U_DQUOTE] = ACTIONS(1427), - [anon_sym_u8_DQUOTE] = ACTIONS(1427), - [anon_sym_DQUOTE] = ACTIONS(1427), - [sym_true] = ACTIONS(1425), - [sym_false] = ACTIONS(1425), - [anon_sym_NULL] = ACTIONS(1425), - [anon_sym_nullptr] = ACTIONS(1425), + [sym_identifier] = ACTIONS(1424), + [aux_sym_preproc_include_token1] = ACTIONS(1424), + [aux_sym_preproc_def_token1] = ACTIONS(1424), + [aux_sym_preproc_if_token1] = ACTIONS(1424), + [aux_sym_preproc_if_token2] = ACTIONS(1424), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1424), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1424), + [sym_preproc_directive] = ACTIONS(1424), + [anon_sym_LPAREN2] = ACTIONS(1426), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_DASH] = ACTIONS(1424), + [anon_sym_PLUS] = ACTIONS(1424), + [anon_sym_STAR] = ACTIONS(1426), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_SEMI] = ACTIONS(1426), + [anon_sym___extension__] = ACTIONS(1424), + [anon_sym_typedef] = ACTIONS(1424), + [anon_sym_extern] = ACTIONS(1424), + [anon_sym___attribute__] = ACTIONS(1424), + [anon_sym___scanf] = ACTIONS(1424), + [anon_sym___printf] = ACTIONS(1424), + [anon_sym___read_mostly] = ACTIONS(1424), + [anon_sym___must_hold] = ACTIONS(1424), + [anon_sym___ro_after_init] = ACTIONS(1424), + [anon_sym___init] = ACTIONS(1424), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1426), + [anon_sym___declspec] = ACTIONS(1424), + [anon_sym___cdecl] = ACTIONS(1424), + [anon_sym___clrcall] = ACTIONS(1424), + [anon_sym___stdcall] = ACTIONS(1424), + [anon_sym___fastcall] = ACTIONS(1424), + [anon_sym___thiscall] = ACTIONS(1424), + [anon_sym___vectorcall] = ACTIONS(1424), + [anon_sym_LBRACE] = ACTIONS(1426), + [anon_sym_signed] = ACTIONS(1424), + [anon_sym_unsigned] = ACTIONS(1424), + [anon_sym_long] = ACTIONS(1424), + [anon_sym_short] = ACTIONS(1424), + [anon_sym_static] = ACTIONS(1424), + [anon_sym_auto] = ACTIONS(1424), + [anon_sym_register] = ACTIONS(1424), + [anon_sym_inline] = ACTIONS(1424), + [anon_sym___inline] = ACTIONS(1424), + [anon_sym___inline__] = ACTIONS(1424), + [anon_sym___forceinline] = ACTIONS(1424), + [anon_sym_thread_local] = ACTIONS(1424), + [anon_sym___thread] = ACTIONS(1424), + [anon_sym_const] = ACTIONS(1424), + [anon_sym_constexpr] = ACTIONS(1424), + [anon_sym_volatile] = ACTIONS(1424), + [anon_sym_restrict] = ACTIONS(1424), + [anon_sym___restrict__] = ACTIONS(1424), + [anon_sym__Atomic] = ACTIONS(1424), + [anon_sym__Noreturn] = ACTIONS(1424), + [anon_sym_noreturn] = ACTIONS(1424), + [sym_primitive_type] = ACTIONS(1424), + [anon_sym_enum] = ACTIONS(1424), + [anon_sym_struct] = ACTIONS(1424), + [anon_sym_union] = ACTIONS(1424), + [anon_sym_if] = ACTIONS(1424), + [anon_sym_switch] = ACTIONS(1424), + [anon_sym_case] = ACTIONS(1424), + [anon_sym_default] = ACTIONS(1424), + [anon_sym_while] = ACTIONS(1424), + [anon_sym_do] = ACTIONS(1424), + [anon_sym_for] = ACTIONS(1424), + [anon_sym_return] = ACTIONS(1424), + [anon_sym_break] = ACTIONS(1424), + [anon_sym_continue] = ACTIONS(1424), + [anon_sym_goto] = ACTIONS(1424), + [anon_sym___try] = ACTIONS(1424), + [anon_sym___leave] = ACTIONS(1424), + [anon_sym_DASH_DASH] = ACTIONS(1426), + [anon_sym_PLUS_PLUS] = ACTIONS(1426), + [anon_sym_sizeof] = ACTIONS(1424), + [anon_sym___alignof__] = ACTIONS(1424), + [anon_sym___alignof] = ACTIONS(1424), + [anon_sym__alignof] = ACTIONS(1424), + [anon_sym_alignof] = ACTIONS(1424), + [anon_sym__Alignof] = ACTIONS(1424), + [anon_sym_offsetof] = ACTIONS(1424), + [anon_sym__Generic] = ACTIONS(1424), + [anon_sym_asm] = ACTIONS(1424), + [anon_sym___asm__] = ACTIONS(1424), + [sym_number_literal] = ACTIONS(1426), + [anon_sym_L_SQUOTE] = ACTIONS(1426), + [anon_sym_u_SQUOTE] = ACTIONS(1426), + [anon_sym_U_SQUOTE] = ACTIONS(1426), + [anon_sym_u8_SQUOTE] = ACTIONS(1426), + [anon_sym_SQUOTE] = ACTIONS(1426), + [anon_sym_L_DQUOTE] = ACTIONS(1426), + [anon_sym_u_DQUOTE] = ACTIONS(1426), + [anon_sym_U_DQUOTE] = ACTIONS(1426), + [anon_sym_u8_DQUOTE] = ACTIONS(1426), + [anon_sym_DQUOTE] = ACTIONS(1426), + [sym_true] = ACTIONS(1424), + [sym_false] = ACTIONS(1424), + [anon_sym_NULL] = ACTIONS(1424), + [anon_sym_nullptr] = ACTIONS(1424), [sym_comment] = ACTIONS(3), }, [393] = { - [sym_identifier] = ACTIONS(1485), - [aux_sym_preproc_include_token1] = ACTIONS(1485), - [aux_sym_preproc_def_token1] = ACTIONS(1485), - [aux_sym_preproc_if_token1] = ACTIONS(1485), - [aux_sym_preproc_if_token2] = ACTIONS(1485), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1485), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1485), - [sym_preproc_directive] = ACTIONS(1485), - [anon_sym_LPAREN2] = ACTIONS(1487), - [anon_sym_BANG] = ACTIONS(1487), - [anon_sym_TILDE] = ACTIONS(1487), - [anon_sym_DASH] = ACTIONS(1485), - [anon_sym_PLUS] = ACTIONS(1485), - [anon_sym_STAR] = ACTIONS(1487), - [anon_sym_AMP] = ACTIONS(1487), - [anon_sym_SEMI] = ACTIONS(1487), - [anon_sym___extension__] = ACTIONS(1485), - [anon_sym_typedef] = ACTIONS(1485), - [anon_sym_extern] = ACTIONS(1485), - [anon_sym___attribute__] = ACTIONS(1485), - [anon_sym___scanf] = ACTIONS(1485), - [anon_sym___printf] = ACTIONS(1485), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1487), - [anon_sym___declspec] = ACTIONS(1485), - [anon_sym___cdecl] = ACTIONS(1485), - [anon_sym___clrcall] = ACTIONS(1485), - [anon_sym___stdcall] = ACTIONS(1485), - [anon_sym___fastcall] = ACTIONS(1485), - [anon_sym___thiscall] = ACTIONS(1485), - [anon_sym___vectorcall] = ACTIONS(1485), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_signed] = ACTIONS(1485), - [anon_sym_unsigned] = ACTIONS(1485), - [anon_sym_long] = ACTIONS(1485), - [anon_sym_short] = ACTIONS(1485), - [anon_sym_static] = ACTIONS(1485), - [anon_sym_auto] = ACTIONS(1485), - [anon_sym_register] = ACTIONS(1485), - [anon_sym_inline] = ACTIONS(1485), - [anon_sym___inline] = ACTIONS(1485), - [anon_sym___inline__] = ACTIONS(1485), - [anon_sym___forceinline] = ACTIONS(1485), - [anon_sym_thread_local] = ACTIONS(1485), - [anon_sym___thread] = ACTIONS(1485), - [anon_sym_const] = ACTIONS(1485), - [anon_sym_constexpr] = ACTIONS(1485), - [anon_sym_volatile] = ACTIONS(1485), - [anon_sym_restrict] = ACTIONS(1485), - [anon_sym___restrict__] = ACTIONS(1485), - [anon_sym__Atomic] = ACTIONS(1485), - [anon_sym__Noreturn] = ACTIONS(1485), - [anon_sym_noreturn] = ACTIONS(1485), - [sym_primitive_type] = ACTIONS(1485), - [anon_sym_enum] = ACTIONS(1485), - [anon_sym_struct] = ACTIONS(1485), - [anon_sym_union] = ACTIONS(1485), - [anon_sym_if] = ACTIONS(1485), - [anon_sym_switch] = ACTIONS(1485), - [anon_sym_case] = ACTIONS(1485), - [anon_sym_default] = ACTIONS(1485), - [anon_sym_while] = ACTIONS(1485), - [anon_sym_do] = ACTIONS(1485), - [anon_sym_for] = ACTIONS(1485), - [anon_sym_return] = ACTIONS(1485), - [anon_sym_break] = ACTIONS(1485), - [anon_sym_continue] = ACTIONS(1485), - [anon_sym_goto] = ACTIONS(1485), - [anon_sym___try] = ACTIONS(1485), - [anon_sym___leave] = ACTIONS(1485), - [anon_sym_DASH_DASH] = ACTIONS(1487), - [anon_sym_PLUS_PLUS] = ACTIONS(1487), - [anon_sym_sizeof] = ACTIONS(1485), - [anon_sym___alignof__] = ACTIONS(1485), - [anon_sym___alignof] = ACTIONS(1485), - [anon_sym__alignof] = ACTIONS(1485), - [anon_sym_alignof] = ACTIONS(1485), - [anon_sym__Alignof] = ACTIONS(1485), - [anon_sym_offsetof] = ACTIONS(1485), - [anon_sym__Generic] = ACTIONS(1485), - [anon_sym_asm] = ACTIONS(1485), - [anon_sym___asm__] = ACTIONS(1485), - [sym_number_literal] = ACTIONS(1487), - [anon_sym_L_SQUOTE] = ACTIONS(1487), - [anon_sym_u_SQUOTE] = ACTIONS(1487), - [anon_sym_U_SQUOTE] = ACTIONS(1487), - [anon_sym_u8_SQUOTE] = ACTIONS(1487), - [anon_sym_SQUOTE] = ACTIONS(1487), - [anon_sym_L_DQUOTE] = ACTIONS(1487), - [anon_sym_u_DQUOTE] = ACTIONS(1487), - [anon_sym_U_DQUOTE] = ACTIONS(1487), - [anon_sym_u8_DQUOTE] = ACTIONS(1487), - [anon_sym_DQUOTE] = ACTIONS(1487), - [sym_true] = ACTIONS(1485), - [sym_false] = ACTIONS(1485), - [anon_sym_NULL] = ACTIONS(1485), - [anon_sym_nullptr] = ACTIONS(1485), + [sym_identifier] = ACTIONS(1452), + [aux_sym_preproc_include_token1] = ACTIONS(1452), + [aux_sym_preproc_def_token1] = ACTIONS(1452), + [aux_sym_preproc_if_token1] = ACTIONS(1452), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1452), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1452), + [sym_preproc_directive] = ACTIONS(1452), + [anon_sym_LPAREN2] = ACTIONS(1454), + [anon_sym_BANG] = ACTIONS(1454), + [anon_sym_TILDE] = ACTIONS(1454), + [anon_sym_DASH] = ACTIONS(1452), + [anon_sym_PLUS] = ACTIONS(1452), + [anon_sym_STAR] = ACTIONS(1454), + [anon_sym_AMP] = ACTIONS(1454), + [anon_sym_SEMI] = ACTIONS(1454), + [anon_sym___extension__] = ACTIONS(1452), + [anon_sym_typedef] = ACTIONS(1452), + [anon_sym_extern] = ACTIONS(1452), + [anon_sym___attribute__] = ACTIONS(1452), + [anon_sym___scanf] = ACTIONS(1452), + [anon_sym___printf] = ACTIONS(1452), + [anon_sym___read_mostly] = ACTIONS(1452), + [anon_sym___must_hold] = ACTIONS(1452), + [anon_sym___ro_after_init] = ACTIONS(1452), + [anon_sym___init] = ACTIONS(1452), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), + [anon_sym___declspec] = ACTIONS(1452), + [anon_sym___cdecl] = ACTIONS(1452), + [anon_sym___clrcall] = ACTIONS(1452), + [anon_sym___stdcall] = ACTIONS(1452), + [anon_sym___fastcall] = ACTIONS(1452), + [anon_sym___thiscall] = ACTIONS(1452), + [anon_sym___vectorcall] = ACTIONS(1452), + [anon_sym_LBRACE] = ACTIONS(1454), + [anon_sym_RBRACE] = ACTIONS(1454), + [anon_sym_signed] = ACTIONS(1452), + [anon_sym_unsigned] = ACTIONS(1452), + [anon_sym_long] = ACTIONS(1452), + [anon_sym_short] = ACTIONS(1452), + [anon_sym_static] = ACTIONS(1452), + [anon_sym_auto] = ACTIONS(1452), + [anon_sym_register] = ACTIONS(1452), + [anon_sym_inline] = ACTIONS(1452), + [anon_sym___inline] = ACTIONS(1452), + [anon_sym___inline__] = ACTIONS(1452), + [anon_sym___forceinline] = ACTIONS(1452), + [anon_sym_thread_local] = ACTIONS(1452), + [anon_sym___thread] = ACTIONS(1452), + [anon_sym_const] = ACTIONS(1452), + [anon_sym_constexpr] = ACTIONS(1452), + [anon_sym_volatile] = ACTIONS(1452), + [anon_sym_restrict] = ACTIONS(1452), + [anon_sym___restrict__] = ACTIONS(1452), + [anon_sym__Atomic] = ACTIONS(1452), + [anon_sym__Noreturn] = ACTIONS(1452), + [anon_sym_noreturn] = ACTIONS(1452), + [sym_primitive_type] = ACTIONS(1452), + [anon_sym_enum] = ACTIONS(1452), + [anon_sym_struct] = ACTIONS(1452), + [anon_sym_union] = ACTIONS(1452), + [anon_sym_if] = ACTIONS(1452), + [anon_sym_switch] = ACTIONS(1452), + [anon_sym_case] = ACTIONS(1452), + [anon_sym_default] = ACTIONS(1452), + [anon_sym_while] = ACTIONS(1452), + [anon_sym_do] = ACTIONS(1452), + [anon_sym_for] = ACTIONS(1452), + [anon_sym_return] = ACTIONS(1452), + [anon_sym_break] = ACTIONS(1452), + [anon_sym_continue] = ACTIONS(1452), + [anon_sym_goto] = ACTIONS(1452), + [anon_sym___try] = ACTIONS(1452), + [anon_sym___leave] = ACTIONS(1452), + [anon_sym_DASH_DASH] = ACTIONS(1454), + [anon_sym_PLUS_PLUS] = ACTIONS(1454), + [anon_sym_sizeof] = ACTIONS(1452), + [anon_sym___alignof__] = ACTIONS(1452), + [anon_sym___alignof] = ACTIONS(1452), + [anon_sym__alignof] = ACTIONS(1452), + [anon_sym_alignof] = ACTIONS(1452), + [anon_sym__Alignof] = ACTIONS(1452), + [anon_sym_offsetof] = ACTIONS(1452), + [anon_sym__Generic] = ACTIONS(1452), + [anon_sym_asm] = ACTIONS(1452), + [anon_sym___asm__] = ACTIONS(1452), + [sym_number_literal] = ACTIONS(1454), + [anon_sym_L_SQUOTE] = ACTIONS(1454), + [anon_sym_u_SQUOTE] = ACTIONS(1454), + [anon_sym_U_SQUOTE] = ACTIONS(1454), + [anon_sym_u8_SQUOTE] = ACTIONS(1454), + [anon_sym_SQUOTE] = ACTIONS(1454), + [anon_sym_L_DQUOTE] = ACTIONS(1454), + [anon_sym_u_DQUOTE] = ACTIONS(1454), + [anon_sym_U_DQUOTE] = ACTIONS(1454), + [anon_sym_u8_DQUOTE] = ACTIONS(1454), + [anon_sym_DQUOTE] = ACTIONS(1454), + [sym_true] = ACTIONS(1452), + [sym_false] = ACTIONS(1452), + [anon_sym_NULL] = ACTIONS(1452), + [anon_sym_nullptr] = ACTIONS(1452), [sym_comment] = ACTIONS(3), }, [394] = { - [sym_identifier] = ACTIONS(1473), - [aux_sym_preproc_include_token1] = ACTIONS(1473), - [aux_sym_preproc_def_token1] = ACTIONS(1473), - [aux_sym_preproc_if_token1] = ACTIONS(1473), - [aux_sym_preproc_if_token2] = ACTIONS(1473), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1473), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1473), - [sym_preproc_directive] = ACTIONS(1473), - [anon_sym_LPAREN2] = ACTIONS(1475), - [anon_sym_BANG] = ACTIONS(1475), - [anon_sym_TILDE] = ACTIONS(1475), - [anon_sym_DASH] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(1473), - [anon_sym_STAR] = ACTIONS(1475), - [anon_sym_AMP] = ACTIONS(1475), - [anon_sym_SEMI] = ACTIONS(1475), - [anon_sym___extension__] = ACTIONS(1473), - [anon_sym_typedef] = ACTIONS(1473), - [anon_sym_extern] = ACTIONS(1473), - [anon_sym___attribute__] = ACTIONS(1473), - [anon_sym___scanf] = ACTIONS(1473), - [anon_sym___printf] = ACTIONS(1473), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1475), - [anon_sym___declspec] = ACTIONS(1473), - [anon_sym___cdecl] = ACTIONS(1473), - [anon_sym___clrcall] = ACTIONS(1473), - [anon_sym___stdcall] = ACTIONS(1473), - [anon_sym___fastcall] = ACTIONS(1473), - [anon_sym___thiscall] = ACTIONS(1473), - [anon_sym___vectorcall] = ACTIONS(1473), - [anon_sym_LBRACE] = ACTIONS(1475), - [anon_sym_signed] = ACTIONS(1473), - [anon_sym_unsigned] = ACTIONS(1473), - [anon_sym_long] = ACTIONS(1473), - [anon_sym_short] = ACTIONS(1473), - [anon_sym_static] = ACTIONS(1473), - [anon_sym_auto] = ACTIONS(1473), - [anon_sym_register] = ACTIONS(1473), - [anon_sym_inline] = ACTIONS(1473), - [anon_sym___inline] = ACTIONS(1473), - [anon_sym___inline__] = ACTIONS(1473), - [anon_sym___forceinline] = ACTIONS(1473), - [anon_sym_thread_local] = ACTIONS(1473), - [anon_sym___thread] = ACTIONS(1473), - [anon_sym_const] = ACTIONS(1473), - [anon_sym_constexpr] = ACTIONS(1473), - [anon_sym_volatile] = ACTIONS(1473), - [anon_sym_restrict] = ACTIONS(1473), - [anon_sym___restrict__] = ACTIONS(1473), - [anon_sym__Atomic] = ACTIONS(1473), - [anon_sym__Noreturn] = ACTIONS(1473), - [anon_sym_noreturn] = ACTIONS(1473), - [sym_primitive_type] = ACTIONS(1473), - [anon_sym_enum] = ACTIONS(1473), - [anon_sym_struct] = ACTIONS(1473), - [anon_sym_union] = ACTIONS(1473), - [anon_sym_if] = ACTIONS(1473), - [anon_sym_switch] = ACTIONS(1473), - [anon_sym_case] = ACTIONS(1473), - [anon_sym_default] = ACTIONS(1473), - [anon_sym_while] = ACTIONS(1473), - [anon_sym_do] = ACTIONS(1473), - [anon_sym_for] = ACTIONS(1473), - [anon_sym_return] = ACTIONS(1473), - [anon_sym_break] = ACTIONS(1473), - [anon_sym_continue] = ACTIONS(1473), - [anon_sym_goto] = ACTIONS(1473), - [anon_sym___try] = ACTIONS(1473), - [anon_sym___leave] = ACTIONS(1473), - [anon_sym_DASH_DASH] = ACTIONS(1475), - [anon_sym_PLUS_PLUS] = ACTIONS(1475), - [anon_sym_sizeof] = ACTIONS(1473), - [anon_sym___alignof__] = ACTIONS(1473), - [anon_sym___alignof] = ACTIONS(1473), - [anon_sym__alignof] = ACTIONS(1473), - [anon_sym_alignof] = ACTIONS(1473), - [anon_sym__Alignof] = ACTIONS(1473), - [anon_sym_offsetof] = ACTIONS(1473), - [anon_sym__Generic] = ACTIONS(1473), - [anon_sym_asm] = ACTIONS(1473), - [anon_sym___asm__] = ACTIONS(1473), - [sym_number_literal] = ACTIONS(1475), - [anon_sym_L_SQUOTE] = ACTIONS(1475), - [anon_sym_u_SQUOTE] = ACTIONS(1475), - [anon_sym_U_SQUOTE] = ACTIONS(1475), - [anon_sym_u8_SQUOTE] = ACTIONS(1475), - [anon_sym_SQUOTE] = ACTIONS(1475), - [anon_sym_L_DQUOTE] = ACTIONS(1475), - [anon_sym_u_DQUOTE] = ACTIONS(1475), - [anon_sym_U_DQUOTE] = ACTIONS(1475), - [anon_sym_u8_DQUOTE] = ACTIONS(1475), - [anon_sym_DQUOTE] = ACTIONS(1475), - [sym_true] = ACTIONS(1473), - [sym_false] = ACTIONS(1473), - [anon_sym_NULL] = ACTIONS(1473), - [anon_sym_nullptr] = ACTIONS(1473), + [sym_identifier] = ACTIONS(1456), + [aux_sym_preproc_include_token1] = ACTIONS(1456), + [aux_sym_preproc_def_token1] = ACTIONS(1456), + [aux_sym_preproc_if_token1] = ACTIONS(1456), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1456), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1456), + [sym_preproc_directive] = ACTIONS(1456), + [anon_sym_LPAREN2] = ACTIONS(1458), + [anon_sym_BANG] = ACTIONS(1458), + [anon_sym_TILDE] = ACTIONS(1458), + [anon_sym_DASH] = ACTIONS(1456), + [anon_sym_PLUS] = ACTIONS(1456), + [anon_sym_STAR] = ACTIONS(1458), + [anon_sym_AMP] = ACTIONS(1458), + [anon_sym_SEMI] = ACTIONS(1458), + [anon_sym___extension__] = ACTIONS(1456), + [anon_sym_typedef] = ACTIONS(1456), + [anon_sym_extern] = ACTIONS(1456), + [anon_sym___attribute__] = ACTIONS(1456), + [anon_sym___scanf] = ACTIONS(1456), + [anon_sym___printf] = ACTIONS(1456), + [anon_sym___read_mostly] = ACTIONS(1456), + [anon_sym___must_hold] = ACTIONS(1456), + [anon_sym___ro_after_init] = ACTIONS(1456), + [anon_sym___init] = ACTIONS(1456), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1458), + [anon_sym___declspec] = ACTIONS(1456), + [anon_sym___cdecl] = ACTIONS(1456), + [anon_sym___clrcall] = ACTIONS(1456), + [anon_sym___stdcall] = ACTIONS(1456), + [anon_sym___fastcall] = ACTIONS(1456), + [anon_sym___thiscall] = ACTIONS(1456), + [anon_sym___vectorcall] = ACTIONS(1456), + [anon_sym_LBRACE] = ACTIONS(1458), + [anon_sym_RBRACE] = ACTIONS(1458), + [anon_sym_signed] = ACTIONS(1456), + [anon_sym_unsigned] = ACTIONS(1456), + [anon_sym_long] = ACTIONS(1456), + [anon_sym_short] = ACTIONS(1456), + [anon_sym_static] = ACTIONS(1456), + [anon_sym_auto] = ACTIONS(1456), + [anon_sym_register] = ACTIONS(1456), + [anon_sym_inline] = ACTIONS(1456), + [anon_sym___inline] = ACTIONS(1456), + [anon_sym___inline__] = ACTIONS(1456), + [anon_sym___forceinline] = ACTIONS(1456), + [anon_sym_thread_local] = ACTIONS(1456), + [anon_sym___thread] = ACTIONS(1456), + [anon_sym_const] = ACTIONS(1456), + [anon_sym_constexpr] = ACTIONS(1456), + [anon_sym_volatile] = ACTIONS(1456), + [anon_sym_restrict] = ACTIONS(1456), + [anon_sym___restrict__] = ACTIONS(1456), + [anon_sym__Atomic] = ACTIONS(1456), + [anon_sym__Noreturn] = ACTIONS(1456), + [anon_sym_noreturn] = ACTIONS(1456), + [sym_primitive_type] = ACTIONS(1456), + [anon_sym_enum] = ACTIONS(1456), + [anon_sym_struct] = ACTIONS(1456), + [anon_sym_union] = ACTIONS(1456), + [anon_sym_if] = ACTIONS(1456), + [anon_sym_switch] = ACTIONS(1456), + [anon_sym_case] = ACTIONS(1456), + [anon_sym_default] = ACTIONS(1456), + [anon_sym_while] = ACTIONS(1456), + [anon_sym_do] = ACTIONS(1456), + [anon_sym_for] = ACTIONS(1456), + [anon_sym_return] = ACTIONS(1456), + [anon_sym_break] = ACTIONS(1456), + [anon_sym_continue] = ACTIONS(1456), + [anon_sym_goto] = ACTIONS(1456), + [anon_sym___try] = ACTIONS(1456), + [anon_sym___leave] = ACTIONS(1456), + [anon_sym_DASH_DASH] = ACTIONS(1458), + [anon_sym_PLUS_PLUS] = ACTIONS(1458), + [anon_sym_sizeof] = ACTIONS(1456), + [anon_sym___alignof__] = ACTIONS(1456), + [anon_sym___alignof] = ACTIONS(1456), + [anon_sym__alignof] = ACTIONS(1456), + [anon_sym_alignof] = ACTIONS(1456), + [anon_sym__Alignof] = ACTIONS(1456), + [anon_sym_offsetof] = ACTIONS(1456), + [anon_sym__Generic] = ACTIONS(1456), + [anon_sym_asm] = ACTIONS(1456), + [anon_sym___asm__] = ACTIONS(1456), + [sym_number_literal] = ACTIONS(1458), + [anon_sym_L_SQUOTE] = ACTIONS(1458), + [anon_sym_u_SQUOTE] = ACTIONS(1458), + [anon_sym_U_SQUOTE] = ACTIONS(1458), + [anon_sym_u8_SQUOTE] = ACTIONS(1458), + [anon_sym_SQUOTE] = ACTIONS(1458), + [anon_sym_L_DQUOTE] = ACTIONS(1458), + [anon_sym_u_DQUOTE] = ACTIONS(1458), + [anon_sym_U_DQUOTE] = ACTIONS(1458), + [anon_sym_u8_DQUOTE] = ACTIONS(1458), + [anon_sym_DQUOTE] = ACTIONS(1458), + [sym_true] = ACTIONS(1456), + [sym_false] = ACTIONS(1456), + [anon_sym_NULL] = ACTIONS(1456), + [anon_sym_nullptr] = ACTIONS(1456), [sym_comment] = ACTIONS(3), }, [395] = { - [sym_identifier] = ACTIONS(1469), - [aux_sym_preproc_include_token1] = ACTIONS(1469), - [aux_sym_preproc_def_token1] = ACTIONS(1469), - [aux_sym_preproc_if_token1] = ACTIONS(1469), - [aux_sym_preproc_if_token2] = ACTIONS(1469), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1469), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1469), - [sym_preproc_directive] = ACTIONS(1469), - [anon_sym_LPAREN2] = ACTIONS(1471), - [anon_sym_BANG] = ACTIONS(1471), - [anon_sym_TILDE] = ACTIONS(1471), - [anon_sym_DASH] = ACTIONS(1469), - [anon_sym_PLUS] = ACTIONS(1469), - [anon_sym_STAR] = ACTIONS(1471), - [anon_sym_AMP] = ACTIONS(1471), - [anon_sym_SEMI] = ACTIONS(1471), - [anon_sym___extension__] = ACTIONS(1469), - [anon_sym_typedef] = ACTIONS(1469), - [anon_sym_extern] = ACTIONS(1469), - [anon_sym___attribute__] = ACTIONS(1469), - [anon_sym___scanf] = ACTIONS(1469), - [anon_sym___printf] = ACTIONS(1469), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1471), - [anon_sym___declspec] = ACTIONS(1469), - [anon_sym___cdecl] = ACTIONS(1469), - [anon_sym___clrcall] = ACTIONS(1469), - [anon_sym___stdcall] = ACTIONS(1469), - [anon_sym___fastcall] = ACTIONS(1469), - [anon_sym___thiscall] = ACTIONS(1469), - [anon_sym___vectorcall] = ACTIONS(1469), - [anon_sym_LBRACE] = ACTIONS(1471), - [anon_sym_signed] = ACTIONS(1469), - [anon_sym_unsigned] = ACTIONS(1469), - [anon_sym_long] = ACTIONS(1469), - [anon_sym_short] = ACTIONS(1469), - [anon_sym_static] = ACTIONS(1469), - [anon_sym_auto] = ACTIONS(1469), - [anon_sym_register] = ACTIONS(1469), - [anon_sym_inline] = ACTIONS(1469), - [anon_sym___inline] = ACTIONS(1469), - [anon_sym___inline__] = ACTIONS(1469), - [anon_sym___forceinline] = ACTIONS(1469), - [anon_sym_thread_local] = ACTIONS(1469), - [anon_sym___thread] = ACTIONS(1469), - [anon_sym_const] = ACTIONS(1469), - [anon_sym_constexpr] = ACTIONS(1469), - [anon_sym_volatile] = ACTIONS(1469), - [anon_sym_restrict] = ACTIONS(1469), - [anon_sym___restrict__] = ACTIONS(1469), - [anon_sym__Atomic] = ACTIONS(1469), - [anon_sym__Noreturn] = ACTIONS(1469), - [anon_sym_noreturn] = ACTIONS(1469), - [sym_primitive_type] = ACTIONS(1469), - [anon_sym_enum] = ACTIONS(1469), - [anon_sym_struct] = ACTIONS(1469), - [anon_sym_union] = ACTIONS(1469), - [anon_sym_if] = ACTIONS(1469), - [anon_sym_switch] = ACTIONS(1469), - [anon_sym_case] = ACTIONS(1469), - [anon_sym_default] = ACTIONS(1469), - [anon_sym_while] = ACTIONS(1469), - [anon_sym_do] = ACTIONS(1469), - [anon_sym_for] = ACTIONS(1469), - [anon_sym_return] = ACTIONS(1469), - [anon_sym_break] = ACTIONS(1469), - [anon_sym_continue] = ACTIONS(1469), - [anon_sym_goto] = ACTIONS(1469), - [anon_sym___try] = ACTIONS(1469), - [anon_sym___leave] = ACTIONS(1469), - [anon_sym_DASH_DASH] = ACTIONS(1471), - [anon_sym_PLUS_PLUS] = ACTIONS(1471), - [anon_sym_sizeof] = ACTIONS(1469), - [anon_sym___alignof__] = ACTIONS(1469), - [anon_sym___alignof] = ACTIONS(1469), - [anon_sym__alignof] = ACTIONS(1469), - [anon_sym_alignof] = ACTIONS(1469), - [anon_sym__Alignof] = ACTIONS(1469), - [anon_sym_offsetof] = ACTIONS(1469), - [anon_sym__Generic] = ACTIONS(1469), - [anon_sym_asm] = ACTIONS(1469), - [anon_sym___asm__] = ACTIONS(1469), - [sym_number_literal] = ACTIONS(1471), - [anon_sym_L_SQUOTE] = ACTIONS(1471), - [anon_sym_u_SQUOTE] = ACTIONS(1471), - [anon_sym_U_SQUOTE] = ACTIONS(1471), - [anon_sym_u8_SQUOTE] = ACTIONS(1471), - [anon_sym_SQUOTE] = ACTIONS(1471), - [anon_sym_L_DQUOTE] = ACTIONS(1471), - [anon_sym_u_DQUOTE] = ACTIONS(1471), - [anon_sym_U_DQUOTE] = ACTIONS(1471), - [anon_sym_u8_DQUOTE] = ACTIONS(1471), - [anon_sym_DQUOTE] = ACTIONS(1471), - [sym_true] = ACTIONS(1469), - [sym_false] = ACTIONS(1469), - [anon_sym_NULL] = ACTIONS(1469), - [anon_sym_nullptr] = ACTIONS(1469), + [sym_identifier] = ACTIONS(1476), + [aux_sym_preproc_include_token1] = ACTIONS(1476), + [aux_sym_preproc_def_token1] = ACTIONS(1476), + [aux_sym_preproc_if_token1] = ACTIONS(1476), + [aux_sym_preproc_if_token2] = ACTIONS(1476), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1476), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1476), + [sym_preproc_directive] = ACTIONS(1476), + [anon_sym_LPAREN2] = ACTIONS(1478), + [anon_sym_BANG] = ACTIONS(1478), + [anon_sym_TILDE] = ACTIONS(1478), + [anon_sym_DASH] = ACTIONS(1476), + [anon_sym_PLUS] = ACTIONS(1476), + [anon_sym_STAR] = ACTIONS(1478), + [anon_sym_AMP] = ACTIONS(1478), + [anon_sym_SEMI] = ACTIONS(1478), + [anon_sym___extension__] = ACTIONS(1476), + [anon_sym_typedef] = ACTIONS(1476), + [anon_sym_extern] = ACTIONS(1476), + [anon_sym___attribute__] = ACTIONS(1476), + [anon_sym___scanf] = ACTIONS(1476), + [anon_sym___printf] = ACTIONS(1476), + [anon_sym___read_mostly] = ACTIONS(1476), + [anon_sym___must_hold] = ACTIONS(1476), + [anon_sym___ro_after_init] = ACTIONS(1476), + [anon_sym___init] = ACTIONS(1476), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1478), + [anon_sym___declspec] = ACTIONS(1476), + [anon_sym___cdecl] = ACTIONS(1476), + [anon_sym___clrcall] = ACTIONS(1476), + [anon_sym___stdcall] = ACTIONS(1476), + [anon_sym___fastcall] = ACTIONS(1476), + [anon_sym___thiscall] = ACTIONS(1476), + [anon_sym___vectorcall] = ACTIONS(1476), + [anon_sym_LBRACE] = ACTIONS(1478), + [anon_sym_signed] = ACTIONS(1476), + [anon_sym_unsigned] = ACTIONS(1476), + [anon_sym_long] = ACTIONS(1476), + [anon_sym_short] = ACTIONS(1476), + [anon_sym_static] = ACTIONS(1476), + [anon_sym_auto] = ACTIONS(1476), + [anon_sym_register] = ACTIONS(1476), + [anon_sym_inline] = ACTIONS(1476), + [anon_sym___inline] = ACTIONS(1476), + [anon_sym___inline__] = ACTIONS(1476), + [anon_sym___forceinline] = ACTIONS(1476), + [anon_sym_thread_local] = ACTIONS(1476), + [anon_sym___thread] = ACTIONS(1476), + [anon_sym_const] = ACTIONS(1476), + [anon_sym_constexpr] = ACTIONS(1476), + [anon_sym_volatile] = ACTIONS(1476), + [anon_sym_restrict] = ACTIONS(1476), + [anon_sym___restrict__] = ACTIONS(1476), + [anon_sym__Atomic] = ACTIONS(1476), + [anon_sym__Noreturn] = ACTIONS(1476), + [anon_sym_noreturn] = ACTIONS(1476), + [sym_primitive_type] = ACTIONS(1476), + [anon_sym_enum] = ACTIONS(1476), + [anon_sym_struct] = ACTIONS(1476), + [anon_sym_union] = ACTIONS(1476), + [anon_sym_if] = ACTIONS(1476), + [anon_sym_switch] = ACTIONS(1476), + [anon_sym_case] = ACTIONS(1476), + [anon_sym_default] = ACTIONS(1476), + [anon_sym_while] = ACTIONS(1476), + [anon_sym_do] = ACTIONS(1476), + [anon_sym_for] = ACTIONS(1476), + [anon_sym_return] = ACTIONS(1476), + [anon_sym_break] = ACTIONS(1476), + [anon_sym_continue] = ACTIONS(1476), + [anon_sym_goto] = ACTIONS(1476), + [anon_sym___try] = ACTIONS(1476), + [anon_sym___leave] = ACTIONS(1476), + [anon_sym_DASH_DASH] = ACTIONS(1478), + [anon_sym_PLUS_PLUS] = ACTIONS(1478), + [anon_sym_sizeof] = ACTIONS(1476), + [anon_sym___alignof__] = ACTIONS(1476), + [anon_sym___alignof] = ACTIONS(1476), + [anon_sym__alignof] = ACTIONS(1476), + [anon_sym_alignof] = ACTIONS(1476), + [anon_sym__Alignof] = ACTIONS(1476), + [anon_sym_offsetof] = ACTIONS(1476), + [anon_sym__Generic] = ACTIONS(1476), + [anon_sym_asm] = ACTIONS(1476), + [anon_sym___asm__] = ACTIONS(1476), + [sym_number_literal] = ACTIONS(1478), + [anon_sym_L_SQUOTE] = ACTIONS(1478), + [anon_sym_u_SQUOTE] = ACTIONS(1478), + [anon_sym_U_SQUOTE] = ACTIONS(1478), + [anon_sym_u8_SQUOTE] = ACTIONS(1478), + [anon_sym_SQUOTE] = ACTIONS(1478), + [anon_sym_L_DQUOTE] = ACTIONS(1478), + [anon_sym_u_DQUOTE] = ACTIONS(1478), + [anon_sym_U_DQUOTE] = ACTIONS(1478), + [anon_sym_u8_DQUOTE] = ACTIONS(1478), + [anon_sym_DQUOTE] = ACTIONS(1478), + [sym_true] = ACTIONS(1476), + [sym_false] = ACTIONS(1476), + [anon_sym_NULL] = ACTIONS(1476), + [anon_sym_nullptr] = ACTIONS(1476), [sym_comment] = ACTIONS(3), }, [396] = { - [sym_identifier] = ACTIONS(1457), - [aux_sym_preproc_include_token1] = ACTIONS(1457), - [aux_sym_preproc_def_token1] = ACTIONS(1457), - [aux_sym_preproc_if_token1] = ACTIONS(1457), - [aux_sym_preproc_if_token2] = ACTIONS(1457), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1457), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1457), - [sym_preproc_directive] = ACTIONS(1457), - [anon_sym_LPAREN2] = ACTIONS(1459), - [anon_sym_BANG] = ACTIONS(1459), - [anon_sym_TILDE] = ACTIONS(1459), - [anon_sym_DASH] = ACTIONS(1457), - [anon_sym_PLUS] = ACTIONS(1457), - [anon_sym_STAR] = ACTIONS(1459), - [anon_sym_AMP] = ACTIONS(1459), - [anon_sym_SEMI] = ACTIONS(1459), - [anon_sym___extension__] = ACTIONS(1457), - [anon_sym_typedef] = ACTIONS(1457), - [anon_sym_extern] = ACTIONS(1457), - [anon_sym___attribute__] = ACTIONS(1457), - [anon_sym___scanf] = ACTIONS(1457), - [anon_sym___printf] = ACTIONS(1457), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1459), - [anon_sym___declspec] = ACTIONS(1457), - [anon_sym___cdecl] = ACTIONS(1457), - [anon_sym___clrcall] = ACTIONS(1457), - [anon_sym___stdcall] = ACTIONS(1457), - [anon_sym___fastcall] = ACTIONS(1457), - [anon_sym___thiscall] = ACTIONS(1457), - [anon_sym___vectorcall] = ACTIONS(1457), - [anon_sym_LBRACE] = ACTIONS(1459), - [anon_sym_signed] = ACTIONS(1457), - [anon_sym_unsigned] = ACTIONS(1457), - [anon_sym_long] = ACTIONS(1457), - [anon_sym_short] = ACTIONS(1457), - [anon_sym_static] = ACTIONS(1457), - [anon_sym_auto] = ACTIONS(1457), - [anon_sym_register] = ACTIONS(1457), - [anon_sym_inline] = ACTIONS(1457), - [anon_sym___inline] = ACTIONS(1457), - [anon_sym___inline__] = ACTIONS(1457), - [anon_sym___forceinline] = ACTIONS(1457), - [anon_sym_thread_local] = ACTIONS(1457), - [anon_sym___thread] = ACTIONS(1457), - [anon_sym_const] = ACTIONS(1457), - [anon_sym_constexpr] = ACTIONS(1457), - [anon_sym_volatile] = ACTIONS(1457), - [anon_sym_restrict] = ACTIONS(1457), - [anon_sym___restrict__] = ACTIONS(1457), - [anon_sym__Atomic] = ACTIONS(1457), - [anon_sym__Noreturn] = ACTIONS(1457), - [anon_sym_noreturn] = ACTIONS(1457), - [sym_primitive_type] = ACTIONS(1457), - [anon_sym_enum] = ACTIONS(1457), - [anon_sym_struct] = ACTIONS(1457), - [anon_sym_union] = ACTIONS(1457), - [anon_sym_if] = ACTIONS(1457), - [anon_sym_switch] = ACTIONS(1457), - [anon_sym_case] = ACTIONS(1457), - [anon_sym_default] = ACTIONS(1457), - [anon_sym_while] = ACTIONS(1457), - [anon_sym_do] = ACTIONS(1457), - [anon_sym_for] = ACTIONS(1457), - [anon_sym_return] = ACTIONS(1457), - [anon_sym_break] = ACTIONS(1457), - [anon_sym_continue] = ACTIONS(1457), - [anon_sym_goto] = ACTIONS(1457), - [anon_sym___try] = ACTIONS(1457), - [anon_sym___leave] = ACTIONS(1457), - [anon_sym_DASH_DASH] = ACTIONS(1459), - [anon_sym_PLUS_PLUS] = ACTIONS(1459), - [anon_sym_sizeof] = ACTIONS(1457), - [anon_sym___alignof__] = ACTIONS(1457), - [anon_sym___alignof] = ACTIONS(1457), - [anon_sym__alignof] = ACTIONS(1457), - [anon_sym_alignof] = ACTIONS(1457), - [anon_sym__Alignof] = ACTIONS(1457), - [anon_sym_offsetof] = ACTIONS(1457), - [anon_sym__Generic] = ACTIONS(1457), - [anon_sym_asm] = ACTIONS(1457), - [anon_sym___asm__] = ACTIONS(1457), - [sym_number_literal] = ACTIONS(1459), - [anon_sym_L_SQUOTE] = ACTIONS(1459), - [anon_sym_u_SQUOTE] = ACTIONS(1459), - [anon_sym_U_SQUOTE] = ACTIONS(1459), - [anon_sym_u8_SQUOTE] = ACTIONS(1459), - [anon_sym_SQUOTE] = ACTIONS(1459), - [anon_sym_L_DQUOTE] = ACTIONS(1459), - [anon_sym_u_DQUOTE] = ACTIONS(1459), - [anon_sym_U_DQUOTE] = ACTIONS(1459), - [anon_sym_u8_DQUOTE] = ACTIONS(1459), - [anon_sym_DQUOTE] = ACTIONS(1459), - [sym_true] = ACTIONS(1457), - [sym_false] = ACTIONS(1457), - [anon_sym_NULL] = ACTIONS(1457), - [anon_sym_nullptr] = ACTIONS(1457), + [sym_identifier] = ACTIONS(1508), + [aux_sym_preproc_include_token1] = ACTIONS(1508), + [aux_sym_preproc_def_token1] = ACTIONS(1508), + [aux_sym_preproc_if_token1] = ACTIONS(1508), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1508), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1508), + [sym_preproc_directive] = ACTIONS(1508), + [anon_sym_LPAREN2] = ACTIONS(1510), + [anon_sym_BANG] = ACTIONS(1510), + [anon_sym_TILDE] = ACTIONS(1510), + [anon_sym_DASH] = ACTIONS(1508), + [anon_sym_PLUS] = ACTIONS(1508), + [anon_sym_STAR] = ACTIONS(1510), + [anon_sym_AMP] = ACTIONS(1510), + [anon_sym_SEMI] = ACTIONS(1510), + [anon_sym___extension__] = ACTIONS(1508), + [anon_sym_typedef] = ACTIONS(1508), + [anon_sym_extern] = ACTIONS(1508), + [anon_sym___attribute__] = ACTIONS(1508), + [anon_sym___scanf] = ACTIONS(1508), + [anon_sym___printf] = ACTIONS(1508), + [anon_sym___read_mostly] = ACTIONS(1508), + [anon_sym___must_hold] = ACTIONS(1508), + [anon_sym___ro_after_init] = ACTIONS(1508), + [anon_sym___init] = ACTIONS(1508), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1510), + [anon_sym___declspec] = ACTIONS(1508), + [anon_sym___cdecl] = ACTIONS(1508), + [anon_sym___clrcall] = ACTIONS(1508), + [anon_sym___stdcall] = ACTIONS(1508), + [anon_sym___fastcall] = ACTIONS(1508), + [anon_sym___thiscall] = ACTIONS(1508), + [anon_sym___vectorcall] = ACTIONS(1508), + [anon_sym_LBRACE] = ACTIONS(1510), + [anon_sym_RBRACE] = ACTIONS(1510), + [anon_sym_signed] = ACTIONS(1508), + [anon_sym_unsigned] = ACTIONS(1508), + [anon_sym_long] = ACTIONS(1508), + [anon_sym_short] = ACTIONS(1508), + [anon_sym_static] = ACTIONS(1508), + [anon_sym_auto] = ACTIONS(1508), + [anon_sym_register] = ACTIONS(1508), + [anon_sym_inline] = ACTIONS(1508), + [anon_sym___inline] = ACTIONS(1508), + [anon_sym___inline__] = ACTIONS(1508), + [anon_sym___forceinline] = ACTIONS(1508), + [anon_sym_thread_local] = ACTIONS(1508), + [anon_sym___thread] = ACTIONS(1508), + [anon_sym_const] = ACTIONS(1508), + [anon_sym_constexpr] = ACTIONS(1508), + [anon_sym_volatile] = ACTIONS(1508), + [anon_sym_restrict] = ACTIONS(1508), + [anon_sym___restrict__] = ACTIONS(1508), + [anon_sym__Atomic] = ACTIONS(1508), + [anon_sym__Noreturn] = ACTIONS(1508), + [anon_sym_noreturn] = ACTIONS(1508), + [sym_primitive_type] = ACTIONS(1508), + [anon_sym_enum] = ACTIONS(1508), + [anon_sym_struct] = ACTIONS(1508), + [anon_sym_union] = ACTIONS(1508), + [anon_sym_if] = ACTIONS(1508), + [anon_sym_switch] = ACTIONS(1508), + [anon_sym_case] = ACTIONS(1508), + [anon_sym_default] = ACTIONS(1508), + [anon_sym_while] = ACTIONS(1508), + [anon_sym_do] = ACTIONS(1508), + [anon_sym_for] = ACTIONS(1508), + [anon_sym_return] = ACTIONS(1508), + [anon_sym_break] = ACTIONS(1508), + [anon_sym_continue] = ACTIONS(1508), + [anon_sym_goto] = ACTIONS(1508), + [anon_sym___try] = ACTIONS(1508), + [anon_sym___leave] = ACTIONS(1508), + [anon_sym_DASH_DASH] = ACTIONS(1510), + [anon_sym_PLUS_PLUS] = ACTIONS(1510), + [anon_sym_sizeof] = ACTIONS(1508), + [anon_sym___alignof__] = ACTIONS(1508), + [anon_sym___alignof] = ACTIONS(1508), + [anon_sym__alignof] = ACTIONS(1508), + [anon_sym_alignof] = ACTIONS(1508), + [anon_sym__Alignof] = ACTIONS(1508), + [anon_sym_offsetof] = ACTIONS(1508), + [anon_sym__Generic] = ACTIONS(1508), + [anon_sym_asm] = ACTIONS(1508), + [anon_sym___asm__] = ACTIONS(1508), + [sym_number_literal] = ACTIONS(1510), + [anon_sym_L_SQUOTE] = ACTIONS(1510), + [anon_sym_u_SQUOTE] = ACTIONS(1510), + [anon_sym_U_SQUOTE] = ACTIONS(1510), + [anon_sym_u8_SQUOTE] = ACTIONS(1510), + [anon_sym_SQUOTE] = ACTIONS(1510), + [anon_sym_L_DQUOTE] = ACTIONS(1510), + [anon_sym_u_DQUOTE] = ACTIONS(1510), + [anon_sym_U_DQUOTE] = ACTIONS(1510), + [anon_sym_u8_DQUOTE] = ACTIONS(1510), + [anon_sym_DQUOTE] = ACTIONS(1510), + [sym_true] = ACTIONS(1508), + [sym_false] = ACTIONS(1508), + [anon_sym_NULL] = ACTIONS(1508), + [anon_sym_nullptr] = ACTIONS(1508), [sym_comment] = ACTIONS(3), }, [397] = { - [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_if_token2] = 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(1415), - [anon_sym_BANG] = ACTIONS(1415), - [anon_sym_TILDE] = ACTIONS(1415), - [anon_sym_DASH] = ACTIONS(1413), - [anon_sym_PLUS] = ACTIONS(1413), - [anon_sym_STAR] = ACTIONS(1415), - [anon_sym_AMP] = ACTIONS(1415), - [anon_sym_SEMI] = ACTIONS(1415), - [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_LBRACK_LBRACK] = ACTIONS(1415), - [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(1415), - [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), - [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___try] = ACTIONS(1413), - [anon_sym___leave] = ACTIONS(1413), - [anon_sym_DASH_DASH] = ACTIONS(1415), - [anon_sym_PLUS_PLUS] = ACTIONS(1415), - [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(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(1413), - [sym_false] = ACTIONS(1413), - [anon_sym_NULL] = ACTIONS(1413), - [anon_sym_nullptr] = ACTIONS(1413), + [sym_identifier] = ACTIONS(1460), + [aux_sym_preproc_include_token1] = ACTIONS(1460), + [aux_sym_preproc_def_token1] = ACTIONS(1460), + [aux_sym_preproc_if_token1] = ACTIONS(1460), + [aux_sym_preproc_if_token2] = ACTIONS(1460), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1460), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1460), + [sym_preproc_directive] = ACTIONS(1460), + [anon_sym_LPAREN2] = ACTIONS(1462), + [anon_sym_BANG] = ACTIONS(1462), + [anon_sym_TILDE] = ACTIONS(1462), + [anon_sym_DASH] = ACTIONS(1460), + [anon_sym_PLUS] = ACTIONS(1460), + [anon_sym_STAR] = ACTIONS(1462), + [anon_sym_AMP] = ACTIONS(1462), + [anon_sym_SEMI] = ACTIONS(1462), + [anon_sym___extension__] = ACTIONS(1460), + [anon_sym_typedef] = ACTIONS(1460), + [anon_sym_extern] = ACTIONS(1460), + [anon_sym___attribute__] = ACTIONS(1460), + [anon_sym___scanf] = ACTIONS(1460), + [anon_sym___printf] = ACTIONS(1460), + [anon_sym___read_mostly] = ACTIONS(1460), + [anon_sym___must_hold] = ACTIONS(1460), + [anon_sym___ro_after_init] = ACTIONS(1460), + [anon_sym___init] = ACTIONS(1460), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1462), + [anon_sym___declspec] = ACTIONS(1460), + [anon_sym___cdecl] = ACTIONS(1460), + [anon_sym___clrcall] = ACTIONS(1460), + [anon_sym___stdcall] = ACTIONS(1460), + [anon_sym___fastcall] = ACTIONS(1460), + [anon_sym___thiscall] = ACTIONS(1460), + [anon_sym___vectorcall] = ACTIONS(1460), + [anon_sym_LBRACE] = ACTIONS(1462), + [anon_sym_signed] = ACTIONS(1460), + [anon_sym_unsigned] = ACTIONS(1460), + [anon_sym_long] = ACTIONS(1460), + [anon_sym_short] = ACTIONS(1460), + [anon_sym_static] = ACTIONS(1460), + [anon_sym_auto] = ACTIONS(1460), + [anon_sym_register] = ACTIONS(1460), + [anon_sym_inline] = ACTIONS(1460), + [anon_sym___inline] = ACTIONS(1460), + [anon_sym___inline__] = ACTIONS(1460), + [anon_sym___forceinline] = ACTIONS(1460), + [anon_sym_thread_local] = ACTIONS(1460), + [anon_sym___thread] = ACTIONS(1460), + [anon_sym_const] = ACTIONS(1460), + [anon_sym_constexpr] = ACTIONS(1460), + [anon_sym_volatile] = ACTIONS(1460), + [anon_sym_restrict] = ACTIONS(1460), + [anon_sym___restrict__] = ACTIONS(1460), + [anon_sym__Atomic] = ACTIONS(1460), + [anon_sym__Noreturn] = ACTIONS(1460), + [anon_sym_noreturn] = ACTIONS(1460), + [sym_primitive_type] = ACTIONS(1460), + [anon_sym_enum] = ACTIONS(1460), + [anon_sym_struct] = ACTIONS(1460), + [anon_sym_union] = ACTIONS(1460), + [anon_sym_if] = ACTIONS(1460), + [anon_sym_switch] = ACTIONS(1460), + [anon_sym_case] = ACTIONS(1460), + [anon_sym_default] = ACTIONS(1460), + [anon_sym_while] = ACTIONS(1460), + [anon_sym_do] = ACTIONS(1460), + [anon_sym_for] = ACTIONS(1460), + [anon_sym_return] = ACTIONS(1460), + [anon_sym_break] = ACTIONS(1460), + [anon_sym_continue] = ACTIONS(1460), + [anon_sym_goto] = ACTIONS(1460), + [anon_sym___try] = ACTIONS(1460), + [anon_sym___leave] = ACTIONS(1460), + [anon_sym_DASH_DASH] = ACTIONS(1462), + [anon_sym_PLUS_PLUS] = ACTIONS(1462), + [anon_sym_sizeof] = ACTIONS(1460), + [anon_sym___alignof__] = ACTIONS(1460), + [anon_sym___alignof] = ACTIONS(1460), + [anon_sym__alignof] = ACTIONS(1460), + [anon_sym_alignof] = ACTIONS(1460), + [anon_sym__Alignof] = ACTIONS(1460), + [anon_sym_offsetof] = ACTIONS(1460), + [anon_sym__Generic] = ACTIONS(1460), + [anon_sym_asm] = ACTIONS(1460), + [anon_sym___asm__] = ACTIONS(1460), + [sym_number_literal] = ACTIONS(1462), + [anon_sym_L_SQUOTE] = ACTIONS(1462), + [anon_sym_u_SQUOTE] = ACTIONS(1462), + [anon_sym_U_SQUOTE] = ACTIONS(1462), + [anon_sym_u8_SQUOTE] = ACTIONS(1462), + [anon_sym_SQUOTE] = ACTIONS(1462), + [anon_sym_L_DQUOTE] = ACTIONS(1462), + [anon_sym_u_DQUOTE] = ACTIONS(1462), + [anon_sym_U_DQUOTE] = ACTIONS(1462), + [anon_sym_u8_DQUOTE] = ACTIONS(1462), + [anon_sym_DQUOTE] = ACTIONS(1462), + [sym_true] = ACTIONS(1460), + [sym_false] = ACTIONS(1460), + [anon_sym_NULL] = ACTIONS(1460), + [anon_sym_nullptr] = ACTIONS(1460), [sym_comment] = ACTIONS(3), }, [398] = { - [sym_identifier] = ACTIONS(1453), - [aux_sym_preproc_include_token1] = ACTIONS(1453), - [aux_sym_preproc_def_token1] = ACTIONS(1453), - [aux_sym_preproc_if_token1] = ACTIONS(1453), - [aux_sym_preproc_if_token2] = ACTIONS(1453), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1453), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1453), - [sym_preproc_directive] = ACTIONS(1453), - [anon_sym_LPAREN2] = ACTIONS(1455), - [anon_sym_BANG] = ACTIONS(1455), - [anon_sym_TILDE] = ACTIONS(1455), - [anon_sym_DASH] = ACTIONS(1453), - [anon_sym_PLUS] = ACTIONS(1453), - [anon_sym_STAR] = ACTIONS(1455), - [anon_sym_AMP] = ACTIONS(1455), - [anon_sym_SEMI] = ACTIONS(1455), - [anon_sym___extension__] = ACTIONS(1453), - [anon_sym_typedef] = ACTIONS(1453), - [anon_sym_extern] = ACTIONS(1453), - [anon_sym___attribute__] = ACTIONS(1453), - [anon_sym___scanf] = ACTIONS(1453), - [anon_sym___printf] = ACTIONS(1453), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1455), - [anon_sym___declspec] = ACTIONS(1453), - [anon_sym___cdecl] = ACTIONS(1453), - [anon_sym___clrcall] = ACTIONS(1453), - [anon_sym___stdcall] = ACTIONS(1453), - [anon_sym___fastcall] = ACTIONS(1453), - [anon_sym___thiscall] = ACTIONS(1453), - [anon_sym___vectorcall] = ACTIONS(1453), - [anon_sym_LBRACE] = ACTIONS(1455), - [anon_sym_signed] = ACTIONS(1453), - [anon_sym_unsigned] = ACTIONS(1453), - [anon_sym_long] = ACTIONS(1453), - [anon_sym_short] = ACTIONS(1453), - [anon_sym_static] = ACTIONS(1453), - [anon_sym_auto] = ACTIONS(1453), - [anon_sym_register] = ACTIONS(1453), - [anon_sym_inline] = ACTIONS(1453), - [anon_sym___inline] = ACTIONS(1453), - [anon_sym___inline__] = ACTIONS(1453), - [anon_sym___forceinline] = ACTIONS(1453), - [anon_sym_thread_local] = ACTIONS(1453), - [anon_sym___thread] = ACTIONS(1453), - [anon_sym_const] = ACTIONS(1453), - [anon_sym_constexpr] = ACTIONS(1453), - [anon_sym_volatile] = ACTIONS(1453), - [anon_sym_restrict] = ACTIONS(1453), - [anon_sym___restrict__] = ACTIONS(1453), - [anon_sym__Atomic] = ACTIONS(1453), - [anon_sym__Noreturn] = ACTIONS(1453), - [anon_sym_noreturn] = ACTIONS(1453), - [sym_primitive_type] = ACTIONS(1453), - [anon_sym_enum] = ACTIONS(1453), - [anon_sym_struct] = ACTIONS(1453), - [anon_sym_union] = ACTIONS(1453), - [anon_sym_if] = ACTIONS(1453), - [anon_sym_switch] = ACTIONS(1453), - [anon_sym_case] = ACTIONS(1453), - [anon_sym_default] = ACTIONS(1453), - [anon_sym_while] = ACTIONS(1453), - [anon_sym_do] = ACTIONS(1453), - [anon_sym_for] = ACTIONS(1453), - [anon_sym_return] = ACTIONS(1453), - [anon_sym_break] = ACTIONS(1453), - [anon_sym_continue] = ACTIONS(1453), - [anon_sym_goto] = ACTIONS(1453), - [anon_sym___try] = ACTIONS(1453), - [anon_sym___leave] = ACTIONS(1453), - [anon_sym_DASH_DASH] = ACTIONS(1455), - [anon_sym_PLUS_PLUS] = ACTIONS(1455), - [anon_sym_sizeof] = ACTIONS(1453), - [anon_sym___alignof__] = ACTIONS(1453), - [anon_sym___alignof] = ACTIONS(1453), - [anon_sym__alignof] = ACTIONS(1453), - [anon_sym_alignof] = ACTIONS(1453), - [anon_sym__Alignof] = ACTIONS(1453), - [anon_sym_offsetof] = ACTIONS(1453), - [anon_sym__Generic] = ACTIONS(1453), - [anon_sym_asm] = ACTIONS(1453), - [anon_sym___asm__] = ACTIONS(1453), - [sym_number_literal] = ACTIONS(1455), - [anon_sym_L_SQUOTE] = ACTIONS(1455), - [anon_sym_u_SQUOTE] = ACTIONS(1455), - [anon_sym_U_SQUOTE] = ACTIONS(1455), - [anon_sym_u8_SQUOTE] = ACTIONS(1455), - [anon_sym_SQUOTE] = ACTIONS(1455), - [anon_sym_L_DQUOTE] = ACTIONS(1455), - [anon_sym_u_DQUOTE] = ACTIONS(1455), - [anon_sym_U_DQUOTE] = ACTIONS(1455), - [anon_sym_u8_DQUOTE] = ACTIONS(1455), - [anon_sym_DQUOTE] = ACTIONS(1455), - [sym_true] = ACTIONS(1453), - [sym_false] = ACTIONS(1453), - [anon_sym_NULL] = ACTIONS(1453), - [anon_sym_nullptr] = ACTIONS(1453), + [sym_identifier] = ACTIONS(1464), + [aux_sym_preproc_include_token1] = ACTIONS(1464), + [aux_sym_preproc_def_token1] = ACTIONS(1464), + [aux_sym_preproc_if_token1] = ACTIONS(1464), + [aux_sym_preproc_if_token2] = ACTIONS(1464), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1464), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1464), + [sym_preproc_directive] = ACTIONS(1464), + [anon_sym_LPAREN2] = ACTIONS(1466), + [anon_sym_BANG] = ACTIONS(1466), + [anon_sym_TILDE] = ACTIONS(1466), + [anon_sym_DASH] = ACTIONS(1464), + [anon_sym_PLUS] = ACTIONS(1464), + [anon_sym_STAR] = ACTIONS(1466), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_SEMI] = ACTIONS(1466), + [anon_sym___extension__] = ACTIONS(1464), + [anon_sym_typedef] = ACTIONS(1464), + [anon_sym_extern] = ACTIONS(1464), + [anon_sym___attribute__] = ACTIONS(1464), + [anon_sym___scanf] = ACTIONS(1464), + [anon_sym___printf] = ACTIONS(1464), + [anon_sym___read_mostly] = ACTIONS(1464), + [anon_sym___must_hold] = ACTIONS(1464), + [anon_sym___ro_after_init] = ACTIONS(1464), + [anon_sym___init] = ACTIONS(1464), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1466), + [anon_sym___declspec] = ACTIONS(1464), + [anon_sym___cdecl] = ACTIONS(1464), + [anon_sym___clrcall] = ACTIONS(1464), + [anon_sym___stdcall] = ACTIONS(1464), + [anon_sym___fastcall] = ACTIONS(1464), + [anon_sym___thiscall] = ACTIONS(1464), + [anon_sym___vectorcall] = ACTIONS(1464), + [anon_sym_LBRACE] = ACTIONS(1466), + [anon_sym_signed] = ACTIONS(1464), + [anon_sym_unsigned] = ACTIONS(1464), + [anon_sym_long] = ACTIONS(1464), + [anon_sym_short] = ACTIONS(1464), + [anon_sym_static] = ACTIONS(1464), + [anon_sym_auto] = ACTIONS(1464), + [anon_sym_register] = ACTIONS(1464), + [anon_sym_inline] = ACTIONS(1464), + [anon_sym___inline] = ACTIONS(1464), + [anon_sym___inline__] = ACTIONS(1464), + [anon_sym___forceinline] = ACTIONS(1464), + [anon_sym_thread_local] = ACTIONS(1464), + [anon_sym___thread] = ACTIONS(1464), + [anon_sym_const] = ACTIONS(1464), + [anon_sym_constexpr] = ACTIONS(1464), + [anon_sym_volatile] = ACTIONS(1464), + [anon_sym_restrict] = ACTIONS(1464), + [anon_sym___restrict__] = ACTIONS(1464), + [anon_sym__Atomic] = ACTIONS(1464), + [anon_sym__Noreturn] = ACTIONS(1464), + [anon_sym_noreturn] = ACTIONS(1464), + [sym_primitive_type] = ACTIONS(1464), + [anon_sym_enum] = ACTIONS(1464), + [anon_sym_struct] = ACTIONS(1464), + [anon_sym_union] = ACTIONS(1464), + [anon_sym_if] = ACTIONS(1464), + [anon_sym_switch] = ACTIONS(1464), + [anon_sym_case] = ACTIONS(1464), + [anon_sym_default] = ACTIONS(1464), + [anon_sym_while] = ACTIONS(1464), + [anon_sym_do] = ACTIONS(1464), + [anon_sym_for] = ACTIONS(1464), + [anon_sym_return] = ACTIONS(1464), + [anon_sym_break] = ACTIONS(1464), + [anon_sym_continue] = ACTIONS(1464), + [anon_sym_goto] = ACTIONS(1464), + [anon_sym___try] = ACTIONS(1464), + [anon_sym___leave] = ACTIONS(1464), + [anon_sym_DASH_DASH] = ACTIONS(1466), + [anon_sym_PLUS_PLUS] = ACTIONS(1466), + [anon_sym_sizeof] = ACTIONS(1464), + [anon_sym___alignof__] = ACTIONS(1464), + [anon_sym___alignof] = ACTIONS(1464), + [anon_sym__alignof] = ACTIONS(1464), + [anon_sym_alignof] = ACTIONS(1464), + [anon_sym__Alignof] = ACTIONS(1464), + [anon_sym_offsetof] = ACTIONS(1464), + [anon_sym__Generic] = ACTIONS(1464), + [anon_sym_asm] = ACTIONS(1464), + [anon_sym___asm__] = ACTIONS(1464), + [sym_number_literal] = ACTIONS(1466), + [anon_sym_L_SQUOTE] = ACTIONS(1466), + [anon_sym_u_SQUOTE] = ACTIONS(1466), + [anon_sym_U_SQUOTE] = ACTIONS(1466), + [anon_sym_u8_SQUOTE] = ACTIONS(1466), + [anon_sym_SQUOTE] = ACTIONS(1466), + [anon_sym_L_DQUOTE] = ACTIONS(1466), + [anon_sym_u_DQUOTE] = ACTIONS(1466), + [anon_sym_U_DQUOTE] = ACTIONS(1466), + [anon_sym_u8_DQUOTE] = ACTIONS(1466), + [anon_sym_DQUOTE] = ACTIONS(1466), + [sym_true] = ACTIONS(1464), + [sym_false] = ACTIONS(1464), + [anon_sym_NULL] = ACTIONS(1464), + [anon_sym_nullptr] = ACTIONS(1464), [sym_comment] = ACTIONS(3), }, [399] = { - [sym_identifier] = ACTIONS(1461), - [aux_sym_preproc_include_token1] = ACTIONS(1461), - [aux_sym_preproc_def_token1] = ACTIONS(1461), - [aux_sym_preproc_if_token1] = ACTIONS(1461), - [aux_sym_preproc_if_token2] = ACTIONS(1461), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1461), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1461), - [sym_preproc_directive] = ACTIONS(1461), - [anon_sym_LPAREN2] = ACTIONS(1463), - [anon_sym_BANG] = ACTIONS(1463), - [anon_sym_TILDE] = ACTIONS(1463), - [anon_sym_DASH] = ACTIONS(1461), - [anon_sym_PLUS] = ACTIONS(1461), - [anon_sym_STAR] = ACTIONS(1463), - [anon_sym_AMP] = ACTIONS(1463), - [anon_sym_SEMI] = ACTIONS(1463), - [anon_sym___extension__] = ACTIONS(1461), - [anon_sym_typedef] = ACTIONS(1461), - [anon_sym_extern] = ACTIONS(1461), - [anon_sym___attribute__] = ACTIONS(1461), - [anon_sym___scanf] = ACTIONS(1461), - [anon_sym___printf] = ACTIONS(1461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1463), - [anon_sym___declspec] = ACTIONS(1461), - [anon_sym___cdecl] = ACTIONS(1461), - [anon_sym___clrcall] = ACTIONS(1461), - [anon_sym___stdcall] = ACTIONS(1461), - [anon_sym___fastcall] = ACTIONS(1461), - [anon_sym___thiscall] = ACTIONS(1461), - [anon_sym___vectorcall] = ACTIONS(1461), - [anon_sym_LBRACE] = ACTIONS(1463), - [anon_sym_signed] = ACTIONS(1461), - [anon_sym_unsigned] = ACTIONS(1461), - [anon_sym_long] = ACTIONS(1461), - [anon_sym_short] = ACTIONS(1461), - [anon_sym_static] = ACTIONS(1461), - [anon_sym_auto] = ACTIONS(1461), - [anon_sym_register] = ACTIONS(1461), - [anon_sym_inline] = ACTIONS(1461), - [anon_sym___inline] = ACTIONS(1461), - [anon_sym___inline__] = ACTIONS(1461), - [anon_sym___forceinline] = ACTIONS(1461), - [anon_sym_thread_local] = ACTIONS(1461), - [anon_sym___thread] = ACTIONS(1461), - [anon_sym_const] = ACTIONS(1461), - [anon_sym_constexpr] = ACTIONS(1461), - [anon_sym_volatile] = ACTIONS(1461), - [anon_sym_restrict] = ACTIONS(1461), - [anon_sym___restrict__] = ACTIONS(1461), - [anon_sym__Atomic] = ACTIONS(1461), - [anon_sym__Noreturn] = ACTIONS(1461), - [anon_sym_noreturn] = ACTIONS(1461), - [sym_primitive_type] = ACTIONS(1461), - [anon_sym_enum] = ACTIONS(1461), - [anon_sym_struct] = ACTIONS(1461), - [anon_sym_union] = ACTIONS(1461), - [anon_sym_if] = ACTIONS(1461), - [anon_sym_switch] = ACTIONS(1461), - [anon_sym_case] = ACTIONS(1461), - [anon_sym_default] = ACTIONS(1461), - [anon_sym_while] = ACTIONS(1461), - [anon_sym_do] = ACTIONS(1461), - [anon_sym_for] = ACTIONS(1461), - [anon_sym_return] = ACTIONS(1461), - [anon_sym_break] = ACTIONS(1461), - [anon_sym_continue] = ACTIONS(1461), - [anon_sym_goto] = ACTIONS(1461), - [anon_sym___try] = ACTIONS(1461), - [anon_sym___leave] = ACTIONS(1461), - [anon_sym_DASH_DASH] = ACTIONS(1463), - [anon_sym_PLUS_PLUS] = ACTIONS(1463), - [anon_sym_sizeof] = ACTIONS(1461), - [anon_sym___alignof__] = ACTIONS(1461), - [anon_sym___alignof] = ACTIONS(1461), - [anon_sym__alignof] = ACTIONS(1461), - [anon_sym_alignof] = ACTIONS(1461), - [anon_sym__Alignof] = ACTIONS(1461), - [anon_sym_offsetof] = ACTIONS(1461), - [anon_sym__Generic] = ACTIONS(1461), - [anon_sym_asm] = ACTIONS(1461), - [anon_sym___asm__] = ACTIONS(1461), - [sym_number_literal] = ACTIONS(1463), - [anon_sym_L_SQUOTE] = ACTIONS(1463), - [anon_sym_u_SQUOTE] = ACTIONS(1463), - [anon_sym_U_SQUOTE] = ACTIONS(1463), - [anon_sym_u8_SQUOTE] = ACTIONS(1463), - [anon_sym_SQUOTE] = ACTIONS(1463), - [anon_sym_L_DQUOTE] = ACTIONS(1463), - [anon_sym_u_DQUOTE] = ACTIONS(1463), - [anon_sym_U_DQUOTE] = ACTIONS(1463), - [anon_sym_u8_DQUOTE] = ACTIONS(1463), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_true] = ACTIONS(1461), - [sym_false] = ACTIONS(1461), - [anon_sym_NULL] = ACTIONS(1461), - [anon_sym_nullptr] = ACTIONS(1461), + [sym_identifier] = ACTIONS(1512), + [aux_sym_preproc_include_token1] = ACTIONS(1512), + [aux_sym_preproc_def_token1] = ACTIONS(1512), + [aux_sym_preproc_if_token1] = ACTIONS(1512), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1512), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1512), + [sym_preproc_directive] = ACTIONS(1512), + [anon_sym_LPAREN2] = ACTIONS(1514), + [anon_sym_BANG] = ACTIONS(1514), + [anon_sym_TILDE] = ACTIONS(1514), + [anon_sym_DASH] = ACTIONS(1512), + [anon_sym_PLUS] = ACTIONS(1512), + [anon_sym_STAR] = ACTIONS(1514), + [anon_sym_AMP] = ACTIONS(1514), + [anon_sym_SEMI] = ACTIONS(1514), + [anon_sym___extension__] = ACTIONS(1512), + [anon_sym_typedef] = ACTIONS(1512), + [anon_sym_extern] = ACTIONS(1512), + [anon_sym___attribute__] = ACTIONS(1512), + [anon_sym___scanf] = ACTIONS(1512), + [anon_sym___printf] = ACTIONS(1512), + [anon_sym___read_mostly] = ACTIONS(1512), + [anon_sym___must_hold] = ACTIONS(1512), + [anon_sym___ro_after_init] = ACTIONS(1512), + [anon_sym___init] = ACTIONS(1512), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1514), + [anon_sym___declspec] = ACTIONS(1512), + [anon_sym___cdecl] = ACTIONS(1512), + [anon_sym___clrcall] = ACTIONS(1512), + [anon_sym___stdcall] = ACTIONS(1512), + [anon_sym___fastcall] = ACTIONS(1512), + [anon_sym___thiscall] = ACTIONS(1512), + [anon_sym___vectorcall] = ACTIONS(1512), + [anon_sym_LBRACE] = ACTIONS(1514), + [anon_sym_RBRACE] = ACTIONS(1514), + [anon_sym_signed] = ACTIONS(1512), + [anon_sym_unsigned] = ACTIONS(1512), + [anon_sym_long] = ACTIONS(1512), + [anon_sym_short] = ACTIONS(1512), + [anon_sym_static] = ACTIONS(1512), + [anon_sym_auto] = ACTIONS(1512), + [anon_sym_register] = ACTIONS(1512), + [anon_sym_inline] = ACTIONS(1512), + [anon_sym___inline] = ACTIONS(1512), + [anon_sym___inline__] = ACTIONS(1512), + [anon_sym___forceinline] = ACTIONS(1512), + [anon_sym_thread_local] = ACTIONS(1512), + [anon_sym___thread] = ACTIONS(1512), + [anon_sym_const] = ACTIONS(1512), + [anon_sym_constexpr] = ACTIONS(1512), + [anon_sym_volatile] = ACTIONS(1512), + [anon_sym_restrict] = ACTIONS(1512), + [anon_sym___restrict__] = ACTIONS(1512), + [anon_sym__Atomic] = ACTIONS(1512), + [anon_sym__Noreturn] = ACTIONS(1512), + [anon_sym_noreturn] = ACTIONS(1512), + [sym_primitive_type] = ACTIONS(1512), + [anon_sym_enum] = ACTIONS(1512), + [anon_sym_struct] = ACTIONS(1512), + [anon_sym_union] = ACTIONS(1512), + [anon_sym_if] = ACTIONS(1512), + [anon_sym_switch] = ACTIONS(1512), + [anon_sym_case] = ACTIONS(1512), + [anon_sym_default] = ACTIONS(1512), + [anon_sym_while] = ACTIONS(1512), + [anon_sym_do] = ACTIONS(1512), + [anon_sym_for] = ACTIONS(1512), + [anon_sym_return] = ACTIONS(1512), + [anon_sym_break] = ACTIONS(1512), + [anon_sym_continue] = ACTIONS(1512), + [anon_sym_goto] = ACTIONS(1512), + [anon_sym___try] = ACTIONS(1512), + [anon_sym___leave] = ACTIONS(1512), + [anon_sym_DASH_DASH] = ACTIONS(1514), + [anon_sym_PLUS_PLUS] = ACTIONS(1514), + [anon_sym_sizeof] = ACTIONS(1512), + [anon_sym___alignof__] = ACTIONS(1512), + [anon_sym___alignof] = ACTIONS(1512), + [anon_sym__alignof] = ACTIONS(1512), + [anon_sym_alignof] = ACTIONS(1512), + [anon_sym__Alignof] = ACTIONS(1512), + [anon_sym_offsetof] = ACTIONS(1512), + [anon_sym__Generic] = ACTIONS(1512), + [anon_sym_asm] = ACTIONS(1512), + [anon_sym___asm__] = ACTIONS(1512), + [sym_number_literal] = ACTIONS(1514), + [anon_sym_L_SQUOTE] = ACTIONS(1514), + [anon_sym_u_SQUOTE] = ACTIONS(1514), + [anon_sym_U_SQUOTE] = ACTIONS(1514), + [anon_sym_u8_SQUOTE] = ACTIONS(1514), + [anon_sym_SQUOTE] = ACTIONS(1514), + [anon_sym_L_DQUOTE] = ACTIONS(1514), + [anon_sym_u_DQUOTE] = ACTIONS(1514), + [anon_sym_U_DQUOTE] = ACTIONS(1514), + [anon_sym_u8_DQUOTE] = ACTIONS(1514), + [anon_sym_DQUOTE] = ACTIONS(1514), + [sym_true] = ACTIONS(1512), + [sym_false] = ACTIONS(1512), + [anon_sym_NULL] = ACTIONS(1512), + [anon_sym_nullptr] = ACTIONS(1512), [sym_comment] = ACTIONS(3), }, [400] = { - [sym_identifier] = ACTIONS(1465), - [aux_sym_preproc_include_token1] = ACTIONS(1465), - [aux_sym_preproc_def_token1] = ACTIONS(1465), - [aux_sym_preproc_if_token1] = ACTIONS(1465), - [aux_sym_preproc_if_token2] = ACTIONS(1465), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1465), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1465), - [sym_preproc_directive] = ACTIONS(1465), - [anon_sym_LPAREN2] = ACTIONS(1467), - [anon_sym_BANG] = ACTIONS(1467), - [anon_sym_TILDE] = ACTIONS(1467), - [anon_sym_DASH] = ACTIONS(1465), - [anon_sym_PLUS] = ACTIONS(1465), - [anon_sym_STAR] = ACTIONS(1467), - [anon_sym_AMP] = ACTIONS(1467), - [anon_sym_SEMI] = ACTIONS(1467), - [anon_sym___extension__] = ACTIONS(1465), - [anon_sym_typedef] = ACTIONS(1465), - [anon_sym_extern] = ACTIONS(1465), - [anon_sym___attribute__] = ACTIONS(1465), - [anon_sym___scanf] = ACTIONS(1465), - [anon_sym___printf] = ACTIONS(1465), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1467), - [anon_sym___declspec] = ACTIONS(1465), - [anon_sym___cdecl] = ACTIONS(1465), - [anon_sym___clrcall] = ACTIONS(1465), - [anon_sym___stdcall] = ACTIONS(1465), - [anon_sym___fastcall] = ACTIONS(1465), - [anon_sym___thiscall] = ACTIONS(1465), - [anon_sym___vectorcall] = ACTIONS(1465), - [anon_sym_LBRACE] = ACTIONS(1467), - [anon_sym_signed] = ACTIONS(1465), - [anon_sym_unsigned] = ACTIONS(1465), - [anon_sym_long] = ACTIONS(1465), - [anon_sym_short] = ACTIONS(1465), - [anon_sym_static] = ACTIONS(1465), - [anon_sym_auto] = ACTIONS(1465), - [anon_sym_register] = ACTIONS(1465), - [anon_sym_inline] = ACTIONS(1465), - [anon_sym___inline] = ACTIONS(1465), - [anon_sym___inline__] = ACTIONS(1465), - [anon_sym___forceinline] = ACTIONS(1465), - [anon_sym_thread_local] = ACTIONS(1465), - [anon_sym___thread] = ACTIONS(1465), - [anon_sym_const] = ACTIONS(1465), - [anon_sym_constexpr] = ACTIONS(1465), - [anon_sym_volatile] = ACTIONS(1465), - [anon_sym_restrict] = ACTIONS(1465), - [anon_sym___restrict__] = ACTIONS(1465), - [anon_sym__Atomic] = ACTIONS(1465), - [anon_sym__Noreturn] = ACTIONS(1465), - [anon_sym_noreturn] = ACTIONS(1465), - [sym_primitive_type] = ACTIONS(1465), - [anon_sym_enum] = ACTIONS(1465), - [anon_sym_struct] = ACTIONS(1465), - [anon_sym_union] = ACTIONS(1465), - [anon_sym_if] = ACTIONS(1465), - [anon_sym_switch] = ACTIONS(1465), - [anon_sym_case] = ACTIONS(1465), - [anon_sym_default] = ACTIONS(1465), - [anon_sym_while] = ACTIONS(1465), - [anon_sym_do] = ACTIONS(1465), - [anon_sym_for] = ACTIONS(1465), - [anon_sym_return] = ACTIONS(1465), - [anon_sym_break] = ACTIONS(1465), - [anon_sym_continue] = ACTIONS(1465), - [anon_sym_goto] = ACTIONS(1465), - [anon_sym___try] = ACTIONS(1465), - [anon_sym___leave] = ACTIONS(1465), - [anon_sym_DASH_DASH] = ACTIONS(1467), - [anon_sym_PLUS_PLUS] = ACTIONS(1467), - [anon_sym_sizeof] = ACTIONS(1465), - [anon_sym___alignof__] = ACTIONS(1465), - [anon_sym___alignof] = ACTIONS(1465), - [anon_sym__alignof] = ACTIONS(1465), - [anon_sym_alignof] = ACTIONS(1465), - [anon_sym__Alignof] = ACTIONS(1465), - [anon_sym_offsetof] = ACTIONS(1465), - [anon_sym__Generic] = ACTIONS(1465), - [anon_sym_asm] = ACTIONS(1465), - [anon_sym___asm__] = ACTIONS(1465), - [sym_number_literal] = ACTIONS(1467), - [anon_sym_L_SQUOTE] = ACTIONS(1467), - [anon_sym_u_SQUOTE] = ACTIONS(1467), - [anon_sym_U_SQUOTE] = ACTIONS(1467), - [anon_sym_u8_SQUOTE] = ACTIONS(1467), - [anon_sym_SQUOTE] = ACTIONS(1467), - [anon_sym_L_DQUOTE] = ACTIONS(1467), - [anon_sym_u_DQUOTE] = ACTIONS(1467), - [anon_sym_U_DQUOTE] = ACTIONS(1467), - [anon_sym_u8_DQUOTE] = ACTIONS(1467), - [anon_sym_DQUOTE] = ACTIONS(1467), - [sym_true] = ACTIONS(1465), - [sym_false] = ACTIONS(1465), - [anon_sym_NULL] = ACTIONS(1465), - [anon_sym_nullptr] = ACTIONS(1465), + [sym_identifier] = ACTIONS(1492), + [aux_sym_preproc_include_token1] = ACTIONS(1492), + [aux_sym_preproc_def_token1] = ACTIONS(1492), + [aux_sym_preproc_if_token1] = ACTIONS(1492), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1492), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1492), + [sym_preproc_directive] = ACTIONS(1492), + [anon_sym_LPAREN2] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(1494), + [anon_sym_TILDE] = ACTIONS(1494), + [anon_sym_DASH] = ACTIONS(1492), + [anon_sym_PLUS] = ACTIONS(1492), + [anon_sym_STAR] = ACTIONS(1494), + [anon_sym_AMP] = ACTIONS(1494), + [anon_sym_SEMI] = ACTIONS(1494), + [anon_sym___extension__] = ACTIONS(1492), + [anon_sym_typedef] = ACTIONS(1492), + [anon_sym_extern] = ACTIONS(1492), + [anon_sym___attribute__] = ACTIONS(1492), + [anon_sym___scanf] = ACTIONS(1492), + [anon_sym___printf] = ACTIONS(1492), + [anon_sym___read_mostly] = ACTIONS(1492), + [anon_sym___must_hold] = ACTIONS(1492), + [anon_sym___ro_after_init] = ACTIONS(1492), + [anon_sym___init] = ACTIONS(1492), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1494), + [anon_sym___declspec] = ACTIONS(1492), + [anon_sym___cdecl] = ACTIONS(1492), + [anon_sym___clrcall] = ACTIONS(1492), + [anon_sym___stdcall] = ACTIONS(1492), + [anon_sym___fastcall] = ACTIONS(1492), + [anon_sym___thiscall] = ACTIONS(1492), + [anon_sym___vectorcall] = ACTIONS(1492), + [anon_sym_LBRACE] = ACTIONS(1494), + [anon_sym_RBRACE] = ACTIONS(1494), + [anon_sym_signed] = ACTIONS(1492), + [anon_sym_unsigned] = ACTIONS(1492), + [anon_sym_long] = ACTIONS(1492), + [anon_sym_short] = ACTIONS(1492), + [anon_sym_static] = ACTIONS(1492), + [anon_sym_auto] = ACTIONS(1492), + [anon_sym_register] = ACTIONS(1492), + [anon_sym_inline] = ACTIONS(1492), + [anon_sym___inline] = ACTIONS(1492), + [anon_sym___inline__] = ACTIONS(1492), + [anon_sym___forceinline] = ACTIONS(1492), + [anon_sym_thread_local] = ACTIONS(1492), + [anon_sym___thread] = ACTIONS(1492), + [anon_sym_const] = ACTIONS(1492), + [anon_sym_constexpr] = ACTIONS(1492), + [anon_sym_volatile] = ACTIONS(1492), + [anon_sym_restrict] = ACTIONS(1492), + [anon_sym___restrict__] = ACTIONS(1492), + [anon_sym__Atomic] = ACTIONS(1492), + [anon_sym__Noreturn] = ACTIONS(1492), + [anon_sym_noreturn] = ACTIONS(1492), + [sym_primitive_type] = ACTIONS(1492), + [anon_sym_enum] = ACTIONS(1492), + [anon_sym_struct] = ACTIONS(1492), + [anon_sym_union] = ACTIONS(1492), + [anon_sym_if] = ACTIONS(1492), + [anon_sym_switch] = ACTIONS(1492), + [anon_sym_case] = ACTIONS(1492), + [anon_sym_default] = ACTIONS(1492), + [anon_sym_while] = ACTIONS(1492), + [anon_sym_do] = ACTIONS(1492), + [anon_sym_for] = ACTIONS(1492), + [anon_sym_return] = ACTIONS(1492), + [anon_sym_break] = ACTIONS(1492), + [anon_sym_continue] = ACTIONS(1492), + [anon_sym_goto] = ACTIONS(1492), + [anon_sym___try] = ACTIONS(1492), + [anon_sym___leave] = ACTIONS(1492), + [anon_sym_DASH_DASH] = ACTIONS(1494), + [anon_sym_PLUS_PLUS] = ACTIONS(1494), + [anon_sym_sizeof] = ACTIONS(1492), + [anon_sym___alignof__] = ACTIONS(1492), + [anon_sym___alignof] = ACTIONS(1492), + [anon_sym__alignof] = ACTIONS(1492), + [anon_sym_alignof] = ACTIONS(1492), + [anon_sym__Alignof] = ACTIONS(1492), + [anon_sym_offsetof] = ACTIONS(1492), + [anon_sym__Generic] = ACTIONS(1492), + [anon_sym_asm] = ACTIONS(1492), + [anon_sym___asm__] = ACTIONS(1492), + [sym_number_literal] = ACTIONS(1494), + [anon_sym_L_SQUOTE] = ACTIONS(1494), + [anon_sym_u_SQUOTE] = ACTIONS(1494), + [anon_sym_U_SQUOTE] = ACTIONS(1494), + [anon_sym_u8_SQUOTE] = ACTIONS(1494), + [anon_sym_SQUOTE] = ACTIONS(1494), + [anon_sym_L_DQUOTE] = ACTIONS(1494), + [anon_sym_u_DQUOTE] = ACTIONS(1494), + [anon_sym_U_DQUOTE] = ACTIONS(1494), + [anon_sym_u8_DQUOTE] = ACTIONS(1494), + [anon_sym_DQUOTE] = ACTIONS(1494), + [sym_true] = ACTIONS(1492), + [sym_false] = ACTIONS(1492), + [anon_sym_NULL] = ACTIONS(1492), + [anon_sym_nullptr] = ACTIONS(1492), [sym_comment] = ACTIONS(3), }, [401] = { - [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_if_token2] = 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(1447), - [anon_sym_BANG] = ACTIONS(1447), - [anon_sym_TILDE] = ACTIONS(1447), - [anon_sym_DASH] = ACTIONS(1445), - [anon_sym_PLUS] = ACTIONS(1445), - [anon_sym_STAR] = ACTIONS(1447), - [anon_sym_AMP] = ACTIONS(1447), - [anon_sym_SEMI] = ACTIONS(1447), - [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_LBRACK_LBRACK] = ACTIONS(1447), - [anon_sym___declspec] = 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(1447), - [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), - [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___try] = ACTIONS(1445), - [anon_sym___leave] = ACTIONS(1445), - [anon_sym_DASH_DASH] = ACTIONS(1447), - [anon_sym_PLUS_PLUS] = ACTIONS(1447), - [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(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(1445), - [sym_false] = ACTIONS(1445), - [anon_sym_NULL] = ACTIONS(1445), - [anon_sym_nullptr] = ACTIONS(1445), + [sym_identifier] = ACTIONS(1484), + [aux_sym_preproc_include_token1] = ACTIONS(1484), + [aux_sym_preproc_def_token1] = ACTIONS(1484), + [aux_sym_preproc_if_token1] = ACTIONS(1484), + [aux_sym_preproc_if_token2] = ACTIONS(1484), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1484), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1484), + [sym_preproc_directive] = ACTIONS(1484), + [anon_sym_LPAREN2] = ACTIONS(1486), + [anon_sym_BANG] = ACTIONS(1486), + [anon_sym_TILDE] = ACTIONS(1486), + [anon_sym_DASH] = ACTIONS(1484), + [anon_sym_PLUS] = ACTIONS(1484), + [anon_sym_STAR] = ACTIONS(1486), + [anon_sym_AMP] = ACTIONS(1486), + [anon_sym_SEMI] = ACTIONS(1486), + [anon_sym___extension__] = ACTIONS(1484), + [anon_sym_typedef] = ACTIONS(1484), + [anon_sym_extern] = ACTIONS(1484), + [anon_sym___attribute__] = ACTIONS(1484), + [anon_sym___scanf] = ACTIONS(1484), + [anon_sym___printf] = ACTIONS(1484), + [anon_sym___read_mostly] = ACTIONS(1484), + [anon_sym___must_hold] = ACTIONS(1484), + [anon_sym___ro_after_init] = ACTIONS(1484), + [anon_sym___init] = ACTIONS(1484), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1486), + [anon_sym___declspec] = ACTIONS(1484), + [anon_sym___cdecl] = ACTIONS(1484), + [anon_sym___clrcall] = ACTIONS(1484), + [anon_sym___stdcall] = ACTIONS(1484), + [anon_sym___fastcall] = ACTIONS(1484), + [anon_sym___thiscall] = ACTIONS(1484), + [anon_sym___vectorcall] = ACTIONS(1484), + [anon_sym_LBRACE] = ACTIONS(1486), + [anon_sym_signed] = ACTIONS(1484), + [anon_sym_unsigned] = ACTIONS(1484), + [anon_sym_long] = ACTIONS(1484), + [anon_sym_short] = ACTIONS(1484), + [anon_sym_static] = ACTIONS(1484), + [anon_sym_auto] = ACTIONS(1484), + [anon_sym_register] = ACTIONS(1484), + [anon_sym_inline] = ACTIONS(1484), + [anon_sym___inline] = ACTIONS(1484), + [anon_sym___inline__] = ACTIONS(1484), + [anon_sym___forceinline] = ACTIONS(1484), + [anon_sym_thread_local] = ACTIONS(1484), + [anon_sym___thread] = ACTIONS(1484), + [anon_sym_const] = ACTIONS(1484), + [anon_sym_constexpr] = ACTIONS(1484), + [anon_sym_volatile] = ACTIONS(1484), + [anon_sym_restrict] = ACTIONS(1484), + [anon_sym___restrict__] = ACTIONS(1484), + [anon_sym__Atomic] = ACTIONS(1484), + [anon_sym__Noreturn] = ACTIONS(1484), + [anon_sym_noreturn] = ACTIONS(1484), + [sym_primitive_type] = ACTIONS(1484), + [anon_sym_enum] = ACTIONS(1484), + [anon_sym_struct] = ACTIONS(1484), + [anon_sym_union] = ACTIONS(1484), + [anon_sym_if] = ACTIONS(1484), + [anon_sym_switch] = ACTIONS(1484), + [anon_sym_case] = ACTIONS(1484), + [anon_sym_default] = ACTIONS(1484), + [anon_sym_while] = ACTIONS(1484), + [anon_sym_do] = ACTIONS(1484), + [anon_sym_for] = ACTIONS(1484), + [anon_sym_return] = ACTIONS(1484), + [anon_sym_break] = ACTIONS(1484), + [anon_sym_continue] = ACTIONS(1484), + [anon_sym_goto] = ACTIONS(1484), + [anon_sym___try] = ACTIONS(1484), + [anon_sym___leave] = ACTIONS(1484), + [anon_sym_DASH_DASH] = ACTIONS(1486), + [anon_sym_PLUS_PLUS] = ACTIONS(1486), + [anon_sym_sizeof] = ACTIONS(1484), + [anon_sym___alignof__] = ACTIONS(1484), + [anon_sym___alignof] = ACTIONS(1484), + [anon_sym__alignof] = ACTIONS(1484), + [anon_sym_alignof] = ACTIONS(1484), + [anon_sym__Alignof] = ACTIONS(1484), + [anon_sym_offsetof] = ACTIONS(1484), + [anon_sym__Generic] = ACTIONS(1484), + [anon_sym_asm] = ACTIONS(1484), + [anon_sym___asm__] = ACTIONS(1484), + [sym_number_literal] = ACTIONS(1486), + [anon_sym_L_SQUOTE] = ACTIONS(1486), + [anon_sym_u_SQUOTE] = ACTIONS(1486), + [anon_sym_U_SQUOTE] = ACTIONS(1486), + [anon_sym_u8_SQUOTE] = ACTIONS(1486), + [anon_sym_SQUOTE] = ACTIONS(1486), + [anon_sym_L_DQUOTE] = ACTIONS(1486), + [anon_sym_u_DQUOTE] = ACTIONS(1486), + [anon_sym_U_DQUOTE] = ACTIONS(1486), + [anon_sym_u8_DQUOTE] = ACTIONS(1486), + [anon_sym_DQUOTE] = ACTIONS(1486), + [sym_true] = ACTIONS(1484), + [sym_false] = ACTIONS(1484), + [anon_sym_NULL] = ACTIONS(1484), + [anon_sym_nullptr] = ACTIONS(1484), [sym_comment] = ACTIONS(3), }, [402] = { - [sym_identifier] = ACTIONS(1437), - [aux_sym_preproc_include_token1] = ACTIONS(1437), - [aux_sym_preproc_def_token1] = ACTIONS(1437), - [aux_sym_preproc_if_token1] = ACTIONS(1437), - [aux_sym_preproc_if_token2] = ACTIONS(1437), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1437), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1437), - [sym_preproc_directive] = ACTIONS(1437), - [anon_sym_LPAREN2] = ACTIONS(1439), - [anon_sym_BANG] = ACTIONS(1439), - [anon_sym_TILDE] = ACTIONS(1439), - [anon_sym_DASH] = ACTIONS(1437), - [anon_sym_PLUS] = ACTIONS(1437), - [anon_sym_STAR] = ACTIONS(1439), - [anon_sym_AMP] = ACTIONS(1439), - [anon_sym_SEMI] = ACTIONS(1439), - [anon_sym___extension__] = ACTIONS(1437), - [anon_sym_typedef] = ACTIONS(1437), - [anon_sym_extern] = ACTIONS(1437), - [anon_sym___attribute__] = ACTIONS(1437), - [anon_sym___scanf] = ACTIONS(1437), - [anon_sym___printf] = ACTIONS(1437), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1439), - [anon_sym___declspec] = ACTIONS(1437), - [anon_sym___cdecl] = ACTIONS(1437), - [anon_sym___clrcall] = ACTIONS(1437), - [anon_sym___stdcall] = ACTIONS(1437), - [anon_sym___fastcall] = ACTIONS(1437), - [anon_sym___thiscall] = ACTIONS(1437), - [anon_sym___vectorcall] = ACTIONS(1437), - [anon_sym_LBRACE] = ACTIONS(1439), - [anon_sym_signed] = ACTIONS(1437), - [anon_sym_unsigned] = ACTIONS(1437), - [anon_sym_long] = ACTIONS(1437), - [anon_sym_short] = ACTIONS(1437), - [anon_sym_static] = ACTIONS(1437), - [anon_sym_auto] = ACTIONS(1437), - [anon_sym_register] = ACTIONS(1437), - [anon_sym_inline] = ACTIONS(1437), - [anon_sym___inline] = ACTIONS(1437), - [anon_sym___inline__] = ACTIONS(1437), - [anon_sym___forceinline] = ACTIONS(1437), - [anon_sym_thread_local] = ACTIONS(1437), - [anon_sym___thread] = ACTIONS(1437), - [anon_sym_const] = ACTIONS(1437), - [anon_sym_constexpr] = ACTIONS(1437), - [anon_sym_volatile] = ACTIONS(1437), - [anon_sym_restrict] = ACTIONS(1437), - [anon_sym___restrict__] = ACTIONS(1437), - [anon_sym__Atomic] = ACTIONS(1437), - [anon_sym__Noreturn] = ACTIONS(1437), - [anon_sym_noreturn] = ACTIONS(1437), - [sym_primitive_type] = ACTIONS(1437), - [anon_sym_enum] = ACTIONS(1437), - [anon_sym_struct] = ACTIONS(1437), - [anon_sym_union] = ACTIONS(1437), - [anon_sym_if] = ACTIONS(1437), - [anon_sym_switch] = ACTIONS(1437), - [anon_sym_case] = ACTIONS(1437), - [anon_sym_default] = ACTIONS(1437), - [anon_sym_while] = ACTIONS(1437), - [anon_sym_do] = ACTIONS(1437), - [anon_sym_for] = ACTIONS(1437), - [anon_sym_return] = ACTIONS(1437), - [anon_sym_break] = ACTIONS(1437), - [anon_sym_continue] = ACTIONS(1437), - [anon_sym_goto] = ACTIONS(1437), - [anon_sym___try] = ACTIONS(1437), - [anon_sym___leave] = ACTIONS(1437), - [anon_sym_DASH_DASH] = ACTIONS(1439), - [anon_sym_PLUS_PLUS] = ACTIONS(1439), - [anon_sym_sizeof] = ACTIONS(1437), - [anon_sym___alignof__] = ACTIONS(1437), - [anon_sym___alignof] = ACTIONS(1437), - [anon_sym__alignof] = ACTIONS(1437), - [anon_sym_alignof] = ACTIONS(1437), - [anon_sym__Alignof] = ACTIONS(1437), - [anon_sym_offsetof] = ACTIONS(1437), - [anon_sym__Generic] = ACTIONS(1437), - [anon_sym_asm] = ACTIONS(1437), - [anon_sym___asm__] = ACTIONS(1437), - [sym_number_literal] = ACTIONS(1439), - [anon_sym_L_SQUOTE] = ACTIONS(1439), - [anon_sym_u_SQUOTE] = ACTIONS(1439), - [anon_sym_U_SQUOTE] = ACTIONS(1439), - [anon_sym_u8_SQUOTE] = ACTIONS(1439), - [anon_sym_SQUOTE] = ACTIONS(1439), - [anon_sym_L_DQUOTE] = ACTIONS(1439), - [anon_sym_u_DQUOTE] = ACTIONS(1439), - [anon_sym_U_DQUOTE] = ACTIONS(1439), - [anon_sym_u8_DQUOTE] = ACTIONS(1439), - [anon_sym_DQUOTE] = ACTIONS(1439), - [sym_true] = ACTIONS(1437), - [sym_false] = ACTIONS(1437), - [anon_sym_NULL] = ACTIONS(1437), - [anon_sym_nullptr] = ACTIONS(1437), + [sym_identifier] = ACTIONS(1496), + [aux_sym_preproc_include_token1] = ACTIONS(1496), + [aux_sym_preproc_def_token1] = ACTIONS(1496), + [aux_sym_preproc_if_token1] = ACTIONS(1496), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1496), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1496), + [sym_preproc_directive] = ACTIONS(1496), + [anon_sym_LPAREN2] = ACTIONS(1498), + [anon_sym_BANG] = ACTIONS(1498), + [anon_sym_TILDE] = ACTIONS(1498), + [anon_sym_DASH] = ACTIONS(1496), + [anon_sym_PLUS] = ACTIONS(1496), + [anon_sym_STAR] = ACTIONS(1498), + [anon_sym_AMP] = ACTIONS(1498), + [anon_sym_SEMI] = ACTIONS(1498), + [anon_sym___extension__] = ACTIONS(1496), + [anon_sym_typedef] = ACTIONS(1496), + [anon_sym_extern] = ACTIONS(1496), + [anon_sym___attribute__] = ACTIONS(1496), + [anon_sym___scanf] = ACTIONS(1496), + [anon_sym___printf] = ACTIONS(1496), + [anon_sym___read_mostly] = ACTIONS(1496), + [anon_sym___must_hold] = ACTIONS(1496), + [anon_sym___ro_after_init] = ACTIONS(1496), + [anon_sym___init] = ACTIONS(1496), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1498), + [anon_sym___declspec] = ACTIONS(1496), + [anon_sym___cdecl] = ACTIONS(1496), + [anon_sym___clrcall] = ACTIONS(1496), + [anon_sym___stdcall] = ACTIONS(1496), + [anon_sym___fastcall] = ACTIONS(1496), + [anon_sym___thiscall] = ACTIONS(1496), + [anon_sym___vectorcall] = ACTIONS(1496), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_RBRACE] = ACTIONS(1498), + [anon_sym_signed] = ACTIONS(1496), + [anon_sym_unsigned] = ACTIONS(1496), + [anon_sym_long] = ACTIONS(1496), + [anon_sym_short] = ACTIONS(1496), + [anon_sym_static] = ACTIONS(1496), + [anon_sym_auto] = ACTIONS(1496), + [anon_sym_register] = ACTIONS(1496), + [anon_sym_inline] = ACTIONS(1496), + [anon_sym___inline] = ACTIONS(1496), + [anon_sym___inline__] = ACTIONS(1496), + [anon_sym___forceinline] = ACTIONS(1496), + [anon_sym_thread_local] = ACTIONS(1496), + [anon_sym___thread] = ACTIONS(1496), + [anon_sym_const] = ACTIONS(1496), + [anon_sym_constexpr] = ACTIONS(1496), + [anon_sym_volatile] = ACTIONS(1496), + [anon_sym_restrict] = ACTIONS(1496), + [anon_sym___restrict__] = ACTIONS(1496), + [anon_sym__Atomic] = ACTIONS(1496), + [anon_sym__Noreturn] = ACTIONS(1496), + [anon_sym_noreturn] = ACTIONS(1496), + [sym_primitive_type] = ACTIONS(1496), + [anon_sym_enum] = ACTIONS(1496), + [anon_sym_struct] = ACTIONS(1496), + [anon_sym_union] = ACTIONS(1496), + [anon_sym_if] = ACTIONS(1496), + [anon_sym_switch] = ACTIONS(1496), + [anon_sym_case] = ACTIONS(1496), + [anon_sym_default] = ACTIONS(1496), + [anon_sym_while] = ACTIONS(1496), + [anon_sym_do] = ACTIONS(1496), + [anon_sym_for] = ACTIONS(1496), + [anon_sym_return] = ACTIONS(1496), + [anon_sym_break] = ACTIONS(1496), + [anon_sym_continue] = ACTIONS(1496), + [anon_sym_goto] = ACTIONS(1496), + [anon_sym___try] = ACTIONS(1496), + [anon_sym___leave] = ACTIONS(1496), + [anon_sym_DASH_DASH] = ACTIONS(1498), + [anon_sym_PLUS_PLUS] = ACTIONS(1498), + [anon_sym_sizeof] = ACTIONS(1496), + [anon_sym___alignof__] = ACTIONS(1496), + [anon_sym___alignof] = ACTIONS(1496), + [anon_sym__alignof] = ACTIONS(1496), + [anon_sym_alignof] = ACTIONS(1496), + [anon_sym__Alignof] = ACTIONS(1496), + [anon_sym_offsetof] = ACTIONS(1496), + [anon_sym__Generic] = ACTIONS(1496), + [anon_sym_asm] = ACTIONS(1496), + [anon_sym___asm__] = ACTIONS(1496), + [sym_number_literal] = ACTIONS(1498), + [anon_sym_L_SQUOTE] = ACTIONS(1498), + [anon_sym_u_SQUOTE] = ACTIONS(1498), + [anon_sym_U_SQUOTE] = ACTIONS(1498), + [anon_sym_u8_SQUOTE] = ACTIONS(1498), + [anon_sym_SQUOTE] = ACTIONS(1498), + [anon_sym_L_DQUOTE] = ACTIONS(1498), + [anon_sym_u_DQUOTE] = ACTIONS(1498), + [anon_sym_U_DQUOTE] = ACTIONS(1498), + [anon_sym_u8_DQUOTE] = ACTIONS(1498), + [anon_sym_DQUOTE] = ACTIONS(1498), + [sym_true] = ACTIONS(1496), + [sym_false] = ACTIONS(1496), + [anon_sym_NULL] = ACTIONS(1496), + [anon_sym_nullptr] = ACTIONS(1496), [sym_comment] = ACTIONS(3), }, [403] = { - [sym_identifier] = ACTIONS(1507), - [aux_sym_preproc_include_token1] = ACTIONS(1507), - [aux_sym_preproc_def_token1] = ACTIONS(1507), - [aux_sym_preproc_if_token1] = ACTIONS(1507), - [aux_sym_preproc_if_token2] = ACTIONS(1507), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1507), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1507), - [sym_preproc_directive] = ACTIONS(1507), - [anon_sym_LPAREN2] = ACTIONS(1509), - [anon_sym_BANG] = ACTIONS(1509), - [anon_sym_TILDE] = ACTIONS(1509), - [anon_sym_DASH] = ACTIONS(1507), - [anon_sym_PLUS] = ACTIONS(1507), - [anon_sym_STAR] = ACTIONS(1509), - [anon_sym_AMP] = ACTIONS(1509), - [anon_sym_SEMI] = ACTIONS(1509), - [anon_sym___extension__] = ACTIONS(1507), - [anon_sym_typedef] = ACTIONS(1507), - [anon_sym_extern] = ACTIONS(1507), - [anon_sym___attribute__] = ACTIONS(1507), - [anon_sym___scanf] = ACTIONS(1507), - [anon_sym___printf] = ACTIONS(1507), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1509), - [anon_sym___declspec] = ACTIONS(1507), - [anon_sym___cdecl] = ACTIONS(1507), - [anon_sym___clrcall] = ACTIONS(1507), - [anon_sym___stdcall] = ACTIONS(1507), - [anon_sym___fastcall] = ACTIONS(1507), - [anon_sym___thiscall] = ACTIONS(1507), - [anon_sym___vectorcall] = ACTIONS(1507), - [anon_sym_LBRACE] = ACTIONS(1509), - [anon_sym_signed] = ACTIONS(1507), - [anon_sym_unsigned] = ACTIONS(1507), - [anon_sym_long] = ACTIONS(1507), - [anon_sym_short] = ACTIONS(1507), - [anon_sym_static] = ACTIONS(1507), - [anon_sym_auto] = ACTIONS(1507), - [anon_sym_register] = ACTIONS(1507), - [anon_sym_inline] = ACTIONS(1507), - [anon_sym___inline] = ACTIONS(1507), - [anon_sym___inline__] = ACTIONS(1507), - [anon_sym___forceinline] = ACTIONS(1507), - [anon_sym_thread_local] = ACTIONS(1507), - [anon_sym___thread] = ACTIONS(1507), - [anon_sym_const] = ACTIONS(1507), - [anon_sym_constexpr] = ACTIONS(1507), - [anon_sym_volatile] = ACTIONS(1507), - [anon_sym_restrict] = ACTIONS(1507), - [anon_sym___restrict__] = ACTIONS(1507), - [anon_sym__Atomic] = ACTIONS(1507), - [anon_sym__Noreturn] = ACTIONS(1507), - [anon_sym_noreturn] = ACTIONS(1507), - [sym_primitive_type] = ACTIONS(1507), - [anon_sym_enum] = ACTIONS(1507), - [anon_sym_struct] = ACTIONS(1507), - [anon_sym_union] = ACTIONS(1507), - [anon_sym_if] = ACTIONS(1507), - [anon_sym_switch] = ACTIONS(1507), - [anon_sym_case] = ACTIONS(1507), - [anon_sym_default] = ACTIONS(1507), - [anon_sym_while] = ACTIONS(1507), - [anon_sym_do] = ACTIONS(1507), - [anon_sym_for] = ACTIONS(1507), - [anon_sym_return] = ACTIONS(1507), - [anon_sym_break] = ACTIONS(1507), - [anon_sym_continue] = ACTIONS(1507), - [anon_sym_goto] = ACTIONS(1507), - [anon_sym___try] = ACTIONS(1507), - [anon_sym___leave] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1509), - [anon_sym_PLUS_PLUS] = ACTIONS(1509), - [anon_sym_sizeof] = ACTIONS(1507), - [anon_sym___alignof__] = ACTIONS(1507), - [anon_sym___alignof] = ACTIONS(1507), - [anon_sym__alignof] = ACTIONS(1507), - [anon_sym_alignof] = ACTIONS(1507), - [anon_sym__Alignof] = ACTIONS(1507), - [anon_sym_offsetof] = ACTIONS(1507), - [anon_sym__Generic] = ACTIONS(1507), - [anon_sym_asm] = ACTIONS(1507), - [anon_sym___asm__] = ACTIONS(1507), - [sym_number_literal] = ACTIONS(1509), - [anon_sym_L_SQUOTE] = ACTIONS(1509), - [anon_sym_u_SQUOTE] = ACTIONS(1509), - [anon_sym_U_SQUOTE] = ACTIONS(1509), - [anon_sym_u8_SQUOTE] = ACTIONS(1509), - [anon_sym_SQUOTE] = ACTIONS(1509), - [anon_sym_L_DQUOTE] = ACTIONS(1509), - [anon_sym_u_DQUOTE] = ACTIONS(1509), - [anon_sym_U_DQUOTE] = ACTIONS(1509), - [anon_sym_u8_DQUOTE] = ACTIONS(1509), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_true] = ACTIONS(1507), - [sym_false] = ACTIONS(1507), - [anon_sym_NULL] = ACTIONS(1507), - [anon_sym_nullptr] = ACTIONS(1507), + [sym_identifier] = ACTIONS(1480), + [aux_sym_preproc_include_token1] = ACTIONS(1480), + [aux_sym_preproc_def_token1] = ACTIONS(1480), + [aux_sym_preproc_if_token1] = ACTIONS(1480), + [aux_sym_preproc_if_token2] = ACTIONS(1480), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1480), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1480), + [sym_preproc_directive] = ACTIONS(1480), + [anon_sym_LPAREN2] = ACTIONS(1482), + [anon_sym_BANG] = ACTIONS(1482), + [anon_sym_TILDE] = ACTIONS(1482), + [anon_sym_DASH] = ACTIONS(1480), + [anon_sym_PLUS] = ACTIONS(1480), + [anon_sym_STAR] = ACTIONS(1482), + [anon_sym_AMP] = ACTIONS(1482), + [anon_sym_SEMI] = ACTIONS(1482), + [anon_sym___extension__] = ACTIONS(1480), + [anon_sym_typedef] = ACTIONS(1480), + [anon_sym_extern] = ACTIONS(1480), + [anon_sym___attribute__] = ACTIONS(1480), + [anon_sym___scanf] = ACTIONS(1480), + [anon_sym___printf] = ACTIONS(1480), + [anon_sym___read_mostly] = ACTIONS(1480), + [anon_sym___must_hold] = ACTIONS(1480), + [anon_sym___ro_after_init] = ACTIONS(1480), + [anon_sym___init] = ACTIONS(1480), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1482), + [anon_sym___declspec] = ACTIONS(1480), + [anon_sym___cdecl] = ACTIONS(1480), + [anon_sym___clrcall] = ACTIONS(1480), + [anon_sym___stdcall] = ACTIONS(1480), + [anon_sym___fastcall] = ACTIONS(1480), + [anon_sym___thiscall] = ACTIONS(1480), + [anon_sym___vectorcall] = ACTIONS(1480), + [anon_sym_LBRACE] = ACTIONS(1482), + [anon_sym_signed] = ACTIONS(1480), + [anon_sym_unsigned] = ACTIONS(1480), + [anon_sym_long] = ACTIONS(1480), + [anon_sym_short] = ACTIONS(1480), + [anon_sym_static] = ACTIONS(1480), + [anon_sym_auto] = ACTIONS(1480), + [anon_sym_register] = ACTIONS(1480), + [anon_sym_inline] = ACTIONS(1480), + [anon_sym___inline] = ACTIONS(1480), + [anon_sym___inline__] = ACTIONS(1480), + [anon_sym___forceinline] = ACTIONS(1480), + [anon_sym_thread_local] = ACTIONS(1480), + [anon_sym___thread] = ACTIONS(1480), + [anon_sym_const] = ACTIONS(1480), + [anon_sym_constexpr] = ACTIONS(1480), + [anon_sym_volatile] = ACTIONS(1480), + [anon_sym_restrict] = ACTIONS(1480), + [anon_sym___restrict__] = ACTIONS(1480), + [anon_sym__Atomic] = ACTIONS(1480), + [anon_sym__Noreturn] = ACTIONS(1480), + [anon_sym_noreturn] = ACTIONS(1480), + [sym_primitive_type] = ACTIONS(1480), + [anon_sym_enum] = ACTIONS(1480), + [anon_sym_struct] = ACTIONS(1480), + [anon_sym_union] = ACTIONS(1480), + [anon_sym_if] = ACTIONS(1480), + [anon_sym_switch] = ACTIONS(1480), + [anon_sym_case] = ACTIONS(1480), + [anon_sym_default] = ACTIONS(1480), + [anon_sym_while] = ACTIONS(1480), + [anon_sym_do] = ACTIONS(1480), + [anon_sym_for] = ACTIONS(1480), + [anon_sym_return] = ACTIONS(1480), + [anon_sym_break] = ACTIONS(1480), + [anon_sym_continue] = ACTIONS(1480), + [anon_sym_goto] = ACTIONS(1480), + [anon_sym___try] = ACTIONS(1480), + [anon_sym___leave] = ACTIONS(1480), + [anon_sym_DASH_DASH] = ACTIONS(1482), + [anon_sym_PLUS_PLUS] = ACTIONS(1482), + [anon_sym_sizeof] = ACTIONS(1480), + [anon_sym___alignof__] = ACTIONS(1480), + [anon_sym___alignof] = ACTIONS(1480), + [anon_sym__alignof] = ACTIONS(1480), + [anon_sym_alignof] = ACTIONS(1480), + [anon_sym__Alignof] = ACTIONS(1480), + [anon_sym_offsetof] = ACTIONS(1480), + [anon_sym__Generic] = ACTIONS(1480), + [anon_sym_asm] = ACTIONS(1480), + [anon_sym___asm__] = ACTIONS(1480), + [sym_number_literal] = ACTIONS(1482), + [anon_sym_L_SQUOTE] = ACTIONS(1482), + [anon_sym_u_SQUOTE] = ACTIONS(1482), + [anon_sym_U_SQUOTE] = ACTIONS(1482), + [anon_sym_u8_SQUOTE] = ACTIONS(1482), + [anon_sym_SQUOTE] = ACTIONS(1482), + [anon_sym_L_DQUOTE] = ACTIONS(1482), + [anon_sym_u_DQUOTE] = ACTIONS(1482), + [anon_sym_U_DQUOTE] = ACTIONS(1482), + [anon_sym_u8_DQUOTE] = ACTIONS(1482), + [anon_sym_DQUOTE] = ACTIONS(1482), + [sym_true] = ACTIONS(1480), + [sym_false] = ACTIONS(1480), + [anon_sym_NULL] = ACTIONS(1480), + [anon_sym_nullptr] = ACTIONS(1480), [sym_comment] = ACTIONS(3), }, [404] = { - [sym_identifier] = ACTIONS(1433), - [aux_sym_preproc_include_token1] = ACTIONS(1433), - [aux_sym_preproc_def_token1] = ACTIONS(1433), - [aux_sym_preproc_if_token1] = ACTIONS(1433), - [aux_sym_preproc_if_token2] = ACTIONS(1433), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1433), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1433), - [sym_preproc_directive] = ACTIONS(1433), - [anon_sym_LPAREN2] = ACTIONS(1435), - [anon_sym_BANG] = ACTIONS(1435), - [anon_sym_TILDE] = ACTIONS(1435), - [anon_sym_DASH] = ACTIONS(1433), - [anon_sym_PLUS] = ACTIONS(1433), - [anon_sym_STAR] = ACTIONS(1435), - [anon_sym_AMP] = ACTIONS(1435), - [anon_sym_SEMI] = ACTIONS(1435), - [anon_sym___extension__] = ACTIONS(1433), - [anon_sym_typedef] = ACTIONS(1433), - [anon_sym_extern] = ACTIONS(1433), - [anon_sym___attribute__] = ACTIONS(1433), - [anon_sym___scanf] = ACTIONS(1433), - [anon_sym___printf] = ACTIONS(1433), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1435), - [anon_sym___declspec] = ACTIONS(1433), - [anon_sym___cdecl] = ACTIONS(1433), - [anon_sym___clrcall] = ACTIONS(1433), - [anon_sym___stdcall] = ACTIONS(1433), - [anon_sym___fastcall] = ACTIONS(1433), - [anon_sym___thiscall] = ACTIONS(1433), - [anon_sym___vectorcall] = ACTIONS(1433), - [anon_sym_LBRACE] = ACTIONS(1435), - [anon_sym_signed] = ACTIONS(1433), - [anon_sym_unsigned] = ACTIONS(1433), - [anon_sym_long] = ACTIONS(1433), - [anon_sym_short] = ACTIONS(1433), - [anon_sym_static] = ACTIONS(1433), - [anon_sym_auto] = ACTIONS(1433), - [anon_sym_register] = ACTIONS(1433), - [anon_sym_inline] = ACTIONS(1433), - [anon_sym___inline] = ACTIONS(1433), - [anon_sym___inline__] = ACTIONS(1433), - [anon_sym___forceinline] = ACTIONS(1433), - [anon_sym_thread_local] = ACTIONS(1433), - [anon_sym___thread] = ACTIONS(1433), - [anon_sym_const] = ACTIONS(1433), - [anon_sym_constexpr] = ACTIONS(1433), - [anon_sym_volatile] = ACTIONS(1433), - [anon_sym_restrict] = ACTIONS(1433), - [anon_sym___restrict__] = ACTIONS(1433), - [anon_sym__Atomic] = ACTIONS(1433), - [anon_sym__Noreturn] = ACTIONS(1433), - [anon_sym_noreturn] = ACTIONS(1433), - [sym_primitive_type] = ACTIONS(1433), - [anon_sym_enum] = ACTIONS(1433), - [anon_sym_struct] = ACTIONS(1433), - [anon_sym_union] = ACTIONS(1433), - [anon_sym_if] = ACTIONS(1433), - [anon_sym_switch] = ACTIONS(1433), - [anon_sym_case] = ACTIONS(1433), - [anon_sym_default] = ACTIONS(1433), - [anon_sym_while] = ACTIONS(1433), - [anon_sym_do] = ACTIONS(1433), - [anon_sym_for] = ACTIONS(1433), - [anon_sym_return] = ACTIONS(1433), - [anon_sym_break] = ACTIONS(1433), - [anon_sym_continue] = ACTIONS(1433), - [anon_sym_goto] = ACTIONS(1433), - [anon_sym___try] = ACTIONS(1433), - [anon_sym___leave] = ACTIONS(1433), - [anon_sym_DASH_DASH] = ACTIONS(1435), - [anon_sym_PLUS_PLUS] = ACTIONS(1435), - [anon_sym_sizeof] = ACTIONS(1433), - [anon_sym___alignof__] = ACTIONS(1433), - [anon_sym___alignof] = ACTIONS(1433), - [anon_sym__alignof] = ACTIONS(1433), - [anon_sym_alignof] = ACTIONS(1433), - [anon_sym__Alignof] = ACTIONS(1433), - [anon_sym_offsetof] = ACTIONS(1433), - [anon_sym__Generic] = ACTIONS(1433), - [anon_sym_asm] = ACTIONS(1433), - [anon_sym___asm__] = ACTIONS(1433), - [sym_number_literal] = ACTIONS(1435), - [anon_sym_L_SQUOTE] = ACTIONS(1435), - [anon_sym_u_SQUOTE] = ACTIONS(1435), - [anon_sym_U_SQUOTE] = ACTIONS(1435), - [anon_sym_u8_SQUOTE] = ACTIONS(1435), - [anon_sym_SQUOTE] = ACTIONS(1435), - [anon_sym_L_DQUOTE] = ACTIONS(1435), - [anon_sym_u_DQUOTE] = ACTIONS(1435), - [anon_sym_U_DQUOTE] = ACTIONS(1435), - [anon_sym_u8_DQUOTE] = ACTIONS(1435), - [anon_sym_DQUOTE] = ACTIONS(1435), - [sym_true] = ACTIONS(1433), - [sym_false] = ACTIONS(1433), - [anon_sym_NULL] = ACTIONS(1433), - [anon_sym_nullptr] = ACTIONS(1433), + [sym_identifier] = ACTIONS(1516), + [aux_sym_preproc_include_token1] = ACTIONS(1516), + [aux_sym_preproc_def_token1] = ACTIONS(1516), + [aux_sym_preproc_if_token1] = ACTIONS(1516), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1516), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1516), + [sym_preproc_directive] = ACTIONS(1516), + [anon_sym_LPAREN2] = ACTIONS(1518), + [anon_sym_BANG] = ACTIONS(1518), + [anon_sym_TILDE] = ACTIONS(1518), + [anon_sym_DASH] = ACTIONS(1516), + [anon_sym_PLUS] = ACTIONS(1516), + [anon_sym_STAR] = ACTIONS(1518), + [anon_sym_AMP] = ACTIONS(1518), + [anon_sym_SEMI] = ACTIONS(1518), + [anon_sym___extension__] = ACTIONS(1516), + [anon_sym_typedef] = ACTIONS(1516), + [anon_sym_extern] = ACTIONS(1516), + [anon_sym___attribute__] = ACTIONS(1516), + [anon_sym___scanf] = ACTIONS(1516), + [anon_sym___printf] = ACTIONS(1516), + [anon_sym___read_mostly] = ACTIONS(1516), + [anon_sym___must_hold] = ACTIONS(1516), + [anon_sym___ro_after_init] = ACTIONS(1516), + [anon_sym___init] = ACTIONS(1516), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1518), + [anon_sym___declspec] = ACTIONS(1516), + [anon_sym___cdecl] = ACTIONS(1516), + [anon_sym___clrcall] = ACTIONS(1516), + [anon_sym___stdcall] = ACTIONS(1516), + [anon_sym___fastcall] = ACTIONS(1516), + [anon_sym___thiscall] = ACTIONS(1516), + [anon_sym___vectorcall] = ACTIONS(1516), + [anon_sym_LBRACE] = ACTIONS(1518), + [anon_sym_RBRACE] = ACTIONS(1518), + [anon_sym_signed] = ACTIONS(1516), + [anon_sym_unsigned] = ACTIONS(1516), + [anon_sym_long] = ACTIONS(1516), + [anon_sym_short] = ACTIONS(1516), + [anon_sym_static] = ACTIONS(1516), + [anon_sym_auto] = ACTIONS(1516), + [anon_sym_register] = ACTIONS(1516), + [anon_sym_inline] = ACTIONS(1516), + [anon_sym___inline] = ACTIONS(1516), + [anon_sym___inline__] = ACTIONS(1516), + [anon_sym___forceinline] = ACTIONS(1516), + [anon_sym_thread_local] = ACTIONS(1516), + [anon_sym___thread] = ACTIONS(1516), + [anon_sym_const] = ACTIONS(1516), + [anon_sym_constexpr] = ACTIONS(1516), + [anon_sym_volatile] = ACTIONS(1516), + [anon_sym_restrict] = ACTIONS(1516), + [anon_sym___restrict__] = ACTIONS(1516), + [anon_sym__Atomic] = ACTIONS(1516), + [anon_sym__Noreturn] = ACTIONS(1516), + [anon_sym_noreturn] = ACTIONS(1516), + [sym_primitive_type] = ACTIONS(1516), + [anon_sym_enum] = ACTIONS(1516), + [anon_sym_struct] = ACTIONS(1516), + [anon_sym_union] = ACTIONS(1516), + [anon_sym_if] = ACTIONS(1516), + [anon_sym_switch] = ACTIONS(1516), + [anon_sym_case] = ACTIONS(1516), + [anon_sym_default] = ACTIONS(1516), + [anon_sym_while] = ACTIONS(1516), + [anon_sym_do] = ACTIONS(1516), + [anon_sym_for] = ACTIONS(1516), + [anon_sym_return] = ACTIONS(1516), + [anon_sym_break] = ACTIONS(1516), + [anon_sym_continue] = ACTIONS(1516), + [anon_sym_goto] = ACTIONS(1516), + [anon_sym___try] = ACTIONS(1516), + [anon_sym___leave] = ACTIONS(1516), + [anon_sym_DASH_DASH] = ACTIONS(1518), + [anon_sym_PLUS_PLUS] = ACTIONS(1518), + [anon_sym_sizeof] = ACTIONS(1516), + [anon_sym___alignof__] = ACTIONS(1516), + [anon_sym___alignof] = ACTIONS(1516), + [anon_sym__alignof] = ACTIONS(1516), + [anon_sym_alignof] = ACTIONS(1516), + [anon_sym__Alignof] = ACTIONS(1516), + [anon_sym_offsetof] = ACTIONS(1516), + [anon_sym__Generic] = ACTIONS(1516), + [anon_sym_asm] = ACTIONS(1516), + [anon_sym___asm__] = ACTIONS(1516), + [sym_number_literal] = ACTIONS(1518), + [anon_sym_L_SQUOTE] = ACTIONS(1518), + [anon_sym_u_SQUOTE] = ACTIONS(1518), + [anon_sym_U_SQUOTE] = ACTIONS(1518), + [anon_sym_u8_SQUOTE] = ACTIONS(1518), + [anon_sym_SQUOTE] = ACTIONS(1518), + [anon_sym_L_DQUOTE] = ACTIONS(1518), + [anon_sym_u_DQUOTE] = ACTIONS(1518), + [anon_sym_U_DQUOTE] = ACTIONS(1518), + [anon_sym_u8_DQUOTE] = ACTIONS(1518), + [anon_sym_DQUOTE] = ACTIONS(1518), + [sym_true] = ACTIONS(1516), + [sym_false] = ACTIONS(1516), + [anon_sym_NULL] = ACTIONS(1516), + [anon_sym_nullptr] = ACTIONS(1516), [sym_comment] = ACTIONS(3), }, [405] = { - [ts_builtin_sym_end] = ACTIONS(1431), - [sym_identifier] = ACTIONS(1429), - [aux_sym_preproc_include_token1] = ACTIONS(1429), - [aux_sym_preproc_def_token1] = ACTIONS(1429), - [anon_sym_COMMA] = ACTIONS(1431), - [aux_sym_preproc_if_token1] = ACTIONS(1429), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1429), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1429), - [sym_preproc_directive] = ACTIONS(1429), - [anon_sym_LPAREN2] = ACTIONS(1431), - [anon_sym_BANG] = ACTIONS(1431), - [anon_sym_TILDE] = ACTIONS(1431), - [anon_sym_DASH] = ACTIONS(1429), - [anon_sym_PLUS] = ACTIONS(1429), - [anon_sym_STAR] = ACTIONS(1431), - [anon_sym_AMP] = ACTIONS(1431), - [anon_sym___extension__] = ACTIONS(1429), - [anon_sym_typedef] = ACTIONS(1429), - [anon_sym_extern] = ACTIONS(1429), - [anon_sym___attribute__] = ACTIONS(1429), - [anon_sym___scanf] = ACTIONS(1429), - [anon_sym___printf] = ACTIONS(1429), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1431), - [anon_sym___declspec] = ACTIONS(1429), - [anon_sym___cdecl] = ACTIONS(1429), - [anon_sym___clrcall] = ACTIONS(1429), - [anon_sym___stdcall] = ACTIONS(1429), - [anon_sym___fastcall] = ACTIONS(1429), - [anon_sym___thiscall] = ACTIONS(1429), - [anon_sym___vectorcall] = ACTIONS(1429), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_RBRACE] = ACTIONS(1431), - [anon_sym_signed] = ACTIONS(1429), - [anon_sym_unsigned] = ACTIONS(1429), - [anon_sym_long] = ACTIONS(1429), - [anon_sym_short] = ACTIONS(1429), - [anon_sym_static] = ACTIONS(1429), - [anon_sym_auto] = ACTIONS(1429), - [anon_sym_register] = ACTIONS(1429), - [anon_sym_inline] = ACTIONS(1429), - [anon_sym___inline] = ACTIONS(1429), - [anon_sym___inline__] = ACTIONS(1429), - [anon_sym___forceinline] = ACTIONS(1429), - [anon_sym_thread_local] = ACTIONS(1429), - [anon_sym___thread] = ACTIONS(1429), - [anon_sym_const] = ACTIONS(1429), - [anon_sym_constexpr] = ACTIONS(1429), - [anon_sym_volatile] = ACTIONS(1429), - [anon_sym_restrict] = ACTIONS(1429), - [anon_sym___restrict__] = ACTIONS(1429), - [anon_sym__Atomic] = ACTIONS(1429), - [anon_sym__Noreturn] = ACTIONS(1429), - [anon_sym_noreturn] = ACTIONS(1429), - [sym_primitive_type] = ACTIONS(1429), - [anon_sym_enum] = ACTIONS(1429), - [anon_sym_struct] = ACTIONS(1429), - [anon_sym_union] = ACTIONS(1429), - [anon_sym_if] = ACTIONS(1429), - [anon_sym_switch] = ACTIONS(1429), - [anon_sym_case] = ACTIONS(1429), - [anon_sym_default] = ACTIONS(1429), - [anon_sym_while] = ACTIONS(1429), - [anon_sym_do] = ACTIONS(1429), - [anon_sym_for] = ACTIONS(1429), - [anon_sym_return] = ACTIONS(1429), - [anon_sym_break] = ACTIONS(1429), - [anon_sym_continue] = ACTIONS(1429), - [anon_sym_goto] = ACTIONS(1429), - [anon_sym_DASH_DASH] = ACTIONS(1431), - [anon_sym_PLUS_PLUS] = ACTIONS(1431), - [anon_sym_sizeof] = ACTIONS(1429), - [anon_sym___alignof__] = ACTIONS(1429), - [anon_sym___alignof] = ACTIONS(1429), - [anon_sym__alignof] = ACTIONS(1429), - [anon_sym_alignof] = ACTIONS(1429), - [anon_sym__Alignof] = ACTIONS(1429), - [anon_sym_offsetof] = ACTIONS(1429), - [anon_sym__Generic] = ACTIONS(1429), - [anon_sym_asm] = ACTIONS(1429), - [anon_sym___asm__] = ACTIONS(1429), - [sym_number_literal] = ACTIONS(1431), - [anon_sym_L_SQUOTE] = ACTIONS(1431), - [anon_sym_u_SQUOTE] = ACTIONS(1431), - [anon_sym_U_SQUOTE] = ACTIONS(1431), - [anon_sym_u8_SQUOTE] = ACTIONS(1431), - [anon_sym_SQUOTE] = ACTIONS(1431), - [anon_sym_L_DQUOTE] = ACTIONS(1431), - [anon_sym_u_DQUOTE] = ACTIONS(1431), - [anon_sym_U_DQUOTE] = ACTIONS(1431), - [anon_sym_u8_DQUOTE] = ACTIONS(1431), - [anon_sym_DQUOTE] = ACTIONS(1431), - [sym_true] = ACTIONS(1429), - [sym_false] = ACTIONS(1429), - [anon_sym_NULL] = ACTIONS(1429), - [anon_sym_nullptr] = ACTIONS(1429), + [ts_builtin_sym_end] = ACTIONS(1434), + [sym_identifier] = ACTIONS(1432), + [aux_sym_preproc_include_token1] = ACTIONS(1432), + [aux_sym_preproc_def_token1] = ACTIONS(1432), + [anon_sym_COMMA] = ACTIONS(1434), + [aux_sym_preproc_if_token1] = ACTIONS(1432), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1432), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1432), + [sym_preproc_directive] = ACTIONS(1432), + [anon_sym_LPAREN2] = ACTIONS(1434), + [anon_sym_BANG] = ACTIONS(1434), + [anon_sym_TILDE] = ACTIONS(1434), + [anon_sym_DASH] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1432), + [anon_sym_STAR] = ACTIONS(1434), + [anon_sym_AMP] = ACTIONS(1434), + [anon_sym___extension__] = ACTIONS(1432), + [anon_sym_typedef] = ACTIONS(1432), + [anon_sym_extern] = ACTIONS(1432), + [anon_sym___attribute__] = ACTIONS(1432), + [anon_sym___scanf] = ACTIONS(1432), + [anon_sym___printf] = ACTIONS(1432), + [anon_sym___read_mostly] = ACTIONS(1432), + [anon_sym___must_hold] = ACTIONS(1432), + [anon_sym___ro_after_init] = ACTIONS(1432), + [anon_sym___init] = ACTIONS(1432), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1434), + [anon_sym___declspec] = ACTIONS(1432), + [anon_sym___cdecl] = ACTIONS(1432), + [anon_sym___clrcall] = ACTIONS(1432), + [anon_sym___stdcall] = ACTIONS(1432), + [anon_sym___fastcall] = ACTIONS(1432), + [anon_sym___thiscall] = ACTIONS(1432), + [anon_sym___vectorcall] = ACTIONS(1432), + [anon_sym_LBRACE] = ACTIONS(1434), + [anon_sym_RBRACE] = ACTIONS(1434), + [anon_sym_signed] = ACTIONS(1432), + [anon_sym_unsigned] = ACTIONS(1432), + [anon_sym_long] = ACTIONS(1432), + [anon_sym_short] = ACTIONS(1432), + [anon_sym_static] = ACTIONS(1432), + [anon_sym_auto] = ACTIONS(1432), + [anon_sym_register] = ACTIONS(1432), + [anon_sym_inline] = ACTIONS(1432), + [anon_sym___inline] = ACTIONS(1432), + [anon_sym___inline__] = ACTIONS(1432), + [anon_sym___forceinline] = ACTIONS(1432), + [anon_sym_thread_local] = ACTIONS(1432), + [anon_sym___thread] = ACTIONS(1432), + [anon_sym_const] = ACTIONS(1432), + [anon_sym_constexpr] = ACTIONS(1432), + [anon_sym_volatile] = ACTIONS(1432), + [anon_sym_restrict] = ACTIONS(1432), + [anon_sym___restrict__] = ACTIONS(1432), + [anon_sym__Atomic] = ACTIONS(1432), + [anon_sym__Noreturn] = ACTIONS(1432), + [anon_sym_noreturn] = ACTIONS(1432), + [sym_primitive_type] = ACTIONS(1432), + [anon_sym_enum] = ACTIONS(1432), + [anon_sym_struct] = ACTIONS(1432), + [anon_sym_union] = ACTIONS(1432), + [anon_sym_if] = ACTIONS(1432), + [anon_sym_switch] = ACTIONS(1432), + [anon_sym_case] = ACTIONS(1432), + [anon_sym_default] = ACTIONS(1432), + [anon_sym_while] = ACTIONS(1432), + [anon_sym_do] = ACTIONS(1432), + [anon_sym_for] = ACTIONS(1432), + [anon_sym_return] = ACTIONS(1432), + [anon_sym_break] = ACTIONS(1432), + [anon_sym_continue] = ACTIONS(1432), + [anon_sym_goto] = ACTIONS(1432), + [anon_sym_DASH_DASH] = ACTIONS(1434), + [anon_sym_PLUS_PLUS] = ACTIONS(1434), + [anon_sym_sizeof] = ACTIONS(1432), + [anon_sym___alignof__] = ACTIONS(1432), + [anon_sym___alignof] = ACTIONS(1432), + [anon_sym__alignof] = ACTIONS(1432), + [anon_sym_alignof] = ACTIONS(1432), + [anon_sym__Alignof] = ACTIONS(1432), + [anon_sym_offsetof] = ACTIONS(1432), + [anon_sym__Generic] = ACTIONS(1432), + [anon_sym_asm] = ACTIONS(1432), + [anon_sym___asm__] = ACTIONS(1432), + [sym_number_literal] = ACTIONS(1434), + [anon_sym_L_SQUOTE] = ACTIONS(1434), + [anon_sym_u_SQUOTE] = ACTIONS(1434), + [anon_sym_U_SQUOTE] = ACTIONS(1434), + [anon_sym_u8_SQUOTE] = ACTIONS(1434), + [anon_sym_SQUOTE] = ACTIONS(1434), + [anon_sym_L_DQUOTE] = ACTIONS(1434), + [anon_sym_u_DQUOTE] = ACTIONS(1434), + [anon_sym_U_DQUOTE] = ACTIONS(1434), + [anon_sym_u8_DQUOTE] = ACTIONS(1434), + [anon_sym_DQUOTE] = ACTIONS(1434), + [sym_true] = ACTIONS(1432), + [sym_false] = ACTIONS(1432), + [anon_sym_NULL] = ACTIONS(1432), + [anon_sym_nullptr] = ACTIONS(1432), [sym_comment] = ACTIONS(3), }, [406] = { - [sym__expression] = STATE(843), - [sym__expression_not_binary] = STATE(792), - [sym_conditional_expression] = STATE(792), - [sym_assignment_expression] = STATE(792), - [sym_pointer_expression] = STATE(792), - [sym_unary_expression] = STATE(792), - [sym_binary_expression] = STATE(792), - [sym_update_expression] = STATE(792), - [sym_cast_expression] = STATE(792), - [sym_sizeof_expression] = STATE(792), - [sym_alignof_expression] = STATE(792), - [sym_offsetof_expression] = STATE(792), - [sym_generic_expression] = STATE(792), - [sym_subscript_expression] = STATE(792), - [sym_call_expression] = STATE(792), - [sym_gnu_asm_expression] = STATE(792), - [sym_field_expression] = STATE(792), - [sym_compound_literal_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(792), - [sym_initializer_list] = STATE(794), - [sym_char_literal] = STATE(792), - [sym_concatenated_string] = STATE(792), - [sym_string_literal] = STATE(675), - [sym_null] = STATE(792), - [sym_identifier] = ACTIONS(1533), - [anon_sym_COMMA] = ACTIONS(1527), - [aux_sym_preproc_if_token2] = ACTIONS(1527), - [aux_sym_preproc_else_token1] = ACTIONS(1527), - [aux_sym_preproc_elif_token1] = ACTIONS(1533), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1527), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1527), - [anon_sym_LPAREN2] = ACTIONS(1527), - [anon_sym_BANG] = ACTIONS(1539), - [anon_sym_TILDE] = ACTIONS(1541), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1533), - [anon_sym_SLASH] = ACTIONS(1533), - [anon_sym_PERCENT] = ACTIONS(1533), - [anon_sym_PIPE_PIPE] = ACTIONS(1527), - [anon_sym_AMP_AMP] = ACTIONS(1527), - [anon_sym_PIPE] = ACTIONS(1533), - [anon_sym_CARET] = ACTIONS(1533), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_EQ_EQ] = ACTIONS(1527), - [anon_sym_BANG_EQ] = ACTIONS(1527), - [anon_sym_GT] = ACTIONS(1533), - [anon_sym_GT_EQ] = ACTIONS(1527), - [anon_sym_LT_EQ] = ACTIONS(1527), - [anon_sym_LT] = ACTIONS(1533), - [anon_sym_LT_LT] = ACTIONS(1533), - [anon_sym_GT_GT] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1527), - [anon_sym_EQ] = ACTIONS(1533), - [anon_sym_QMARK] = ACTIONS(1527), - [anon_sym_STAR_EQ] = ACTIONS(1527), - [anon_sym_SLASH_EQ] = ACTIONS(1527), - [anon_sym_PERCENT_EQ] = ACTIONS(1527), - [anon_sym_PLUS_EQ] = ACTIONS(1527), - [anon_sym_DASH_EQ] = ACTIONS(1527), - [anon_sym_LT_LT_EQ] = ACTIONS(1527), - [anon_sym_GT_GT_EQ] = ACTIONS(1527), - [anon_sym_AMP_EQ] = ACTIONS(1527), - [anon_sym_CARET_EQ] = ACTIONS(1527), - [anon_sym_PIPE_EQ] = ACTIONS(1527), - [anon_sym_DASH_DASH] = ACTIONS(1527), - [anon_sym_PLUS_PLUS] = ACTIONS(1527), - [anon_sym_sizeof] = ACTIONS(1543), - [anon_sym___alignof__] = ACTIONS(85), - [anon_sym___alignof] = ACTIONS(85), - [anon_sym__alignof] = ACTIONS(85), - [anon_sym_alignof] = ACTIONS(85), - [anon_sym__Alignof] = ACTIONS(85), - [anon_sym_offsetof] = ACTIONS(87), - [anon_sym__Generic] = ACTIONS(89), - [anon_sym_asm] = ACTIONS(91), - [anon_sym___asm__] = ACTIONS(91), - [anon_sym_DOT] = ACTIONS(1533), - [anon_sym_DASH_GT] = ACTIONS(1527), - [sym_number_literal] = ACTIONS(159), - [anon_sym_L_SQUOTE] = ACTIONS(95), - [anon_sym_u_SQUOTE] = ACTIONS(95), - [anon_sym_U_SQUOTE] = ACTIONS(95), - [anon_sym_u8_SQUOTE] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(95), - [anon_sym_L_DQUOTE] = ACTIONS(97), - [anon_sym_u_DQUOTE] = ACTIONS(97), - [anon_sym_U_DQUOTE] = ACTIONS(97), - [anon_sym_u8_DQUOTE] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(97), - [sym_true] = ACTIONS(161), - [sym_false] = ACTIONS(161), - [anon_sym_NULL] = ACTIONS(101), - [anon_sym_nullptr] = ACTIONS(101), + [ts_builtin_sym_end] = ACTIONS(1454), + [sym_identifier] = ACTIONS(1452), + [aux_sym_preproc_include_token1] = ACTIONS(1452), + [aux_sym_preproc_def_token1] = ACTIONS(1452), + [anon_sym_COMMA] = ACTIONS(1454), + [aux_sym_preproc_if_token1] = ACTIONS(1452), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1452), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1452), + [sym_preproc_directive] = ACTIONS(1452), + [anon_sym_LPAREN2] = ACTIONS(1454), + [anon_sym_BANG] = ACTIONS(1454), + [anon_sym_TILDE] = ACTIONS(1454), + [anon_sym_DASH] = ACTIONS(1452), + [anon_sym_PLUS] = ACTIONS(1452), + [anon_sym_STAR] = ACTIONS(1454), + [anon_sym_AMP] = ACTIONS(1454), + [anon_sym___extension__] = ACTIONS(1452), + [anon_sym_typedef] = ACTIONS(1452), + [anon_sym_extern] = ACTIONS(1452), + [anon_sym___attribute__] = ACTIONS(1452), + [anon_sym___scanf] = ACTIONS(1452), + [anon_sym___printf] = ACTIONS(1452), + [anon_sym___read_mostly] = ACTIONS(1452), + [anon_sym___must_hold] = ACTIONS(1452), + [anon_sym___ro_after_init] = ACTIONS(1452), + [anon_sym___init] = ACTIONS(1452), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), + [anon_sym___declspec] = ACTIONS(1452), + [anon_sym___cdecl] = ACTIONS(1452), + [anon_sym___clrcall] = ACTIONS(1452), + [anon_sym___stdcall] = ACTIONS(1452), + [anon_sym___fastcall] = ACTIONS(1452), + [anon_sym___thiscall] = ACTIONS(1452), + [anon_sym___vectorcall] = ACTIONS(1452), + [anon_sym_LBRACE] = ACTIONS(1454), + [anon_sym_RBRACE] = ACTIONS(1454), + [anon_sym_signed] = ACTIONS(1452), + [anon_sym_unsigned] = ACTIONS(1452), + [anon_sym_long] = ACTIONS(1452), + [anon_sym_short] = ACTIONS(1452), + [anon_sym_static] = ACTIONS(1452), + [anon_sym_auto] = ACTIONS(1452), + [anon_sym_register] = ACTIONS(1452), + [anon_sym_inline] = ACTIONS(1452), + [anon_sym___inline] = ACTIONS(1452), + [anon_sym___inline__] = ACTIONS(1452), + [anon_sym___forceinline] = ACTIONS(1452), + [anon_sym_thread_local] = ACTIONS(1452), + [anon_sym___thread] = ACTIONS(1452), + [anon_sym_const] = ACTIONS(1452), + [anon_sym_constexpr] = ACTIONS(1452), + [anon_sym_volatile] = ACTIONS(1452), + [anon_sym_restrict] = ACTIONS(1452), + [anon_sym___restrict__] = ACTIONS(1452), + [anon_sym__Atomic] = ACTIONS(1452), + [anon_sym__Noreturn] = ACTIONS(1452), + [anon_sym_noreturn] = ACTIONS(1452), + [sym_primitive_type] = ACTIONS(1452), + [anon_sym_enum] = ACTIONS(1452), + [anon_sym_struct] = ACTIONS(1452), + [anon_sym_union] = ACTIONS(1452), + [anon_sym_if] = ACTIONS(1452), + [anon_sym_switch] = ACTIONS(1452), + [anon_sym_case] = ACTIONS(1452), + [anon_sym_default] = ACTIONS(1452), + [anon_sym_while] = ACTIONS(1452), + [anon_sym_do] = ACTIONS(1452), + [anon_sym_for] = ACTIONS(1452), + [anon_sym_return] = ACTIONS(1452), + [anon_sym_break] = ACTIONS(1452), + [anon_sym_continue] = ACTIONS(1452), + [anon_sym_goto] = ACTIONS(1452), + [anon_sym_DASH_DASH] = ACTIONS(1454), + [anon_sym_PLUS_PLUS] = ACTIONS(1454), + [anon_sym_sizeof] = ACTIONS(1452), + [anon_sym___alignof__] = ACTIONS(1452), + [anon_sym___alignof] = ACTIONS(1452), + [anon_sym__alignof] = ACTIONS(1452), + [anon_sym_alignof] = ACTIONS(1452), + [anon_sym__Alignof] = ACTIONS(1452), + [anon_sym_offsetof] = ACTIONS(1452), + [anon_sym__Generic] = ACTIONS(1452), + [anon_sym_asm] = ACTIONS(1452), + [anon_sym___asm__] = ACTIONS(1452), + [sym_number_literal] = ACTIONS(1454), + [anon_sym_L_SQUOTE] = ACTIONS(1454), + [anon_sym_u_SQUOTE] = ACTIONS(1454), + [anon_sym_U_SQUOTE] = ACTIONS(1454), + [anon_sym_u8_SQUOTE] = ACTIONS(1454), + [anon_sym_SQUOTE] = ACTIONS(1454), + [anon_sym_L_DQUOTE] = ACTIONS(1454), + [anon_sym_u_DQUOTE] = ACTIONS(1454), + [anon_sym_U_DQUOTE] = ACTIONS(1454), + [anon_sym_u8_DQUOTE] = ACTIONS(1454), + [anon_sym_DQUOTE] = ACTIONS(1454), + [sym_true] = ACTIONS(1452), + [sym_false] = ACTIONS(1452), + [anon_sym_NULL] = ACTIONS(1452), + [anon_sym_nullptr] = ACTIONS(1452), [sym_comment] = ACTIONS(3), }, [407] = { - [ts_builtin_sym_end] = ACTIONS(1451), - [sym_identifier] = ACTIONS(1449), - [aux_sym_preproc_include_token1] = ACTIONS(1449), - [aux_sym_preproc_def_token1] = ACTIONS(1449), - [anon_sym_COMMA] = ACTIONS(1451), - [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(1451), - [anon_sym_BANG] = ACTIONS(1451), - [anon_sym_TILDE] = ACTIONS(1451), - [anon_sym_DASH] = ACTIONS(1449), - [anon_sym_PLUS] = ACTIONS(1449), - [anon_sym_STAR] = ACTIONS(1451), - [anon_sym_AMP] = ACTIONS(1451), - [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_LBRACK_LBRACK] = ACTIONS(1451), - [anon_sym___declspec] = 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(1451), - [anon_sym_RBRACE] = ACTIONS(1451), - [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), - [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(1451), - [anon_sym_PLUS_PLUS] = ACTIONS(1451), - [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(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(1449), - [sym_false] = ACTIONS(1449), - [anon_sym_NULL] = ACTIONS(1449), - [anon_sym_nullptr] = ACTIONS(1449), + [ts_builtin_sym_end] = ACTIONS(1502), + [sym_identifier] = ACTIONS(1500), + [aux_sym_preproc_include_token1] = ACTIONS(1500), + [aux_sym_preproc_def_token1] = ACTIONS(1500), + [aux_sym_preproc_if_token1] = ACTIONS(1500), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1500), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1500), + [sym_preproc_directive] = ACTIONS(1500), + [anon_sym_LPAREN2] = ACTIONS(1502), + [anon_sym_BANG] = ACTIONS(1502), + [anon_sym_TILDE] = ACTIONS(1502), + [anon_sym_DASH] = ACTIONS(1500), + [anon_sym_PLUS] = ACTIONS(1500), + [anon_sym_STAR] = ACTIONS(1502), + [anon_sym_AMP] = ACTIONS(1502), + [anon_sym___extension__] = ACTIONS(1500), + [anon_sym_typedef] = ACTIONS(1500), + [anon_sym_extern] = ACTIONS(1500), + [anon_sym___attribute__] = ACTIONS(1500), + [anon_sym___scanf] = ACTIONS(1500), + [anon_sym___printf] = ACTIONS(1500), + [anon_sym___read_mostly] = ACTIONS(1500), + [anon_sym___must_hold] = ACTIONS(1500), + [anon_sym___ro_after_init] = ACTIONS(1500), + [anon_sym___init] = ACTIONS(1500), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1502), + [anon_sym___declspec] = ACTIONS(1500), + [anon_sym___cdecl] = ACTIONS(1500), + [anon_sym___clrcall] = ACTIONS(1500), + [anon_sym___stdcall] = ACTIONS(1500), + [anon_sym___fastcall] = ACTIONS(1500), + [anon_sym___thiscall] = ACTIONS(1500), + [anon_sym___vectorcall] = ACTIONS(1500), + [anon_sym_LBRACE] = ACTIONS(1502), + [anon_sym_signed] = ACTIONS(1500), + [anon_sym_unsigned] = ACTIONS(1500), + [anon_sym_long] = ACTIONS(1500), + [anon_sym_short] = ACTIONS(1500), + [anon_sym_static] = ACTIONS(1500), + [anon_sym_auto] = ACTIONS(1500), + [anon_sym_register] = ACTIONS(1500), + [anon_sym_inline] = ACTIONS(1500), + [anon_sym___inline] = ACTIONS(1500), + [anon_sym___inline__] = ACTIONS(1500), + [anon_sym___forceinline] = ACTIONS(1500), + [anon_sym_thread_local] = ACTIONS(1500), + [anon_sym___thread] = ACTIONS(1500), + [anon_sym_const] = ACTIONS(1500), + [anon_sym_constexpr] = ACTIONS(1500), + [anon_sym_volatile] = ACTIONS(1500), + [anon_sym_restrict] = ACTIONS(1500), + [anon_sym___restrict__] = ACTIONS(1500), + [anon_sym__Atomic] = ACTIONS(1500), + [anon_sym__Noreturn] = ACTIONS(1500), + [anon_sym_noreturn] = ACTIONS(1500), + [sym_primitive_type] = ACTIONS(1500), + [anon_sym_enum] = ACTIONS(1500), + [anon_sym_struct] = ACTIONS(1500), + [anon_sym_union] = ACTIONS(1500), + [anon_sym_if] = ACTIONS(1500), + [anon_sym_switch] = ACTIONS(1500), + [anon_sym_case] = ACTIONS(1500), + [anon_sym_default] = ACTIONS(1500), + [anon_sym_while] = ACTIONS(1500), + [anon_sym_do] = ACTIONS(1500), + [anon_sym_for] = ACTIONS(1500), + [anon_sym_return] = ACTIONS(1500), + [anon_sym_break] = ACTIONS(1500), + [anon_sym_continue] = ACTIONS(1500), + [anon_sym_goto] = ACTIONS(1500), + [anon_sym_DASH_DASH] = ACTIONS(1502), + [anon_sym_PLUS_PLUS] = ACTIONS(1502), + [anon_sym_sizeof] = ACTIONS(1500), + [anon_sym___alignof__] = ACTIONS(1500), + [anon_sym___alignof] = ACTIONS(1500), + [anon_sym__alignof] = ACTIONS(1500), + [anon_sym_alignof] = ACTIONS(1500), + [anon_sym__Alignof] = ACTIONS(1500), + [anon_sym_offsetof] = ACTIONS(1500), + [anon_sym__Generic] = ACTIONS(1500), + [anon_sym_asm] = ACTIONS(1500), + [anon_sym___asm__] = ACTIONS(1500), + [sym_number_literal] = ACTIONS(1502), + [anon_sym_L_SQUOTE] = ACTIONS(1502), + [anon_sym_u_SQUOTE] = ACTIONS(1502), + [anon_sym_U_SQUOTE] = ACTIONS(1502), + [anon_sym_u8_SQUOTE] = ACTIONS(1502), + [anon_sym_SQUOTE] = ACTIONS(1502), + [anon_sym_L_DQUOTE] = ACTIONS(1502), + [anon_sym_u_DQUOTE] = ACTIONS(1502), + [anon_sym_U_DQUOTE] = ACTIONS(1502), + [anon_sym_u8_DQUOTE] = ACTIONS(1502), + [anon_sym_DQUOTE] = ACTIONS(1502), + [sym_true] = ACTIONS(1500), + [sym_false] = ACTIONS(1500), + [anon_sym_NULL] = ACTIONS(1500), + [anon_sym_nullptr] = ACTIONS(1500), [sym_comment] = ACTIONS(3), }, [408] = { - [sym__expression] = STATE(936), - [sym__expression_not_binary] = STATE(963), - [sym_conditional_expression] = STATE(963), - [sym_assignment_expression] = STATE(963), - [sym_pointer_expression] = STATE(963), - [sym_unary_expression] = STATE(963), - [sym_binary_expression] = STATE(963), - [sym_update_expression] = STATE(963), - [sym_cast_expression] = STATE(963), - [sym_sizeof_expression] = STATE(963), - [sym_alignof_expression] = STATE(963), - [sym_offsetof_expression] = STATE(963), - [sym_generic_expression] = STATE(963), - [sym_subscript_expression] = STATE(963), - [sym_call_expression] = STATE(963), - [sym_gnu_asm_expression] = STATE(963), - [sym_field_expression] = STATE(963), - [sym_compound_literal_expression] = STATE(963), - [sym_parenthesized_expression] = STATE(963), - [sym_initializer_list] = STATE(967), - [sym_char_literal] = STATE(963), - [sym_concatenated_string] = STATE(963), - [sym_string_literal] = STATE(859), - [sym_null] = STATE(963), - [sym_identifier] = ACTIONS(1533), - [anon_sym_COMMA] = ACTIONS(1527), - [aux_sym_preproc_if_token2] = ACTIONS(1527), - [aux_sym_preproc_else_token1] = ACTIONS(1527), - [aux_sym_preproc_elif_token1] = ACTIONS(1527), - [anon_sym_LPAREN2] = ACTIONS(1527), - [anon_sym_BANG] = ACTIONS(1545), - [anon_sym_TILDE] = ACTIONS(1547), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1533), - [anon_sym_SLASH] = ACTIONS(1533), - [anon_sym_PERCENT] = ACTIONS(1533), - [anon_sym_PIPE_PIPE] = ACTIONS(1527), - [anon_sym_AMP_AMP] = ACTIONS(1527), - [anon_sym_PIPE] = ACTIONS(1533), - [anon_sym_CARET] = ACTIONS(1533), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_EQ_EQ] = ACTIONS(1527), - [anon_sym_BANG_EQ] = ACTIONS(1527), - [anon_sym_GT] = ACTIONS(1533), - [anon_sym_GT_EQ] = ACTIONS(1527), - [anon_sym_LT_EQ] = ACTIONS(1527), - [anon_sym_LT] = ACTIONS(1533), - [anon_sym_LT_LT] = ACTIONS(1533), - [anon_sym_GT_GT] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1549), - [anon_sym_LBRACK] = ACTIONS(1527), - [anon_sym_EQ] = ACTIONS(1533), - [anon_sym_QMARK] = ACTIONS(1527), - [anon_sym_STAR_EQ] = ACTIONS(1527), - [anon_sym_SLASH_EQ] = ACTIONS(1527), - [anon_sym_PERCENT_EQ] = ACTIONS(1527), - [anon_sym_PLUS_EQ] = ACTIONS(1527), - [anon_sym_DASH_EQ] = ACTIONS(1527), - [anon_sym_LT_LT_EQ] = ACTIONS(1527), - [anon_sym_GT_GT_EQ] = ACTIONS(1527), - [anon_sym_AMP_EQ] = ACTIONS(1527), - [anon_sym_CARET_EQ] = ACTIONS(1527), - [anon_sym_PIPE_EQ] = ACTIONS(1527), - [anon_sym_DASH_DASH] = ACTIONS(1527), - [anon_sym_PLUS_PLUS] = ACTIONS(1527), - [anon_sym_sizeof] = ACTIONS(1551), - [anon_sym___alignof__] = ACTIONS(1553), - [anon_sym___alignof] = ACTIONS(1553), - [anon_sym__alignof] = ACTIONS(1553), - [anon_sym_alignof] = ACTIONS(1553), - [anon_sym__Alignof] = ACTIONS(1553), - [anon_sym_offsetof] = ACTIONS(1555), - [anon_sym__Generic] = ACTIONS(1557), - [anon_sym_asm] = ACTIONS(1559), - [anon_sym___asm__] = ACTIONS(1559), - [anon_sym_DOT] = ACTIONS(1533), - [anon_sym_DASH_GT] = ACTIONS(1527), - [sym_number_literal] = ACTIONS(1561), - [anon_sym_L_SQUOTE] = ACTIONS(1563), - [anon_sym_u_SQUOTE] = ACTIONS(1563), - [anon_sym_U_SQUOTE] = ACTIONS(1563), - [anon_sym_u8_SQUOTE] = ACTIONS(1563), - [anon_sym_SQUOTE] = ACTIONS(1563), - [anon_sym_L_DQUOTE] = ACTIONS(1565), - [anon_sym_u_DQUOTE] = ACTIONS(1565), - [anon_sym_U_DQUOTE] = ACTIONS(1565), - [anon_sym_u8_DQUOTE] = ACTIONS(1565), - [anon_sym_DQUOTE] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [anon_sym_NULL] = ACTIONS(1569), - [anon_sym_nullptr] = ACTIONS(1569), + [ts_builtin_sym_end] = ACTIONS(1526), + [sym_identifier] = ACTIONS(1524), + [aux_sym_preproc_include_token1] = ACTIONS(1524), + [aux_sym_preproc_def_token1] = ACTIONS(1524), + [aux_sym_preproc_if_token1] = ACTIONS(1524), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1524), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1524), + [sym_preproc_directive] = ACTIONS(1524), + [anon_sym_LPAREN2] = ACTIONS(1526), + [anon_sym_BANG] = ACTIONS(1526), + [anon_sym_TILDE] = ACTIONS(1526), + [anon_sym_DASH] = ACTIONS(1524), + [anon_sym_PLUS] = ACTIONS(1524), + [anon_sym_STAR] = ACTIONS(1526), + [anon_sym_AMP] = ACTIONS(1526), + [anon_sym___extension__] = ACTIONS(1524), + [anon_sym_typedef] = ACTIONS(1524), + [anon_sym_extern] = ACTIONS(1524), + [anon_sym___attribute__] = ACTIONS(1524), + [anon_sym___scanf] = ACTIONS(1524), + [anon_sym___printf] = ACTIONS(1524), + [anon_sym___read_mostly] = ACTIONS(1524), + [anon_sym___must_hold] = ACTIONS(1524), + [anon_sym___ro_after_init] = ACTIONS(1524), + [anon_sym___init] = ACTIONS(1524), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1526), + [anon_sym___declspec] = ACTIONS(1524), + [anon_sym___cdecl] = ACTIONS(1524), + [anon_sym___clrcall] = ACTIONS(1524), + [anon_sym___stdcall] = ACTIONS(1524), + [anon_sym___fastcall] = ACTIONS(1524), + [anon_sym___thiscall] = ACTIONS(1524), + [anon_sym___vectorcall] = ACTIONS(1524), + [anon_sym_LBRACE] = ACTIONS(1526), + [anon_sym_signed] = ACTIONS(1524), + [anon_sym_unsigned] = ACTIONS(1524), + [anon_sym_long] = ACTIONS(1524), + [anon_sym_short] = ACTIONS(1524), + [anon_sym_static] = ACTIONS(1524), + [anon_sym_auto] = ACTIONS(1524), + [anon_sym_register] = ACTIONS(1524), + [anon_sym_inline] = ACTIONS(1524), + [anon_sym___inline] = ACTIONS(1524), + [anon_sym___inline__] = ACTIONS(1524), + [anon_sym___forceinline] = ACTIONS(1524), + [anon_sym_thread_local] = ACTIONS(1524), + [anon_sym___thread] = ACTIONS(1524), + [anon_sym_const] = ACTIONS(1524), + [anon_sym_constexpr] = ACTIONS(1524), + [anon_sym_volatile] = ACTIONS(1524), + [anon_sym_restrict] = ACTIONS(1524), + [anon_sym___restrict__] = ACTIONS(1524), + [anon_sym__Atomic] = ACTIONS(1524), + [anon_sym__Noreturn] = ACTIONS(1524), + [anon_sym_noreturn] = ACTIONS(1524), + [sym_primitive_type] = ACTIONS(1524), + [anon_sym_enum] = ACTIONS(1524), + [anon_sym_struct] = ACTIONS(1524), + [anon_sym_union] = ACTIONS(1524), + [anon_sym_if] = ACTIONS(1524), + [anon_sym_switch] = ACTIONS(1524), + [anon_sym_case] = ACTIONS(1524), + [anon_sym_default] = ACTIONS(1524), + [anon_sym_while] = ACTIONS(1524), + [anon_sym_do] = ACTIONS(1524), + [anon_sym_for] = ACTIONS(1524), + [anon_sym_return] = ACTIONS(1524), + [anon_sym_break] = ACTIONS(1524), + [anon_sym_continue] = ACTIONS(1524), + [anon_sym_goto] = ACTIONS(1524), + [anon_sym_DASH_DASH] = ACTIONS(1526), + [anon_sym_PLUS_PLUS] = ACTIONS(1526), + [anon_sym_sizeof] = ACTIONS(1524), + [anon_sym___alignof__] = ACTIONS(1524), + [anon_sym___alignof] = ACTIONS(1524), + [anon_sym__alignof] = ACTIONS(1524), + [anon_sym_alignof] = ACTIONS(1524), + [anon_sym__Alignof] = ACTIONS(1524), + [anon_sym_offsetof] = ACTIONS(1524), + [anon_sym__Generic] = ACTIONS(1524), + [anon_sym_asm] = ACTIONS(1524), + [anon_sym___asm__] = ACTIONS(1524), + [sym_number_literal] = ACTIONS(1526), + [anon_sym_L_SQUOTE] = ACTIONS(1526), + [anon_sym_u_SQUOTE] = ACTIONS(1526), + [anon_sym_U_SQUOTE] = ACTIONS(1526), + [anon_sym_u8_SQUOTE] = ACTIONS(1526), + [anon_sym_SQUOTE] = ACTIONS(1526), + [anon_sym_L_DQUOTE] = ACTIONS(1526), + [anon_sym_u_DQUOTE] = ACTIONS(1526), + [anon_sym_U_DQUOTE] = ACTIONS(1526), + [anon_sym_u8_DQUOTE] = ACTIONS(1526), + [anon_sym_DQUOTE] = ACTIONS(1526), + [sym_true] = ACTIONS(1524), + [sym_false] = ACTIONS(1524), + [anon_sym_NULL] = ACTIONS(1524), + [anon_sym_nullptr] = ACTIONS(1524), [sym_comment] = ACTIONS(3), }, [409] = { - [ts_builtin_sym_end] = ACTIONS(1479), - [sym_identifier] = ACTIONS(1477), - [aux_sym_preproc_include_token1] = ACTIONS(1477), - [aux_sym_preproc_def_token1] = ACTIONS(1477), - [aux_sym_preproc_if_token1] = ACTIONS(1477), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1477), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1477), - [sym_preproc_directive] = ACTIONS(1477), - [anon_sym_LPAREN2] = ACTIONS(1479), - [anon_sym_BANG] = ACTIONS(1479), - [anon_sym_TILDE] = ACTIONS(1479), - [anon_sym_DASH] = ACTIONS(1477), - [anon_sym_PLUS] = ACTIONS(1477), - [anon_sym_STAR] = ACTIONS(1479), - [anon_sym_AMP] = ACTIONS(1479), - [anon_sym___extension__] = ACTIONS(1477), - [anon_sym_typedef] = ACTIONS(1477), - [anon_sym_extern] = ACTIONS(1477), - [anon_sym___attribute__] = ACTIONS(1477), - [anon_sym___scanf] = ACTIONS(1477), - [anon_sym___printf] = ACTIONS(1477), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1479), - [anon_sym___declspec] = ACTIONS(1477), - [anon_sym___cdecl] = ACTIONS(1477), - [anon_sym___clrcall] = ACTIONS(1477), - [anon_sym___stdcall] = ACTIONS(1477), - [anon_sym___fastcall] = ACTIONS(1477), - [anon_sym___thiscall] = ACTIONS(1477), - [anon_sym___vectorcall] = ACTIONS(1477), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_signed] = ACTIONS(1477), - [anon_sym_unsigned] = ACTIONS(1477), - [anon_sym_long] = ACTIONS(1477), - [anon_sym_short] = ACTIONS(1477), - [anon_sym_static] = ACTIONS(1477), - [anon_sym_auto] = ACTIONS(1477), - [anon_sym_register] = ACTIONS(1477), - [anon_sym_inline] = ACTIONS(1477), - [anon_sym___inline] = ACTIONS(1477), - [anon_sym___inline__] = ACTIONS(1477), - [anon_sym___forceinline] = ACTIONS(1477), - [anon_sym_thread_local] = ACTIONS(1477), - [anon_sym___thread] = ACTIONS(1477), - [anon_sym_const] = ACTIONS(1477), - [anon_sym_constexpr] = ACTIONS(1477), - [anon_sym_volatile] = ACTIONS(1477), - [anon_sym_restrict] = ACTIONS(1477), - [anon_sym___restrict__] = ACTIONS(1477), - [anon_sym__Atomic] = ACTIONS(1477), - [anon_sym__Noreturn] = ACTIONS(1477), - [anon_sym_noreturn] = ACTIONS(1477), - [sym_primitive_type] = ACTIONS(1477), - [anon_sym_enum] = ACTIONS(1477), - [anon_sym_struct] = ACTIONS(1477), - [anon_sym_union] = ACTIONS(1477), - [anon_sym_if] = ACTIONS(1477), - [anon_sym_switch] = ACTIONS(1477), - [anon_sym_case] = ACTIONS(1477), - [anon_sym_default] = ACTIONS(1477), - [anon_sym_while] = ACTIONS(1477), - [anon_sym_do] = ACTIONS(1477), - [anon_sym_for] = ACTIONS(1477), - [anon_sym_return] = ACTIONS(1477), - [anon_sym_break] = ACTIONS(1477), - [anon_sym_continue] = ACTIONS(1477), - [anon_sym_goto] = ACTIONS(1477), - [anon_sym_DASH_DASH] = ACTIONS(1479), - [anon_sym_PLUS_PLUS] = ACTIONS(1479), - [anon_sym_sizeof] = ACTIONS(1477), - [anon_sym___alignof__] = ACTIONS(1477), - [anon_sym___alignof] = ACTIONS(1477), - [anon_sym__alignof] = ACTIONS(1477), - [anon_sym_alignof] = ACTIONS(1477), - [anon_sym__Alignof] = ACTIONS(1477), - [anon_sym_offsetof] = ACTIONS(1477), - [anon_sym__Generic] = ACTIONS(1477), - [anon_sym_asm] = ACTIONS(1477), - [anon_sym___asm__] = ACTIONS(1477), - [sym_number_literal] = ACTIONS(1479), - [anon_sym_L_SQUOTE] = ACTIONS(1479), - [anon_sym_u_SQUOTE] = ACTIONS(1479), - [anon_sym_U_SQUOTE] = ACTIONS(1479), - [anon_sym_u8_SQUOTE] = ACTIONS(1479), - [anon_sym_SQUOTE] = ACTIONS(1479), - [anon_sym_L_DQUOTE] = ACTIONS(1479), - [anon_sym_u_DQUOTE] = ACTIONS(1479), - [anon_sym_U_DQUOTE] = ACTIONS(1479), - [anon_sym_u8_DQUOTE] = ACTIONS(1479), - [anon_sym_DQUOTE] = ACTIONS(1479), - [sym_true] = ACTIONS(1477), - [sym_false] = ACTIONS(1477), - [anon_sym_NULL] = ACTIONS(1477), - [anon_sym_nullptr] = ACTIONS(1477), + [ts_builtin_sym_end] = ACTIONS(1458), + [sym_identifier] = ACTIONS(1456), + [aux_sym_preproc_include_token1] = ACTIONS(1456), + [aux_sym_preproc_def_token1] = ACTIONS(1456), + [aux_sym_preproc_if_token1] = ACTIONS(1456), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1456), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1456), + [sym_preproc_directive] = ACTIONS(1456), + [anon_sym_LPAREN2] = ACTIONS(1458), + [anon_sym_BANG] = ACTIONS(1458), + [anon_sym_TILDE] = ACTIONS(1458), + [anon_sym_DASH] = ACTIONS(1456), + [anon_sym_PLUS] = ACTIONS(1456), + [anon_sym_STAR] = ACTIONS(1458), + [anon_sym_AMP] = ACTIONS(1458), + [anon_sym___extension__] = ACTIONS(1456), + [anon_sym_typedef] = ACTIONS(1456), + [anon_sym_extern] = ACTIONS(1456), + [anon_sym___attribute__] = ACTIONS(1456), + [anon_sym___scanf] = ACTIONS(1456), + [anon_sym___printf] = ACTIONS(1456), + [anon_sym___read_mostly] = ACTIONS(1456), + [anon_sym___must_hold] = ACTIONS(1456), + [anon_sym___ro_after_init] = ACTIONS(1456), + [anon_sym___init] = ACTIONS(1456), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1458), + [anon_sym___declspec] = ACTIONS(1456), + [anon_sym___cdecl] = ACTIONS(1456), + [anon_sym___clrcall] = ACTIONS(1456), + [anon_sym___stdcall] = ACTIONS(1456), + [anon_sym___fastcall] = ACTIONS(1456), + [anon_sym___thiscall] = ACTIONS(1456), + [anon_sym___vectorcall] = ACTIONS(1456), + [anon_sym_LBRACE] = ACTIONS(1458), + [anon_sym_signed] = ACTIONS(1456), + [anon_sym_unsigned] = ACTIONS(1456), + [anon_sym_long] = ACTIONS(1456), + [anon_sym_short] = ACTIONS(1456), + [anon_sym_static] = ACTIONS(1456), + [anon_sym_auto] = ACTIONS(1456), + [anon_sym_register] = ACTIONS(1456), + [anon_sym_inline] = ACTIONS(1456), + [anon_sym___inline] = ACTIONS(1456), + [anon_sym___inline__] = ACTIONS(1456), + [anon_sym___forceinline] = ACTIONS(1456), + [anon_sym_thread_local] = ACTIONS(1456), + [anon_sym___thread] = ACTIONS(1456), + [anon_sym_const] = ACTIONS(1456), + [anon_sym_constexpr] = ACTIONS(1456), + [anon_sym_volatile] = ACTIONS(1456), + [anon_sym_restrict] = ACTIONS(1456), + [anon_sym___restrict__] = ACTIONS(1456), + [anon_sym__Atomic] = ACTIONS(1456), + [anon_sym__Noreturn] = ACTIONS(1456), + [anon_sym_noreturn] = ACTIONS(1456), + [sym_primitive_type] = ACTIONS(1456), + [anon_sym_enum] = ACTIONS(1456), + [anon_sym_struct] = ACTIONS(1456), + [anon_sym_union] = ACTIONS(1456), + [anon_sym_if] = ACTIONS(1456), + [anon_sym_switch] = ACTIONS(1456), + [anon_sym_case] = ACTIONS(1456), + [anon_sym_default] = ACTIONS(1456), + [anon_sym_while] = ACTIONS(1456), + [anon_sym_do] = ACTIONS(1456), + [anon_sym_for] = ACTIONS(1456), + [anon_sym_return] = ACTIONS(1456), + [anon_sym_break] = ACTIONS(1456), + [anon_sym_continue] = ACTIONS(1456), + [anon_sym_goto] = ACTIONS(1456), + [anon_sym_DASH_DASH] = ACTIONS(1458), + [anon_sym_PLUS_PLUS] = ACTIONS(1458), + [anon_sym_sizeof] = ACTIONS(1456), + [anon_sym___alignof__] = ACTIONS(1456), + [anon_sym___alignof] = ACTIONS(1456), + [anon_sym__alignof] = ACTIONS(1456), + [anon_sym_alignof] = ACTIONS(1456), + [anon_sym__Alignof] = ACTIONS(1456), + [anon_sym_offsetof] = ACTIONS(1456), + [anon_sym__Generic] = ACTIONS(1456), + [anon_sym_asm] = ACTIONS(1456), + [anon_sym___asm__] = ACTIONS(1456), + [sym_number_literal] = ACTIONS(1458), + [anon_sym_L_SQUOTE] = ACTIONS(1458), + [anon_sym_u_SQUOTE] = ACTIONS(1458), + [anon_sym_U_SQUOTE] = ACTIONS(1458), + [anon_sym_u8_SQUOTE] = ACTIONS(1458), + [anon_sym_SQUOTE] = ACTIONS(1458), + [anon_sym_L_DQUOTE] = ACTIONS(1458), + [anon_sym_u_DQUOTE] = ACTIONS(1458), + [anon_sym_U_DQUOTE] = ACTIONS(1458), + [anon_sym_u8_DQUOTE] = ACTIONS(1458), + [anon_sym_DQUOTE] = ACTIONS(1458), + [sym_true] = ACTIONS(1456), + [sym_false] = ACTIONS(1456), + [anon_sym_NULL] = ACTIONS(1456), + [anon_sym_nullptr] = ACTIONS(1456), [sym_comment] = ACTIONS(3), }, [410] = { - [sym_attribute_declaration] = STATE(449), - [sym_compound_statement] = STATE(226), - [sym_attributed_statement] = STATE(226), - [sym_labeled_statement] = STATE(226), - [sym_expression_statement] = STATE(226), - [sym_if_statement] = STATE(226), - [sym_switch_statement] = STATE(226), - [sym_case_statement] = STATE(226), - [sym_while_statement] = STATE(226), - [sym_do_statement] = STATE(226), - [sym_for_statement] = STATE(226), - [sym_return_statement] = STATE(226), - [sym_break_statement] = STATE(226), - [sym_continue_statement] = STATE(226), - [sym_goto_statement] = STATE(226), - [sym_seh_try_statement] = STATE(226), - [sym_seh_leave_statement] = STATE(226), - [sym__expression] = STATE(1227), - [sym__expression_not_binary] = STATE(792), - [sym_comma_expression] = STATE(2090), - [sym_conditional_expression] = STATE(792), - [sym_assignment_expression] = STATE(792), - [sym_pointer_expression] = STATE(901), - [sym_unary_expression] = STATE(792), - [sym_binary_expression] = STATE(792), - [sym_update_expression] = STATE(792), - [sym_cast_expression] = STATE(792), - [sym_sizeof_expression] = STATE(792), - [sym_alignof_expression] = STATE(792), - [sym_offsetof_expression] = STATE(792), - [sym_generic_expression] = STATE(792), - [sym_subscript_expression] = STATE(901), - [sym_call_expression] = STATE(901), - [sym_gnu_asm_expression] = STATE(792), - [sym_field_expression] = STATE(901), - [sym_compound_literal_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(901), - [sym_char_literal] = STATE(792), - [sym_concatenated_string] = STATE(792), - [sym_string_literal] = STATE(675), - [sym_null] = STATE(792), - [aux_sym_attributed_declarator_repeat1] = STATE(449), - [sym_identifier] = ACTIONS(1571), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(1110), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1573), - [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_if] = ACTIONS(59), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_case] = ACTIONS(63), - [anon_sym_default] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_do] = ACTIONS(69), - [anon_sym_for] = ACTIONS(71), - [anon_sym_return] = ACTIONS(73), - [anon_sym_break] = ACTIONS(75), - [anon_sym_continue] = ACTIONS(77), - [anon_sym_goto] = ACTIONS(79), - [anon_sym___try] = ACTIONS(1112), - [anon_sym___leave] = ACTIONS(1114), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(83), - [anon_sym___alignof__] = ACTIONS(85), - [anon_sym___alignof] = ACTIONS(85), - [anon_sym__alignof] = ACTIONS(85), - [anon_sym_alignof] = ACTIONS(85), - [anon_sym__Alignof] = ACTIONS(85), - [anon_sym_offsetof] = ACTIONS(87), - [anon_sym__Generic] = ACTIONS(89), - [anon_sym_asm] = ACTIONS(91), - [anon_sym___asm__] = ACTIONS(91), - [sym_number_literal] = ACTIONS(159), - [anon_sym_L_SQUOTE] = ACTIONS(95), - [anon_sym_u_SQUOTE] = ACTIONS(95), - [anon_sym_U_SQUOTE] = ACTIONS(95), - [anon_sym_u8_SQUOTE] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(95), - [anon_sym_L_DQUOTE] = ACTIONS(97), - [anon_sym_u_DQUOTE] = ACTIONS(97), - [anon_sym_U_DQUOTE] = ACTIONS(97), - [anon_sym_u8_DQUOTE] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(97), - [sym_true] = ACTIONS(161), - [sym_false] = ACTIONS(161), - [anon_sym_NULL] = ACTIONS(101), - [anon_sym_nullptr] = ACTIONS(101), + [ts_builtin_sym_end] = ACTIONS(1470), + [sym_identifier] = ACTIONS(1468), + [aux_sym_preproc_include_token1] = ACTIONS(1468), + [aux_sym_preproc_def_token1] = ACTIONS(1468), + [aux_sym_preproc_if_token1] = ACTIONS(1468), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1468), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1468), + [sym_preproc_directive] = ACTIONS(1468), + [anon_sym_LPAREN2] = ACTIONS(1470), + [anon_sym_BANG] = ACTIONS(1470), + [anon_sym_TILDE] = ACTIONS(1470), + [anon_sym_DASH] = ACTIONS(1468), + [anon_sym_PLUS] = ACTIONS(1468), + [anon_sym_STAR] = ACTIONS(1470), + [anon_sym_AMP] = ACTIONS(1470), + [anon_sym___extension__] = ACTIONS(1468), + [anon_sym_typedef] = ACTIONS(1468), + [anon_sym_extern] = ACTIONS(1468), + [anon_sym___attribute__] = ACTIONS(1468), + [anon_sym___scanf] = ACTIONS(1468), + [anon_sym___printf] = ACTIONS(1468), + [anon_sym___read_mostly] = ACTIONS(1468), + [anon_sym___must_hold] = ACTIONS(1468), + [anon_sym___ro_after_init] = ACTIONS(1468), + [anon_sym___init] = ACTIONS(1468), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1470), + [anon_sym___declspec] = ACTIONS(1468), + [anon_sym___cdecl] = ACTIONS(1468), + [anon_sym___clrcall] = ACTIONS(1468), + [anon_sym___stdcall] = ACTIONS(1468), + [anon_sym___fastcall] = ACTIONS(1468), + [anon_sym___thiscall] = ACTIONS(1468), + [anon_sym___vectorcall] = ACTIONS(1468), + [anon_sym_LBRACE] = ACTIONS(1470), + [anon_sym_signed] = ACTIONS(1468), + [anon_sym_unsigned] = ACTIONS(1468), + [anon_sym_long] = ACTIONS(1468), + [anon_sym_short] = ACTIONS(1468), + [anon_sym_static] = ACTIONS(1468), + [anon_sym_auto] = ACTIONS(1468), + [anon_sym_register] = ACTIONS(1468), + [anon_sym_inline] = ACTIONS(1468), + [anon_sym___inline] = ACTIONS(1468), + [anon_sym___inline__] = ACTIONS(1468), + [anon_sym___forceinline] = ACTIONS(1468), + [anon_sym_thread_local] = ACTIONS(1468), + [anon_sym___thread] = ACTIONS(1468), + [anon_sym_const] = ACTIONS(1468), + [anon_sym_constexpr] = ACTIONS(1468), + [anon_sym_volatile] = ACTIONS(1468), + [anon_sym_restrict] = ACTIONS(1468), + [anon_sym___restrict__] = ACTIONS(1468), + [anon_sym__Atomic] = ACTIONS(1468), + [anon_sym__Noreturn] = ACTIONS(1468), + [anon_sym_noreturn] = ACTIONS(1468), + [sym_primitive_type] = ACTIONS(1468), + [anon_sym_enum] = ACTIONS(1468), + [anon_sym_struct] = ACTIONS(1468), + [anon_sym_union] = ACTIONS(1468), + [anon_sym_if] = ACTIONS(1468), + [anon_sym_switch] = ACTIONS(1468), + [anon_sym_case] = ACTIONS(1468), + [anon_sym_default] = ACTIONS(1468), + [anon_sym_while] = ACTIONS(1468), + [anon_sym_do] = ACTIONS(1468), + [anon_sym_for] = ACTIONS(1468), + [anon_sym_return] = ACTIONS(1468), + [anon_sym_break] = ACTIONS(1468), + [anon_sym_continue] = ACTIONS(1468), + [anon_sym_goto] = ACTIONS(1468), + [anon_sym_DASH_DASH] = ACTIONS(1470), + [anon_sym_PLUS_PLUS] = ACTIONS(1470), + [anon_sym_sizeof] = ACTIONS(1468), + [anon_sym___alignof__] = ACTIONS(1468), + [anon_sym___alignof] = ACTIONS(1468), + [anon_sym__alignof] = ACTIONS(1468), + [anon_sym_alignof] = ACTIONS(1468), + [anon_sym__Alignof] = ACTIONS(1468), + [anon_sym_offsetof] = ACTIONS(1468), + [anon_sym__Generic] = ACTIONS(1468), + [anon_sym_asm] = ACTIONS(1468), + [anon_sym___asm__] = ACTIONS(1468), + [sym_number_literal] = ACTIONS(1470), + [anon_sym_L_SQUOTE] = ACTIONS(1470), + [anon_sym_u_SQUOTE] = ACTIONS(1470), + [anon_sym_U_SQUOTE] = ACTIONS(1470), + [anon_sym_u8_SQUOTE] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1470), + [anon_sym_L_DQUOTE] = ACTIONS(1470), + [anon_sym_u_DQUOTE] = ACTIONS(1470), + [anon_sym_U_DQUOTE] = ACTIONS(1470), + [anon_sym_u8_DQUOTE] = ACTIONS(1470), + [anon_sym_DQUOTE] = ACTIONS(1470), + [sym_true] = ACTIONS(1468), + [sym_false] = ACTIONS(1468), + [anon_sym_NULL] = ACTIONS(1468), + [anon_sym_nullptr] = ACTIONS(1468), [sym_comment] = ACTIONS(3), }, [411] = { - [sym_attribute_declaration] = STATE(448), - [sym_compound_statement] = STATE(2113), - [sym_attributed_statement] = STATE(2113), - [sym_labeled_statement] = STATE(2113), - [sym_expression_statement] = STATE(2113), - [sym_if_statement] = STATE(2113), - [sym_switch_statement] = STATE(2113), - [sym_case_statement] = STATE(2113), - [sym_while_statement] = STATE(2113), - [sym_do_statement] = STATE(2113), - [sym_for_statement] = STATE(2113), - [sym_return_statement] = STATE(2113), - [sym_break_statement] = STATE(2113), - [sym_continue_statement] = STATE(2113), - [sym_goto_statement] = STATE(2113), - [sym_seh_try_statement] = STATE(2113), - [sym_seh_leave_statement] = STATE(2113), - [sym__expression] = STATE(1221), - [sym__expression_not_binary] = STATE(792), - [sym_comma_expression] = STATE(2106), - [sym_conditional_expression] = STATE(792), - [sym_assignment_expression] = STATE(792), - [sym_pointer_expression] = STATE(901), - [sym_unary_expression] = STATE(792), - [sym_binary_expression] = STATE(792), - [sym_update_expression] = STATE(792), - [sym_cast_expression] = STATE(792), - [sym_sizeof_expression] = STATE(792), - [sym_alignof_expression] = STATE(792), - [sym_offsetof_expression] = STATE(792), - [sym_generic_expression] = STATE(792), - [sym_subscript_expression] = STATE(901), - [sym_call_expression] = STATE(901), - [sym_gnu_asm_expression] = STATE(792), - [sym_field_expression] = STATE(901), - [sym_compound_literal_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(901), - [sym_char_literal] = STATE(792), - [sym_concatenated_string] = STATE(792), - [sym_string_literal] = STATE(675), - [sym_null] = STATE(792), - [aux_sym_attributed_declarator_repeat1] = STATE(448), - [sym_identifier] = ACTIONS(1575), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(496), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1573), - [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_if] = ACTIONS(1274), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_case] = ACTIONS(1577), - [anon_sym_default] = ACTIONS(1579), - [anon_sym_while] = ACTIONS(1276), - [anon_sym_do] = ACTIONS(69), - [anon_sym_for] = ACTIONS(1278), - [anon_sym_return] = ACTIONS(73), - [anon_sym_break] = ACTIONS(75), - [anon_sym_continue] = ACTIONS(77), - [anon_sym_goto] = ACTIONS(79), - [anon_sym___try] = ACTIONS(1280), - [anon_sym___leave] = ACTIONS(532), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(83), - [anon_sym___alignof__] = ACTIONS(85), - [anon_sym___alignof] = ACTIONS(85), - [anon_sym__alignof] = ACTIONS(85), - [anon_sym_alignof] = ACTIONS(85), - [anon_sym__Alignof] = ACTIONS(85), - [anon_sym_offsetof] = ACTIONS(87), - [anon_sym__Generic] = ACTIONS(89), - [anon_sym_asm] = ACTIONS(91), - [anon_sym___asm__] = ACTIONS(91), - [sym_number_literal] = ACTIONS(159), - [anon_sym_L_SQUOTE] = ACTIONS(95), - [anon_sym_u_SQUOTE] = ACTIONS(95), - [anon_sym_U_SQUOTE] = ACTIONS(95), - [anon_sym_u8_SQUOTE] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(95), - [anon_sym_L_DQUOTE] = ACTIONS(97), - [anon_sym_u_DQUOTE] = ACTIONS(97), - [anon_sym_U_DQUOTE] = ACTIONS(97), - [anon_sym_u8_DQUOTE] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(97), - [sym_true] = ACTIONS(161), - [sym_false] = ACTIONS(161), - [anon_sym_NULL] = ACTIONS(101), - [anon_sym_nullptr] = ACTIONS(101), + [ts_builtin_sym_end] = ACTIONS(1474), + [sym_identifier] = ACTIONS(1472), + [aux_sym_preproc_include_token1] = ACTIONS(1472), + [aux_sym_preproc_def_token1] = ACTIONS(1472), + [aux_sym_preproc_if_token1] = ACTIONS(1472), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1472), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1472), + [sym_preproc_directive] = ACTIONS(1472), + [anon_sym_LPAREN2] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1474), + [anon_sym_TILDE] = ACTIONS(1474), + [anon_sym_DASH] = ACTIONS(1472), + [anon_sym_PLUS] = ACTIONS(1472), + [anon_sym_STAR] = ACTIONS(1474), + [anon_sym_AMP] = ACTIONS(1474), + [anon_sym___extension__] = ACTIONS(1472), + [anon_sym_typedef] = ACTIONS(1472), + [anon_sym_extern] = ACTIONS(1472), + [anon_sym___attribute__] = ACTIONS(1472), + [anon_sym___scanf] = ACTIONS(1472), + [anon_sym___printf] = ACTIONS(1472), + [anon_sym___read_mostly] = ACTIONS(1472), + [anon_sym___must_hold] = ACTIONS(1472), + [anon_sym___ro_after_init] = ACTIONS(1472), + [anon_sym___init] = ACTIONS(1472), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1474), + [anon_sym___declspec] = ACTIONS(1472), + [anon_sym___cdecl] = ACTIONS(1472), + [anon_sym___clrcall] = ACTIONS(1472), + [anon_sym___stdcall] = ACTIONS(1472), + [anon_sym___fastcall] = ACTIONS(1472), + [anon_sym___thiscall] = ACTIONS(1472), + [anon_sym___vectorcall] = ACTIONS(1472), + [anon_sym_LBRACE] = ACTIONS(1474), + [anon_sym_signed] = ACTIONS(1472), + [anon_sym_unsigned] = ACTIONS(1472), + [anon_sym_long] = ACTIONS(1472), + [anon_sym_short] = ACTIONS(1472), + [anon_sym_static] = ACTIONS(1472), + [anon_sym_auto] = ACTIONS(1472), + [anon_sym_register] = ACTIONS(1472), + [anon_sym_inline] = ACTIONS(1472), + [anon_sym___inline] = ACTIONS(1472), + [anon_sym___inline__] = ACTIONS(1472), + [anon_sym___forceinline] = ACTIONS(1472), + [anon_sym_thread_local] = ACTIONS(1472), + [anon_sym___thread] = ACTIONS(1472), + [anon_sym_const] = ACTIONS(1472), + [anon_sym_constexpr] = ACTIONS(1472), + [anon_sym_volatile] = ACTIONS(1472), + [anon_sym_restrict] = ACTIONS(1472), + [anon_sym___restrict__] = ACTIONS(1472), + [anon_sym__Atomic] = ACTIONS(1472), + [anon_sym__Noreturn] = ACTIONS(1472), + [anon_sym_noreturn] = ACTIONS(1472), + [sym_primitive_type] = ACTIONS(1472), + [anon_sym_enum] = ACTIONS(1472), + [anon_sym_struct] = ACTIONS(1472), + [anon_sym_union] = ACTIONS(1472), + [anon_sym_if] = ACTIONS(1472), + [anon_sym_switch] = ACTIONS(1472), + [anon_sym_case] = ACTIONS(1472), + [anon_sym_default] = ACTIONS(1472), + [anon_sym_while] = ACTIONS(1472), + [anon_sym_do] = ACTIONS(1472), + [anon_sym_for] = ACTIONS(1472), + [anon_sym_return] = ACTIONS(1472), + [anon_sym_break] = ACTIONS(1472), + [anon_sym_continue] = ACTIONS(1472), + [anon_sym_goto] = ACTIONS(1472), + [anon_sym_DASH_DASH] = ACTIONS(1474), + [anon_sym_PLUS_PLUS] = ACTIONS(1474), + [anon_sym_sizeof] = ACTIONS(1472), + [anon_sym___alignof__] = ACTIONS(1472), + [anon_sym___alignof] = ACTIONS(1472), + [anon_sym__alignof] = ACTIONS(1472), + [anon_sym_alignof] = ACTIONS(1472), + [anon_sym__Alignof] = ACTIONS(1472), + [anon_sym_offsetof] = ACTIONS(1472), + [anon_sym__Generic] = ACTIONS(1472), + [anon_sym_asm] = ACTIONS(1472), + [anon_sym___asm__] = ACTIONS(1472), + [sym_number_literal] = ACTIONS(1474), + [anon_sym_L_SQUOTE] = ACTIONS(1474), + [anon_sym_u_SQUOTE] = ACTIONS(1474), + [anon_sym_U_SQUOTE] = ACTIONS(1474), + [anon_sym_u8_SQUOTE] = ACTIONS(1474), + [anon_sym_SQUOTE] = ACTIONS(1474), + [anon_sym_L_DQUOTE] = ACTIONS(1474), + [anon_sym_u_DQUOTE] = ACTIONS(1474), + [anon_sym_U_DQUOTE] = ACTIONS(1474), + [anon_sym_u8_DQUOTE] = ACTIONS(1474), + [anon_sym_DQUOTE] = ACTIONS(1474), + [sym_true] = ACTIONS(1472), + [sym_false] = ACTIONS(1472), + [anon_sym_NULL] = ACTIONS(1472), + [anon_sym_nullptr] = ACTIONS(1472), [sym_comment] = ACTIONS(3), }, [412] = { - [sym_attribute_declaration] = STATE(463), - [sym_compound_statement] = STATE(100), - [sym_attributed_statement] = STATE(100), - [sym_labeled_statement] = STATE(100), - [sym_expression_statement] = STATE(100), - [sym_if_statement] = STATE(100), - [sym_switch_statement] = STATE(100), - [sym_case_statement] = STATE(100), - [sym_while_statement] = STATE(100), - [sym_do_statement] = STATE(100), - [sym_for_statement] = STATE(100), - [sym_return_statement] = STATE(100), - [sym_break_statement] = STATE(100), - [sym_continue_statement] = STATE(100), - [sym_goto_statement] = STATE(100), - [sym_seh_try_statement] = STATE(100), - [sym_seh_leave_statement] = STATE(100), - [sym__expression] = STATE(1225), - [sym__expression_not_binary] = STATE(792), - [sym_comma_expression] = STATE(2038), - [sym_conditional_expression] = STATE(792), - [sym_assignment_expression] = STATE(792), - [sym_pointer_expression] = STATE(901), - [sym_unary_expression] = STATE(792), - [sym_binary_expression] = STATE(792), - [sym_update_expression] = STATE(792), - [sym_cast_expression] = STATE(792), - [sym_sizeof_expression] = STATE(792), - [sym_alignof_expression] = STATE(792), - [sym_offsetof_expression] = STATE(792), - [sym_generic_expression] = STATE(792), - [sym_subscript_expression] = STATE(901), - [sym_call_expression] = STATE(901), - [sym_gnu_asm_expression] = STATE(792), - [sym_field_expression] = STATE(901), - [sym_compound_literal_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(901), - [sym_char_literal] = STATE(792), - [sym_concatenated_string] = STATE(792), - [sym_string_literal] = STATE(675), - [sym_null] = STATE(792), - [aux_sym_attributed_declarator_repeat1] = STATE(463), - [sym_identifier] = ACTIONS(1581), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(123), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1573), - [anon_sym_LBRACE] = ACTIONS(131), - [anon_sym_if] = ACTIONS(133), - [anon_sym_switch] = ACTIONS(135), - [anon_sym_case] = ACTIONS(137), - [anon_sym_default] = ACTIONS(139), - [anon_sym_while] = ACTIONS(141), - [anon_sym_do] = ACTIONS(143), - [anon_sym_for] = ACTIONS(145), - [anon_sym_return] = ACTIONS(147), - [anon_sym_break] = ACTIONS(149), - [anon_sym_continue] = ACTIONS(151), - [anon_sym_goto] = ACTIONS(153), - [anon_sym___try] = ACTIONS(155), - [anon_sym___leave] = ACTIONS(157), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(83), - [anon_sym___alignof__] = ACTIONS(85), - [anon_sym___alignof] = ACTIONS(85), - [anon_sym__alignof] = ACTIONS(85), - [anon_sym_alignof] = ACTIONS(85), - [anon_sym__Alignof] = ACTIONS(85), - [anon_sym_offsetof] = ACTIONS(87), - [anon_sym__Generic] = ACTIONS(89), - [anon_sym_asm] = ACTIONS(91), - [anon_sym___asm__] = ACTIONS(91), - [sym_number_literal] = ACTIONS(159), - [anon_sym_L_SQUOTE] = ACTIONS(95), - [anon_sym_u_SQUOTE] = ACTIONS(95), - [anon_sym_U_SQUOTE] = ACTIONS(95), - [anon_sym_u8_SQUOTE] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(95), - [anon_sym_L_DQUOTE] = ACTIONS(97), - [anon_sym_u_DQUOTE] = ACTIONS(97), - [anon_sym_U_DQUOTE] = ACTIONS(97), - [anon_sym_u8_DQUOTE] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(97), - [sym_true] = ACTIONS(161), - [sym_false] = ACTIONS(161), - [anon_sym_NULL] = ACTIONS(101), - [anon_sym_nullptr] = ACTIONS(101), + [ts_builtin_sym_end] = ACTIONS(1478), + [sym_identifier] = ACTIONS(1476), + [aux_sym_preproc_include_token1] = ACTIONS(1476), + [aux_sym_preproc_def_token1] = ACTIONS(1476), + [aux_sym_preproc_if_token1] = ACTIONS(1476), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1476), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1476), + [sym_preproc_directive] = ACTIONS(1476), + [anon_sym_LPAREN2] = ACTIONS(1478), + [anon_sym_BANG] = ACTIONS(1478), + [anon_sym_TILDE] = ACTIONS(1478), + [anon_sym_DASH] = ACTIONS(1476), + [anon_sym_PLUS] = ACTIONS(1476), + [anon_sym_STAR] = ACTIONS(1478), + [anon_sym_AMP] = ACTIONS(1478), + [anon_sym___extension__] = ACTIONS(1476), + [anon_sym_typedef] = ACTIONS(1476), + [anon_sym_extern] = ACTIONS(1476), + [anon_sym___attribute__] = ACTIONS(1476), + [anon_sym___scanf] = ACTIONS(1476), + [anon_sym___printf] = ACTIONS(1476), + [anon_sym___read_mostly] = ACTIONS(1476), + [anon_sym___must_hold] = ACTIONS(1476), + [anon_sym___ro_after_init] = ACTIONS(1476), + [anon_sym___init] = ACTIONS(1476), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1478), + [anon_sym___declspec] = ACTIONS(1476), + [anon_sym___cdecl] = ACTIONS(1476), + [anon_sym___clrcall] = ACTIONS(1476), + [anon_sym___stdcall] = ACTIONS(1476), + [anon_sym___fastcall] = ACTIONS(1476), + [anon_sym___thiscall] = ACTIONS(1476), + [anon_sym___vectorcall] = ACTIONS(1476), + [anon_sym_LBRACE] = ACTIONS(1478), + [anon_sym_signed] = ACTIONS(1476), + [anon_sym_unsigned] = ACTIONS(1476), + [anon_sym_long] = ACTIONS(1476), + [anon_sym_short] = ACTIONS(1476), + [anon_sym_static] = ACTIONS(1476), + [anon_sym_auto] = ACTIONS(1476), + [anon_sym_register] = ACTIONS(1476), + [anon_sym_inline] = ACTIONS(1476), + [anon_sym___inline] = ACTIONS(1476), + [anon_sym___inline__] = ACTIONS(1476), + [anon_sym___forceinline] = ACTIONS(1476), + [anon_sym_thread_local] = ACTIONS(1476), + [anon_sym___thread] = ACTIONS(1476), + [anon_sym_const] = ACTIONS(1476), + [anon_sym_constexpr] = ACTIONS(1476), + [anon_sym_volatile] = ACTIONS(1476), + [anon_sym_restrict] = ACTIONS(1476), + [anon_sym___restrict__] = ACTIONS(1476), + [anon_sym__Atomic] = ACTIONS(1476), + [anon_sym__Noreturn] = ACTIONS(1476), + [anon_sym_noreturn] = ACTIONS(1476), + [sym_primitive_type] = ACTIONS(1476), + [anon_sym_enum] = ACTIONS(1476), + [anon_sym_struct] = ACTIONS(1476), + [anon_sym_union] = ACTIONS(1476), + [anon_sym_if] = ACTIONS(1476), + [anon_sym_switch] = ACTIONS(1476), + [anon_sym_case] = ACTIONS(1476), + [anon_sym_default] = ACTIONS(1476), + [anon_sym_while] = ACTIONS(1476), + [anon_sym_do] = ACTIONS(1476), + [anon_sym_for] = ACTIONS(1476), + [anon_sym_return] = ACTIONS(1476), + [anon_sym_break] = ACTIONS(1476), + [anon_sym_continue] = ACTIONS(1476), + [anon_sym_goto] = ACTIONS(1476), + [anon_sym_DASH_DASH] = ACTIONS(1478), + [anon_sym_PLUS_PLUS] = ACTIONS(1478), + [anon_sym_sizeof] = ACTIONS(1476), + [anon_sym___alignof__] = ACTIONS(1476), + [anon_sym___alignof] = ACTIONS(1476), + [anon_sym__alignof] = ACTIONS(1476), + [anon_sym_alignof] = ACTIONS(1476), + [anon_sym__Alignof] = ACTIONS(1476), + [anon_sym_offsetof] = ACTIONS(1476), + [anon_sym__Generic] = ACTIONS(1476), + [anon_sym_asm] = ACTIONS(1476), + [anon_sym___asm__] = ACTIONS(1476), + [sym_number_literal] = ACTIONS(1478), + [anon_sym_L_SQUOTE] = ACTIONS(1478), + [anon_sym_u_SQUOTE] = ACTIONS(1478), + [anon_sym_U_SQUOTE] = ACTIONS(1478), + [anon_sym_u8_SQUOTE] = ACTIONS(1478), + [anon_sym_SQUOTE] = ACTIONS(1478), + [anon_sym_L_DQUOTE] = ACTIONS(1478), + [anon_sym_u_DQUOTE] = ACTIONS(1478), + [anon_sym_U_DQUOTE] = ACTIONS(1478), + [anon_sym_u8_DQUOTE] = ACTIONS(1478), + [anon_sym_DQUOTE] = ACTIONS(1478), + [sym_true] = ACTIONS(1476), + [sym_false] = ACTIONS(1476), + [anon_sym_NULL] = ACTIONS(1476), + [anon_sym_nullptr] = ACTIONS(1476), [sym_comment] = ACTIONS(3), }, [413] = { - [ts_builtin_sym_end] = ACTIONS(1463), - [sym_identifier] = ACTIONS(1461), - [aux_sym_preproc_include_token1] = ACTIONS(1461), - [aux_sym_preproc_def_token1] = ACTIONS(1461), - [aux_sym_preproc_if_token1] = ACTIONS(1461), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1461), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1461), - [sym_preproc_directive] = ACTIONS(1461), - [anon_sym_LPAREN2] = ACTIONS(1463), - [anon_sym_BANG] = ACTIONS(1463), - [anon_sym_TILDE] = ACTIONS(1463), - [anon_sym_DASH] = ACTIONS(1461), - [anon_sym_PLUS] = ACTIONS(1461), - [anon_sym_STAR] = ACTIONS(1463), - [anon_sym_AMP] = ACTIONS(1463), - [anon_sym___extension__] = ACTIONS(1461), - [anon_sym_typedef] = ACTIONS(1461), - [anon_sym_extern] = ACTIONS(1461), - [anon_sym___attribute__] = ACTIONS(1461), - [anon_sym___scanf] = ACTIONS(1461), - [anon_sym___printf] = ACTIONS(1461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1463), - [anon_sym___declspec] = ACTIONS(1461), - [anon_sym___cdecl] = ACTIONS(1461), - [anon_sym___clrcall] = ACTIONS(1461), - [anon_sym___stdcall] = ACTIONS(1461), - [anon_sym___fastcall] = ACTIONS(1461), - [anon_sym___thiscall] = ACTIONS(1461), - [anon_sym___vectorcall] = ACTIONS(1461), - [anon_sym_LBRACE] = ACTIONS(1463), - [anon_sym_signed] = ACTIONS(1461), - [anon_sym_unsigned] = ACTIONS(1461), - [anon_sym_long] = ACTIONS(1461), - [anon_sym_short] = ACTIONS(1461), - [anon_sym_static] = ACTIONS(1461), - [anon_sym_auto] = ACTIONS(1461), - [anon_sym_register] = ACTIONS(1461), - [anon_sym_inline] = ACTIONS(1461), - [anon_sym___inline] = ACTIONS(1461), - [anon_sym___inline__] = ACTIONS(1461), - [anon_sym___forceinline] = ACTIONS(1461), - [anon_sym_thread_local] = ACTIONS(1461), - [anon_sym___thread] = ACTIONS(1461), - [anon_sym_const] = ACTIONS(1461), - [anon_sym_constexpr] = ACTIONS(1461), - [anon_sym_volatile] = ACTIONS(1461), - [anon_sym_restrict] = ACTIONS(1461), - [anon_sym___restrict__] = ACTIONS(1461), - [anon_sym__Atomic] = ACTIONS(1461), - [anon_sym__Noreturn] = ACTIONS(1461), - [anon_sym_noreturn] = ACTIONS(1461), - [sym_primitive_type] = ACTIONS(1461), - [anon_sym_enum] = ACTIONS(1461), - [anon_sym_struct] = ACTIONS(1461), - [anon_sym_union] = ACTIONS(1461), - [anon_sym_if] = ACTIONS(1461), - [anon_sym_switch] = ACTIONS(1461), - [anon_sym_case] = ACTIONS(1461), - [anon_sym_default] = ACTIONS(1461), - [anon_sym_while] = ACTIONS(1461), - [anon_sym_do] = ACTIONS(1461), - [anon_sym_for] = ACTIONS(1461), - [anon_sym_return] = ACTIONS(1461), - [anon_sym_break] = ACTIONS(1461), - [anon_sym_continue] = ACTIONS(1461), - [anon_sym_goto] = ACTIONS(1461), - [anon_sym_DASH_DASH] = ACTIONS(1463), - [anon_sym_PLUS_PLUS] = ACTIONS(1463), - [anon_sym_sizeof] = ACTIONS(1461), - [anon_sym___alignof__] = ACTIONS(1461), - [anon_sym___alignof] = ACTIONS(1461), - [anon_sym__alignof] = ACTIONS(1461), - [anon_sym_alignof] = ACTIONS(1461), - [anon_sym__Alignof] = ACTIONS(1461), - [anon_sym_offsetof] = ACTIONS(1461), - [anon_sym__Generic] = ACTIONS(1461), - [anon_sym_asm] = ACTIONS(1461), - [anon_sym___asm__] = ACTIONS(1461), - [sym_number_literal] = ACTIONS(1463), - [anon_sym_L_SQUOTE] = ACTIONS(1463), - [anon_sym_u_SQUOTE] = ACTIONS(1463), - [anon_sym_U_SQUOTE] = ACTIONS(1463), - [anon_sym_u8_SQUOTE] = ACTIONS(1463), - [anon_sym_SQUOTE] = ACTIONS(1463), - [anon_sym_L_DQUOTE] = ACTIONS(1463), - [anon_sym_u_DQUOTE] = ACTIONS(1463), - [anon_sym_U_DQUOTE] = ACTIONS(1463), - [anon_sym_u8_DQUOTE] = ACTIONS(1463), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym_true] = ACTIONS(1461), - [sym_false] = ACTIONS(1461), - [anon_sym_NULL] = ACTIONS(1461), - [anon_sym_nullptr] = ACTIONS(1461), + [ts_builtin_sym_end] = ACTIONS(1494), + [sym_identifier] = ACTIONS(1492), + [aux_sym_preproc_include_token1] = ACTIONS(1492), + [aux_sym_preproc_def_token1] = ACTIONS(1492), + [aux_sym_preproc_if_token1] = ACTIONS(1492), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1492), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1492), + [sym_preproc_directive] = ACTIONS(1492), + [anon_sym_LPAREN2] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(1494), + [anon_sym_TILDE] = ACTIONS(1494), + [anon_sym_DASH] = ACTIONS(1492), + [anon_sym_PLUS] = ACTIONS(1492), + [anon_sym_STAR] = ACTIONS(1494), + [anon_sym_AMP] = ACTIONS(1494), + [anon_sym___extension__] = ACTIONS(1492), + [anon_sym_typedef] = ACTIONS(1492), + [anon_sym_extern] = ACTIONS(1492), + [anon_sym___attribute__] = ACTIONS(1492), + [anon_sym___scanf] = ACTIONS(1492), + [anon_sym___printf] = ACTIONS(1492), + [anon_sym___read_mostly] = ACTIONS(1492), + [anon_sym___must_hold] = ACTIONS(1492), + [anon_sym___ro_after_init] = ACTIONS(1492), + [anon_sym___init] = ACTIONS(1492), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1494), + [anon_sym___declspec] = ACTIONS(1492), + [anon_sym___cdecl] = ACTIONS(1492), + [anon_sym___clrcall] = ACTIONS(1492), + [anon_sym___stdcall] = ACTIONS(1492), + [anon_sym___fastcall] = ACTIONS(1492), + [anon_sym___thiscall] = ACTIONS(1492), + [anon_sym___vectorcall] = ACTIONS(1492), + [anon_sym_LBRACE] = ACTIONS(1494), + [anon_sym_signed] = ACTIONS(1492), + [anon_sym_unsigned] = ACTIONS(1492), + [anon_sym_long] = ACTIONS(1492), + [anon_sym_short] = ACTIONS(1492), + [anon_sym_static] = ACTIONS(1492), + [anon_sym_auto] = ACTIONS(1492), + [anon_sym_register] = ACTIONS(1492), + [anon_sym_inline] = ACTIONS(1492), + [anon_sym___inline] = ACTIONS(1492), + [anon_sym___inline__] = ACTIONS(1492), + [anon_sym___forceinline] = ACTIONS(1492), + [anon_sym_thread_local] = ACTIONS(1492), + [anon_sym___thread] = ACTIONS(1492), + [anon_sym_const] = ACTIONS(1492), + [anon_sym_constexpr] = ACTIONS(1492), + [anon_sym_volatile] = ACTIONS(1492), + [anon_sym_restrict] = ACTIONS(1492), + [anon_sym___restrict__] = ACTIONS(1492), + [anon_sym__Atomic] = ACTIONS(1492), + [anon_sym__Noreturn] = ACTIONS(1492), + [anon_sym_noreturn] = ACTIONS(1492), + [sym_primitive_type] = ACTIONS(1492), + [anon_sym_enum] = ACTIONS(1492), + [anon_sym_struct] = ACTIONS(1492), + [anon_sym_union] = ACTIONS(1492), + [anon_sym_if] = ACTIONS(1492), + [anon_sym_switch] = ACTIONS(1492), + [anon_sym_case] = ACTIONS(1492), + [anon_sym_default] = ACTIONS(1492), + [anon_sym_while] = ACTIONS(1492), + [anon_sym_do] = ACTIONS(1492), + [anon_sym_for] = ACTIONS(1492), + [anon_sym_return] = ACTIONS(1492), + [anon_sym_break] = ACTIONS(1492), + [anon_sym_continue] = ACTIONS(1492), + [anon_sym_goto] = ACTIONS(1492), + [anon_sym_DASH_DASH] = ACTIONS(1494), + [anon_sym_PLUS_PLUS] = ACTIONS(1494), + [anon_sym_sizeof] = ACTIONS(1492), + [anon_sym___alignof__] = ACTIONS(1492), + [anon_sym___alignof] = ACTIONS(1492), + [anon_sym__alignof] = ACTIONS(1492), + [anon_sym_alignof] = ACTIONS(1492), + [anon_sym__Alignof] = ACTIONS(1492), + [anon_sym_offsetof] = ACTIONS(1492), + [anon_sym__Generic] = ACTIONS(1492), + [anon_sym_asm] = ACTIONS(1492), + [anon_sym___asm__] = ACTIONS(1492), + [sym_number_literal] = ACTIONS(1494), + [anon_sym_L_SQUOTE] = ACTIONS(1494), + [anon_sym_u_SQUOTE] = ACTIONS(1494), + [anon_sym_U_SQUOTE] = ACTIONS(1494), + [anon_sym_u8_SQUOTE] = ACTIONS(1494), + [anon_sym_SQUOTE] = ACTIONS(1494), + [anon_sym_L_DQUOTE] = ACTIONS(1494), + [anon_sym_u_DQUOTE] = ACTIONS(1494), + [anon_sym_U_DQUOTE] = ACTIONS(1494), + [anon_sym_u8_DQUOTE] = ACTIONS(1494), + [anon_sym_DQUOTE] = ACTIONS(1494), + [sym_true] = ACTIONS(1492), + [sym_false] = ACTIONS(1492), + [anon_sym_NULL] = ACTIONS(1492), + [anon_sym_nullptr] = ACTIONS(1492), [sym_comment] = ACTIONS(3), }, [414] = { - [sym_attribute_declaration] = STATE(414), - [sym_compound_statement] = STATE(340), - [sym_attributed_statement] = STATE(340), - [sym_labeled_statement] = STATE(340), - [sym_expression_statement] = STATE(340), - [sym_if_statement] = STATE(340), - [sym_switch_statement] = STATE(340), - [sym_case_statement] = STATE(340), - [sym_while_statement] = STATE(340), - [sym_do_statement] = STATE(340), - [sym_for_statement] = STATE(340), - [sym_return_statement] = STATE(340), - [sym_break_statement] = STATE(340), - [sym_continue_statement] = STATE(340), - [sym_goto_statement] = STATE(340), - [sym_seh_try_statement] = STATE(340), - [sym_seh_leave_statement] = STATE(340), - [sym__expression] = STATE(1221), - [sym__expression_not_binary] = STATE(792), - [sym_comma_expression] = STATE(2106), - [sym_conditional_expression] = STATE(792), - [sym_assignment_expression] = STATE(792), - [sym_pointer_expression] = STATE(901), - [sym_unary_expression] = STATE(792), - [sym_binary_expression] = STATE(792), - [sym_update_expression] = STATE(792), - [sym_cast_expression] = STATE(792), - [sym_sizeof_expression] = STATE(792), - [sym_alignof_expression] = STATE(792), - [sym_offsetof_expression] = STATE(792), - [sym_generic_expression] = STATE(792), - [sym_subscript_expression] = STATE(901), - [sym_call_expression] = STATE(901), - [sym_gnu_asm_expression] = STATE(792), - [sym_field_expression] = STATE(901), - [sym_compound_literal_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(901), - [sym_char_literal] = STATE(792), - [sym_concatenated_string] = STATE(792), - [sym_string_literal] = STATE(675), - [sym_null] = STATE(792), - [aux_sym_attributed_declarator_repeat1] = STATE(414), - [sym_identifier] = ACTIONS(1583), - [anon_sym_LPAREN2] = ACTIONS(1586), - [anon_sym_BANG] = ACTIONS(1589), - [anon_sym_TILDE] = ACTIONS(1589), - [anon_sym_DASH] = ACTIONS(1592), - [anon_sym_PLUS] = ACTIONS(1592), - [anon_sym_STAR] = ACTIONS(1595), - [anon_sym_AMP] = ACTIONS(1595), - [anon_sym_SEMI] = ACTIONS(1598), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1601), - [anon_sym_LBRACE] = ACTIONS(1604), - [anon_sym_if] = ACTIONS(1607), - [anon_sym_switch] = ACTIONS(1610), - [anon_sym_case] = ACTIONS(1613), - [anon_sym_default] = ACTIONS(1616), - [anon_sym_while] = ACTIONS(1619), - [anon_sym_do] = ACTIONS(1622), - [anon_sym_for] = ACTIONS(1625), - [anon_sym_return] = ACTIONS(1628), - [anon_sym_break] = ACTIONS(1631), - [anon_sym_continue] = ACTIONS(1634), - [anon_sym_goto] = ACTIONS(1637), - [anon_sym___try] = ACTIONS(1640), - [anon_sym___leave] = ACTIONS(1643), - [anon_sym_DASH_DASH] = ACTIONS(1646), - [anon_sym_PLUS_PLUS] = ACTIONS(1646), - [anon_sym_sizeof] = ACTIONS(1649), - [anon_sym___alignof__] = ACTIONS(1652), - [anon_sym___alignof] = ACTIONS(1652), - [anon_sym__alignof] = ACTIONS(1652), - [anon_sym_alignof] = ACTIONS(1652), - [anon_sym__Alignof] = ACTIONS(1652), - [anon_sym_offsetof] = ACTIONS(1655), - [anon_sym__Generic] = ACTIONS(1658), - [anon_sym_asm] = ACTIONS(1661), - [anon_sym___asm__] = ACTIONS(1661), - [sym_number_literal] = ACTIONS(1664), - [anon_sym_L_SQUOTE] = ACTIONS(1667), - [anon_sym_u_SQUOTE] = ACTIONS(1667), - [anon_sym_U_SQUOTE] = ACTIONS(1667), - [anon_sym_u8_SQUOTE] = ACTIONS(1667), - [anon_sym_SQUOTE] = ACTIONS(1667), - [anon_sym_L_DQUOTE] = ACTIONS(1670), - [anon_sym_u_DQUOTE] = ACTIONS(1670), - [anon_sym_U_DQUOTE] = ACTIONS(1670), - [anon_sym_u8_DQUOTE] = ACTIONS(1670), - [anon_sym_DQUOTE] = ACTIONS(1670), - [sym_true] = ACTIONS(1673), - [sym_false] = ACTIONS(1673), - [anon_sym_NULL] = ACTIONS(1676), - [anon_sym_nullptr] = ACTIONS(1676), + [ts_builtin_sym_end] = ACTIONS(1498), + [sym_identifier] = ACTIONS(1496), + [aux_sym_preproc_include_token1] = ACTIONS(1496), + [aux_sym_preproc_def_token1] = ACTIONS(1496), + [aux_sym_preproc_if_token1] = ACTIONS(1496), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1496), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1496), + [sym_preproc_directive] = ACTIONS(1496), + [anon_sym_LPAREN2] = ACTIONS(1498), + [anon_sym_BANG] = ACTIONS(1498), + [anon_sym_TILDE] = ACTIONS(1498), + [anon_sym_DASH] = ACTIONS(1496), + [anon_sym_PLUS] = ACTIONS(1496), + [anon_sym_STAR] = ACTIONS(1498), + [anon_sym_AMP] = ACTIONS(1498), + [anon_sym___extension__] = ACTIONS(1496), + [anon_sym_typedef] = ACTIONS(1496), + [anon_sym_extern] = ACTIONS(1496), + [anon_sym___attribute__] = ACTIONS(1496), + [anon_sym___scanf] = ACTIONS(1496), + [anon_sym___printf] = ACTIONS(1496), + [anon_sym___read_mostly] = ACTIONS(1496), + [anon_sym___must_hold] = ACTIONS(1496), + [anon_sym___ro_after_init] = ACTIONS(1496), + [anon_sym___init] = ACTIONS(1496), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1498), + [anon_sym___declspec] = ACTIONS(1496), + [anon_sym___cdecl] = ACTIONS(1496), + [anon_sym___clrcall] = ACTIONS(1496), + [anon_sym___stdcall] = ACTIONS(1496), + [anon_sym___fastcall] = ACTIONS(1496), + [anon_sym___thiscall] = ACTIONS(1496), + [anon_sym___vectorcall] = ACTIONS(1496), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_signed] = ACTIONS(1496), + [anon_sym_unsigned] = ACTIONS(1496), + [anon_sym_long] = ACTIONS(1496), + [anon_sym_short] = ACTIONS(1496), + [anon_sym_static] = ACTIONS(1496), + [anon_sym_auto] = ACTIONS(1496), + [anon_sym_register] = ACTIONS(1496), + [anon_sym_inline] = ACTIONS(1496), + [anon_sym___inline] = ACTIONS(1496), + [anon_sym___inline__] = ACTIONS(1496), + [anon_sym___forceinline] = ACTIONS(1496), + [anon_sym_thread_local] = ACTIONS(1496), + [anon_sym___thread] = ACTIONS(1496), + [anon_sym_const] = ACTIONS(1496), + [anon_sym_constexpr] = ACTIONS(1496), + [anon_sym_volatile] = ACTIONS(1496), + [anon_sym_restrict] = ACTIONS(1496), + [anon_sym___restrict__] = ACTIONS(1496), + [anon_sym__Atomic] = ACTIONS(1496), + [anon_sym__Noreturn] = ACTIONS(1496), + [anon_sym_noreturn] = ACTIONS(1496), + [sym_primitive_type] = ACTIONS(1496), + [anon_sym_enum] = ACTIONS(1496), + [anon_sym_struct] = ACTIONS(1496), + [anon_sym_union] = ACTIONS(1496), + [anon_sym_if] = ACTIONS(1496), + [anon_sym_switch] = ACTIONS(1496), + [anon_sym_case] = ACTIONS(1496), + [anon_sym_default] = ACTIONS(1496), + [anon_sym_while] = ACTIONS(1496), + [anon_sym_do] = ACTIONS(1496), + [anon_sym_for] = ACTIONS(1496), + [anon_sym_return] = ACTIONS(1496), + [anon_sym_break] = ACTIONS(1496), + [anon_sym_continue] = ACTIONS(1496), + [anon_sym_goto] = ACTIONS(1496), + [anon_sym_DASH_DASH] = ACTIONS(1498), + [anon_sym_PLUS_PLUS] = ACTIONS(1498), + [anon_sym_sizeof] = ACTIONS(1496), + [anon_sym___alignof__] = ACTIONS(1496), + [anon_sym___alignof] = ACTIONS(1496), + [anon_sym__alignof] = ACTIONS(1496), + [anon_sym_alignof] = ACTIONS(1496), + [anon_sym__Alignof] = ACTIONS(1496), + [anon_sym_offsetof] = ACTIONS(1496), + [anon_sym__Generic] = ACTIONS(1496), + [anon_sym_asm] = ACTIONS(1496), + [anon_sym___asm__] = ACTIONS(1496), + [sym_number_literal] = ACTIONS(1498), + [anon_sym_L_SQUOTE] = ACTIONS(1498), + [anon_sym_u_SQUOTE] = ACTIONS(1498), + [anon_sym_U_SQUOTE] = ACTIONS(1498), + [anon_sym_u8_SQUOTE] = ACTIONS(1498), + [anon_sym_SQUOTE] = ACTIONS(1498), + [anon_sym_L_DQUOTE] = ACTIONS(1498), + [anon_sym_u_DQUOTE] = ACTIONS(1498), + [anon_sym_U_DQUOTE] = ACTIONS(1498), + [anon_sym_u8_DQUOTE] = ACTIONS(1498), + [anon_sym_DQUOTE] = ACTIONS(1498), + [sym_true] = ACTIONS(1496), + [sym_false] = ACTIONS(1496), + [anon_sym_NULL] = ACTIONS(1496), + [anon_sym_nullptr] = ACTIONS(1496), [sym_comment] = ACTIONS(3), }, [415] = { - [sym_attribute_declaration] = STATE(435), - [sym_compound_statement] = STATE(156), - [sym_attributed_statement] = STATE(156), - [sym_labeled_statement] = STATE(156), - [sym_expression_statement] = STATE(156), - [sym_if_statement] = STATE(156), - [sym_switch_statement] = STATE(156), - [sym_case_statement] = STATE(156), - [sym_while_statement] = STATE(156), - [sym_do_statement] = STATE(156), - [sym_for_statement] = STATE(156), - [sym_return_statement] = STATE(156), - [sym_break_statement] = STATE(156), - [sym_continue_statement] = STATE(156), - [sym_goto_statement] = STATE(156), - [sym_seh_try_statement] = STATE(156), - [sym_seh_leave_statement] = STATE(156), - [sym__expression] = STATE(1230), - [sym__expression_not_binary] = STATE(792), - [sym_comma_expression] = STATE(2008), - [sym_conditional_expression] = STATE(792), - [sym_assignment_expression] = STATE(792), - [sym_pointer_expression] = STATE(901), - [sym_unary_expression] = STATE(792), - [sym_binary_expression] = STATE(792), - [sym_update_expression] = STATE(792), - [sym_cast_expression] = STATE(792), - [sym_sizeof_expression] = STATE(792), - [sym_alignof_expression] = STATE(792), - [sym_offsetof_expression] = STATE(792), - [sym_generic_expression] = STATE(792), - [sym_subscript_expression] = STATE(901), - [sym_call_expression] = STATE(901), - [sym_gnu_asm_expression] = STATE(792), - [sym_field_expression] = STATE(901), - [sym_compound_literal_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(901), - [sym_char_literal] = STATE(792), - [sym_concatenated_string] = STATE(792), - [sym_string_literal] = STATE(675), - [sym_null] = STATE(792), - [aux_sym_attributed_declarator_repeat1] = STATE(435), - [sym_identifier] = ACTIONS(1679), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(195), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1573), - [anon_sym_LBRACE] = ACTIONS(203), - [anon_sym_if] = ACTIONS(205), - [anon_sym_switch] = ACTIONS(207), - [anon_sym_case] = ACTIONS(209), - [anon_sym_default] = ACTIONS(211), - [anon_sym_while] = ACTIONS(213), - [anon_sym_do] = ACTIONS(215), - [anon_sym_for] = ACTIONS(217), - [anon_sym_return] = ACTIONS(219), - [anon_sym_break] = ACTIONS(221), - [anon_sym_continue] = ACTIONS(223), - [anon_sym_goto] = ACTIONS(225), - [anon_sym___try] = ACTIONS(227), - [anon_sym___leave] = ACTIONS(229), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(83), - [anon_sym___alignof__] = ACTIONS(85), - [anon_sym___alignof] = ACTIONS(85), - [anon_sym__alignof] = ACTIONS(85), - [anon_sym_alignof] = ACTIONS(85), - [anon_sym__Alignof] = ACTIONS(85), - [anon_sym_offsetof] = ACTIONS(87), - [anon_sym__Generic] = ACTIONS(89), - [anon_sym_asm] = ACTIONS(91), - [anon_sym___asm__] = ACTIONS(91), - [sym_number_literal] = ACTIONS(159), - [anon_sym_L_SQUOTE] = ACTIONS(95), - [anon_sym_u_SQUOTE] = ACTIONS(95), - [anon_sym_U_SQUOTE] = ACTIONS(95), - [anon_sym_u8_SQUOTE] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(95), - [anon_sym_L_DQUOTE] = ACTIONS(97), - [anon_sym_u_DQUOTE] = ACTIONS(97), - [anon_sym_U_DQUOTE] = ACTIONS(97), - [anon_sym_u8_DQUOTE] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(97), - [sym_true] = ACTIONS(161), - [sym_false] = ACTIONS(161), - [anon_sym_NULL] = ACTIONS(101), - [anon_sym_nullptr] = ACTIONS(101), + [ts_builtin_sym_end] = ACTIONS(1426), + [sym_identifier] = ACTIONS(1424), + [aux_sym_preproc_include_token1] = ACTIONS(1424), + [aux_sym_preproc_def_token1] = ACTIONS(1424), + [aux_sym_preproc_if_token1] = ACTIONS(1424), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1424), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1424), + [sym_preproc_directive] = ACTIONS(1424), + [anon_sym_LPAREN2] = ACTIONS(1426), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_DASH] = ACTIONS(1424), + [anon_sym_PLUS] = ACTIONS(1424), + [anon_sym_STAR] = ACTIONS(1426), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym___extension__] = ACTIONS(1424), + [anon_sym_typedef] = ACTIONS(1424), + [anon_sym_extern] = ACTIONS(1424), + [anon_sym___attribute__] = ACTIONS(1424), + [anon_sym___scanf] = ACTIONS(1424), + [anon_sym___printf] = ACTIONS(1424), + [anon_sym___read_mostly] = ACTIONS(1424), + [anon_sym___must_hold] = ACTIONS(1424), + [anon_sym___ro_after_init] = ACTIONS(1424), + [anon_sym___init] = ACTIONS(1424), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1426), + [anon_sym___declspec] = ACTIONS(1424), + [anon_sym___cdecl] = ACTIONS(1424), + [anon_sym___clrcall] = ACTIONS(1424), + [anon_sym___stdcall] = ACTIONS(1424), + [anon_sym___fastcall] = ACTIONS(1424), + [anon_sym___thiscall] = ACTIONS(1424), + [anon_sym___vectorcall] = ACTIONS(1424), + [anon_sym_LBRACE] = ACTIONS(1426), + [anon_sym_signed] = ACTIONS(1424), + [anon_sym_unsigned] = ACTIONS(1424), + [anon_sym_long] = ACTIONS(1424), + [anon_sym_short] = ACTIONS(1424), + [anon_sym_static] = ACTIONS(1424), + [anon_sym_auto] = ACTIONS(1424), + [anon_sym_register] = ACTIONS(1424), + [anon_sym_inline] = ACTIONS(1424), + [anon_sym___inline] = ACTIONS(1424), + [anon_sym___inline__] = ACTIONS(1424), + [anon_sym___forceinline] = ACTIONS(1424), + [anon_sym_thread_local] = ACTIONS(1424), + [anon_sym___thread] = ACTIONS(1424), + [anon_sym_const] = ACTIONS(1424), + [anon_sym_constexpr] = ACTIONS(1424), + [anon_sym_volatile] = ACTIONS(1424), + [anon_sym_restrict] = ACTIONS(1424), + [anon_sym___restrict__] = ACTIONS(1424), + [anon_sym__Atomic] = ACTIONS(1424), + [anon_sym__Noreturn] = ACTIONS(1424), + [anon_sym_noreturn] = ACTIONS(1424), + [sym_primitive_type] = ACTIONS(1424), + [anon_sym_enum] = ACTIONS(1424), + [anon_sym_struct] = ACTIONS(1424), + [anon_sym_union] = ACTIONS(1424), + [anon_sym_if] = ACTIONS(1424), + [anon_sym_switch] = ACTIONS(1424), + [anon_sym_case] = ACTIONS(1424), + [anon_sym_default] = ACTIONS(1424), + [anon_sym_while] = ACTIONS(1424), + [anon_sym_do] = ACTIONS(1424), + [anon_sym_for] = ACTIONS(1424), + [anon_sym_return] = ACTIONS(1424), + [anon_sym_break] = ACTIONS(1424), + [anon_sym_continue] = ACTIONS(1424), + [anon_sym_goto] = ACTIONS(1424), + [anon_sym_DASH_DASH] = ACTIONS(1426), + [anon_sym_PLUS_PLUS] = ACTIONS(1426), + [anon_sym_sizeof] = ACTIONS(1424), + [anon_sym___alignof__] = ACTIONS(1424), + [anon_sym___alignof] = ACTIONS(1424), + [anon_sym__alignof] = ACTIONS(1424), + [anon_sym_alignof] = ACTIONS(1424), + [anon_sym__Alignof] = ACTIONS(1424), + [anon_sym_offsetof] = ACTIONS(1424), + [anon_sym__Generic] = ACTIONS(1424), + [anon_sym_asm] = ACTIONS(1424), + [anon_sym___asm__] = ACTIONS(1424), + [sym_number_literal] = ACTIONS(1426), + [anon_sym_L_SQUOTE] = ACTIONS(1426), + [anon_sym_u_SQUOTE] = ACTIONS(1426), + [anon_sym_U_SQUOTE] = ACTIONS(1426), + [anon_sym_u8_SQUOTE] = ACTIONS(1426), + [anon_sym_SQUOTE] = ACTIONS(1426), + [anon_sym_L_DQUOTE] = ACTIONS(1426), + [anon_sym_u_DQUOTE] = ACTIONS(1426), + [anon_sym_U_DQUOTE] = ACTIONS(1426), + [anon_sym_u8_DQUOTE] = ACTIONS(1426), + [anon_sym_DQUOTE] = ACTIONS(1426), + [sym_true] = ACTIONS(1424), + [sym_false] = ACTIONS(1424), + [anon_sym_NULL] = ACTIONS(1424), + [anon_sym_nullptr] = ACTIONS(1424), [sym_comment] = ACTIONS(3), }, [416] = { - [sym_attribute_declaration] = STATE(467), - [sym_compound_statement] = STATE(242), - [sym_attributed_statement] = STATE(242), - [sym_labeled_statement] = STATE(242), - [sym_expression_statement] = STATE(242), - [sym_if_statement] = STATE(242), - [sym_switch_statement] = STATE(242), - [sym_case_statement] = STATE(242), - [sym_while_statement] = STATE(242), - [sym_do_statement] = STATE(242), - [sym_for_statement] = STATE(242), - [sym_return_statement] = STATE(242), - [sym_break_statement] = STATE(242), - [sym_continue_statement] = STATE(242), - [sym_goto_statement] = STATE(242), - [sym_seh_try_statement] = STATE(242), - [sym_seh_leave_statement] = STATE(242), - [sym__expression] = STATE(1229), - [sym__expression_not_binary] = STATE(792), - [sym_comma_expression] = STATE(1976), - [sym_conditional_expression] = STATE(792), - [sym_assignment_expression] = STATE(792), - [sym_pointer_expression] = STATE(901), - [sym_unary_expression] = STATE(792), - [sym_binary_expression] = STATE(792), - [sym_update_expression] = STATE(792), - [sym_cast_expression] = STATE(792), - [sym_sizeof_expression] = STATE(792), - [sym_alignof_expression] = STATE(792), - [sym_offsetof_expression] = STATE(792), - [sym_generic_expression] = STATE(792), - [sym_subscript_expression] = STATE(901), - [sym_call_expression] = STATE(901), - [sym_gnu_asm_expression] = STATE(792), - [sym_field_expression] = STATE(901), - [sym_compound_literal_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(901), - [sym_char_literal] = STATE(792), - [sym_concatenated_string] = STATE(792), - [sym_string_literal] = STATE(675), - [sym_null] = STATE(792), - [aux_sym_attributed_declarator_repeat1] = STATE(467), - [sym_identifier] = ACTIONS(1681), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(648), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1573), - [anon_sym_LBRACE] = ACTIONS(656), - [anon_sym_if] = ACTIONS(658), - [anon_sym_switch] = ACTIONS(660), - [anon_sym_case] = ACTIONS(662), - [anon_sym_default] = ACTIONS(664), - [anon_sym_while] = ACTIONS(666), - [anon_sym_do] = ACTIONS(668), - [anon_sym_for] = ACTIONS(670), - [anon_sym_return] = ACTIONS(672), - [anon_sym_break] = ACTIONS(674), - [anon_sym_continue] = ACTIONS(676), - [anon_sym_goto] = ACTIONS(678), - [anon_sym___try] = ACTIONS(680), - [anon_sym___leave] = ACTIONS(682), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(83), - [anon_sym___alignof__] = ACTIONS(85), - [anon_sym___alignof] = ACTIONS(85), - [anon_sym__alignof] = ACTIONS(85), - [anon_sym_alignof] = ACTIONS(85), - [anon_sym__Alignof] = ACTIONS(85), - [anon_sym_offsetof] = ACTIONS(87), - [anon_sym__Generic] = ACTIONS(89), - [anon_sym_asm] = ACTIONS(91), - [anon_sym___asm__] = ACTIONS(91), - [sym_number_literal] = ACTIONS(159), - [anon_sym_L_SQUOTE] = ACTIONS(95), - [anon_sym_u_SQUOTE] = ACTIONS(95), - [anon_sym_U_SQUOTE] = ACTIONS(95), - [anon_sym_u8_SQUOTE] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(95), - [anon_sym_L_DQUOTE] = ACTIONS(97), - [anon_sym_u_DQUOTE] = ACTIONS(97), - [anon_sym_U_DQUOTE] = ACTIONS(97), - [anon_sym_u8_DQUOTE] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(97), - [sym_true] = ACTIONS(161), - [sym_false] = ACTIONS(161), - [anon_sym_NULL] = ACTIONS(101), - [anon_sym_nullptr] = ACTIONS(101), + [ts_builtin_sym_end] = ACTIONS(1446), + [sym_identifier] = ACTIONS(1444), + [aux_sym_preproc_include_token1] = ACTIONS(1444), + [aux_sym_preproc_def_token1] = ACTIONS(1444), + [aux_sym_preproc_if_token1] = ACTIONS(1444), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1444), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1444), + [sym_preproc_directive] = ACTIONS(1444), + [anon_sym_LPAREN2] = ACTIONS(1446), + [anon_sym_BANG] = ACTIONS(1446), + [anon_sym_TILDE] = ACTIONS(1446), + [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_STAR] = ACTIONS(1446), + [anon_sym_AMP] = ACTIONS(1446), + [anon_sym___extension__] = ACTIONS(1444), + [anon_sym_typedef] = ACTIONS(1444), + [anon_sym_extern] = ACTIONS(1444), + [anon_sym___attribute__] = ACTIONS(1444), + [anon_sym___scanf] = ACTIONS(1444), + [anon_sym___printf] = ACTIONS(1444), + [anon_sym___read_mostly] = ACTIONS(1444), + [anon_sym___must_hold] = ACTIONS(1444), + [anon_sym___ro_after_init] = ACTIONS(1444), + [anon_sym___init] = ACTIONS(1444), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1446), + [anon_sym___declspec] = ACTIONS(1444), + [anon_sym___cdecl] = ACTIONS(1444), + [anon_sym___clrcall] = ACTIONS(1444), + [anon_sym___stdcall] = ACTIONS(1444), + [anon_sym___fastcall] = ACTIONS(1444), + [anon_sym___thiscall] = ACTIONS(1444), + [anon_sym___vectorcall] = ACTIONS(1444), + [anon_sym_LBRACE] = ACTIONS(1446), + [anon_sym_signed] = ACTIONS(1444), + [anon_sym_unsigned] = ACTIONS(1444), + [anon_sym_long] = ACTIONS(1444), + [anon_sym_short] = ACTIONS(1444), + [anon_sym_static] = ACTIONS(1444), + [anon_sym_auto] = ACTIONS(1444), + [anon_sym_register] = ACTIONS(1444), + [anon_sym_inline] = ACTIONS(1444), + [anon_sym___inline] = ACTIONS(1444), + [anon_sym___inline__] = ACTIONS(1444), + [anon_sym___forceinline] = ACTIONS(1444), + [anon_sym_thread_local] = ACTIONS(1444), + [anon_sym___thread] = ACTIONS(1444), + [anon_sym_const] = ACTIONS(1444), + [anon_sym_constexpr] = ACTIONS(1444), + [anon_sym_volatile] = ACTIONS(1444), + [anon_sym_restrict] = ACTIONS(1444), + [anon_sym___restrict__] = ACTIONS(1444), + [anon_sym__Atomic] = ACTIONS(1444), + [anon_sym__Noreturn] = ACTIONS(1444), + [anon_sym_noreturn] = ACTIONS(1444), + [sym_primitive_type] = ACTIONS(1444), + [anon_sym_enum] = ACTIONS(1444), + [anon_sym_struct] = ACTIONS(1444), + [anon_sym_union] = ACTIONS(1444), + [anon_sym_if] = ACTIONS(1444), + [anon_sym_switch] = ACTIONS(1444), + [anon_sym_case] = ACTIONS(1444), + [anon_sym_default] = ACTIONS(1444), + [anon_sym_while] = ACTIONS(1444), + [anon_sym_do] = ACTIONS(1444), + [anon_sym_for] = ACTIONS(1444), + [anon_sym_return] = ACTIONS(1444), + [anon_sym_break] = ACTIONS(1444), + [anon_sym_continue] = ACTIONS(1444), + [anon_sym_goto] = ACTIONS(1444), + [anon_sym_DASH_DASH] = ACTIONS(1446), + [anon_sym_PLUS_PLUS] = ACTIONS(1446), + [anon_sym_sizeof] = ACTIONS(1444), + [anon_sym___alignof__] = ACTIONS(1444), + [anon_sym___alignof] = ACTIONS(1444), + [anon_sym__alignof] = ACTIONS(1444), + [anon_sym_alignof] = ACTIONS(1444), + [anon_sym__Alignof] = ACTIONS(1444), + [anon_sym_offsetof] = ACTIONS(1444), + [anon_sym__Generic] = ACTIONS(1444), + [anon_sym_asm] = ACTIONS(1444), + [anon_sym___asm__] = ACTIONS(1444), + [sym_number_literal] = ACTIONS(1446), + [anon_sym_L_SQUOTE] = ACTIONS(1446), + [anon_sym_u_SQUOTE] = ACTIONS(1446), + [anon_sym_U_SQUOTE] = ACTIONS(1446), + [anon_sym_u8_SQUOTE] = ACTIONS(1446), + [anon_sym_SQUOTE] = ACTIONS(1446), + [anon_sym_L_DQUOTE] = ACTIONS(1446), + [anon_sym_u_DQUOTE] = ACTIONS(1446), + [anon_sym_U_DQUOTE] = ACTIONS(1446), + [anon_sym_u8_DQUOTE] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1446), + [sym_true] = ACTIONS(1444), + [sym_false] = ACTIONS(1444), + [anon_sym_NULL] = ACTIONS(1444), + [anon_sym_nullptr] = ACTIONS(1444), [sym_comment] = ACTIONS(3), }, [417] = { - [ts_builtin_sym_end] = ACTIONS(1467), - [sym_identifier] = ACTIONS(1465), - [aux_sym_preproc_include_token1] = ACTIONS(1465), - [aux_sym_preproc_def_token1] = ACTIONS(1465), - [aux_sym_preproc_if_token1] = ACTIONS(1465), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1465), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1465), - [sym_preproc_directive] = ACTIONS(1465), - [anon_sym_LPAREN2] = ACTIONS(1467), - [anon_sym_BANG] = ACTIONS(1467), - [anon_sym_TILDE] = ACTIONS(1467), - [anon_sym_DASH] = ACTIONS(1465), - [anon_sym_PLUS] = ACTIONS(1465), - [anon_sym_STAR] = ACTIONS(1467), - [anon_sym_AMP] = ACTIONS(1467), - [anon_sym___extension__] = ACTIONS(1465), - [anon_sym_typedef] = ACTIONS(1465), - [anon_sym_extern] = ACTIONS(1465), - [anon_sym___attribute__] = ACTIONS(1465), - [anon_sym___scanf] = ACTIONS(1465), - [anon_sym___printf] = ACTIONS(1465), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1467), - [anon_sym___declspec] = ACTIONS(1465), - [anon_sym___cdecl] = ACTIONS(1465), - [anon_sym___clrcall] = ACTIONS(1465), - [anon_sym___stdcall] = ACTIONS(1465), - [anon_sym___fastcall] = ACTIONS(1465), - [anon_sym___thiscall] = ACTIONS(1465), - [anon_sym___vectorcall] = ACTIONS(1465), - [anon_sym_LBRACE] = ACTIONS(1467), - [anon_sym_signed] = ACTIONS(1465), - [anon_sym_unsigned] = ACTIONS(1465), - [anon_sym_long] = ACTIONS(1465), - [anon_sym_short] = ACTIONS(1465), - [anon_sym_static] = ACTIONS(1465), - [anon_sym_auto] = ACTIONS(1465), - [anon_sym_register] = ACTIONS(1465), - [anon_sym_inline] = ACTIONS(1465), - [anon_sym___inline] = ACTIONS(1465), - [anon_sym___inline__] = ACTIONS(1465), - [anon_sym___forceinline] = ACTIONS(1465), - [anon_sym_thread_local] = ACTIONS(1465), - [anon_sym___thread] = ACTIONS(1465), - [anon_sym_const] = ACTIONS(1465), - [anon_sym_constexpr] = ACTIONS(1465), - [anon_sym_volatile] = ACTIONS(1465), - [anon_sym_restrict] = ACTIONS(1465), - [anon_sym___restrict__] = ACTIONS(1465), - [anon_sym__Atomic] = ACTIONS(1465), - [anon_sym__Noreturn] = ACTIONS(1465), - [anon_sym_noreturn] = ACTIONS(1465), - [sym_primitive_type] = ACTIONS(1465), - [anon_sym_enum] = ACTIONS(1465), - [anon_sym_struct] = ACTIONS(1465), - [anon_sym_union] = ACTIONS(1465), - [anon_sym_if] = ACTIONS(1465), - [anon_sym_switch] = ACTIONS(1465), - [anon_sym_case] = ACTIONS(1465), - [anon_sym_default] = ACTIONS(1465), - [anon_sym_while] = ACTIONS(1465), - [anon_sym_do] = ACTIONS(1465), - [anon_sym_for] = ACTIONS(1465), - [anon_sym_return] = ACTIONS(1465), - [anon_sym_break] = ACTIONS(1465), - [anon_sym_continue] = ACTIONS(1465), - [anon_sym_goto] = ACTIONS(1465), - [anon_sym_DASH_DASH] = ACTIONS(1467), - [anon_sym_PLUS_PLUS] = ACTIONS(1467), - [anon_sym_sizeof] = ACTIONS(1465), - [anon_sym___alignof__] = ACTIONS(1465), - [anon_sym___alignof] = ACTIONS(1465), - [anon_sym__alignof] = ACTIONS(1465), - [anon_sym_alignof] = ACTIONS(1465), - [anon_sym__Alignof] = ACTIONS(1465), - [anon_sym_offsetof] = ACTIONS(1465), - [anon_sym__Generic] = ACTIONS(1465), - [anon_sym_asm] = ACTIONS(1465), - [anon_sym___asm__] = ACTIONS(1465), - [sym_number_literal] = ACTIONS(1467), - [anon_sym_L_SQUOTE] = ACTIONS(1467), - [anon_sym_u_SQUOTE] = ACTIONS(1467), - [anon_sym_U_SQUOTE] = ACTIONS(1467), - [anon_sym_u8_SQUOTE] = ACTIONS(1467), - [anon_sym_SQUOTE] = ACTIONS(1467), - [anon_sym_L_DQUOTE] = ACTIONS(1467), - [anon_sym_u_DQUOTE] = ACTIONS(1467), - [anon_sym_U_DQUOTE] = ACTIONS(1467), - [anon_sym_u8_DQUOTE] = ACTIONS(1467), - [anon_sym_DQUOTE] = ACTIONS(1467), - [sym_true] = ACTIONS(1465), - [sym_false] = ACTIONS(1465), - [anon_sym_NULL] = ACTIONS(1465), - [anon_sym_nullptr] = ACTIONS(1465), + [ts_builtin_sym_end] = ACTIONS(1518), + [sym_identifier] = ACTIONS(1516), + [aux_sym_preproc_include_token1] = ACTIONS(1516), + [aux_sym_preproc_def_token1] = ACTIONS(1516), + [aux_sym_preproc_if_token1] = ACTIONS(1516), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1516), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1516), + [sym_preproc_directive] = ACTIONS(1516), + [anon_sym_LPAREN2] = ACTIONS(1518), + [anon_sym_BANG] = ACTIONS(1518), + [anon_sym_TILDE] = ACTIONS(1518), + [anon_sym_DASH] = ACTIONS(1516), + [anon_sym_PLUS] = ACTIONS(1516), + [anon_sym_STAR] = ACTIONS(1518), + [anon_sym_AMP] = ACTIONS(1518), + [anon_sym___extension__] = ACTIONS(1516), + [anon_sym_typedef] = ACTIONS(1516), + [anon_sym_extern] = ACTIONS(1516), + [anon_sym___attribute__] = ACTIONS(1516), + [anon_sym___scanf] = ACTIONS(1516), + [anon_sym___printf] = ACTIONS(1516), + [anon_sym___read_mostly] = ACTIONS(1516), + [anon_sym___must_hold] = ACTIONS(1516), + [anon_sym___ro_after_init] = ACTIONS(1516), + [anon_sym___init] = ACTIONS(1516), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1518), + [anon_sym___declspec] = ACTIONS(1516), + [anon_sym___cdecl] = ACTIONS(1516), + [anon_sym___clrcall] = ACTIONS(1516), + [anon_sym___stdcall] = ACTIONS(1516), + [anon_sym___fastcall] = ACTIONS(1516), + [anon_sym___thiscall] = ACTIONS(1516), + [anon_sym___vectorcall] = ACTIONS(1516), + [anon_sym_LBRACE] = ACTIONS(1518), + [anon_sym_signed] = ACTIONS(1516), + [anon_sym_unsigned] = ACTIONS(1516), + [anon_sym_long] = ACTIONS(1516), + [anon_sym_short] = ACTIONS(1516), + [anon_sym_static] = ACTIONS(1516), + [anon_sym_auto] = ACTIONS(1516), + [anon_sym_register] = ACTIONS(1516), + [anon_sym_inline] = ACTIONS(1516), + [anon_sym___inline] = ACTIONS(1516), + [anon_sym___inline__] = ACTIONS(1516), + [anon_sym___forceinline] = ACTIONS(1516), + [anon_sym_thread_local] = ACTIONS(1516), + [anon_sym___thread] = ACTIONS(1516), + [anon_sym_const] = ACTIONS(1516), + [anon_sym_constexpr] = ACTIONS(1516), + [anon_sym_volatile] = ACTIONS(1516), + [anon_sym_restrict] = ACTIONS(1516), + [anon_sym___restrict__] = ACTIONS(1516), + [anon_sym__Atomic] = ACTIONS(1516), + [anon_sym__Noreturn] = ACTIONS(1516), + [anon_sym_noreturn] = ACTIONS(1516), + [sym_primitive_type] = ACTIONS(1516), + [anon_sym_enum] = ACTIONS(1516), + [anon_sym_struct] = ACTIONS(1516), + [anon_sym_union] = ACTIONS(1516), + [anon_sym_if] = ACTIONS(1516), + [anon_sym_switch] = ACTIONS(1516), + [anon_sym_case] = ACTIONS(1516), + [anon_sym_default] = ACTIONS(1516), + [anon_sym_while] = ACTIONS(1516), + [anon_sym_do] = ACTIONS(1516), + [anon_sym_for] = ACTIONS(1516), + [anon_sym_return] = ACTIONS(1516), + [anon_sym_break] = ACTIONS(1516), + [anon_sym_continue] = ACTIONS(1516), + [anon_sym_goto] = ACTIONS(1516), + [anon_sym_DASH_DASH] = ACTIONS(1518), + [anon_sym_PLUS_PLUS] = ACTIONS(1518), + [anon_sym_sizeof] = ACTIONS(1516), + [anon_sym___alignof__] = ACTIONS(1516), + [anon_sym___alignof] = ACTIONS(1516), + [anon_sym__alignof] = ACTIONS(1516), + [anon_sym_alignof] = ACTIONS(1516), + [anon_sym__Alignof] = ACTIONS(1516), + [anon_sym_offsetof] = ACTIONS(1516), + [anon_sym__Generic] = ACTIONS(1516), + [anon_sym_asm] = ACTIONS(1516), + [anon_sym___asm__] = ACTIONS(1516), + [sym_number_literal] = ACTIONS(1518), + [anon_sym_L_SQUOTE] = ACTIONS(1518), + [anon_sym_u_SQUOTE] = ACTIONS(1518), + [anon_sym_U_SQUOTE] = ACTIONS(1518), + [anon_sym_u8_SQUOTE] = ACTIONS(1518), + [anon_sym_SQUOTE] = ACTIONS(1518), + [anon_sym_L_DQUOTE] = ACTIONS(1518), + [anon_sym_u_DQUOTE] = ACTIONS(1518), + [anon_sym_U_DQUOTE] = ACTIONS(1518), + [anon_sym_u8_DQUOTE] = ACTIONS(1518), + [anon_sym_DQUOTE] = ACTIONS(1518), + [sym_true] = ACTIONS(1516), + [sym_false] = ACTIONS(1516), + [anon_sym_NULL] = ACTIONS(1516), + [anon_sym_nullptr] = ACTIONS(1516), [sym_comment] = ACTIONS(3), }, [418] = { - [sym_attribute_declaration] = STATE(445), - [sym_compound_statement] = STATE(347), - [sym_attributed_statement] = STATE(347), - [sym_labeled_statement] = STATE(347), - [sym_expression_statement] = STATE(347), - [sym_if_statement] = STATE(347), - [sym_switch_statement] = STATE(347), - [sym_case_statement] = STATE(347), - [sym_while_statement] = STATE(347), - [sym_do_statement] = STATE(347), - [sym_for_statement] = STATE(347), - [sym_return_statement] = STATE(347), - [sym_break_statement] = STATE(347), - [sym_continue_statement] = STATE(347), - [sym_goto_statement] = STATE(347), - [sym_seh_try_statement] = STATE(347), - [sym_seh_leave_statement] = STATE(347), - [sym__expression] = STATE(1221), - [sym__expression_not_binary] = STATE(792), - [sym_comma_expression] = STATE(2106), - [sym_conditional_expression] = STATE(792), - [sym_assignment_expression] = STATE(792), - [sym_pointer_expression] = STATE(901), - [sym_unary_expression] = STATE(792), - [sym_binary_expression] = STATE(792), - [sym_update_expression] = STATE(792), - [sym_cast_expression] = STATE(792), - [sym_sizeof_expression] = STATE(792), - [sym_alignof_expression] = STATE(792), - [sym_offsetof_expression] = STATE(792), - [sym_generic_expression] = STATE(792), - [sym_subscript_expression] = STATE(901), - [sym_call_expression] = STATE(901), - [sym_gnu_asm_expression] = STATE(792), - [sym_field_expression] = STATE(901), - [sym_compound_literal_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(901), - [sym_char_literal] = STATE(792), - [sym_concatenated_string] = STATE(792), - [sym_string_literal] = STATE(675), - [sym_null] = STATE(792), - [aux_sym_attributed_declarator_repeat1] = STATE(445), - [sym_identifier] = ACTIONS(1683), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(496), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1573), - [anon_sym_LBRACE] = ACTIONS(504), - [anon_sym_if] = ACTIONS(508), - [anon_sym_switch] = ACTIONS(510), - [anon_sym_case] = ACTIONS(512), - [anon_sym_default] = ACTIONS(514), - [anon_sym_while] = ACTIONS(516), - [anon_sym_do] = ACTIONS(518), - [anon_sym_for] = ACTIONS(520), - [anon_sym_return] = ACTIONS(522), - [anon_sym_break] = ACTIONS(524), - [anon_sym_continue] = ACTIONS(526), - [anon_sym_goto] = ACTIONS(528), - [anon_sym___try] = ACTIONS(530), - [anon_sym___leave] = ACTIONS(532), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(83), - [anon_sym___alignof__] = ACTIONS(85), - [anon_sym___alignof] = ACTIONS(85), - [anon_sym__alignof] = ACTIONS(85), - [anon_sym_alignof] = ACTIONS(85), - [anon_sym__Alignof] = ACTIONS(85), - [anon_sym_offsetof] = ACTIONS(87), - [anon_sym__Generic] = ACTIONS(89), - [anon_sym_asm] = ACTIONS(91), - [anon_sym___asm__] = ACTIONS(91), - [sym_number_literal] = ACTIONS(159), - [anon_sym_L_SQUOTE] = ACTIONS(95), - [anon_sym_u_SQUOTE] = ACTIONS(95), - [anon_sym_U_SQUOTE] = ACTIONS(95), - [anon_sym_u8_SQUOTE] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(95), - [anon_sym_L_DQUOTE] = ACTIONS(97), - [anon_sym_u_DQUOTE] = ACTIONS(97), - [anon_sym_U_DQUOTE] = ACTIONS(97), - [anon_sym_u8_DQUOTE] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(97), - [sym_true] = ACTIONS(161), - [sym_false] = ACTIONS(161), - [anon_sym_NULL] = ACTIONS(101), - [anon_sym_nullptr] = ACTIONS(101), + [ts_builtin_sym_end] = ACTIONS(1506), + [sym_identifier] = ACTIONS(1504), + [aux_sym_preproc_include_token1] = ACTIONS(1504), + [aux_sym_preproc_def_token1] = ACTIONS(1504), + [aux_sym_preproc_if_token1] = ACTIONS(1504), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1504), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1504), + [sym_preproc_directive] = ACTIONS(1504), + [anon_sym_LPAREN2] = ACTIONS(1506), + [anon_sym_BANG] = ACTIONS(1506), + [anon_sym_TILDE] = ACTIONS(1506), + [anon_sym_DASH] = ACTIONS(1504), + [anon_sym_PLUS] = ACTIONS(1504), + [anon_sym_STAR] = ACTIONS(1506), + [anon_sym_AMP] = ACTIONS(1506), + [anon_sym___extension__] = ACTIONS(1504), + [anon_sym_typedef] = ACTIONS(1504), + [anon_sym_extern] = ACTIONS(1504), + [anon_sym___attribute__] = ACTIONS(1504), + [anon_sym___scanf] = ACTIONS(1504), + [anon_sym___printf] = ACTIONS(1504), + [anon_sym___read_mostly] = ACTIONS(1504), + [anon_sym___must_hold] = ACTIONS(1504), + [anon_sym___ro_after_init] = ACTIONS(1504), + [anon_sym___init] = ACTIONS(1504), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1506), + [anon_sym___declspec] = ACTIONS(1504), + [anon_sym___cdecl] = ACTIONS(1504), + [anon_sym___clrcall] = ACTIONS(1504), + [anon_sym___stdcall] = ACTIONS(1504), + [anon_sym___fastcall] = ACTIONS(1504), + [anon_sym___thiscall] = ACTIONS(1504), + [anon_sym___vectorcall] = ACTIONS(1504), + [anon_sym_LBRACE] = ACTIONS(1506), + [anon_sym_signed] = ACTIONS(1504), + [anon_sym_unsigned] = ACTIONS(1504), + [anon_sym_long] = ACTIONS(1504), + [anon_sym_short] = ACTIONS(1504), + [anon_sym_static] = ACTIONS(1504), + [anon_sym_auto] = ACTIONS(1504), + [anon_sym_register] = ACTIONS(1504), + [anon_sym_inline] = ACTIONS(1504), + [anon_sym___inline] = ACTIONS(1504), + [anon_sym___inline__] = ACTIONS(1504), + [anon_sym___forceinline] = ACTIONS(1504), + [anon_sym_thread_local] = ACTIONS(1504), + [anon_sym___thread] = ACTIONS(1504), + [anon_sym_const] = ACTIONS(1504), + [anon_sym_constexpr] = ACTIONS(1504), + [anon_sym_volatile] = ACTIONS(1504), + [anon_sym_restrict] = ACTIONS(1504), + [anon_sym___restrict__] = ACTIONS(1504), + [anon_sym__Atomic] = ACTIONS(1504), + [anon_sym__Noreturn] = ACTIONS(1504), + [anon_sym_noreturn] = ACTIONS(1504), + [sym_primitive_type] = ACTIONS(1504), + [anon_sym_enum] = ACTIONS(1504), + [anon_sym_struct] = ACTIONS(1504), + [anon_sym_union] = ACTIONS(1504), + [anon_sym_if] = ACTIONS(1504), + [anon_sym_switch] = ACTIONS(1504), + [anon_sym_case] = ACTIONS(1504), + [anon_sym_default] = ACTIONS(1504), + [anon_sym_while] = ACTIONS(1504), + [anon_sym_do] = ACTIONS(1504), + [anon_sym_for] = ACTIONS(1504), + [anon_sym_return] = ACTIONS(1504), + [anon_sym_break] = ACTIONS(1504), + [anon_sym_continue] = ACTIONS(1504), + [anon_sym_goto] = ACTIONS(1504), + [anon_sym_DASH_DASH] = ACTIONS(1506), + [anon_sym_PLUS_PLUS] = ACTIONS(1506), + [anon_sym_sizeof] = ACTIONS(1504), + [anon_sym___alignof__] = ACTIONS(1504), + [anon_sym___alignof] = ACTIONS(1504), + [anon_sym__alignof] = ACTIONS(1504), + [anon_sym_alignof] = ACTIONS(1504), + [anon_sym__Alignof] = ACTIONS(1504), + [anon_sym_offsetof] = ACTIONS(1504), + [anon_sym__Generic] = ACTIONS(1504), + [anon_sym_asm] = ACTIONS(1504), + [anon_sym___asm__] = ACTIONS(1504), + [sym_number_literal] = ACTIONS(1506), + [anon_sym_L_SQUOTE] = ACTIONS(1506), + [anon_sym_u_SQUOTE] = ACTIONS(1506), + [anon_sym_U_SQUOTE] = ACTIONS(1506), + [anon_sym_u8_SQUOTE] = ACTIONS(1506), + [anon_sym_SQUOTE] = ACTIONS(1506), + [anon_sym_L_DQUOTE] = ACTIONS(1506), + [anon_sym_u_DQUOTE] = ACTIONS(1506), + [anon_sym_U_DQUOTE] = ACTIONS(1506), + [anon_sym_u8_DQUOTE] = ACTIONS(1506), + [anon_sym_DQUOTE] = ACTIONS(1506), + [sym_true] = ACTIONS(1504), + [sym_false] = ACTIONS(1504), + [anon_sym_NULL] = ACTIONS(1504), + [anon_sym_nullptr] = ACTIONS(1504), [sym_comment] = ACTIONS(3), }, [419] = { - [ts_builtin_sym_end] = ACTIONS(1471), - [sym_identifier] = ACTIONS(1469), - [aux_sym_preproc_include_token1] = ACTIONS(1469), - [aux_sym_preproc_def_token1] = ACTIONS(1469), - [aux_sym_preproc_if_token1] = ACTIONS(1469), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1469), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1469), - [sym_preproc_directive] = ACTIONS(1469), - [anon_sym_LPAREN2] = ACTIONS(1471), - [anon_sym_BANG] = ACTIONS(1471), - [anon_sym_TILDE] = ACTIONS(1471), - [anon_sym_DASH] = ACTIONS(1469), - [anon_sym_PLUS] = ACTIONS(1469), - [anon_sym_STAR] = ACTIONS(1471), - [anon_sym_AMP] = ACTIONS(1471), - [anon_sym___extension__] = ACTIONS(1469), - [anon_sym_typedef] = ACTIONS(1469), - [anon_sym_extern] = ACTIONS(1469), - [anon_sym___attribute__] = ACTIONS(1469), - [anon_sym___scanf] = ACTIONS(1469), - [anon_sym___printf] = ACTIONS(1469), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1471), - [anon_sym___declspec] = ACTIONS(1469), - [anon_sym___cdecl] = ACTIONS(1469), - [anon_sym___clrcall] = ACTIONS(1469), - [anon_sym___stdcall] = ACTIONS(1469), - [anon_sym___fastcall] = ACTIONS(1469), - [anon_sym___thiscall] = ACTIONS(1469), - [anon_sym___vectorcall] = ACTIONS(1469), - [anon_sym_LBRACE] = ACTIONS(1471), - [anon_sym_signed] = ACTIONS(1469), - [anon_sym_unsigned] = ACTIONS(1469), - [anon_sym_long] = ACTIONS(1469), - [anon_sym_short] = ACTIONS(1469), - [anon_sym_static] = ACTIONS(1469), - [anon_sym_auto] = ACTIONS(1469), - [anon_sym_register] = ACTIONS(1469), - [anon_sym_inline] = ACTIONS(1469), - [anon_sym___inline] = ACTIONS(1469), - [anon_sym___inline__] = ACTIONS(1469), - [anon_sym___forceinline] = ACTIONS(1469), - [anon_sym_thread_local] = ACTIONS(1469), - [anon_sym___thread] = ACTIONS(1469), - [anon_sym_const] = ACTIONS(1469), - [anon_sym_constexpr] = ACTIONS(1469), - [anon_sym_volatile] = ACTIONS(1469), - [anon_sym_restrict] = ACTIONS(1469), - [anon_sym___restrict__] = ACTIONS(1469), - [anon_sym__Atomic] = ACTIONS(1469), - [anon_sym__Noreturn] = ACTIONS(1469), - [anon_sym_noreturn] = ACTIONS(1469), - [sym_primitive_type] = ACTIONS(1469), - [anon_sym_enum] = ACTIONS(1469), - [anon_sym_struct] = ACTIONS(1469), - [anon_sym_union] = ACTIONS(1469), - [anon_sym_if] = ACTIONS(1469), - [anon_sym_switch] = ACTIONS(1469), - [anon_sym_case] = ACTIONS(1469), - [anon_sym_default] = ACTIONS(1469), - [anon_sym_while] = ACTIONS(1469), - [anon_sym_do] = ACTIONS(1469), - [anon_sym_for] = ACTIONS(1469), - [anon_sym_return] = ACTIONS(1469), - [anon_sym_break] = ACTIONS(1469), - [anon_sym_continue] = ACTIONS(1469), - [anon_sym_goto] = ACTIONS(1469), - [anon_sym_DASH_DASH] = ACTIONS(1471), - [anon_sym_PLUS_PLUS] = ACTIONS(1471), - [anon_sym_sizeof] = ACTIONS(1469), - [anon_sym___alignof__] = ACTIONS(1469), - [anon_sym___alignof] = ACTIONS(1469), - [anon_sym__alignof] = ACTIONS(1469), - [anon_sym_alignof] = ACTIONS(1469), - [anon_sym__Alignof] = ACTIONS(1469), - [anon_sym_offsetof] = ACTIONS(1469), - [anon_sym__Generic] = ACTIONS(1469), - [anon_sym_asm] = ACTIONS(1469), - [anon_sym___asm__] = ACTIONS(1469), - [sym_number_literal] = ACTIONS(1471), - [anon_sym_L_SQUOTE] = ACTIONS(1471), - [anon_sym_u_SQUOTE] = ACTIONS(1471), - [anon_sym_U_SQUOTE] = ACTIONS(1471), - [anon_sym_u8_SQUOTE] = ACTIONS(1471), - [anon_sym_SQUOTE] = ACTIONS(1471), - [anon_sym_L_DQUOTE] = ACTIONS(1471), - [anon_sym_u_DQUOTE] = ACTIONS(1471), - [anon_sym_U_DQUOTE] = ACTIONS(1471), - [anon_sym_u8_DQUOTE] = ACTIONS(1471), - [anon_sym_DQUOTE] = ACTIONS(1471), - [sym_true] = ACTIONS(1469), - [sym_false] = ACTIONS(1469), - [anon_sym_NULL] = ACTIONS(1469), - [anon_sym_nullptr] = ACTIONS(1469), + [ts_builtin_sym_end] = ACTIONS(1522), + [sym_identifier] = ACTIONS(1520), + [aux_sym_preproc_include_token1] = ACTIONS(1520), + [aux_sym_preproc_def_token1] = ACTIONS(1520), + [aux_sym_preproc_if_token1] = ACTIONS(1520), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1520), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1520), + [sym_preproc_directive] = ACTIONS(1520), + [anon_sym_LPAREN2] = ACTIONS(1522), + [anon_sym_BANG] = ACTIONS(1522), + [anon_sym_TILDE] = ACTIONS(1522), + [anon_sym_DASH] = ACTIONS(1520), + [anon_sym_PLUS] = ACTIONS(1520), + [anon_sym_STAR] = ACTIONS(1522), + [anon_sym_AMP] = ACTIONS(1522), + [anon_sym___extension__] = ACTIONS(1520), + [anon_sym_typedef] = ACTIONS(1520), + [anon_sym_extern] = ACTIONS(1520), + [anon_sym___attribute__] = ACTIONS(1520), + [anon_sym___scanf] = ACTIONS(1520), + [anon_sym___printf] = ACTIONS(1520), + [anon_sym___read_mostly] = ACTIONS(1520), + [anon_sym___must_hold] = ACTIONS(1520), + [anon_sym___ro_after_init] = ACTIONS(1520), + [anon_sym___init] = ACTIONS(1520), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1522), + [anon_sym___declspec] = ACTIONS(1520), + [anon_sym___cdecl] = ACTIONS(1520), + [anon_sym___clrcall] = ACTIONS(1520), + [anon_sym___stdcall] = ACTIONS(1520), + [anon_sym___fastcall] = ACTIONS(1520), + [anon_sym___thiscall] = ACTIONS(1520), + [anon_sym___vectorcall] = ACTIONS(1520), + [anon_sym_LBRACE] = ACTIONS(1522), + [anon_sym_signed] = ACTIONS(1520), + [anon_sym_unsigned] = ACTIONS(1520), + [anon_sym_long] = ACTIONS(1520), + [anon_sym_short] = ACTIONS(1520), + [anon_sym_static] = ACTIONS(1520), + [anon_sym_auto] = ACTIONS(1520), + [anon_sym_register] = ACTIONS(1520), + [anon_sym_inline] = ACTIONS(1520), + [anon_sym___inline] = ACTIONS(1520), + [anon_sym___inline__] = ACTIONS(1520), + [anon_sym___forceinline] = ACTIONS(1520), + [anon_sym_thread_local] = ACTIONS(1520), + [anon_sym___thread] = ACTIONS(1520), + [anon_sym_const] = ACTIONS(1520), + [anon_sym_constexpr] = ACTIONS(1520), + [anon_sym_volatile] = ACTIONS(1520), + [anon_sym_restrict] = ACTIONS(1520), + [anon_sym___restrict__] = ACTIONS(1520), + [anon_sym__Atomic] = ACTIONS(1520), + [anon_sym__Noreturn] = ACTIONS(1520), + [anon_sym_noreturn] = ACTIONS(1520), + [sym_primitive_type] = ACTIONS(1520), + [anon_sym_enum] = ACTIONS(1520), + [anon_sym_struct] = ACTIONS(1520), + [anon_sym_union] = ACTIONS(1520), + [anon_sym_if] = ACTIONS(1520), + [anon_sym_switch] = ACTIONS(1520), + [anon_sym_case] = ACTIONS(1520), + [anon_sym_default] = ACTIONS(1520), + [anon_sym_while] = ACTIONS(1520), + [anon_sym_do] = ACTIONS(1520), + [anon_sym_for] = ACTIONS(1520), + [anon_sym_return] = ACTIONS(1520), + [anon_sym_break] = ACTIONS(1520), + [anon_sym_continue] = ACTIONS(1520), + [anon_sym_goto] = ACTIONS(1520), + [anon_sym_DASH_DASH] = ACTIONS(1522), + [anon_sym_PLUS_PLUS] = ACTIONS(1522), + [anon_sym_sizeof] = ACTIONS(1520), + [anon_sym___alignof__] = ACTIONS(1520), + [anon_sym___alignof] = ACTIONS(1520), + [anon_sym__alignof] = ACTIONS(1520), + [anon_sym_alignof] = ACTIONS(1520), + [anon_sym__Alignof] = ACTIONS(1520), + [anon_sym_offsetof] = ACTIONS(1520), + [anon_sym__Generic] = ACTIONS(1520), + [anon_sym_asm] = ACTIONS(1520), + [anon_sym___asm__] = ACTIONS(1520), + [sym_number_literal] = ACTIONS(1522), + [anon_sym_L_SQUOTE] = ACTIONS(1522), + [anon_sym_u_SQUOTE] = ACTIONS(1522), + [anon_sym_U_SQUOTE] = ACTIONS(1522), + [anon_sym_u8_SQUOTE] = ACTIONS(1522), + [anon_sym_SQUOTE] = ACTIONS(1522), + [anon_sym_L_DQUOTE] = ACTIONS(1522), + [anon_sym_u_DQUOTE] = ACTIONS(1522), + [anon_sym_U_DQUOTE] = ACTIONS(1522), + [anon_sym_u8_DQUOTE] = ACTIONS(1522), + [anon_sym_DQUOTE] = ACTIONS(1522), + [sym_true] = ACTIONS(1520), + [sym_false] = ACTIONS(1520), + [anon_sym_NULL] = ACTIONS(1520), + [anon_sym_nullptr] = ACTIONS(1520), [sym_comment] = ACTIONS(3), }, [420] = { - [sym_attribute_declaration] = STATE(445), - [sym_compound_statement] = STATE(350), - [sym_attributed_statement] = STATE(350), - [sym_labeled_statement] = STATE(350), - [sym_expression_statement] = STATE(350), - [sym_if_statement] = STATE(350), - [sym_switch_statement] = STATE(350), - [sym_case_statement] = STATE(350), - [sym_while_statement] = STATE(350), - [sym_do_statement] = STATE(350), - [sym_for_statement] = STATE(350), - [sym_return_statement] = STATE(350), - [sym_break_statement] = STATE(350), - [sym_continue_statement] = STATE(350), - [sym_goto_statement] = STATE(350), - [sym_seh_try_statement] = STATE(350), - [sym_seh_leave_statement] = STATE(350), - [sym__expression] = STATE(1221), - [sym__expression_not_binary] = STATE(792), - [sym_comma_expression] = STATE(2106), - [sym_conditional_expression] = STATE(792), - [sym_assignment_expression] = STATE(792), - [sym_pointer_expression] = STATE(901), - [sym_unary_expression] = STATE(792), - [sym_binary_expression] = STATE(792), - [sym_update_expression] = STATE(792), - [sym_cast_expression] = STATE(792), - [sym_sizeof_expression] = STATE(792), - [sym_alignof_expression] = STATE(792), - [sym_offsetof_expression] = STATE(792), - [sym_generic_expression] = STATE(792), - [sym_subscript_expression] = STATE(901), - [sym_call_expression] = STATE(901), - [sym_gnu_asm_expression] = STATE(792), - [sym_field_expression] = STATE(901), - [sym_compound_literal_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(901), - [sym_char_literal] = STATE(792), - [sym_concatenated_string] = STATE(792), - [sym_string_literal] = STATE(675), - [sym_null] = STATE(792), - [aux_sym_attributed_declarator_repeat1] = STATE(445), - [sym_identifier] = ACTIONS(1683), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(496), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1573), - [anon_sym_LBRACE] = ACTIONS(504), - [anon_sym_if] = ACTIONS(508), - [anon_sym_switch] = ACTIONS(510), - [anon_sym_case] = ACTIONS(512), - [anon_sym_default] = ACTIONS(514), - [anon_sym_while] = ACTIONS(516), - [anon_sym_do] = ACTIONS(518), - [anon_sym_for] = ACTIONS(520), - [anon_sym_return] = ACTIONS(522), - [anon_sym_break] = ACTIONS(524), - [anon_sym_continue] = ACTIONS(526), - [anon_sym_goto] = ACTIONS(528), - [anon_sym___try] = ACTIONS(530), - [anon_sym___leave] = ACTIONS(532), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(83), - [anon_sym___alignof__] = ACTIONS(85), - [anon_sym___alignof] = ACTIONS(85), - [anon_sym__alignof] = ACTIONS(85), - [anon_sym_alignof] = ACTIONS(85), - [anon_sym__Alignof] = ACTIONS(85), - [anon_sym_offsetof] = ACTIONS(87), - [anon_sym__Generic] = ACTIONS(89), - [anon_sym_asm] = ACTIONS(91), - [anon_sym___asm__] = ACTIONS(91), - [sym_number_literal] = ACTIONS(159), - [anon_sym_L_SQUOTE] = ACTIONS(95), - [anon_sym_u_SQUOTE] = ACTIONS(95), - [anon_sym_U_SQUOTE] = ACTIONS(95), - [anon_sym_u8_SQUOTE] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(95), - [anon_sym_L_DQUOTE] = ACTIONS(97), - [anon_sym_u_DQUOTE] = ACTIONS(97), - [anon_sym_U_DQUOTE] = ACTIONS(97), - [anon_sym_u8_DQUOTE] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(97), - [sym_true] = ACTIONS(161), - [sym_false] = ACTIONS(161), - [anon_sym_NULL] = ACTIONS(101), - [anon_sym_nullptr] = ACTIONS(101), + [ts_builtin_sym_end] = ACTIONS(1510), + [sym_identifier] = ACTIONS(1508), + [aux_sym_preproc_include_token1] = ACTIONS(1508), + [aux_sym_preproc_def_token1] = ACTIONS(1508), + [aux_sym_preproc_if_token1] = ACTIONS(1508), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1508), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1508), + [sym_preproc_directive] = ACTIONS(1508), + [anon_sym_LPAREN2] = ACTIONS(1510), + [anon_sym_BANG] = ACTIONS(1510), + [anon_sym_TILDE] = ACTIONS(1510), + [anon_sym_DASH] = ACTIONS(1508), + [anon_sym_PLUS] = ACTIONS(1508), + [anon_sym_STAR] = ACTIONS(1510), + [anon_sym_AMP] = ACTIONS(1510), + [anon_sym___extension__] = ACTIONS(1508), + [anon_sym_typedef] = ACTIONS(1508), + [anon_sym_extern] = ACTIONS(1508), + [anon_sym___attribute__] = ACTIONS(1508), + [anon_sym___scanf] = ACTIONS(1508), + [anon_sym___printf] = ACTIONS(1508), + [anon_sym___read_mostly] = ACTIONS(1508), + [anon_sym___must_hold] = ACTIONS(1508), + [anon_sym___ro_after_init] = ACTIONS(1508), + [anon_sym___init] = ACTIONS(1508), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1510), + [anon_sym___declspec] = ACTIONS(1508), + [anon_sym___cdecl] = ACTIONS(1508), + [anon_sym___clrcall] = ACTIONS(1508), + [anon_sym___stdcall] = ACTIONS(1508), + [anon_sym___fastcall] = ACTIONS(1508), + [anon_sym___thiscall] = ACTIONS(1508), + [anon_sym___vectorcall] = ACTIONS(1508), + [anon_sym_LBRACE] = ACTIONS(1510), + [anon_sym_signed] = ACTIONS(1508), + [anon_sym_unsigned] = ACTIONS(1508), + [anon_sym_long] = ACTIONS(1508), + [anon_sym_short] = ACTIONS(1508), + [anon_sym_static] = ACTIONS(1508), + [anon_sym_auto] = ACTIONS(1508), + [anon_sym_register] = ACTIONS(1508), + [anon_sym_inline] = ACTIONS(1508), + [anon_sym___inline] = ACTIONS(1508), + [anon_sym___inline__] = ACTIONS(1508), + [anon_sym___forceinline] = ACTIONS(1508), + [anon_sym_thread_local] = ACTIONS(1508), + [anon_sym___thread] = ACTIONS(1508), + [anon_sym_const] = ACTIONS(1508), + [anon_sym_constexpr] = ACTIONS(1508), + [anon_sym_volatile] = ACTIONS(1508), + [anon_sym_restrict] = ACTIONS(1508), + [anon_sym___restrict__] = ACTIONS(1508), + [anon_sym__Atomic] = ACTIONS(1508), + [anon_sym__Noreturn] = ACTIONS(1508), + [anon_sym_noreturn] = ACTIONS(1508), + [sym_primitive_type] = ACTIONS(1508), + [anon_sym_enum] = ACTIONS(1508), + [anon_sym_struct] = ACTIONS(1508), + [anon_sym_union] = ACTIONS(1508), + [anon_sym_if] = ACTIONS(1508), + [anon_sym_switch] = ACTIONS(1508), + [anon_sym_case] = ACTIONS(1508), + [anon_sym_default] = ACTIONS(1508), + [anon_sym_while] = ACTIONS(1508), + [anon_sym_do] = ACTIONS(1508), + [anon_sym_for] = ACTIONS(1508), + [anon_sym_return] = ACTIONS(1508), + [anon_sym_break] = ACTIONS(1508), + [anon_sym_continue] = ACTIONS(1508), + [anon_sym_goto] = ACTIONS(1508), + [anon_sym_DASH_DASH] = ACTIONS(1510), + [anon_sym_PLUS_PLUS] = ACTIONS(1510), + [anon_sym_sizeof] = ACTIONS(1508), + [anon_sym___alignof__] = ACTIONS(1508), + [anon_sym___alignof] = ACTIONS(1508), + [anon_sym__alignof] = ACTIONS(1508), + [anon_sym_alignof] = ACTIONS(1508), + [anon_sym__Alignof] = ACTIONS(1508), + [anon_sym_offsetof] = ACTIONS(1508), + [anon_sym__Generic] = ACTIONS(1508), + [anon_sym_asm] = ACTIONS(1508), + [anon_sym___asm__] = ACTIONS(1508), + [sym_number_literal] = ACTIONS(1510), + [anon_sym_L_SQUOTE] = ACTIONS(1510), + [anon_sym_u_SQUOTE] = ACTIONS(1510), + [anon_sym_U_SQUOTE] = ACTIONS(1510), + [anon_sym_u8_SQUOTE] = ACTIONS(1510), + [anon_sym_SQUOTE] = ACTIONS(1510), + [anon_sym_L_DQUOTE] = ACTIONS(1510), + [anon_sym_u_DQUOTE] = ACTIONS(1510), + [anon_sym_U_DQUOTE] = ACTIONS(1510), + [anon_sym_u8_DQUOTE] = ACTIONS(1510), + [anon_sym_DQUOTE] = ACTIONS(1510), + [sym_true] = ACTIONS(1508), + [sym_false] = ACTIONS(1508), + [anon_sym_NULL] = ACTIONS(1508), + [anon_sym_nullptr] = ACTIONS(1508), [sym_comment] = ACTIONS(3), }, [421] = { - [sym_attribute_declaration] = STATE(445), - [sym_compound_statement] = STATE(229), - [sym_attributed_statement] = STATE(229), - [sym_labeled_statement] = STATE(229), - [sym_expression_statement] = STATE(229), - [sym_if_statement] = STATE(229), - [sym_switch_statement] = STATE(229), - [sym_case_statement] = STATE(229), - [sym_while_statement] = STATE(229), - [sym_do_statement] = STATE(229), - [sym_for_statement] = STATE(229), - [sym_return_statement] = STATE(229), - [sym_break_statement] = STATE(229), - [sym_continue_statement] = STATE(229), - [sym_goto_statement] = STATE(229), - [sym_seh_try_statement] = STATE(229), - [sym_seh_leave_statement] = STATE(229), - [sym__expression] = STATE(1221), - [sym__expression_not_binary] = STATE(792), - [sym_comma_expression] = STATE(2106), - [sym_conditional_expression] = STATE(792), - [sym_assignment_expression] = STATE(792), - [sym_pointer_expression] = STATE(901), - [sym_unary_expression] = STATE(792), - [sym_binary_expression] = STATE(792), - [sym_update_expression] = STATE(792), - [sym_cast_expression] = STATE(792), - [sym_sizeof_expression] = STATE(792), - [sym_alignof_expression] = STATE(792), - [sym_offsetof_expression] = STATE(792), - [sym_generic_expression] = STATE(792), - [sym_subscript_expression] = STATE(901), - [sym_call_expression] = STATE(901), - [sym_gnu_asm_expression] = STATE(792), - [sym_field_expression] = STATE(901), - [sym_compound_literal_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(901), - [sym_char_literal] = STATE(792), - [sym_concatenated_string] = STATE(792), - [sym_string_literal] = STATE(675), - [sym_null] = STATE(792), - [aux_sym_attributed_declarator_repeat1] = STATE(445), - [sym_identifier] = ACTIONS(1683), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(496), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1573), - [anon_sym_LBRACE] = ACTIONS(504), - [anon_sym_if] = ACTIONS(508), - [anon_sym_switch] = ACTIONS(510), - [anon_sym_case] = ACTIONS(512), - [anon_sym_default] = ACTIONS(514), - [anon_sym_while] = ACTIONS(516), - [anon_sym_do] = ACTIONS(518), - [anon_sym_for] = ACTIONS(520), - [anon_sym_return] = ACTIONS(522), - [anon_sym_break] = ACTIONS(524), - [anon_sym_continue] = ACTIONS(526), - [anon_sym_goto] = ACTIONS(528), - [anon_sym___try] = ACTIONS(530), - [anon_sym___leave] = ACTIONS(532), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(83), - [anon_sym___alignof__] = ACTIONS(85), - [anon_sym___alignof] = ACTIONS(85), - [anon_sym__alignof] = ACTIONS(85), - [anon_sym_alignof] = ACTIONS(85), - [anon_sym__Alignof] = ACTIONS(85), - [anon_sym_offsetof] = ACTIONS(87), - [anon_sym__Generic] = ACTIONS(89), - [anon_sym_asm] = ACTIONS(91), - [anon_sym___asm__] = ACTIONS(91), - [sym_number_literal] = ACTIONS(159), - [anon_sym_L_SQUOTE] = ACTIONS(95), - [anon_sym_u_SQUOTE] = ACTIONS(95), - [anon_sym_U_SQUOTE] = ACTIONS(95), - [anon_sym_u8_SQUOTE] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(95), - [anon_sym_L_DQUOTE] = ACTIONS(97), - [anon_sym_u_DQUOTE] = ACTIONS(97), - [anon_sym_U_DQUOTE] = ACTIONS(97), - [anon_sym_u8_DQUOTE] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(97), - [sym_true] = ACTIONS(161), - [sym_false] = ACTIONS(161), - [anon_sym_NULL] = ACTIONS(101), - [anon_sym_nullptr] = ACTIONS(101), + [ts_builtin_sym_end] = ACTIONS(1550), + [sym_identifier] = ACTIONS(1552), + [aux_sym_preproc_include_token1] = ACTIONS(1552), + [aux_sym_preproc_def_token1] = ACTIONS(1552), + [aux_sym_preproc_if_token1] = ACTIONS(1552), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1552), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1552), + [sym_preproc_directive] = ACTIONS(1552), + [anon_sym_LPAREN2] = ACTIONS(1550), + [anon_sym_BANG] = ACTIONS(1550), + [anon_sym_TILDE] = ACTIONS(1550), + [anon_sym_DASH] = ACTIONS(1552), + [anon_sym_PLUS] = ACTIONS(1552), + [anon_sym_STAR] = ACTIONS(1550), + [anon_sym_AMP] = ACTIONS(1550), + [anon_sym___extension__] = ACTIONS(1552), + [anon_sym_typedef] = ACTIONS(1552), + [anon_sym_extern] = ACTIONS(1552), + [anon_sym___attribute__] = ACTIONS(1552), + [anon_sym___scanf] = ACTIONS(1552), + [anon_sym___printf] = ACTIONS(1552), + [anon_sym___read_mostly] = ACTIONS(1552), + [anon_sym___must_hold] = ACTIONS(1552), + [anon_sym___ro_after_init] = ACTIONS(1552), + [anon_sym___init] = ACTIONS(1552), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1550), + [anon_sym___declspec] = ACTIONS(1552), + [anon_sym___cdecl] = ACTIONS(1552), + [anon_sym___clrcall] = ACTIONS(1552), + [anon_sym___stdcall] = ACTIONS(1552), + [anon_sym___fastcall] = ACTIONS(1552), + [anon_sym___thiscall] = ACTIONS(1552), + [anon_sym___vectorcall] = ACTIONS(1552), + [anon_sym_LBRACE] = ACTIONS(1550), + [anon_sym_signed] = ACTIONS(1552), + [anon_sym_unsigned] = ACTIONS(1552), + [anon_sym_long] = ACTIONS(1552), + [anon_sym_short] = ACTIONS(1552), + [anon_sym_static] = ACTIONS(1552), + [anon_sym_auto] = ACTIONS(1552), + [anon_sym_register] = ACTIONS(1552), + [anon_sym_inline] = ACTIONS(1552), + [anon_sym___inline] = ACTIONS(1552), + [anon_sym___inline__] = ACTIONS(1552), + [anon_sym___forceinline] = ACTIONS(1552), + [anon_sym_thread_local] = ACTIONS(1552), + [anon_sym___thread] = ACTIONS(1552), + [anon_sym_const] = ACTIONS(1552), + [anon_sym_constexpr] = ACTIONS(1552), + [anon_sym_volatile] = ACTIONS(1552), + [anon_sym_restrict] = ACTIONS(1552), + [anon_sym___restrict__] = ACTIONS(1552), + [anon_sym__Atomic] = ACTIONS(1552), + [anon_sym__Noreturn] = ACTIONS(1552), + [anon_sym_noreturn] = ACTIONS(1552), + [sym_primitive_type] = ACTIONS(1552), + [anon_sym_enum] = ACTIONS(1552), + [anon_sym_struct] = ACTIONS(1552), + [anon_sym_union] = ACTIONS(1552), + [anon_sym_if] = ACTIONS(1552), + [anon_sym_switch] = ACTIONS(1552), + [anon_sym_case] = ACTIONS(1552), + [anon_sym_default] = ACTIONS(1552), + [anon_sym_while] = ACTIONS(1552), + [anon_sym_do] = ACTIONS(1552), + [anon_sym_for] = ACTIONS(1552), + [anon_sym_return] = ACTIONS(1552), + [anon_sym_break] = ACTIONS(1552), + [anon_sym_continue] = ACTIONS(1552), + [anon_sym_goto] = ACTIONS(1552), + [anon_sym_DASH_DASH] = ACTIONS(1550), + [anon_sym_PLUS_PLUS] = ACTIONS(1550), + [anon_sym_sizeof] = ACTIONS(1552), + [anon_sym___alignof__] = ACTIONS(1552), + [anon_sym___alignof] = ACTIONS(1552), + [anon_sym__alignof] = ACTIONS(1552), + [anon_sym_alignof] = ACTIONS(1552), + [anon_sym__Alignof] = ACTIONS(1552), + [anon_sym_offsetof] = ACTIONS(1552), + [anon_sym__Generic] = ACTIONS(1552), + [anon_sym_asm] = ACTIONS(1552), + [anon_sym___asm__] = ACTIONS(1552), + [sym_number_literal] = ACTIONS(1550), + [anon_sym_L_SQUOTE] = ACTIONS(1550), + [anon_sym_u_SQUOTE] = ACTIONS(1550), + [anon_sym_U_SQUOTE] = ACTIONS(1550), + [anon_sym_u8_SQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1550), + [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(1552), + [sym_false] = ACTIONS(1552), + [anon_sym_NULL] = ACTIONS(1552), + [anon_sym_nullptr] = ACTIONS(1552), [sym_comment] = ACTIONS(3), }, [422] = { - [sym_attribute_declaration] = STATE(435), - [sym_compound_statement] = STATE(185), - [sym_attributed_statement] = STATE(185), - [sym_labeled_statement] = STATE(185), - [sym_expression_statement] = STATE(185), - [sym_if_statement] = STATE(185), - [sym_switch_statement] = STATE(185), - [sym_case_statement] = STATE(185), - [sym_while_statement] = STATE(185), - [sym_do_statement] = STATE(185), - [sym_for_statement] = STATE(185), - [sym_return_statement] = STATE(185), - [sym_break_statement] = STATE(185), - [sym_continue_statement] = STATE(185), - [sym_goto_statement] = STATE(185), - [sym_seh_try_statement] = STATE(185), - [sym_seh_leave_statement] = STATE(185), - [sym__expression] = STATE(1230), - [sym__expression_not_binary] = STATE(792), - [sym_comma_expression] = STATE(2008), - [sym_conditional_expression] = STATE(792), - [sym_assignment_expression] = STATE(792), - [sym_pointer_expression] = STATE(901), - [sym_unary_expression] = STATE(792), - [sym_binary_expression] = STATE(792), - [sym_update_expression] = STATE(792), - [sym_cast_expression] = STATE(792), - [sym_sizeof_expression] = STATE(792), - [sym_alignof_expression] = STATE(792), - [sym_offsetof_expression] = STATE(792), - [sym_generic_expression] = STATE(792), - [sym_subscript_expression] = STATE(901), - [sym_call_expression] = STATE(901), - [sym_gnu_asm_expression] = STATE(792), - [sym_field_expression] = STATE(901), - [sym_compound_literal_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(901), - [sym_char_literal] = STATE(792), - [sym_concatenated_string] = STATE(792), - [sym_string_literal] = STATE(675), - [sym_null] = STATE(792), - [aux_sym_attributed_declarator_repeat1] = STATE(435), - [sym_identifier] = ACTIONS(1679), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(195), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1573), - [anon_sym_LBRACE] = ACTIONS(203), - [anon_sym_if] = ACTIONS(205), - [anon_sym_switch] = ACTIONS(207), - [anon_sym_case] = ACTIONS(209), - [anon_sym_default] = ACTIONS(211), - [anon_sym_while] = ACTIONS(213), - [anon_sym_do] = ACTIONS(215), - [anon_sym_for] = ACTIONS(217), - [anon_sym_return] = ACTIONS(219), - [anon_sym_break] = ACTIONS(221), - [anon_sym_continue] = ACTIONS(223), - [anon_sym_goto] = ACTIONS(225), - [anon_sym___try] = ACTIONS(227), - [anon_sym___leave] = ACTIONS(229), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(83), - [anon_sym___alignof__] = ACTIONS(85), - [anon_sym___alignof] = ACTIONS(85), - [anon_sym__alignof] = ACTIONS(85), - [anon_sym_alignof] = ACTIONS(85), - [anon_sym__Alignof] = ACTIONS(85), - [anon_sym_offsetof] = ACTIONS(87), - [anon_sym__Generic] = ACTIONS(89), - [anon_sym_asm] = ACTIONS(91), - [anon_sym___asm__] = ACTIONS(91), - [sym_number_literal] = ACTIONS(159), - [anon_sym_L_SQUOTE] = ACTIONS(95), - [anon_sym_u_SQUOTE] = ACTIONS(95), - [anon_sym_U_SQUOTE] = ACTIONS(95), - [anon_sym_u8_SQUOTE] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(95), - [anon_sym_L_DQUOTE] = ACTIONS(97), - [anon_sym_u_DQUOTE] = ACTIONS(97), - [anon_sym_U_DQUOTE] = ACTIONS(97), - [anon_sym_u8_DQUOTE] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(97), - [sym_true] = ACTIONS(161), - [sym_false] = ACTIONS(161), - [anon_sym_NULL] = ACTIONS(101), - [anon_sym_nullptr] = ACTIONS(101), + [ts_builtin_sym_end] = ACTIONS(1450), + [sym_identifier] = ACTIONS(1448), + [aux_sym_preproc_include_token1] = ACTIONS(1448), + [aux_sym_preproc_def_token1] = ACTIONS(1448), + [aux_sym_preproc_if_token1] = ACTIONS(1448), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1448), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1448), + [sym_preproc_directive] = ACTIONS(1448), + [anon_sym_LPAREN2] = ACTIONS(1450), + [anon_sym_BANG] = ACTIONS(1450), + [anon_sym_TILDE] = ACTIONS(1450), + [anon_sym_DASH] = ACTIONS(1448), + [anon_sym_PLUS] = ACTIONS(1448), + [anon_sym_STAR] = ACTIONS(1450), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym___extension__] = ACTIONS(1448), + [anon_sym_typedef] = ACTIONS(1448), + [anon_sym_extern] = ACTIONS(1448), + [anon_sym___attribute__] = ACTIONS(1448), + [anon_sym___scanf] = ACTIONS(1448), + [anon_sym___printf] = ACTIONS(1448), + [anon_sym___read_mostly] = ACTIONS(1448), + [anon_sym___must_hold] = ACTIONS(1448), + [anon_sym___ro_after_init] = ACTIONS(1448), + [anon_sym___init] = ACTIONS(1448), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1450), + [anon_sym___declspec] = ACTIONS(1448), + [anon_sym___cdecl] = ACTIONS(1448), + [anon_sym___clrcall] = ACTIONS(1448), + [anon_sym___stdcall] = ACTIONS(1448), + [anon_sym___fastcall] = ACTIONS(1448), + [anon_sym___thiscall] = ACTIONS(1448), + [anon_sym___vectorcall] = ACTIONS(1448), + [anon_sym_LBRACE] = ACTIONS(1450), + [anon_sym_signed] = ACTIONS(1448), + [anon_sym_unsigned] = ACTIONS(1448), + [anon_sym_long] = ACTIONS(1448), + [anon_sym_short] = ACTIONS(1448), + [anon_sym_static] = ACTIONS(1448), + [anon_sym_auto] = ACTIONS(1448), + [anon_sym_register] = ACTIONS(1448), + [anon_sym_inline] = ACTIONS(1448), + [anon_sym___inline] = ACTIONS(1448), + [anon_sym___inline__] = ACTIONS(1448), + [anon_sym___forceinline] = ACTIONS(1448), + [anon_sym_thread_local] = ACTIONS(1448), + [anon_sym___thread] = ACTIONS(1448), + [anon_sym_const] = ACTIONS(1448), + [anon_sym_constexpr] = ACTIONS(1448), + [anon_sym_volatile] = ACTIONS(1448), + [anon_sym_restrict] = ACTIONS(1448), + [anon_sym___restrict__] = ACTIONS(1448), + [anon_sym__Atomic] = ACTIONS(1448), + [anon_sym__Noreturn] = ACTIONS(1448), + [anon_sym_noreturn] = ACTIONS(1448), + [sym_primitive_type] = ACTIONS(1448), + [anon_sym_enum] = ACTIONS(1448), + [anon_sym_struct] = ACTIONS(1448), + [anon_sym_union] = ACTIONS(1448), + [anon_sym_if] = ACTIONS(1448), + [anon_sym_switch] = ACTIONS(1448), + [anon_sym_case] = ACTIONS(1448), + [anon_sym_default] = ACTIONS(1448), + [anon_sym_while] = ACTIONS(1448), + [anon_sym_do] = ACTIONS(1448), + [anon_sym_for] = ACTIONS(1448), + [anon_sym_return] = ACTIONS(1448), + [anon_sym_break] = ACTIONS(1448), + [anon_sym_continue] = ACTIONS(1448), + [anon_sym_goto] = ACTIONS(1448), + [anon_sym_DASH_DASH] = ACTIONS(1450), + [anon_sym_PLUS_PLUS] = ACTIONS(1450), + [anon_sym_sizeof] = ACTIONS(1448), + [anon_sym___alignof__] = ACTIONS(1448), + [anon_sym___alignof] = ACTIONS(1448), + [anon_sym__alignof] = ACTIONS(1448), + [anon_sym_alignof] = ACTIONS(1448), + [anon_sym__Alignof] = ACTIONS(1448), + [anon_sym_offsetof] = ACTIONS(1448), + [anon_sym__Generic] = ACTIONS(1448), + [anon_sym_asm] = ACTIONS(1448), + [anon_sym___asm__] = ACTIONS(1448), + [sym_number_literal] = ACTIONS(1450), + [anon_sym_L_SQUOTE] = ACTIONS(1450), + [anon_sym_u_SQUOTE] = ACTIONS(1450), + [anon_sym_U_SQUOTE] = ACTIONS(1450), + [anon_sym_u8_SQUOTE] = ACTIONS(1450), + [anon_sym_SQUOTE] = ACTIONS(1450), + [anon_sym_L_DQUOTE] = ACTIONS(1450), + [anon_sym_u_DQUOTE] = ACTIONS(1450), + [anon_sym_U_DQUOTE] = ACTIONS(1450), + [anon_sym_u8_DQUOTE] = ACTIONS(1450), + [anon_sym_DQUOTE] = ACTIONS(1450), + [sym_true] = ACTIONS(1448), + [sym_false] = ACTIONS(1448), + [anon_sym_NULL] = ACTIONS(1448), + [anon_sym_nullptr] = ACTIONS(1448), [sym_comment] = ACTIONS(3), }, [423] = { - [sym_attribute_declaration] = STATE(445), - [sym_compound_statement] = STATE(319), - [sym_attributed_statement] = STATE(319), - [sym_labeled_statement] = STATE(319), - [sym_expression_statement] = STATE(319), - [sym_if_statement] = STATE(319), - [sym_switch_statement] = STATE(319), - [sym_case_statement] = STATE(319), - [sym_while_statement] = STATE(319), - [sym_do_statement] = STATE(319), - [sym_for_statement] = STATE(319), - [sym_return_statement] = STATE(319), - [sym_break_statement] = STATE(319), - [sym_continue_statement] = STATE(319), - [sym_goto_statement] = STATE(319), - [sym_seh_try_statement] = STATE(319), - [sym_seh_leave_statement] = STATE(319), - [sym__expression] = STATE(1221), - [sym__expression_not_binary] = STATE(792), - [sym_comma_expression] = STATE(2106), - [sym_conditional_expression] = STATE(792), - [sym_assignment_expression] = STATE(792), - [sym_pointer_expression] = STATE(901), - [sym_unary_expression] = STATE(792), - [sym_binary_expression] = STATE(792), - [sym_update_expression] = STATE(792), - [sym_cast_expression] = STATE(792), - [sym_sizeof_expression] = STATE(792), - [sym_alignof_expression] = STATE(792), - [sym_offsetof_expression] = STATE(792), - [sym_generic_expression] = STATE(792), - [sym_subscript_expression] = STATE(901), - [sym_call_expression] = STATE(901), - [sym_gnu_asm_expression] = STATE(792), - [sym_field_expression] = STATE(901), - [sym_compound_literal_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(901), - [sym_char_literal] = STATE(792), - [sym_concatenated_string] = STATE(792), - [sym_string_literal] = STATE(675), - [sym_null] = STATE(792), - [aux_sym_attributed_declarator_repeat1] = STATE(445), - [sym_identifier] = ACTIONS(1683), + [ts_builtin_sym_end] = ACTIONS(1462), + [sym_identifier] = ACTIONS(1460), + [aux_sym_preproc_include_token1] = ACTIONS(1460), + [aux_sym_preproc_def_token1] = ACTIONS(1460), + [aux_sym_preproc_if_token1] = ACTIONS(1460), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1460), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1460), + [sym_preproc_directive] = ACTIONS(1460), + [anon_sym_LPAREN2] = ACTIONS(1462), + [anon_sym_BANG] = ACTIONS(1462), + [anon_sym_TILDE] = ACTIONS(1462), + [anon_sym_DASH] = ACTIONS(1460), + [anon_sym_PLUS] = ACTIONS(1460), + [anon_sym_STAR] = ACTIONS(1462), + [anon_sym_AMP] = ACTIONS(1462), + [anon_sym___extension__] = ACTIONS(1460), + [anon_sym_typedef] = ACTIONS(1460), + [anon_sym_extern] = ACTIONS(1460), + [anon_sym___attribute__] = ACTIONS(1460), + [anon_sym___scanf] = ACTIONS(1460), + [anon_sym___printf] = ACTIONS(1460), + [anon_sym___read_mostly] = ACTIONS(1460), + [anon_sym___must_hold] = ACTIONS(1460), + [anon_sym___ro_after_init] = ACTIONS(1460), + [anon_sym___init] = ACTIONS(1460), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1462), + [anon_sym___declspec] = ACTIONS(1460), + [anon_sym___cdecl] = ACTIONS(1460), + [anon_sym___clrcall] = ACTIONS(1460), + [anon_sym___stdcall] = ACTIONS(1460), + [anon_sym___fastcall] = ACTIONS(1460), + [anon_sym___thiscall] = ACTIONS(1460), + [anon_sym___vectorcall] = ACTIONS(1460), + [anon_sym_LBRACE] = ACTIONS(1462), + [anon_sym_signed] = ACTIONS(1460), + [anon_sym_unsigned] = ACTIONS(1460), + [anon_sym_long] = ACTIONS(1460), + [anon_sym_short] = ACTIONS(1460), + [anon_sym_static] = ACTIONS(1460), + [anon_sym_auto] = ACTIONS(1460), + [anon_sym_register] = ACTIONS(1460), + [anon_sym_inline] = ACTIONS(1460), + [anon_sym___inline] = ACTIONS(1460), + [anon_sym___inline__] = ACTIONS(1460), + [anon_sym___forceinline] = ACTIONS(1460), + [anon_sym_thread_local] = ACTIONS(1460), + [anon_sym___thread] = ACTIONS(1460), + [anon_sym_const] = ACTIONS(1460), + [anon_sym_constexpr] = ACTIONS(1460), + [anon_sym_volatile] = ACTIONS(1460), + [anon_sym_restrict] = ACTIONS(1460), + [anon_sym___restrict__] = ACTIONS(1460), + [anon_sym__Atomic] = ACTIONS(1460), + [anon_sym__Noreturn] = ACTIONS(1460), + [anon_sym_noreturn] = ACTIONS(1460), + [sym_primitive_type] = ACTIONS(1460), + [anon_sym_enum] = ACTIONS(1460), + [anon_sym_struct] = ACTIONS(1460), + [anon_sym_union] = ACTIONS(1460), + [anon_sym_if] = ACTIONS(1460), + [anon_sym_switch] = ACTIONS(1460), + [anon_sym_case] = ACTIONS(1460), + [anon_sym_default] = ACTIONS(1460), + [anon_sym_while] = ACTIONS(1460), + [anon_sym_do] = ACTIONS(1460), + [anon_sym_for] = ACTIONS(1460), + [anon_sym_return] = ACTIONS(1460), + [anon_sym_break] = ACTIONS(1460), + [anon_sym_continue] = ACTIONS(1460), + [anon_sym_goto] = ACTIONS(1460), + [anon_sym_DASH_DASH] = ACTIONS(1462), + [anon_sym_PLUS_PLUS] = ACTIONS(1462), + [anon_sym_sizeof] = ACTIONS(1460), + [anon_sym___alignof__] = ACTIONS(1460), + [anon_sym___alignof] = ACTIONS(1460), + [anon_sym__alignof] = ACTIONS(1460), + [anon_sym_alignof] = ACTIONS(1460), + [anon_sym__Alignof] = ACTIONS(1460), + [anon_sym_offsetof] = ACTIONS(1460), + [anon_sym__Generic] = ACTIONS(1460), + [anon_sym_asm] = ACTIONS(1460), + [anon_sym___asm__] = ACTIONS(1460), + [sym_number_literal] = ACTIONS(1462), + [anon_sym_L_SQUOTE] = ACTIONS(1462), + [anon_sym_u_SQUOTE] = ACTIONS(1462), + [anon_sym_U_SQUOTE] = ACTIONS(1462), + [anon_sym_u8_SQUOTE] = ACTIONS(1462), + [anon_sym_SQUOTE] = ACTIONS(1462), + [anon_sym_L_DQUOTE] = ACTIONS(1462), + [anon_sym_u_DQUOTE] = ACTIONS(1462), + [anon_sym_U_DQUOTE] = ACTIONS(1462), + [anon_sym_u8_DQUOTE] = ACTIONS(1462), + [anon_sym_DQUOTE] = ACTIONS(1462), + [sym_true] = ACTIONS(1460), + [sym_false] = ACTIONS(1460), + [anon_sym_NULL] = ACTIONS(1460), + [anon_sym_nullptr] = ACTIONS(1460), + [sym_comment] = ACTIONS(3), + }, + [424] = { + [ts_builtin_sym_end] = ACTIONS(1438), + [sym_identifier] = ACTIONS(1436), + [aux_sym_preproc_include_token1] = ACTIONS(1436), + [aux_sym_preproc_def_token1] = ACTIONS(1436), + [aux_sym_preproc_if_token1] = ACTIONS(1436), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1436), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1436), + [sym_preproc_directive] = ACTIONS(1436), + [anon_sym_LPAREN2] = ACTIONS(1438), + [anon_sym_BANG] = ACTIONS(1438), + [anon_sym_TILDE] = ACTIONS(1438), + [anon_sym_DASH] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1436), + [anon_sym_STAR] = ACTIONS(1438), + [anon_sym_AMP] = ACTIONS(1438), + [anon_sym___extension__] = ACTIONS(1436), + [anon_sym_typedef] = ACTIONS(1436), + [anon_sym_extern] = ACTIONS(1436), + [anon_sym___attribute__] = ACTIONS(1436), + [anon_sym___scanf] = ACTIONS(1436), + [anon_sym___printf] = ACTIONS(1436), + [anon_sym___read_mostly] = ACTIONS(1436), + [anon_sym___must_hold] = ACTIONS(1436), + [anon_sym___ro_after_init] = ACTIONS(1436), + [anon_sym___init] = ACTIONS(1436), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1438), + [anon_sym___declspec] = ACTIONS(1436), + [anon_sym___cdecl] = ACTIONS(1436), + [anon_sym___clrcall] = ACTIONS(1436), + [anon_sym___stdcall] = ACTIONS(1436), + [anon_sym___fastcall] = ACTIONS(1436), + [anon_sym___thiscall] = ACTIONS(1436), + [anon_sym___vectorcall] = ACTIONS(1436), + [anon_sym_LBRACE] = ACTIONS(1438), + [anon_sym_signed] = ACTIONS(1436), + [anon_sym_unsigned] = ACTIONS(1436), + [anon_sym_long] = ACTIONS(1436), + [anon_sym_short] = ACTIONS(1436), + [anon_sym_static] = ACTIONS(1436), + [anon_sym_auto] = ACTIONS(1436), + [anon_sym_register] = ACTIONS(1436), + [anon_sym_inline] = ACTIONS(1436), + [anon_sym___inline] = ACTIONS(1436), + [anon_sym___inline__] = ACTIONS(1436), + [anon_sym___forceinline] = ACTIONS(1436), + [anon_sym_thread_local] = ACTIONS(1436), + [anon_sym___thread] = ACTIONS(1436), + [anon_sym_const] = ACTIONS(1436), + [anon_sym_constexpr] = ACTIONS(1436), + [anon_sym_volatile] = ACTIONS(1436), + [anon_sym_restrict] = ACTIONS(1436), + [anon_sym___restrict__] = ACTIONS(1436), + [anon_sym__Atomic] = ACTIONS(1436), + [anon_sym__Noreturn] = ACTIONS(1436), + [anon_sym_noreturn] = ACTIONS(1436), + [sym_primitive_type] = ACTIONS(1436), + [anon_sym_enum] = ACTIONS(1436), + [anon_sym_struct] = ACTIONS(1436), + [anon_sym_union] = ACTIONS(1436), + [anon_sym_if] = ACTIONS(1436), + [anon_sym_switch] = ACTIONS(1436), + [anon_sym_case] = ACTIONS(1436), + [anon_sym_default] = ACTIONS(1436), + [anon_sym_while] = ACTIONS(1436), + [anon_sym_do] = ACTIONS(1436), + [anon_sym_for] = ACTIONS(1436), + [anon_sym_return] = ACTIONS(1436), + [anon_sym_break] = ACTIONS(1436), + [anon_sym_continue] = ACTIONS(1436), + [anon_sym_goto] = ACTIONS(1436), + [anon_sym_DASH_DASH] = ACTIONS(1438), + [anon_sym_PLUS_PLUS] = ACTIONS(1438), + [anon_sym_sizeof] = ACTIONS(1436), + [anon_sym___alignof__] = ACTIONS(1436), + [anon_sym___alignof] = ACTIONS(1436), + [anon_sym__alignof] = ACTIONS(1436), + [anon_sym_alignof] = ACTIONS(1436), + [anon_sym__Alignof] = ACTIONS(1436), + [anon_sym_offsetof] = ACTIONS(1436), + [anon_sym__Generic] = ACTIONS(1436), + [anon_sym_asm] = ACTIONS(1436), + [anon_sym___asm__] = ACTIONS(1436), + [sym_number_literal] = ACTIONS(1438), + [anon_sym_L_SQUOTE] = ACTIONS(1438), + [anon_sym_u_SQUOTE] = ACTIONS(1438), + [anon_sym_U_SQUOTE] = ACTIONS(1438), + [anon_sym_u8_SQUOTE] = ACTIONS(1438), + [anon_sym_SQUOTE] = ACTIONS(1438), + [anon_sym_L_DQUOTE] = ACTIONS(1438), + [anon_sym_u_DQUOTE] = ACTIONS(1438), + [anon_sym_U_DQUOTE] = ACTIONS(1438), + [anon_sym_u8_DQUOTE] = ACTIONS(1438), + [anon_sym_DQUOTE] = ACTIONS(1438), + [sym_true] = ACTIONS(1436), + [sym_false] = ACTIONS(1436), + [anon_sym_NULL] = ACTIONS(1436), + [anon_sym_nullptr] = ACTIONS(1436), + [sym_comment] = ACTIONS(3), + }, + [425] = { + [ts_builtin_sym_end] = ACTIONS(1466), + [sym_identifier] = ACTIONS(1464), + [aux_sym_preproc_include_token1] = ACTIONS(1464), + [aux_sym_preproc_def_token1] = ACTIONS(1464), + [aux_sym_preproc_if_token1] = ACTIONS(1464), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1464), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1464), + [sym_preproc_directive] = ACTIONS(1464), + [anon_sym_LPAREN2] = ACTIONS(1466), + [anon_sym_BANG] = ACTIONS(1466), + [anon_sym_TILDE] = ACTIONS(1466), + [anon_sym_DASH] = ACTIONS(1464), + [anon_sym_PLUS] = ACTIONS(1464), + [anon_sym_STAR] = ACTIONS(1466), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym___extension__] = ACTIONS(1464), + [anon_sym_typedef] = ACTIONS(1464), + [anon_sym_extern] = ACTIONS(1464), + [anon_sym___attribute__] = ACTIONS(1464), + [anon_sym___scanf] = ACTIONS(1464), + [anon_sym___printf] = ACTIONS(1464), + [anon_sym___read_mostly] = ACTIONS(1464), + [anon_sym___must_hold] = ACTIONS(1464), + [anon_sym___ro_after_init] = ACTIONS(1464), + [anon_sym___init] = ACTIONS(1464), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1466), + [anon_sym___declspec] = ACTIONS(1464), + [anon_sym___cdecl] = ACTIONS(1464), + [anon_sym___clrcall] = ACTIONS(1464), + [anon_sym___stdcall] = ACTIONS(1464), + [anon_sym___fastcall] = ACTIONS(1464), + [anon_sym___thiscall] = ACTIONS(1464), + [anon_sym___vectorcall] = ACTIONS(1464), + [anon_sym_LBRACE] = ACTIONS(1466), + [anon_sym_signed] = ACTIONS(1464), + [anon_sym_unsigned] = ACTIONS(1464), + [anon_sym_long] = ACTIONS(1464), + [anon_sym_short] = ACTIONS(1464), + [anon_sym_static] = ACTIONS(1464), + [anon_sym_auto] = ACTIONS(1464), + [anon_sym_register] = ACTIONS(1464), + [anon_sym_inline] = ACTIONS(1464), + [anon_sym___inline] = ACTIONS(1464), + [anon_sym___inline__] = ACTIONS(1464), + [anon_sym___forceinline] = ACTIONS(1464), + [anon_sym_thread_local] = ACTIONS(1464), + [anon_sym___thread] = ACTIONS(1464), + [anon_sym_const] = ACTIONS(1464), + [anon_sym_constexpr] = ACTIONS(1464), + [anon_sym_volatile] = ACTIONS(1464), + [anon_sym_restrict] = ACTIONS(1464), + [anon_sym___restrict__] = ACTIONS(1464), + [anon_sym__Atomic] = ACTIONS(1464), + [anon_sym__Noreturn] = ACTIONS(1464), + [anon_sym_noreturn] = ACTIONS(1464), + [sym_primitive_type] = ACTIONS(1464), + [anon_sym_enum] = ACTIONS(1464), + [anon_sym_struct] = ACTIONS(1464), + [anon_sym_union] = ACTIONS(1464), + [anon_sym_if] = ACTIONS(1464), + [anon_sym_switch] = ACTIONS(1464), + [anon_sym_case] = ACTIONS(1464), + [anon_sym_default] = ACTIONS(1464), + [anon_sym_while] = ACTIONS(1464), + [anon_sym_do] = ACTIONS(1464), + [anon_sym_for] = ACTIONS(1464), + [anon_sym_return] = ACTIONS(1464), + [anon_sym_break] = ACTIONS(1464), + [anon_sym_continue] = ACTIONS(1464), + [anon_sym_goto] = ACTIONS(1464), + [anon_sym_DASH_DASH] = ACTIONS(1466), + [anon_sym_PLUS_PLUS] = ACTIONS(1466), + [anon_sym_sizeof] = ACTIONS(1464), + [anon_sym___alignof__] = ACTIONS(1464), + [anon_sym___alignof] = ACTIONS(1464), + [anon_sym__alignof] = ACTIONS(1464), + [anon_sym_alignof] = ACTIONS(1464), + [anon_sym__Alignof] = ACTIONS(1464), + [anon_sym_offsetof] = ACTIONS(1464), + [anon_sym__Generic] = ACTIONS(1464), + [anon_sym_asm] = ACTIONS(1464), + [anon_sym___asm__] = ACTIONS(1464), + [sym_number_literal] = ACTIONS(1466), + [anon_sym_L_SQUOTE] = ACTIONS(1466), + [anon_sym_u_SQUOTE] = ACTIONS(1466), + [anon_sym_U_SQUOTE] = ACTIONS(1466), + [anon_sym_u8_SQUOTE] = ACTIONS(1466), + [anon_sym_SQUOTE] = ACTIONS(1466), + [anon_sym_L_DQUOTE] = ACTIONS(1466), + [anon_sym_u_DQUOTE] = ACTIONS(1466), + [anon_sym_U_DQUOTE] = ACTIONS(1466), + [anon_sym_u8_DQUOTE] = ACTIONS(1466), + [anon_sym_DQUOTE] = ACTIONS(1466), + [sym_true] = ACTIONS(1464), + [sym_false] = ACTIONS(1464), + [anon_sym_NULL] = ACTIONS(1464), + [anon_sym_nullptr] = ACTIONS(1464), + [sym_comment] = ACTIONS(3), + }, + [426] = { + [ts_builtin_sym_end] = ACTIONS(1442), + [sym_identifier] = ACTIONS(1440), + [aux_sym_preproc_include_token1] = ACTIONS(1440), + [aux_sym_preproc_def_token1] = ACTIONS(1440), + [aux_sym_preproc_if_token1] = ACTIONS(1440), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1440), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1440), + [sym_preproc_directive] = ACTIONS(1440), + [anon_sym_LPAREN2] = ACTIONS(1442), + [anon_sym_BANG] = ACTIONS(1442), + [anon_sym_TILDE] = ACTIONS(1442), + [anon_sym_DASH] = ACTIONS(1440), + [anon_sym_PLUS] = ACTIONS(1440), + [anon_sym_STAR] = ACTIONS(1442), + [anon_sym_AMP] = ACTIONS(1442), + [anon_sym___extension__] = ACTIONS(1440), + [anon_sym_typedef] = ACTIONS(1440), + [anon_sym_extern] = ACTIONS(1440), + [anon_sym___attribute__] = ACTIONS(1440), + [anon_sym___scanf] = ACTIONS(1440), + [anon_sym___printf] = ACTIONS(1440), + [anon_sym___read_mostly] = ACTIONS(1440), + [anon_sym___must_hold] = ACTIONS(1440), + [anon_sym___ro_after_init] = ACTIONS(1440), + [anon_sym___init] = ACTIONS(1440), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1442), + [anon_sym___declspec] = ACTIONS(1440), + [anon_sym___cdecl] = ACTIONS(1440), + [anon_sym___clrcall] = ACTIONS(1440), + [anon_sym___stdcall] = ACTIONS(1440), + [anon_sym___fastcall] = ACTIONS(1440), + [anon_sym___thiscall] = ACTIONS(1440), + [anon_sym___vectorcall] = ACTIONS(1440), + [anon_sym_LBRACE] = ACTIONS(1442), + [anon_sym_signed] = ACTIONS(1440), + [anon_sym_unsigned] = ACTIONS(1440), + [anon_sym_long] = ACTIONS(1440), + [anon_sym_short] = ACTIONS(1440), + [anon_sym_static] = ACTIONS(1440), + [anon_sym_auto] = ACTIONS(1440), + [anon_sym_register] = ACTIONS(1440), + [anon_sym_inline] = ACTIONS(1440), + [anon_sym___inline] = ACTIONS(1440), + [anon_sym___inline__] = ACTIONS(1440), + [anon_sym___forceinline] = ACTIONS(1440), + [anon_sym_thread_local] = ACTIONS(1440), + [anon_sym___thread] = ACTIONS(1440), + [anon_sym_const] = ACTIONS(1440), + [anon_sym_constexpr] = ACTIONS(1440), + [anon_sym_volatile] = ACTIONS(1440), + [anon_sym_restrict] = ACTIONS(1440), + [anon_sym___restrict__] = ACTIONS(1440), + [anon_sym__Atomic] = ACTIONS(1440), + [anon_sym__Noreturn] = ACTIONS(1440), + [anon_sym_noreturn] = ACTIONS(1440), + [sym_primitive_type] = ACTIONS(1440), + [anon_sym_enum] = ACTIONS(1440), + [anon_sym_struct] = ACTIONS(1440), + [anon_sym_union] = ACTIONS(1440), + [anon_sym_if] = ACTIONS(1440), + [anon_sym_switch] = ACTIONS(1440), + [anon_sym_case] = ACTIONS(1440), + [anon_sym_default] = ACTIONS(1440), + [anon_sym_while] = ACTIONS(1440), + [anon_sym_do] = ACTIONS(1440), + [anon_sym_for] = ACTIONS(1440), + [anon_sym_return] = ACTIONS(1440), + [anon_sym_break] = ACTIONS(1440), + [anon_sym_continue] = ACTIONS(1440), + [anon_sym_goto] = ACTIONS(1440), + [anon_sym_DASH_DASH] = ACTIONS(1442), + [anon_sym_PLUS_PLUS] = ACTIONS(1442), + [anon_sym_sizeof] = ACTIONS(1440), + [anon_sym___alignof__] = ACTIONS(1440), + [anon_sym___alignof] = ACTIONS(1440), + [anon_sym__alignof] = ACTIONS(1440), + [anon_sym_alignof] = ACTIONS(1440), + [anon_sym__Alignof] = ACTIONS(1440), + [anon_sym_offsetof] = ACTIONS(1440), + [anon_sym__Generic] = ACTIONS(1440), + [anon_sym_asm] = ACTIONS(1440), + [anon_sym___asm__] = ACTIONS(1440), + [sym_number_literal] = ACTIONS(1442), + [anon_sym_L_SQUOTE] = ACTIONS(1442), + [anon_sym_u_SQUOTE] = ACTIONS(1442), + [anon_sym_U_SQUOTE] = ACTIONS(1442), + [anon_sym_u8_SQUOTE] = ACTIONS(1442), + [anon_sym_SQUOTE] = ACTIONS(1442), + [anon_sym_L_DQUOTE] = ACTIONS(1442), + [anon_sym_u_DQUOTE] = ACTIONS(1442), + [anon_sym_U_DQUOTE] = ACTIONS(1442), + [anon_sym_u8_DQUOTE] = ACTIONS(1442), + [anon_sym_DQUOTE] = ACTIONS(1442), + [sym_true] = ACTIONS(1440), + [sym_false] = ACTIONS(1440), + [anon_sym_NULL] = ACTIONS(1440), + [anon_sym_nullptr] = ACTIONS(1440), + [sym_comment] = ACTIONS(3), + }, + [427] = { + [ts_builtin_sym_end] = ACTIONS(1490), + [sym_identifier] = ACTIONS(1488), + [aux_sym_preproc_include_token1] = ACTIONS(1488), + [aux_sym_preproc_def_token1] = ACTIONS(1488), + [aux_sym_preproc_if_token1] = ACTIONS(1488), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1488), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1488), + [sym_preproc_directive] = ACTIONS(1488), + [anon_sym_LPAREN2] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(1490), + [anon_sym_TILDE] = ACTIONS(1490), + [anon_sym_DASH] = ACTIONS(1488), + [anon_sym_PLUS] = ACTIONS(1488), + [anon_sym_STAR] = ACTIONS(1490), + [anon_sym_AMP] = ACTIONS(1490), + [anon_sym___extension__] = ACTIONS(1488), + [anon_sym_typedef] = ACTIONS(1488), + [anon_sym_extern] = ACTIONS(1488), + [anon_sym___attribute__] = ACTIONS(1488), + [anon_sym___scanf] = ACTIONS(1488), + [anon_sym___printf] = ACTIONS(1488), + [anon_sym___read_mostly] = ACTIONS(1488), + [anon_sym___must_hold] = ACTIONS(1488), + [anon_sym___ro_after_init] = ACTIONS(1488), + [anon_sym___init] = ACTIONS(1488), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1490), + [anon_sym___declspec] = ACTIONS(1488), + [anon_sym___cdecl] = ACTIONS(1488), + [anon_sym___clrcall] = ACTIONS(1488), + [anon_sym___stdcall] = ACTIONS(1488), + [anon_sym___fastcall] = ACTIONS(1488), + [anon_sym___thiscall] = ACTIONS(1488), + [anon_sym___vectorcall] = ACTIONS(1488), + [anon_sym_LBRACE] = ACTIONS(1490), + [anon_sym_signed] = ACTIONS(1488), + [anon_sym_unsigned] = ACTIONS(1488), + [anon_sym_long] = ACTIONS(1488), + [anon_sym_short] = ACTIONS(1488), + [anon_sym_static] = ACTIONS(1488), + [anon_sym_auto] = ACTIONS(1488), + [anon_sym_register] = ACTIONS(1488), + [anon_sym_inline] = ACTIONS(1488), + [anon_sym___inline] = ACTIONS(1488), + [anon_sym___inline__] = ACTIONS(1488), + [anon_sym___forceinline] = ACTIONS(1488), + [anon_sym_thread_local] = ACTIONS(1488), + [anon_sym___thread] = ACTIONS(1488), + [anon_sym_const] = ACTIONS(1488), + [anon_sym_constexpr] = ACTIONS(1488), + [anon_sym_volatile] = ACTIONS(1488), + [anon_sym_restrict] = ACTIONS(1488), + [anon_sym___restrict__] = ACTIONS(1488), + [anon_sym__Atomic] = ACTIONS(1488), + [anon_sym__Noreturn] = ACTIONS(1488), + [anon_sym_noreturn] = ACTIONS(1488), + [sym_primitive_type] = ACTIONS(1488), + [anon_sym_enum] = ACTIONS(1488), + [anon_sym_struct] = ACTIONS(1488), + [anon_sym_union] = ACTIONS(1488), + [anon_sym_if] = ACTIONS(1488), + [anon_sym_switch] = ACTIONS(1488), + [anon_sym_case] = ACTIONS(1488), + [anon_sym_default] = ACTIONS(1488), + [anon_sym_while] = ACTIONS(1488), + [anon_sym_do] = ACTIONS(1488), + [anon_sym_for] = ACTIONS(1488), + [anon_sym_return] = ACTIONS(1488), + [anon_sym_break] = ACTIONS(1488), + [anon_sym_continue] = ACTIONS(1488), + [anon_sym_goto] = ACTIONS(1488), + [anon_sym_DASH_DASH] = ACTIONS(1490), + [anon_sym_PLUS_PLUS] = ACTIONS(1490), + [anon_sym_sizeof] = ACTIONS(1488), + [anon_sym___alignof__] = ACTIONS(1488), + [anon_sym___alignof] = ACTIONS(1488), + [anon_sym__alignof] = ACTIONS(1488), + [anon_sym_alignof] = ACTIONS(1488), + [anon_sym__Alignof] = ACTIONS(1488), + [anon_sym_offsetof] = ACTIONS(1488), + [anon_sym__Generic] = ACTIONS(1488), + [anon_sym_asm] = ACTIONS(1488), + [anon_sym___asm__] = ACTIONS(1488), + [sym_number_literal] = ACTIONS(1490), + [anon_sym_L_SQUOTE] = ACTIONS(1490), + [anon_sym_u_SQUOTE] = ACTIONS(1490), + [anon_sym_U_SQUOTE] = ACTIONS(1490), + [anon_sym_u8_SQUOTE] = ACTIONS(1490), + [anon_sym_SQUOTE] = ACTIONS(1490), + [anon_sym_L_DQUOTE] = ACTIONS(1490), + [anon_sym_u_DQUOTE] = ACTIONS(1490), + [anon_sym_U_DQUOTE] = ACTIONS(1490), + [anon_sym_u8_DQUOTE] = ACTIONS(1490), + [anon_sym_DQUOTE] = ACTIONS(1490), + [sym_true] = ACTIONS(1488), + [sym_false] = ACTIONS(1488), + [anon_sym_NULL] = ACTIONS(1488), + [anon_sym_nullptr] = ACTIONS(1488), + [sym_comment] = ACTIONS(3), + }, + [428] = { + [ts_builtin_sym_end] = ACTIONS(1554), + [sym_identifier] = ACTIONS(1556), + [aux_sym_preproc_include_token1] = ACTIONS(1556), + [aux_sym_preproc_def_token1] = ACTIONS(1556), + [aux_sym_preproc_if_token1] = ACTIONS(1556), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1556), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1556), + [sym_preproc_directive] = ACTIONS(1556), + [anon_sym_LPAREN2] = ACTIONS(1554), + [anon_sym_BANG] = ACTIONS(1554), + [anon_sym_TILDE] = ACTIONS(1554), + [anon_sym_DASH] = ACTIONS(1556), + [anon_sym_PLUS] = ACTIONS(1556), + [anon_sym_STAR] = ACTIONS(1554), + [anon_sym_AMP] = ACTIONS(1554), + [anon_sym___extension__] = ACTIONS(1556), + [anon_sym_typedef] = ACTIONS(1556), + [anon_sym_extern] = ACTIONS(1556), + [anon_sym___attribute__] = ACTIONS(1556), + [anon_sym___scanf] = ACTIONS(1556), + [anon_sym___printf] = ACTIONS(1556), + [anon_sym___read_mostly] = ACTIONS(1556), + [anon_sym___must_hold] = ACTIONS(1556), + [anon_sym___ro_after_init] = ACTIONS(1556), + [anon_sym___init] = ACTIONS(1556), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1554), + [anon_sym___declspec] = ACTIONS(1556), + [anon_sym___cdecl] = ACTIONS(1556), + [anon_sym___clrcall] = ACTIONS(1556), + [anon_sym___stdcall] = ACTIONS(1556), + [anon_sym___fastcall] = ACTIONS(1556), + [anon_sym___thiscall] = ACTIONS(1556), + [anon_sym___vectorcall] = ACTIONS(1556), + [anon_sym_LBRACE] = ACTIONS(1554), + [anon_sym_signed] = ACTIONS(1556), + [anon_sym_unsigned] = ACTIONS(1556), + [anon_sym_long] = ACTIONS(1556), + [anon_sym_short] = ACTIONS(1556), + [anon_sym_static] = ACTIONS(1556), + [anon_sym_auto] = ACTIONS(1556), + [anon_sym_register] = ACTIONS(1556), + [anon_sym_inline] = ACTIONS(1556), + [anon_sym___inline] = ACTIONS(1556), + [anon_sym___inline__] = ACTIONS(1556), + [anon_sym___forceinline] = ACTIONS(1556), + [anon_sym_thread_local] = ACTIONS(1556), + [anon_sym___thread] = ACTIONS(1556), + [anon_sym_const] = ACTIONS(1556), + [anon_sym_constexpr] = ACTIONS(1556), + [anon_sym_volatile] = ACTIONS(1556), + [anon_sym_restrict] = ACTIONS(1556), + [anon_sym___restrict__] = ACTIONS(1556), + [anon_sym__Atomic] = ACTIONS(1556), + [anon_sym__Noreturn] = ACTIONS(1556), + [anon_sym_noreturn] = ACTIONS(1556), + [sym_primitive_type] = ACTIONS(1556), + [anon_sym_enum] = ACTIONS(1556), + [anon_sym_struct] = ACTIONS(1556), + [anon_sym_union] = ACTIONS(1556), + [anon_sym_if] = ACTIONS(1556), + [anon_sym_switch] = ACTIONS(1556), + [anon_sym_case] = ACTIONS(1556), + [anon_sym_default] = ACTIONS(1556), + [anon_sym_while] = ACTIONS(1556), + [anon_sym_do] = ACTIONS(1556), + [anon_sym_for] = ACTIONS(1556), + [anon_sym_return] = ACTIONS(1556), + [anon_sym_break] = ACTIONS(1556), + [anon_sym_continue] = ACTIONS(1556), + [anon_sym_goto] = ACTIONS(1556), + [anon_sym_DASH_DASH] = ACTIONS(1554), + [anon_sym_PLUS_PLUS] = ACTIONS(1554), + [anon_sym_sizeof] = ACTIONS(1556), + [anon_sym___alignof__] = ACTIONS(1556), + [anon_sym___alignof] = ACTIONS(1556), + [anon_sym__alignof] = ACTIONS(1556), + [anon_sym_alignof] = ACTIONS(1556), + [anon_sym__Alignof] = ACTIONS(1556), + [anon_sym_offsetof] = ACTIONS(1556), + [anon_sym__Generic] = ACTIONS(1556), + [anon_sym_asm] = ACTIONS(1556), + [anon_sym___asm__] = ACTIONS(1556), + [sym_number_literal] = ACTIONS(1554), + [anon_sym_L_SQUOTE] = ACTIONS(1554), + [anon_sym_u_SQUOTE] = ACTIONS(1554), + [anon_sym_U_SQUOTE] = ACTIONS(1554), + [anon_sym_u8_SQUOTE] = ACTIONS(1554), + [anon_sym_SQUOTE] = ACTIONS(1554), + [anon_sym_L_DQUOTE] = ACTIONS(1554), + [anon_sym_u_DQUOTE] = ACTIONS(1554), + [anon_sym_U_DQUOTE] = ACTIONS(1554), + [anon_sym_u8_DQUOTE] = ACTIONS(1554), + [anon_sym_DQUOTE] = ACTIONS(1554), + [sym_true] = ACTIONS(1556), + [sym_false] = ACTIONS(1556), + [anon_sym_NULL] = ACTIONS(1556), + [anon_sym_nullptr] = ACTIONS(1556), + [sym_comment] = ACTIONS(3), + }, + [429] = { + [ts_builtin_sym_end] = ACTIONS(1482), + [sym_identifier] = ACTIONS(1480), + [aux_sym_preproc_include_token1] = ACTIONS(1480), + [aux_sym_preproc_def_token1] = ACTIONS(1480), + [aux_sym_preproc_if_token1] = ACTIONS(1480), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1480), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1480), + [sym_preproc_directive] = ACTIONS(1480), + [anon_sym_LPAREN2] = ACTIONS(1482), + [anon_sym_BANG] = ACTIONS(1482), + [anon_sym_TILDE] = ACTIONS(1482), + [anon_sym_DASH] = ACTIONS(1480), + [anon_sym_PLUS] = ACTIONS(1480), + [anon_sym_STAR] = ACTIONS(1482), + [anon_sym_AMP] = ACTIONS(1482), + [anon_sym___extension__] = ACTIONS(1480), + [anon_sym_typedef] = ACTIONS(1480), + [anon_sym_extern] = ACTIONS(1480), + [anon_sym___attribute__] = ACTIONS(1480), + [anon_sym___scanf] = ACTIONS(1480), + [anon_sym___printf] = ACTIONS(1480), + [anon_sym___read_mostly] = ACTIONS(1480), + [anon_sym___must_hold] = ACTIONS(1480), + [anon_sym___ro_after_init] = ACTIONS(1480), + [anon_sym___init] = ACTIONS(1480), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1482), + [anon_sym___declspec] = ACTIONS(1480), + [anon_sym___cdecl] = ACTIONS(1480), + [anon_sym___clrcall] = ACTIONS(1480), + [anon_sym___stdcall] = ACTIONS(1480), + [anon_sym___fastcall] = ACTIONS(1480), + [anon_sym___thiscall] = ACTIONS(1480), + [anon_sym___vectorcall] = ACTIONS(1480), + [anon_sym_LBRACE] = ACTIONS(1482), + [anon_sym_signed] = ACTIONS(1480), + [anon_sym_unsigned] = ACTIONS(1480), + [anon_sym_long] = ACTIONS(1480), + [anon_sym_short] = ACTIONS(1480), + [anon_sym_static] = ACTIONS(1480), + [anon_sym_auto] = ACTIONS(1480), + [anon_sym_register] = ACTIONS(1480), + [anon_sym_inline] = ACTIONS(1480), + [anon_sym___inline] = ACTIONS(1480), + [anon_sym___inline__] = ACTIONS(1480), + [anon_sym___forceinline] = ACTIONS(1480), + [anon_sym_thread_local] = ACTIONS(1480), + [anon_sym___thread] = ACTIONS(1480), + [anon_sym_const] = ACTIONS(1480), + [anon_sym_constexpr] = ACTIONS(1480), + [anon_sym_volatile] = ACTIONS(1480), + [anon_sym_restrict] = ACTIONS(1480), + [anon_sym___restrict__] = ACTIONS(1480), + [anon_sym__Atomic] = ACTIONS(1480), + [anon_sym__Noreturn] = ACTIONS(1480), + [anon_sym_noreturn] = ACTIONS(1480), + [sym_primitive_type] = ACTIONS(1480), + [anon_sym_enum] = ACTIONS(1480), + [anon_sym_struct] = ACTIONS(1480), + [anon_sym_union] = ACTIONS(1480), + [anon_sym_if] = ACTIONS(1480), + [anon_sym_switch] = ACTIONS(1480), + [anon_sym_case] = ACTIONS(1480), + [anon_sym_default] = ACTIONS(1480), + [anon_sym_while] = ACTIONS(1480), + [anon_sym_do] = ACTIONS(1480), + [anon_sym_for] = ACTIONS(1480), + [anon_sym_return] = ACTIONS(1480), + [anon_sym_break] = ACTIONS(1480), + [anon_sym_continue] = ACTIONS(1480), + [anon_sym_goto] = ACTIONS(1480), + [anon_sym_DASH_DASH] = ACTIONS(1482), + [anon_sym_PLUS_PLUS] = ACTIONS(1482), + [anon_sym_sizeof] = ACTIONS(1480), + [anon_sym___alignof__] = ACTIONS(1480), + [anon_sym___alignof] = ACTIONS(1480), + [anon_sym__alignof] = ACTIONS(1480), + [anon_sym_alignof] = ACTIONS(1480), + [anon_sym__Alignof] = ACTIONS(1480), + [anon_sym_offsetof] = ACTIONS(1480), + [anon_sym__Generic] = ACTIONS(1480), + [anon_sym_asm] = ACTIONS(1480), + [anon_sym___asm__] = ACTIONS(1480), + [sym_number_literal] = ACTIONS(1482), + [anon_sym_L_SQUOTE] = ACTIONS(1482), + [anon_sym_u_SQUOTE] = ACTIONS(1482), + [anon_sym_U_SQUOTE] = ACTIONS(1482), + [anon_sym_u8_SQUOTE] = ACTIONS(1482), + [anon_sym_SQUOTE] = ACTIONS(1482), + [anon_sym_L_DQUOTE] = ACTIONS(1482), + [anon_sym_u_DQUOTE] = ACTIONS(1482), + [anon_sym_U_DQUOTE] = ACTIONS(1482), + [anon_sym_u8_DQUOTE] = ACTIONS(1482), + [anon_sym_DQUOTE] = ACTIONS(1482), + [sym_true] = ACTIONS(1480), + [sym_false] = ACTIONS(1480), + [anon_sym_NULL] = ACTIONS(1480), + [anon_sym_nullptr] = ACTIONS(1480), + [sym_comment] = ACTIONS(3), + }, + [430] = { + [ts_builtin_sym_end] = ACTIONS(1486), + [sym_identifier] = ACTIONS(1484), + [aux_sym_preproc_include_token1] = ACTIONS(1484), + [aux_sym_preproc_def_token1] = ACTIONS(1484), + [aux_sym_preproc_if_token1] = ACTIONS(1484), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1484), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1484), + [sym_preproc_directive] = ACTIONS(1484), + [anon_sym_LPAREN2] = ACTIONS(1486), + [anon_sym_BANG] = ACTIONS(1486), + [anon_sym_TILDE] = ACTIONS(1486), + [anon_sym_DASH] = ACTIONS(1484), + [anon_sym_PLUS] = ACTIONS(1484), + [anon_sym_STAR] = ACTIONS(1486), + [anon_sym_AMP] = ACTIONS(1486), + [anon_sym___extension__] = ACTIONS(1484), + [anon_sym_typedef] = ACTIONS(1484), + [anon_sym_extern] = ACTIONS(1484), + [anon_sym___attribute__] = ACTIONS(1484), + [anon_sym___scanf] = ACTIONS(1484), + [anon_sym___printf] = ACTIONS(1484), + [anon_sym___read_mostly] = ACTIONS(1484), + [anon_sym___must_hold] = ACTIONS(1484), + [anon_sym___ro_after_init] = ACTIONS(1484), + [anon_sym___init] = ACTIONS(1484), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1486), + [anon_sym___declspec] = ACTIONS(1484), + [anon_sym___cdecl] = ACTIONS(1484), + [anon_sym___clrcall] = ACTIONS(1484), + [anon_sym___stdcall] = ACTIONS(1484), + [anon_sym___fastcall] = ACTIONS(1484), + [anon_sym___thiscall] = ACTIONS(1484), + [anon_sym___vectorcall] = ACTIONS(1484), + [anon_sym_LBRACE] = ACTIONS(1486), + [anon_sym_signed] = ACTIONS(1484), + [anon_sym_unsigned] = ACTIONS(1484), + [anon_sym_long] = ACTIONS(1484), + [anon_sym_short] = ACTIONS(1484), + [anon_sym_static] = ACTIONS(1484), + [anon_sym_auto] = ACTIONS(1484), + [anon_sym_register] = ACTIONS(1484), + [anon_sym_inline] = ACTIONS(1484), + [anon_sym___inline] = ACTIONS(1484), + [anon_sym___inline__] = ACTIONS(1484), + [anon_sym___forceinline] = ACTIONS(1484), + [anon_sym_thread_local] = ACTIONS(1484), + [anon_sym___thread] = ACTIONS(1484), + [anon_sym_const] = ACTIONS(1484), + [anon_sym_constexpr] = ACTIONS(1484), + [anon_sym_volatile] = ACTIONS(1484), + [anon_sym_restrict] = ACTIONS(1484), + [anon_sym___restrict__] = ACTIONS(1484), + [anon_sym__Atomic] = ACTIONS(1484), + [anon_sym__Noreturn] = ACTIONS(1484), + [anon_sym_noreturn] = ACTIONS(1484), + [sym_primitive_type] = ACTIONS(1484), + [anon_sym_enum] = ACTIONS(1484), + [anon_sym_struct] = ACTIONS(1484), + [anon_sym_union] = ACTIONS(1484), + [anon_sym_if] = ACTIONS(1484), + [anon_sym_switch] = ACTIONS(1484), + [anon_sym_case] = ACTIONS(1484), + [anon_sym_default] = ACTIONS(1484), + [anon_sym_while] = ACTIONS(1484), + [anon_sym_do] = ACTIONS(1484), + [anon_sym_for] = ACTIONS(1484), + [anon_sym_return] = ACTIONS(1484), + [anon_sym_break] = ACTIONS(1484), + [anon_sym_continue] = ACTIONS(1484), + [anon_sym_goto] = ACTIONS(1484), + [anon_sym_DASH_DASH] = ACTIONS(1486), + [anon_sym_PLUS_PLUS] = ACTIONS(1486), + [anon_sym_sizeof] = ACTIONS(1484), + [anon_sym___alignof__] = ACTIONS(1484), + [anon_sym___alignof] = ACTIONS(1484), + [anon_sym__alignof] = ACTIONS(1484), + [anon_sym_alignof] = ACTIONS(1484), + [anon_sym__Alignof] = ACTIONS(1484), + [anon_sym_offsetof] = ACTIONS(1484), + [anon_sym__Generic] = ACTIONS(1484), + [anon_sym_asm] = ACTIONS(1484), + [anon_sym___asm__] = ACTIONS(1484), + [sym_number_literal] = ACTIONS(1486), + [anon_sym_L_SQUOTE] = ACTIONS(1486), + [anon_sym_u_SQUOTE] = ACTIONS(1486), + [anon_sym_U_SQUOTE] = ACTIONS(1486), + [anon_sym_u8_SQUOTE] = ACTIONS(1486), + [anon_sym_SQUOTE] = ACTIONS(1486), + [anon_sym_L_DQUOTE] = ACTIONS(1486), + [anon_sym_u_DQUOTE] = ACTIONS(1486), + [anon_sym_U_DQUOTE] = ACTIONS(1486), + [anon_sym_u8_DQUOTE] = ACTIONS(1486), + [anon_sym_DQUOTE] = ACTIONS(1486), + [sym_true] = ACTIONS(1484), + [sym_false] = ACTIONS(1484), + [anon_sym_NULL] = ACTIONS(1484), + [anon_sym_nullptr] = ACTIONS(1484), + [sym_comment] = ACTIONS(3), + }, + [431] = { + [ts_builtin_sym_end] = ACTIONS(1514), + [sym_identifier] = ACTIONS(1512), + [aux_sym_preproc_include_token1] = ACTIONS(1512), + [aux_sym_preproc_def_token1] = ACTIONS(1512), + [aux_sym_preproc_if_token1] = ACTIONS(1512), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1512), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1512), + [sym_preproc_directive] = ACTIONS(1512), + [anon_sym_LPAREN2] = ACTIONS(1514), + [anon_sym_BANG] = ACTIONS(1514), + [anon_sym_TILDE] = ACTIONS(1514), + [anon_sym_DASH] = ACTIONS(1512), + [anon_sym_PLUS] = ACTIONS(1512), + [anon_sym_STAR] = ACTIONS(1514), + [anon_sym_AMP] = ACTIONS(1514), + [anon_sym___extension__] = ACTIONS(1512), + [anon_sym_typedef] = ACTIONS(1512), + [anon_sym_extern] = ACTIONS(1512), + [anon_sym___attribute__] = ACTIONS(1512), + [anon_sym___scanf] = ACTIONS(1512), + [anon_sym___printf] = ACTIONS(1512), + [anon_sym___read_mostly] = ACTIONS(1512), + [anon_sym___must_hold] = ACTIONS(1512), + [anon_sym___ro_after_init] = ACTIONS(1512), + [anon_sym___init] = ACTIONS(1512), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1514), + [anon_sym___declspec] = ACTIONS(1512), + [anon_sym___cdecl] = ACTIONS(1512), + [anon_sym___clrcall] = ACTIONS(1512), + [anon_sym___stdcall] = ACTIONS(1512), + [anon_sym___fastcall] = ACTIONS(1512), + [anon_sym___thiscall] = ACTIONS(1512), + [anon_sym___vectorcall] = ACTIONS(1512), + [anon_sym_LBRACE] = ACTIONS(1514), + [anon_sym_signed] = ACTIONS(1512), + [anon_sym_unsigned] = ACTIONS(1512), + [anon_sym_long] = ACTIONS(1512), + [anon_sym_short] = ACTIONS(1512), + [anon_sym_static] = ACTIONS(1512), + [anon_sym_auto] = ACTIONS(1512), + [anon_sym_register] = ACTIONS(1512), + [anon_sym_inline] = ACTIONS(1512), + [anon_sym___inline] = ACTIONS(1512), + [anon_sym___inline__] = ACTIONS(1512), + [anon_sym___forceinline] = ACTIONS(1512), + [anon_sym_thread_local] = ACTIONS(1512), + [anon_sym___thread] = ACTIONS(1512), + [anon_sym_const] = ACTIONS(1512), + [anon_sym_constexpr] = ACTIONS(1512), + [anon_sym_volatile] = ACTIONS(1512), + [anon_sym_restrict] = ACTIONS(1512), + [anon_sym___restrict__] = ACTIONS(1512), + [anon_sym__Atomic] = ACTIONS(1512), + [anon_sym__Noreturn] = ACTIONS(1512), + [anon_sym_noreturn] = ACTIONS(1512), + [sym_primitive_type] = ACTIONS(1512), + [anon_sym_enum] = ACTIONS(1512), + [anon_sym_struct] = ACTIONS(1512), + [anon_sym_union] = ACTIONS(1512), + [anon_sym_if] = ACTIONS(1512), + [anon_sym_switch] = ACTIONS(1512), + [anon_sym_case] = ACTIONS(1512), + [anon_sym_default] = ACTIONS(1512), + [anon_sym_while] = ACTIONS(1512), + [anon_sym_do] = ACTIONS(1512), + [anon_sym_for] = ACTIONS(1512), + [anon_sym_return] = ACTIONS(1512), + [anon_sym_break] = ACTIONS(1512), + [anon_sym_continue] = ACTIONS(1512), + [anon_sym_goto] = ACTIONS(1512), + [anon_sym_DASH_DASH] = ACTIONS(1514), + [anon_sym_PLUS_PLUS] = ACTIONS(1514), + [anon_sym_sizeof] = ACTIONS(1512), + [anon_sym___alignof__] = ACTIONS(1512), + [anon_sym___alignof] = ACTIONS(1512), + [anon_sym__alignof] = ACTIONS(1512), + [anon_sym_alignof] = ACTIONS(1512), + [anon_sym__Alignof] = ACTIONS(1512), + [anon_sym_offsetof] = ACTIONS(1512), + [anon_sym__Generic] = ACTIONS(1512), + [anon_sym_asm] = ACTIONS(1512), + [anon_sym___asm__] = ACTIONS(1512), + [sym_number_literal] = ACTIONS(1514), + [anon_sym_L_SQUOTE] = ACTIONS(1514), + [anon_sym_u_SQUOTE] = ACTIONS(1514), + [anon_sym_U_SQUOTE] = ACTIONS(1514), + [anon_sym_u8_SQUOTE] = ACTIONS(1514), + [anon_sym_SQUOTE] = ACTIONS(1514), + [anon_sym_L_DQUOTE] = ACTIONS(1514), + [anon_sym_u_DQUOTE] = ACTIONS(1514), + [anon_sym_U_DQUOTE] = ACTIONS(1514), + [anon_sym_u8_DQUOTE] = ACTIONS(1514), + [anon_sym_DQUOTE] = ACTIONS(1514), + [sym_true] = ACTIONS(1512), + [sym_false] = ACTIONS(1512), + [anon_sym_NULL] = ACTIONS(1512), + [anon_sym_nullptr] = ACTIONS(1512), + [sym_comment] = ACTIONS(3), + }, + [432] = { + [sym__expression] = STATE(835), + [sym__expression_not_binary] = STATE(809), + [sym_conditional_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_pointer_expression] = STATE(809), + [sym_unary_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_update_expression] = STATE(809), + [sym_cast_expression] = STATE(809), + [sym_sizeof_expression] = STATE(809), + [sym_alignof_expression] = STATE(809), + [sym_offsetof_expression] = STATE(809), + [sym_generic_expression] = STATE(809), + [sym_subscript_expression] = STATE(809), + [sym_call_expression] = STATE(809), + [sym_gnu_asm_expression] = STATE(809), + [sym_field_expression] = STATE(809), + [sym_compound_literal_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(809), + [sym_initializer_list] = STATE(811), + [sym_char_literal] = STATE(809), + [sym_concatenated_string] = STATE(809), + [sym_string_literal] = STATE(573), + [sym_null] = STATE(809), + [sym_identifier] = ACTIONS(1544), + [anon_sym_COMMA] = ACTIONS(1538), + [aux_sym_preproc_if_token2] = ACTIONS(1538), + [aux_sym_preproc_else_token1] = ACTIONS(1538), + [aux_sym_preproc_elif_token1] = ACTIONS(1544), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1538), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1538), + [anon_sym_LPAREN2] = ACTIONS(1538), + [anon_sym_BANG] = ACTIONS(1558), + [anon_sym_TILDE] = ACTIONS(1560), + [anon_sym_DASH] = ACTIONS(1544), + [anon_sym_PLUS] = ACTIONS(1544), + [anon_sym_STAR] = ACTIONS(1544), + [anon_sym_SLASH] = ACTIONS(1544), + [anon_sym_PERCENT] = ACTIONS(1544), + [anon_sym_PIPE_PIPE] = ACTIONS(1538), + [anon_sym_AMP_AMP] = ACTIONS(1538), + [anon_sym_PIPE] = ACTIONS(1544), + [anon_sym_CARET] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(1544), + [anon_sym_EQ_EQ] = ACTIONS(1538), + [anon_sym_BANG_EQ] = ACTIONS(1538), + [anon_sym_GT] = ACTIONS(1544), + [anon_sym_GT_EQ] = ACTIONS(1538), + [anon_sym_LT_EQ] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(1544), + [anon_sym_LT_LT] = ACTIONS(1544), + [anon_sym_GT_GT] = ACTIONS(1544), + [anon_sym_LBRACE] = ACTIONS(1546), + [anon_sym_LBRACK] = ACTIONS(1538), + [anon_sym_EQ] = ACTIONS(1544), + [anon_sym_QMARK] = ACTIONS(1538), + [anon_sym_STAR_EQ] = ACTIONS(1538), + [anon_sym_SLASH_EQ] = ACTIONS(1538), + [anon_sym_PERCENT_EQ] = ACTIONS(1538), + [anon_sym_PLUS_EQ] = ACTIONS(1538), + [anon_sym_DASH_EQ] = ACTIONS(1538), + [anon_sym_LT_LT_EQ] = ACTIONS(1538), + [anon_sym_GT_GT_EQ] = ACTIONS(1538), + [anon_sym_AMP_EQ] = ACTIONS(1538), + [anon_sym_CARET_EQ] = ACTIONS(1538), + [anon_sym_PIPE_EQ] = ACTIONS(1538), + [anon_sym_DASH_DASH] = ACTIONS(1538), + [anon_sym_PLUS_PLUS] = ACTIONS(1538), + [anon_sym_sizeof] = ACTIONS(1562), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [anon_sym_DOT] = ACTIONS(1544), + [anon_sym_DASH_GT] = ACTIONS(1538), + [sym_number_literal] = ACTIONS(161), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(163), + [sym_false] = ACTIONS(163), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + }, + [433] = { + [sym_attribute_declaration] = STATE(478), + [sym_compound_statement] = STATE(342), + [sym_attributed_statement] = STATE(342), + [sym_labeled_statement] = STATE(342), + [sym_expression_statement] = STATE(342), + [sym_if_statement] = STATE(342), + [sym_switch_statement] = STATE(342), + [sym_case_statement] = STATE(342), + [sym_while_statement] = STATE(342), + [sym_do_statement] = STATE(342), + [sym_for_statement] = STATE(342), + [sym_return_statement] = STATE(342), + [sym_break_statement] = STATE(342), + [sym_continue_statement] = STATE(342), + [sym_goto_statement] = STATE(342), + [sym_seh_try_statement] = STATE(342), + [sym_seh_leave_statement] = STATE(342), + [sym__expression] = STATE(1272), + [sym__expression_not_binary] = STATE(809), + [sym_comma_expression] = STATE(2198), + [sym_conditional_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_pointer_expression] = STATE(877), + [sym_unary_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_update_expression] = STATE(809), + [sym_cast_expression] = STATE(809), + [sym_sizeof_expression] = STATE(809), + [sym_alignof_expression] = STATE(809), + [sym_offsetof_expression] = STATE(809), + [sym_generic_expression] = STATE(809), + [sym_subscript_expression] = STATE(877), + [sym_call_expression] = STATE(877), + [sym_gnu_asm_expression] = STATE(809), + [sym_field_expression] = STATE(877), + [sym_compound_literal_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(877), + [sym_char_literal] = STATE(809), + [sym_concatenated_string] = STATE(809), + [sym_string_literal] = STATE(573), + [sym_null] = STATE(809), + [aux_sym_attributed_declarator_repeat1] = STATE(478), + [sym_identifier] = ACTIONS(1564), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -63697,95 +66674,95 @@ 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(496), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1573), - [anon_sym_LBRACE] = ACTIONS(504), - [anon_sym_if] = ACTIONS(508), - [anon_sym_switch] = ACTIONS(510), - [anon_sym_case] = ACTIONS(512), - [anon_sym_default] = ACTIONS(514), - [anon_sym_while] = ACTIONS(516), - [anon_sym_do] = ACTIONS(518), - [anon_sym_for] = ACTIONS(520), - [anon_sym_return] = ACTIONS(522), - [anon_sym_break] = ACTIONS(524), - [anon_sym_continue] = ACTIONS(526), - [anon_sym_goto] = ACTIONS(528), - [anon_sym___try] = ACTIONS(530), - [anon_sym___leave] = ACTIONS(532), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(83), - [anon_sym___alignof__] = ACTIONS(85), - [anon_sym___alignof] = ACTIONS(85), - [anon_sym__alignof] = ACTIONS(85), - [anon_sym_alignof] = ACTIONS(85), - [anon_sym__Alignof] = ACTIONS(85), - [anon_sym_offsetof] = ACTIONS(87), - [anon_sym__Generic] = ACTIONS(89), - [anon_sym_asm] = ACTIONS(91), - [anon_sym___asm__] = ACTIONS(91), - [sym_number_literal] = ACTIONS(159), - [anon_sym_L_SQUOTE] = ACTIONS(95), - [anon_sym_u_SQUOTE] = ACTIONS(95), - [anon_sym_U_SQUOTE] = ACTIONS(95), - [anon_sym_u8_SQUOTE] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(95), - [anon_sym_L_DQUOTE] = ACTIONS(97), - [anon_sym_u_DQUOTE] = ACTIONS(97), - [anon_sym_U_DQUOTE] = ACTIONS(97), - [anon_sym_u8_DQUOTE] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(97), - [sym_true] = ACTIONS(161), - [sym_false] = ACTIONS(161), - [anon_sym_NULL] = ACTIONS(101), - [anon_sym_nullptr] = ACTIONS(101), + [anon_sym_SEMI] = ACTIONS(623), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1566), + [anon_sym_LBRACE] = ACTIONS(631), + [anon_sym_if] = ACTIONS(635), + [anon_sym_switch] = ACTIONS(637), + [anon_sym_case] = ACTIONS(639), + [anon_sym_default] = ACTIONS(641), + [anon_sym_while] = ACTIONS(643), + [anon_sym_do] = ACTIONS(645), + [anon_sym_for] = ACTIONS(647), + [anon_sym_return] = ACTIONS(649), + [anon_sym_break] = ACTIONS(651), + [anon_sym_continue] = ACTIONS(653), + [anon_sym_goto] = ACTIONS(655), + [anon_sym___try] = ACTIONS(657), + [anon_sym___leave] = ACTIONS(659), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [sym_number_literal] = ACTIONS(161), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(163), + [sym_false] = ACTIONS(163), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [424] = { - [sym_attribute_declaration] = STATE(449), - [sym_compound_statement] = STATE(288), - [sym_attributed_statement] = STATE(288), - [sym_labeled_statement] = STATE(288), - [sym_expression_statement] = STATE(288), - [sym_if_statement] = STATE(288), - [sym_switch_statement] = STATE(288), - [sym_case_statement] = STATE(288), - [sym_while_statement] = STATE(288), - [sym_do_statement] = STATE(288), - [sym_for_statement] = STATE(288), - [sym_return_statement] = STATE(288), - [sym_break_statement] = STATE(288), - [sym_continue_statement] = STATE(288), - [sym_goto_statement] = STATE(288), - [sym_seh_try_statement] = STATE(288), - [sym_seh_leave_statement] = STATE(288), - [sym__expression] = STATE(1227), - [sym__expression_not_binary] = STATE(792), - [sym_comma_expression] = STATE(2090), - [sym_conditional_expression] = STATE(792), - [sym_assignment_expression] = STATE(792), - [sym_pointer_expression] = STATE(901), - [sym_unary_expression] = STATE(792), - [sym_binary_expression] = STATE(792), - [sym_update_expression] = STATE(792), - [sym_cast_expression] = STATE(792), - [sym_sizeof_expression] = STATE(792), - [sym_alignof_expression] = STATE(792), - [sym_offsetof_expression] = STATE(792), - [sym_generic_expression] = STATE(792), - [sym_subscript_expression] = STATE(901), - [sym_call_expression] = STATE(901), - [sym_gnu_asm_expression] = STATE(792), - [sym_field_expression] = STATE(901), - [sym_compound_literal_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(901), - [sym_char_literal] = STATE(792), - [sym_concatenated_string] = STATE(792), - [sym_string_literal] = STATE(675), - [sym_null] = STATE(792), - [aux_sym_attributed_declarator_repeat1] = STATE(449), - [sym_identifier] = ACTIONS(1571), + [434] = { + [sym_attribute_declaration] = STATE(465), + [sym_compound_statement] = STATE(236), + [sym_attributed_statement] = STATE(235), + [sym_labeled_statement] = STATE(234), + [sym_expression_statement] = STATE(233), + [sym_if_statement] = STATE(333), + [sym_switch_statement] = STATE(243), + [sym_case_statement] = STATE(245), + [sym_while_statement] = STATE(247), + [sym_do_statement] = STATE(248), + [sym_for_statement] = STATE(252), + [sym_return_statement] = STATE(254), + [sym_break_statement] = STATE(258), + [sym_continue_statement] = STATE(259), + [sym_goto_statement] = STATE(268), + [sym_seh_try_statement] = STATE(269), + [sym_seh_leave_statement] = STATE(279), + [sym__expression] = STATE(1272), + [sym__expression_not_binary] = STATE(809), + [sym_comma_expression] = STATE(2198), + [sym_conditional_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_pointer_expression] = STATE(877), + [sym_unary_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_update_expression] = STATE(809), + [sym_cast_expression] = STATE(809), + [sym_sizeof_expression] = STATE(809), + [sym_alignof_expression] = STATE(809), + [sym_offsetof_expression] = STATE(809), + [sym_generic_expression] = STATE(809), + [sym_subscript_expression] = STATE(877), + [sym_call_expression] = STATE(877), + [sym_gnu_asm_expression] = STATE(809), + [sym_field_expression] = STATE(877), + [sym_compound_literal_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(877), + [sym_char_literal] = STATE(809), + [sym_concatenated_string] = STATE(809), + [sym_string_literal] = STATE(573), + [sym_null] = STATE(809), + [aux_sym_attributed_declarator_repeat1] = STATE(465), + [sym_identifier] = ACTIONS(1568), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -63793,191 +66770,95 @@ 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(1110), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1573), - [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_if] = ACTIONS(59), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_case] = ACTIONS(63), - [anon_sym_default] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_do] = ACTIONS(69), - [anon_sym_for] = ACTIONS(71), - [anon_sym_return] = ACTIONS(73), - [anon_sym_break] = ACTIONS(75), - [anon_sym_continue] = ACTIONS(77), - [anon_sym_goto] = ACTIONS(79), - [anon_sym___try] = ACTIONS(1112), - [anon_sym___leave] = ACTIONS(1114), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(83), - [anon_sym___alignof__] = ACTIONS(85), - [anon_sym___alignof] = ACTIONS(85), - [anon_sym__alignof] = ACTIONS(85), - [anon_sym_alignof] = ACTIONS(85), - [anon_sym__Alignof] = ACTIONS(85), - [anon_sym_offsetof] = ACTIONS(87), - [anon_sym__Generic] = ACTIONS(89), - [anon_sym_asm] = ACTIONS(91), - [anon_sym___asm__] = ACTIONS(91), - [sym_number_literal] = ACTIONS(159), - [anon_sym_L_SQUOTE] = ACTIONS(95), - [anon_sym_u_SQUOTE] = ACTIONS(95), - [anon_sym_U_SQUOTE] = ACTIONS(95), - [anon_sym_u8_SQUOTE] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(95), - [anon_sym_L_DQUOTE] = ACTIONS(97), - [anon_sym_u_DQUOTE] = ACTIONS(97), - [anon_sym_U_DQUOTE] = ACTIONS(97), - [anon_sym_u8_DQUOTE] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(97), - [sym_true] = ACTIONS(161), - [sym_false] = ACTIONS(161), - [anon_sym_NULL] = ACTIONS(101), - [anon_sym_nullptr] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - }, - [425] = { - [ts_builtin_sym_end] = ACTIONS(1423), - [sym_identifier] = ACTIONS(1421), - [aux_sym_preproc_include_token1] = ACTIONS(1421), - [aux_sym_preproc_def_token1] = ACTIONS(1421), - [aux_sym_preproc_if_token1] = ACTIONS(1421), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1421), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1421), - [sym_preproc_directive] = ACTIONS(1421), - [anon_sym_LPAREN2] = ACTIONS(1423), - [anon_sym_BANG] = ACTIONS(1423), - [anon_sym_TILDE] = ACTIONS(1423), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_PLUS] = ACTIONS(1421), - [anon_sym_STAR] = ACTIONS(1423), - [anon_sym_AMP] = ACTIONS(1423), - [anon_sym___extension__] = ACTIONS(1421), - [anon_sym_typedef] = ACTIONS(1421), - [anon_sym_extern] = ACTIONS(1421), - [anon_sym___attribute__] = ACTIONS(1421), - [anon_sym___scanf] = ACTIONS(1421), - [anon_sym___printf] = ACTIONS(1421), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1423), - [anon_sym___declspec] = ACTIONS(1421), - [anon_sym___cdecl] = ACTIONS(1421), - [anon_sym___clrcall] = ACTIONS(1421), - [anon_sym___stdcall] = ACTIONS(1421), - [anon_sym___fastcall] = ACTIONS(1421), - [anon_sym___thiscall] = ACTIONS(1421), - [anon_sym___vectorcall] = ACTIONS(1421), - [anon_sym_LBRACE] = ACTIONS(1423), - [anon_sym_signed] = ACTIONS(1421), - [anon_sym_unsigned] = ACTIONS(1421), - [anon_sym_long] = ACTIONS(1421), - [anon_sym_short] = ACTIONS(1421), - [anon_sym_static] = ACTIONS(1421), - [anon_sym_auto] = ACTIONS(1421), - [anon_sym_register] = ACTIONS(1421), - [anon_sym_inline] = ACTIONS(1421), - [anon_sym___inline] = ACTIONS(1421), - [anon_sym___inline__] = ACTIONS(1421), - [anon_sym___forceinline] = ACTIONS(1421), - [anon_sym_thread_local] = ACTIONS(1421), - [anon_sym___thread] = ACTIONS(1421), - [anon_sym_const] = ACTIONS(1421), - [anon_sym_constexpr] = ACTIONS(1421), - [anon_sym_volatile] = ACTIONS(1421), - [anon_sym_restrict] = ACTIONS(1421), - [anon_sym___restrict__] = ACTIONS(1421), - [anon_sym__Atomic] = ACTIONS(1421), - [anon_sym__Noreturn] = ACTIONS(1421), - [anon_sym_noreturn] = ACTIONS(1421), - [sym_primitive_type] = ACTIONS(1421), - [anon_sym_enum] = ACTIONS(1421), - [anon_sym_struct] = ACTIONS(1421), - [anon_sym_union] = ACTIONS(1421), - [anon_sym_if] = ACTIONS(1421), - [anon_sym_switch] = ACTIONS(1421), - [anon_sym_case] = ACTIONS(1421), - [anon_sym_default] = ACTIONS(1421), - [anon_sym_while] = ACTIONS(1421), - [anon_sym_do] = ACTIONS(1421), - [anon_sym_for] = ACTIONS(1421), - [anon_sym_return] = ACTIONS(1421), - [anon_sym_break] = ACTIONS(1421), - [anon_sym_continue] = ACTIONS(1421), - [anon_sym_goto] = ACTIONS(1421), - [anon_sym_DASH_DASH] = ACTIONS(1423), - [anon_sym_PLUS_PLUS] = ACTIONS(1423), - [anon_sym_sizeof] = ACTIONS(1421), - [anon_sym___alignof__] = ACTIONS(1421), - [anon_sym___alignof] = ACTIONS(1421), - [anon_sym__alignof] = ACTIONS(1421), - [anon_sym_alignof] = ACTIONS(1421), - [anon_sym__Alignof] = ACTIONS(1421), - [anon_sym_offsetof] = ACTIONS(1421), - [anon_sym__Generic] = ACTIONS(1421), - [anon_sym_asm] = ACTIONS(1421), - [anon_sym___asm__] = ACTIONS(1421), - [sym_number_literal] = ACTIONS(1423), - [anon_sym_L_SQUOTE] = ACTIONS(1423), - [anon_sym_u_SQUOTE] = ACTIONS(1423), - [anon_sym_U_SQUOTE] = ACTIONS(1423), - [anon_sym_u8_SQUOTE] = ACTIONS(1423), - [anon_sym_SQUOTE] = ACTIONS(1423), - [anon_sym_L_DQUOTE] = ACTIONS(1423), - [anon_sym_u_DQUOTE] = ACTIONS(1423), - [anon_sym_U_DQUOTE] = ACTIONS(1423), - [anon_sym_u8_DQUOTE] = ACTIONS(1423), - [anon_sym_DQUOTE] = ACTIONS(1423), - [sym_true] = ACTIONS(1421), - [sym_false] = ACTIONS(1421), - [anon_sym_NULL] = ACTIONS(1421), - [anon_sym_nullptr] = ACTIONS(1421), + [anon_sym_SEMI] = ACTIONS(623), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1566), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_if] = ACTIONS(1285), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_case] = ACTIONS(1570), + [anon_sym_default] = ACTIONS(1572), + [anon_sym_while] = ACTIONS(1287), + [anon_sym_do] = ACTIONS(71), + [anon_sym_for] = ACTIONS(1289), + [anon_sym_return] = ACTIONS(75), + [anon_sym_break] = ACTIONS(77), + [anon_sym_continue] = ACTIONS(79), + [anon_sym_goto] = ACTIONS(81), + [anon_sym___try] = ACTIONS(1291), + [anon_sym___leave] = ACTIONS(659), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [sym_number_literal] = ACTIONS(161), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(163), + [sym_false] = ACTIONS(163), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [426] = { - [sym_attribute_declaration] = STATE(445), - [sym_compound_statement] = STATE(317), - [sym_attributed_statement] = STATE(316), - [sym_labeled_statement] = STATE(315), - [sym_expression_statement] = STATE(314), - [sym_if_statement] = STATE(313), - [sym_switch_statement] = STATE(311), - [sym_case_statement] = STATE(310), - [sym_while_statement] = STATE(309), - [sym_do_statement] = STATE(308), - [sym_for_statement] = STATE(307), - [sym_return_statement] = STATE(231), - [sym_break_statement] = STATE(305), - [sym_continue_statement] = STATE(304), - [sym_goto_statement] = STATE(303), - [sym_seh_try_statement] = STATE(302), - [sym_seh_leave_statement] = STATE(301), - [sym__expression] = STATE(1221), - [sym__expression_not_binary] = STATE(792), - [sym_comma_expression] = STATE(2106), - [sym_conditional_expression] = STATE(792), - [sym_assignment_expression] = STATE(792), - [sym_pointer_expression] = STATE(901), - [sym_unary_expression] = STATE(792), - [sym_binary_expression] = STATE(792), - [sym_update_expression] = STATE(792), - [sym_cast_expression] = STATE(792), - [sym_sizeof_expression] = STATE(792), - [sym_alignof_expression] = STATE(792), - [sym_offsetof_expression] = STATE(792), - [sym_generic_expression] = STATE(792), - [sym_subscript_expression] = STATE(901), - [sym_call_expression] = STATE(901), - [sym_gnu_asm_expression] = STATE(792), - [sym_field_expression] = STATE(901), - [sym_compound_literal_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(901), - [sym_char_literal] = STATE(792), - [sym_concatenated_string] = STATE(792), - [sym_string_literal] = STATE(675), - [sym_null] = STATE(792), - [aux_sym_attributed_declarator_repeat1] = STATE(445), - [sym_identifier] = ACTIONS(1683), + [435] = { + [sym_attribute_declaration] = STATE(454), + [sym_compound_statement] = STATE(129), + [sym_attributed_statement] = STATE(129), + [sym_labeled_statement] = STATE(129), + [sym_expression_statement] = STATE(129), + [sym_if_statement] = STATE(129), + [sym_switch_statement] = STATE(129), + [sym_case_statement] = STATE(129), + [sym_while_statement] = STATE(129), + [sym_do_statement] = STATE(129), + [sym_for_statement] = STATE(129), + [sym_return_statement] = STATE(129), + [sym_break_statement] = STATE(129), + [sym_continue_statement] = STATE(129), + [sym_goto_statement] = STATE(129), + [sym_seh_try_statement] = STATE(129), + [sym_seh_leave_statement] = STATE(129), + [sym__expression] = STATE(1239), + [sym__expression_not_binary] = STATE(809), + [sym_comma_expression] = STATE(2249), + [sym_conditional_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_pointer_expression] = STATE(877), + [sym_unary_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_update_expression] = STATE(809), + [sym_cast_expression] = STATE(809), + [sym_sizeof_expression] = STATE(809), + [sym_alignof_expression] = STATE(809), + [sym_offsetof_expression] = STATE(809), + [sym_generic_expression] = STATE(809), + [sym_subscript_expression] = STATE(877), + [sym_call_expression] = STATE(877), + [sym_gnu_asm_expression] = STATE(809), + [sym_field_expression] = STATE(877), + [sym_compound_literal_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(877), + [sym_char_literal] = STATE(809), + [sym_concatenated_string] = STATE(809), + [sym_string_literal] = STATE(573), + [sym_null] = STATE(809), + [aux_sym_attributed_declarator_repeat1] = STATE(454), + [sym_identifier] = ACTIONS(1574), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -63985,191 +66866,95 @@ 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(496), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1573), - [anon_sym_LBRACE] = ACTIONS(504), - [anon_sym_if] = ACTIONS(508), - [anon_sym_switch] = ACTIONS(510), - [anon_sym_case] = ACTIONS(512), - [anon_sym_default] = ACTIONS(514), - [anon_sym_while] = ACTIONS(516), - [anon_sym_do] = ACTIONS(518), - [anon_sym_for] = ACTIONS(520), - [anon_sym_return] = ACTIONS(522), - [anon_sym_break] = ACTIONS(524), - [anon_sym_continue] = ACTIONS(526), - [anon_sym_goto] = ACTIONS(528), - [anon_sym___try] = ACTIONS(530), - [anon_sym___leave] = ACTIONS(532), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(83), - [anon_sym___alignof__] = ACTIONS(85), - [anon_sym___alignof] = ACTIONS(85), - [anon_sym__alignof] = ACTIONS(85), - [anon_sym_alignof] = ACTIONS(85), - [anon_sym__Alignof] = ACTIONS(85), - [anon_sym_offsetof] = ACTIONS(87), - [anon_sym__Generic] = ACTIONS(89), - [anon_sym_asm] = ACTIONS(91), - [anon_sym___asm__] = ACTIONS(91), - [sym_number_literal] = ACTIONS(159), - [anon_sym_L_SQUOTE] = ACTIONS(95), - [anon_sym_u_SQUOTE] = ACTIONS(95), - [anon_sym_U_SQUOTE] = ACTIONS(95), - [anon_sym_u8_SQUOTE] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(95), - [anon_sym_L_DQUOTE] = ACTIONS(97), - [anon_sym_u_DQUOTE] = ACTIONS(97), - [anon_sym_U_DQUOTE] = ACTIONS(97), - [anon_sym_u8_DQUOTE] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(97), - [sym_true] = ACTIONS(161), - [sym_false] = ACTIONS(161), - [anon_sym_NULL] = ACTIONS(101), - [anon_sym_nullptr] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - }, - [427] = { - [ts_builtin_sym_end] = ACTIONS(1459), - [sym_identifier] = ACTIONS(1457), - [aux_sym_preproc_include_token1] = ACTIONS(1457), - [aux_sym_preproc_def_token1] = ACTIONS(1457), - [aux_sym_preproc_if_token1] = ACTIONS(1457), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1457), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1457), - [sym_preproc_directive] = ACTIONS(1457), - [anon_sym_LPAREN2] = ACTIONS(1459), - [anon_sym_BANG] = ACTIONS(1459), - [anon_sym_TILDE] = ACTIONS(1459), - [anon_sym_DASH] = ACTIONS(1457), - [anon_sym_PLUS] = ACTIONS(1457), - [anon_sym_STAR] = ACTIONS(1459), - [anon_sym_AMP] = ACTIONS(1459), - [anon_sym___extension__] = ACTIONS(1457), - [anon_sym_typedef] = ACTIONS(1457), - [anon_sym_extern] = ACTIONS(1457), - [anon_sym___attribute__] = ACTIONS(1457), - [anon_sym___scanf] = ACTIONS(1457), - [anon_sym___printf] = ACTIONS(1457), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1459), - [anon_sym___declspec] = ACTIONS(1457), - [anon_sym___cdecl] = ACTIONS(1457), - [anon_sym___clrcall] = ACTIONS(1457), - [anon_sym___stdcall] = ACTIONS(1457), - [anon_sym___fastcall] = ACTIONS(1457), - [anon_sym___thiscall] = ACTIONS(1457), - [anon_sym___vectorcall] = ACTIONS(1457), - [anon_sym_LBRACE] = ACTIONS(1459), - [anon_sym_signed] = ACTIONS(1457), - [anon_sym_unsigned] = ACTIONS(1457), - [anon_sym_long] = ACTIONS(1457), - [anon_sym_short] = ACTIONS(1457), - [anon_sym_static] = ACTIONS(1457), - [anon_sym_auto] = ACTIONS(1457), - [anon_sym_register] = ACTIONS(1457), - [anon_sym_inline] = ACTIONS(1457), - [anon_sym___inline] = ACTIONS(1457), - [anon_sym___inline__] = ACTIONS(1457), - [anon_sym___forceinline] = ACTIONS(1457), - [anon_sym_thread_local] = ACTIONS(1457), - [anon_sym___thread] = ACTIONS(1457), - [anon_sym_const] = ACTIONS(1457), - [anon_sym_constexpr] = ACTIONS(1457), - [anon_sym_volatile] = ACTIONS(1457), - [anon_sym_restrict] = ACTIONS(1457), - [anon_sym___restrict__] = ACTIONS(1457), - [anon_sym__Atomic] = ACTIONS(1457), - [anon_sym__Noreturn] = ACTIONS(1457), - [anon_sym_noreturn] = ACTIONS(1457), - [sym_primitive_type] = ACTIONS(1457), - [anon_sym_enum] = ACTIONS(1457), - [anon_sym_struct] = ACTIONS(1457), - [anon_sym_union] = ACTIONS(1457), - [anon_sym_if] = ACTIONS(1457), - [anon_sym_switch] = ACTIONS(1457), - [anon_sym_case] = ACTIONS(1457), - [anon_sym_default] = ACTIONS(1457), - [anon_sym_while] = ACTIONS(1457), - [anon_sym_do] = ACTIONS(1457), - [anon_sym_for] = ACTIONS(1457), - [anon_sym_return] = ACTIONS(1457), - [anon_sym_break] = ACTIONS(1457), - [anon_sym_continue] = ACTIONS(1457), - [anon_sym_goto] = ACTIONS(1457), - [anon_sym_DASH_DASH] = ACTIONS(1459), - [anon_sym_PLUS_PLUS] = ACTIONS(1459), - [anon_sym_sizeof] = ACTIONS(1457), - [anon_sym___alignof__] = ACTIONS(1457), - [anon_sym___alignof] = ACTIONS(1457), - [anon_sym__alignof] = ACTIONS(1457), - [anon_sym_alignof] = ACTIONS(1457), - [anon_sym__Alignof] = ACTIONS(1457), - [anon_sym_offsetof] = ACTIONS(1457), - [anon_sym__Generic] = ACTIONS(1457), - [anon_sym_asm] = ACTIONS(1457), - [anon_sym___asm__] = ACTIONS(1457), - [sym_number_literal] = ACTIONS(1459), - [anon_sym_L_SQUOTE] = ACTIONS(1459), - [anon_sym_u_SQUOTE] = ACTIONS(1459), - [anon_sym_U_SQUOTE] = ACTIONS(1459), - [anon_sym_u8_SQUOTE] = ACTIONS(1459), - [anon_sym_SQUOTE] = ACTIONS(1459), - [anon_sym_L_DQUOTE] = ACTIONS(1459), - [anon_sym_u_DQUOTE] = ACTIONS(1459), - [anon_sym_U_DQUOTE] = ACTIONS(1459), - [anon_sym_u8_DQUOTE] = ACTIONS(1459), - [anon_sym_DQUOTE] = ACTIONS(1459), - [sym_true] = ACTIONS(1457), - [sym_false] = ACTIONS(1457), - [anon_sym_NULL] = ACTIONS(1457), - [anon_sym_nullptr] = ACTIONS(1457), + [anon_sym_SEMI] = ACTIONS(125), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1566), + [anon_sym_LBRACE] = ACTIONS(133), + [anon_sym_if] = ACTIONS(135), + [anon_sym_switch] = ACTIONS(137), + [anon_sym_case] = ACTIONS(139), + [anon_sym_default] = ACTIONS(141), + [anon_sym_while] = ACTIONS(143), + [anon_sym_do] = ACTIONS(145), + [anon_sym_for] = ACTIONS(147), + [anon_sym_return] = ACTIONS(149), + [anon_sym_break] = ACTIONS(151), + [anon_sym_continue] = ACTIONS(153), + [anon_sym_goto] = ACTIONS(155), + [anon_sym___try] = ACTIONS(157), + [anon_sym___leave] = ACTIONS(159), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [sym_number_literal] = ACTIONS(161), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(163), + [sym_false] = ACTIONS(163), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [428] = { - [sym_attribute_declaration] = STATE(463), - [sym_compound_statement] = STATE(97), - [sym_attributed_statement] = STATE(97), - [sym_labeled_statement] = STATE(97), - [sym_expression_statement] = STATE(97), - [sym_if_statement] = STATE(97), - [sym_switch_statement] = STATE(97), - [sym_case_statement] = STATE(97), - [sym_while_statement] = STATE(97), - [sym_do_statement] = STATE(97), - [sym_for_statement] = STATE(97), - [sym_return_statement] = STATE(97), - [sym_break_statement] = STATE(97), - [sym_continue_statement] = STATE(97), - [sym_goto_statement] = STATE(97), - [sym_seh_try_statement] = STATE(97), - [sym_seh_leave_statement] = STATE(97), - [sym__expression] = STATE(1225), - [sym__expression_not_binary] = STATE(792), - [sym_comma_expression] = STATE(2038), - [sym_conditional_expression] = STATE(792), - [sym_assignment_expression] = STATE(792), - [sym_pointer_expression] = STATE(901), - [sym_unary_expression] = STATE(792), - [sym_binary_expression] = STATE(792), - [sym_update_expression] = STATE(792), - [sym_cast_expression] = STATE(792), - [sym_sizeof_expression] = STATE(792), - [sym_alignof_expression] = STATE(792), - [sym_offsetof_expression] = STATE(792), - [sym_generic_expression] = STATE(792), - [sym_subscript_expression] = STATE(901), - [sym_call_expression] = STATE(901), - [sym_gnu_asm_expression] = STATE(792), - [sym_field_expression] = STATE(901), - [sym_compound_literal_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(901), - [sym_char_literal] = STATE(792), - [sym_concatenated_string] = STATE(792), - [sym_string_literal] = STATE(675), - [sym_null] = STATE(792), - [aux_sym_attributed_declarator_repeat1] = STATE(463), - [sym_identifier] = ACTIONS(1581), + [436] = { + [sym_attribute_declaration] = STATE(478), + [sym_compound_statement] = STATE(308), + [sym_attributed_statement] = STATE(306), + [sym_labeled_statement] = STATE(305), + [sym_expression_statement] = STATE(304), + [sym_if_statement] = STATE(303), + [sym_switch_statement] = STATE(300), + [sym_case_statement] = STATE(294), + [sym_while_statement] = STATE(250), + [sym_do_statement] = STATE(246), + [sym_for_statement] = STATE(244), + [sym_return_statement] = STATE(242), + [sym_break_statement] = STATE(240), + [sym_continue_statement] = STATE(260), + [sym_goto_statement] = STATE(319), + [sym_seh_try_statement] = STATE(323), + [sym_seh_leave_statement] = STATE(325), + [sym__expression] = STATE(1272), + [sym__expression_not_binary] = STATE(809), + [sym_comma_expression] = STATE(2198), + [sym_conditional_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_pointer_expression] = STATE(877), + [sym_unary_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_update_expression] = STATE(809), + [sym_cast_expression] = STATE(809), + [sym_sizeof_expression] = STATE(809), + [sym_alignof_expression] = STATE(809), + [sym_offsetof_expression] = STATE(809), + [sym_generic_expression] = STATE(809), + [sym_subscript_expression] = STATE(877), + [sym_call_expression] = STATE(877), + [sym_gnu_asm_expression] = STATE(809), + [sym_field_expression] = STATE(877), + [sym_compound_literal_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(877), + [sym_char_literal] = STATE(809), + [sym_concatenated_string] = STATE(809), + [sym_string_literal] = STATE(573), + [sym_null] = STATE(809), + [aux_sym_attributed_declarator_repeat1] = STATE(478), + [sym_identifier] = ACTIONS(1564), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -64177,191 +66962,191 @@ 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(123), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1573), - [anon_sym_LBRACE] = ACTIONS(131), - [anon_sym_if] = ACTIONS(133), - [anon_sym_switch] = ACTIONS(135), - [anon_sym_case] = ACTIONS(137), - [anon_sym_default] = ACTIONS(139), - [anon_sym_while] = ACTIONS(141), - [anon_sym_do] = ACTIONS(143), - [anon_sym_for] = ACTIONS(145), - [anon_sym_return] = ACTIONS(147), - [anon_sym_break] = ACTIONS(149), - [anon_sym_continue] = ACTIONS(151), - [anon_sym_goto] = ACTIONS(153), - [anon_sym___try] = ACTIONS(155), - [anon_sym___leave] = ACTIONS(157), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(83), - [anon_sym___alignof__] = ACTIONS(85), - [anon_sym___alignof] = ACTIONS(85), - [anon_sym__alignof] = ACTIONS(85), - [anon_sym_alignof] = ACTIONS(85), - [anon_sym__Alignof] = ACTIONS(85), - [anon_sym_offsetof] = ACTIONS(87), - [anon_sym__Generic] = ACTIONS(89), - [anon_sym_asm] = ACTIONS(91), - [anon_sym___asm__] = ACTIONS(91), - [sym_number_literal] = ACTIONS(159), - [anon_sym_L_SQUOTE] = ACTIONS(95), - [anon_sym_u_SQUOTE] = ACTIONS(95), - [anon_sym_U_SQUOTE] = ACTIONS(95), - [anon_sym_u8_SQUOTE] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(95), - [anon_sym_L_DQUOTE] = ACTIONS(97), - [anon_sym_u_DQUOTE] = ACTIONS(97), - [anon_sym_U_DQUOTE] = ACTIONS(97), - [anon_sym_u8_DQUOTE] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(97), - [sym_true] = ACTIONS(161), - [sym_false] = ACTIONS(161), - [anon_sym_NULL] = ACTIONS(101), - [anon_sym_nullptr] = ACTIONS(101), + [anon_sym_SEMI] = ACTIONS(623), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1566), + [anon_sym_LBRACE] = ACTIONS(631), + [anon_sym_if] = ACTIONS(635), + [anon_sym_switch] = ACTIONS(637), + [anon_sym_case] = ACTIONS(639), + [anon_sym_default] = ACTIONS(641), + [anon_sym_while] = ACTIONS(643), + [anon_sym_do] = ACTIONS(645), + [anon_sym_for] = ACTIONS(647), + [anon_sym_return] = ACTIONS(649), + [anon_sym_break] = ACTIONS(651), + [anon_sym_continue] = ACTIONS(653), + [anon_sym_goto] = ACTIONS(655), + [anon_sym___try] = ACTIONS(657), + [anon_sym___leave] = ACTIONS(659), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [sym_number_literal] = ACTIONS(161), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(163), + [sym_false] = ACTIONS(163), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [429] = { - [ts_builtin_sym_end] = ACTIONS(1491), - [sym_identifier] = ACTIONS(1489), - [aux_sym_preproc_include_token1] = ACTIONS(1489), - [aux_sym_preproc_def_token1] = ACTIONS(1489), - [aux_sym_preproc_if_token1] = ACTIONS(1489), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1489), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1489), - [sym_preproc_directive] = ACTIONS(1489), - [anon_sym_LPAREN2] = ACTIONS(1491), - [anon_sym_BANG] = ACTIONS(1491), - [anon_sym_TILDE] = ACTIONS(1491), - [anon_sym_DASH] = ACTIONS(1489), - [anon_sym_PLUS] = ACTIONS(1489), - [anon_sym_STAR] = ACTIONS(1491), - [anon_sym_AMP] = ACTIONS(1491), - [anon_sym___extension__] = ACTIONS(1489), - [anon_sym_typedef] = ACTIONS(1489), - [anon_sym_extern] = ACTIONS(1489), - [anon_sym___attribute__] = ACTIONS(1489), - [anon_sym___scanf] = ACTIONS(1489), - [anon_sym___printf] = ACTIONS(1489), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1491), - [anon_sym___declspec] = ACTIONS(1489), - [anon_sym___cdecl] = ACTIONS(1489), - [anon_sym___clrcall] = ACTIONS(1489), - [anon_sym___stdcall] = ACTIONS(1489), - [anon_sym___fastcall] = ACTIONS(1489), - [anon_sym___thiscall] = ACTIONS(1489), - [anon_sym___vectorcall] = ACTIONS(1489), - [anon_sym_LBRACE] = ACTIONS(1491), - [anon_sym_signed] = ACTIONS(1489), - [anon_sym_unsigned] = ACTIONS(1489), - [anon_sym_long] = ACTIONS(1489), - [anon_sym_short] = ACTIONS(1489), - [anon_sym_static] = ACTIONS(1489), - [anon_sym_auto] = ACTIONS(1489), - [anon_sym_register] = ACTIONS(1489), - [anon_sym_inline] = ACTIONS(1489), - [anon_sym___inline] = ACTIONS(1489), - [anon_sym___inline__] = ACTIONS(1489), - [anon_sym___forceinline] = ACTIONS(1489), - [anon_sym_thread_local] = ACTIONS(1489), - [anon_sym___thread] = ACTIONS(1489), - [anon_sym_const] = ACTIONS(1489), - [anon_sym_constexpr] = ACTIONS(1489), - [anon_sym_volatile] = ACTIONS(1489), - [anon_sym_restrict] = ACTIONS(1489), - [anon_sym___restrict__] = ACTIONS(1489), - [anon_sym__Atomic] = ACTIONS(1489), - [anon_sym__Noreturn] = ACTIONS(1489), - [anon_sym_noreturn] = ACTIONS(1489), - [sym_primitive_type] = ACTIONS(1489), - [anon_sym_enum] = ACTIONS(1489), - [anon_sym_struct] = ACTIONS(1489), - [anon_sym_union] = ACTIONS(1489), - [anon_sym_if] = ACTIONS(1489), - [anon_sym_switch] = ACTIONS(1489), - [anon_sym_case] = ACTIONS(1489), - [anon_sym_default] = ACTIONS(1489), - [anon_sym_while] = ACTIONS(1489), - [anon_sym_do] = ACTIONS(1489), - [anon_sym_for] = ACTIONS(1489), - [anon_sym_return] = ACTIONS(1489), - [anon_sym_break] = ACTIONS(1489), - [anon_sym_continue] = ACTIONS(1489), - [anon_sym_goto] = ACTIONS(1489), - [anon_sym_DASH_DASH] = ACTIONS(1491), - [anon_sym_PLUS_PLUS] = ACTIONS(1491), - [anon_sym_sizeof] = ACTIONS(1489), - [anon_sym___alignof__] = ACTIONS(1489), - [anon_sym___alignof] = ACTIONS(1489), - [anon_sym__alignof] = ACTIONS(1489), - [anon_sym_alignof] = ACTIONS(1489), - [anon_sym__Alignof] = ACTIONS(1489), - [anon_sym_offsetof] = ACTIONS(1489), - [anon_sym__Generic] = ACTIONS(1489), - [anon_sym_asm] = ACTIONS(1489), - [anon_sym___asm__] = ACTIONS(1489), - [sym_number_literal] = ACTIONS(1491), - [anon_sym_L_SQUOTE] = ACTIONS(1491), - [anon_sym_u_SQUOTE] = ACTIONS(1491), - [anon_sym_U_SQUOTE] = ACTIONS(1491), - [anon_sym_u8_SQUOTE] = ACTIONS(1491), - [anon_sym_SQUOTE] = ACTIONS(1491), - [anon_sym_L_DQUOTE] = ACTIONS(1491), - [anon_sym_u_DQUOTE] = ACTIONS(1491), - [anon_sym_U_DQUOTE] = ACTIONS(1491), - [anon_sym_u8_DQUOTE] = ACTIONS(1491), - [anon_sym_DQUOTE] = ACTIONS(1491), - [sym_true] = ACTIONS(1489), - [sym_false] = ACTIONS(1489), - [anon_sym_NULL] = ACTIONS(1489), - [anon_sym_nullptr] = ACTIONS(1489), + [437] = { + [sym_attribute_declaration] = STATE(437), + [sym_compound_statement] = STATE(314), + [sym_attributed_statement] = STATE(314), + [sym_labeled_statement] = STATE(314), + [sym_expression_statement] = STATE(314), + [sym_if_statement] = STATE(314), + [sym_switch_statement] = STATE(314), + [sym_case_statement] = STATE(314), + [sym_while_statement] = STATE(314), + [sym_do_statement] = STATE(314), + [sym_for_statement] = STATE(314), + [sym_return_statement] = STATE(314), + [sym_break_statement] = STATE(314), + [sym_continue_statement] = STATE(314), + [sym_goto_statement] = STATE(314), + [sym_seh_try_statement] = STATE(314), + [sym_seh_leave_statement] = STATE(314), + [sym__expression] = STATE(1253), + [sym__expression_not_binary] = STATE(809), + [sym_comma_expression] = STATE(2218), + [sym_conditional_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_pointer_expression] = STATE(877), + [sym_unary_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_update_expression] = STATE(809), + [sym_cast_expression] = STATE(809), + [sym_sizeof_expression] = STATE(809), + [sym_alignof_expression] = STATE(809), + [sym_offsetof_expression] = STATE(809), + [sym_generic_expression] = STATE(809), + [sym_subscript_expression] = STATE(877), + [sym_call_expression] = STATE(877), + [sym_gnu_asm_expression] = STATE(809), + [sym_field_expression] = STATE(877), + [sym_compound_literal_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(877), + [sym_char_literal] = STATE(809), + [sym_concatenated_string] = STATE(809), + [sym_string_literal] = STATE(573), + [sym_null] = STATE(809), + [aux_sym_attributed_declarator_repeat1] = STATE(437), + [sym_identifier] = ACTIONS(1576), + [anon_sym_LPAREN2] = ACTIONS(1579), + [anon_sym_BANG] = ACTIONS(1582), + [anon_sym_TILDE] = ACTIONS(1582), + [anon_sym_DASH] = ACTIONS(1585), + [anon_sym_PLUS] = ACTIONS(1585), + [anon_sym_STAR] = ACTIONS(1588), + [anon_sym_AMP] = ACTIONS(1588), + [anon_sym_SEMI] = ACTIONS(1591), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1594), + [anon_sym_LBRACE] = ACTIONS(1597), + [anon_sym_if] = ACTIONS(1600), + [anon_sym_switch] = ACTIONS(1603), + [anon_sym_case] = ACTIONS(1606), + [anon_sym_default] = ACTIONS(1609), + [anon_sym_while] = ACTIONS(1612), + [anon_sym_do] = ACTIONS(1615), + [anon_sym_for] = ACTIONS(1618), + [anon_sym_return] = ACTIONS(1621), + [anon_sym_break] = ACTIONS(1624), + [anon_sym_continue] = ACTIONS(1627), + [anon_sym_goto] = ACTIONS(1630), + [anon_sym___try] = ACTIONS(1633), + [anon_sym___leave] = ACTIONS(1636), + [anon_sym_DASH_DASH] = ACTIONS(1639), + [anon_sym_PLUS_PLUS] = ACTIONS(1639), + [anon_sym_sizeof] = ACTIONS(1642), + [anon_sym___alignof__] = ACTIONS(1645), + [anon_sym___alignof] = ACTIONS(1645), + [anon_sym__alignof] = ACTIONS(1645), + [anon_sym_alignof] = ACTIONS(1645), + [anon_sym__Alignof] = ACTIONS(1645), + [anon_sym_offsetof] = ACTIONS(1648), + [anon_sym__Generic] = ACTIONS(1651), + [anon_sym_asm] = ACTIONS(1654), + [anon_sym___asm__] = ACTIONS(1654), + [sym_number_literal] = ACTIONS(1657), + [anon_sym_L_SQUOTE] = ACTIONS(1660), + [anon_sym_u_SQUOTE] = ACTIONS(1660), + [anon_sym_U_SQUOTE] = ACTIONS(1660), + [anon_sym_u8_SQUOTE] = ACTIONS(1660), + [anon_sym_SQUOTE] = ACTIONS(1660), + [anon_sym_L_DQUOTE] = ACTIONS(1663), + [anon_sym_u_DQUOTE] = ACTIONS(1663), + [anon_sym_U_DQUOTE] = ACTIONS(1663), + [anon_sym_u8_DQUOTE] = ACTIONS(1663), + [anon_sym_DQUOTE] = ACTIONS(1663), + [sym_true] = ACTIONS(1666), + [sym_false] = ACTIONS(1666), + [anon_sym_NULL] = ACTIONS(1669), + [anon_sym_nullptr] = ACTIONS(1669), [sym_comment] = ACTIONS(3), }, - [430] = { - [sym_attribute_declaration] = STATE(435), - [sym_compound_statement] = STATE(183), - [sym_attributed_statement] = STATE(183), - [sym_labeled_statement] = STATE(183), - [sym_expression_statement] = STATE(183), - [sym_if_statement] = STATE(183), - [sym_switch_statement] = STATE(183), - [sym_case_statement] = STATE(183), - [sym_while_statement] = STATE(183), - [sym_do_statement] = STATE(183), - [sym_for_statement] = STATE(183), - [sym_return_statement] = STATE(183), - [sym_break_statement] = STATE(183), - [sym_continue_statement] = STATE(183), - [sym_goto_statement] = STATE(183), - [sym_seh_try_statement] = STATE(183), - [sym_seh_leave_statement] = STATE(183), - [sym__expression] = STATE(1230), - [sym__expression_not_binary] = STATE(792), - [sym_comma_expression] = STATE(2008), - [sym_conditional_expression] = STATE(792), - [sym_assignment_expression] = STATE(792), - [sym_pointer_expression] = STATE(901), - [sym_unary_expression] = STATE(792), - [sym_binary_expression] = STATE(792), - [sym_update_expression] = STATE(792), - [sym_cast_expression] = STATE(792), - [sym_sizeof_expression] = STATE(792), - [sym_alignof_expression] = STATE(792), - [sym_offsetof_expression] = STATE(792), - [sym_generic_expression] = STATE(792), - [sym_subscript_expression] = STATE(901), - [sym_call_expression] = STATE(901), - [sym_gnu_asm_expression] = STATE(792), - [sym_field_expression] = STATE(901), - [sym_compound_literal_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(901), - [sym_char_literal] = STATE(792), - [sym_concatenated_string] = STATE(792), - [sym_string_literal] = STATE(675), - [sym_null] = STATE(792), - [aux_sym_attributed_declarator_repeat1] = STATE(435), - [sym_identifier] = ACTIONS(1679), + [438] = { + [sym_attribute_declaration] = STATE(465), + [sym_compound_statement] = STATE(291), + [sym_attributed_statement] = STATE(291), + [sym_labeled_statement] = STATE(291), + [sym_expression_statement] = STATE(291), + [sym_if_statement] = STATE(291), + [sym_switch_statement] = STATE(291), + [sym_case_statement] = STATE(291), + [sym_while_statement] = STATE(291), + [sym_do_statement] = STATE(291), + [sym_for_statement] = STATE(291), + [sym_return_statement] = STATE(291), + [sym_break_statement] = STATE(291), + [sym_continue_statement] = STATE(291), + [sym_goto_statement] = STATE(291), + [sym_seh_try_statement] = STATE(291), + [sym_seh_leave_statement] = STATE(291), + [sym__expression] = STATE(1272), + [sym__expression_not_binary] = STATE(809), + [sym_comma_expression] = STATE(2198), + [sym_conditional_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_pointer_expression] = STATE(877), + [sym_unary_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_update_expression] = STATE(809), + [sym_cast_expression] = STATE(809), + [sym_sizeof_expression] = STATE(809), + [sym_alignof_expression] = STATE(809), + [sym_offsetof_expression] = STATE(809), + [sym_generic_expression] = STATE(809), + [sym_subscript_expression] = STATE(877), + [sym_call_expression] = STATE(877), + [sym_gnu_asm_expression] = STATE(809), + [sym_field_expression] = STATE(877), + [sym_compound_literal_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(877), + [sym_char_literal] = STATE(809), + [sym_concatenated_string] = STATE(809), + [sym_string_literal] = STATE(573), + [sym_null] = STATE(809), + [aux_sym_attributed_declarator_repeat1] = STATE(465), + [sym_identifier] = ACTIONS(1568), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -64369,437 +67154,149 @@ 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(195), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1573), - [anon_sym_LBRACE] = ACTIONS(203), - [anon_sym_if] = ACTIONS(205), - [anon_sym_switch] = ACTIONS(207), - [anon_sym_case] = ACTIONS(209), - [anon_sym_default] = ACTIONS(211), - [anon_sym_while] = ACTIONS(213), - [anon_sym_do] = ACTIONS(215), - [anon_sym_for] = ACTIONS(217), - [anon_sym_return] = ACTIONS(219), - [anon_sym_break] = ACTIONS(221), - [anon_sym_continue] = ACTIONS(223), - [anon_sym_goto] = ACTIONS(225), - [anon_sym___try] = ACTIONS(227), - [anon_sym___leave] = ACTIONS(229), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(83), - [anon_sym___alignof__] = ACTIONS(85), - [anon_sym___alignof] = ACTIONS(85), - [anon_sym__alignof] = ACTIONS(85), - [anon_sym_alignof] = ACTIONS(85), - [anon_sym__Alignof] = ACTIONS(85), - [anon_sym_offsetof] = ACTIONS(87), - [anon_sym__Generic] = ACTIONS(89), - [anon_sym_asm] = ACTIONS(91), - [anon_sym___asm__] = ACTIONS(91), - [sym_number_literal] = ACTIONS(159), - [anon_sym_L_SQUOTE] = ACTIONS(95), - [anon_sym_u_SQUOTE] = ACTIONS(95), - [anon_sym_U_SQUOTE] = ACTIONS(95), - [anon_sym_u8_SQUOTE] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(95), - [anon_sym_L_DQUOTE] = ACTIONS(97), - [anon_sym_u_DQUOTE] = ACTIONS(97), - [anon_sym_U_DQUOTE] = ACTIONS(97), - [anon_sym_u8_DQUOTE] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(97), - [sym_true] = ACTIONS(161), - [sym_false] = ACTIONS(161), - [anon_sym_NULL] = ACTIONS(101), - [anon_sym_nullptr] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - }, - [431] = { - [ts_builtin_sym_end] = ACTIONS(1483), - [sym_identifier] = ACTIONS(1481), - [aux_sym_preproc_include_token1] = ACTIONS(1481), - [aux_sym_preproc_def_token1] = ACTIONS(1481), - [aux_sym_preproc_if_token1] = ACTIONS(1481), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1481), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1481), - [sym_preproc_directive] = ACTIONS(1481), - [anon_sym_LPAREN2] = ACTIONS(1483), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_PLUS] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym___extension__] = ACTIONS(1481), - [anon_sym_typedef] = ACTIONS(1481), - [anon_sym_extern] = ACTIONS(1481), - [anon_sym___attribute__] = ACTIONS(1481), - [anon_sym___scanf] = ACTIONS(1481), - [anon_sym___printf] = ACTIONS(1481), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1483), - [anon_sym___declspec] = ACTIONS(1481), - [anon_sym___cdecl] = ACTIONS(1481), - [anon_sym___clrcall] = ACTIONS(1481), - [anon_sym___stdcall] = ACTIONS(1481), - [anon_sym___fastcall] = ACTIONS(1481), - [anon_sym___thiscall] = ACTIONS(1481), - [anon_sym___vectorcall] = ACTIONS(1481), - [anon_sym_LBRACE] = ACTIONS(1483), - [anon_sym_signed] = ACTIONS(1481), - [anon_sym_unsigned] = ACTIONS(1481), - [anon_sym_long] = ACTIONS(1481), - [anon_sym_short] = ACTIONS(1481), - [anon_sym_static] = ACTIONS(1481), - [anon_sym_auto] = ACTIONS(1481), - [anon_sym_register] = ACTIONS(1481), - [anon_sym_inline] = ACTIONS(1481), - [anon_sym___inline] = ACTIONS(1481), - [anon_sym___inline__] = ACTIONS(1481), - [anon_sym___forceinline] = ACTIONS(1481), - [anon_sym_thread_local] = ACTIONS(1481), - [anon_sym___thread] = ACTIONS(1481), - [anon_sym_const] = ACTIONS(1481), - [anon_sym_constexpr] = ACTIONS(1481), - [anon_sym_volatile] = ACTIONS(1481), - [anon_sym_restrict] = ACTIONS(1481), - [anon_sym___restrict__] = ACTIONS(1481), - [anon_sym__Atomic] = ACTIONS(1481), - [anon_sym__Noreturn] = ACTIONS(1481), - [anon_sym_noreturn] = ACTIONS(1481), - [sym_primitive_type] = ACTIONS(1481), - [anon_sym_enum] = ACTIONS(1481), - [anon_sym_struct] = ACTIONS(1481), - [anon_sym_union] = ACTIONS(1481), - [anon_sym_if] = ACTIONS(1481), - [anon_sym_switch] = ACTIONS(1481), - [anon_sym_case] = ACTIONS(1481), - [anon_sym_default] = ACTIONS(1481), - [anon_sym_while] = ACTIONS(1481), - [anon_sym_do] = ACTIONS(1481), - [anon_sym_for] = ACTIONS(1481), - [anon_sym_return] = ACTIONS(1481), - [anon_sym_break] = ACTIONS(1481), - [anon_sym_continue] = ACTIONS(1481), - [anon_sym_goto] = ACTIONS(1481), - [anon_sym_DASH_DASH] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_sizeof] = ACTIONS(1481), - [anon_sym___alignof__] = ACTIONS(1481), - [anon_sym___alignof] = ACTIONS(1481), - [anon_sym__alignof] = ACTIONS(1481), - [anon_sym_alignof] = ACTIONS(1481), - [anon_sym__Alignof] = ACTIONS(1481), - [anon_sym_offsetof] = ACTIONS(1481), - [anon_sym__Generic] = ACTIONS(1481), - [anon_sym_asm] = ACTIONS(1481), - [anon_sym___asm__] = ACTIONS(1481), - [sym_number_literal] = ACTIONS(1483), - [anon_sym_L_SQUOTE] = ACTIONS(1483), - [anon_sym_u_SQUOTE] = ACTIONS(1483), - [anon_sym_U_SQUOTE] = ACTIONS(1483), - [anon_sym_u8_SQUOTE] = ACTIONS(1483), - [anon_sym_SQUOTE] = ACTIONS(1483), - [anon_sym_L_DQUOTE] = ACTIONS(1483), - [anon_sym_u_DQUOTE] = ACTIONS(1483), - [anon_sym_U_DQUOTE] = ACTIONS(1483), - [anon_sym_u8_DQUOTE] = ACTIONS(1483), - [anon_sym_DQUOTE] = ACTIONS(1483), - [sym_true] = ACTIONS(1481), - [sym_false] = ACTIONS(1481), - [anon_sym_NULL] = ACTIONS(1481), - [anon_sym_nullptr] = ACTIONS(1481), - [sym_comment] = ACTIONS(3), - }, - [432] = { - [ts_builtin_sym_end] = ACTIONS(1415), - [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(1415), - [anon_sym_BANG] = ACTIONS(1415), - [anon_sym_TILDE] = ACTIONS(1415), - [anon_sym_DASH] = ACTIONS(1413), - [anon_sym_PLUS] = ACTIONS(1413), - [anon_sym_STAR] = ACTIONS(1415), - [anon_sym_AMP] = ACTIONS(1415), - [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_LBRACK_LBRACK] = ACTIONS(1415), - [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(1415), - [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), - [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(1415), - [anon_sym_PLUS_PLUS] = ACTIONS(1415), - [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(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(1413), - [sym_false] = ACTIONS(1413), - [anon_sym_NULL] = ACTIONS(1413), - [anon_sym_nullptr] = ACTIONS(1413), - [sym_comment] = ACTIONS(3), - }, - [433] = { - [ts_builtin_sym_end] = ACTIONS(1419), - [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(1419), - [anon_sym_BANG] = ACTIONS(1419), - [anon_sym_TILDE] = ACTIONS(1419), - [anon_sym_DASH] = ACTIONS(1417), - [anon_sym_PLUS] = ACTIONS(1417), - [anon_sym_STAR] = ACTIONS(1419), - [anon_sym_AMP] = ACTIONS(1419), - [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_LBRACK_LBRACK] = ACTIONS(1419), - [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(1419), - [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), - [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(1419), - [anon_sym_PLUS_PLUS] = ACTIONS(1419), - [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(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(1417), - [sym_false] = ACTIONS(1417), - [anon_sym_NULL] = ACTIONS(1417), - [anon_sym_nullptr] = ACTIONS(1417), + [anon_sym_SEMI] = ACTIONS(623), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1566), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_if] = ACTIONS(1285), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_case] = ACTIONS(1570), + [anon_sym_default] = ACTIONS(1572), + [anon_sym_while] = ACTIONS(1287), + [anon_sym_do] = ACTIONS(71), + [anon_sym_for] = ACTIONS(1289), + [anon_sym_return] = ACTIONS(75), + [anon_sym_break] = ACTIONS(77), + [anon_sym_continue] = ACTIONS(79), + [anon_sym_goto] = ACTIONS(81), + [anon_sym___try] = ACTIONS(1291), + [anon_sym___leave] = ACTIONS(659), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [sym_number_literal] = ACTIONS(161), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(163), + [sym_false] = ACTIONS(163), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [434] = { - [ts_builtin_sym_end] = ACTIONS(1517), - [sym_identifier] = ACTIONS(1515), - [aux_sym_preproc_include_token1] = ACTIONS(1515), - [aux_sym_preproc_def_token1] = ACTIONS(1515), - [aux_sym_preproc_if_token1] = ACTIONS(1515), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1515), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1515), - [sym_preproc_directive] = ACTIONS(1515), - [anon_sym_LPAREN2] = ACTIONS(1517), - [anon_sym_BANG] = ACTIONS(1517), - [anon_sym_TILDE] = ACTIONS(1517), - [anon_sym_DASH] = ACTIONS(1515), - [anon_sym_PLUS] = ACTIONS(1515), - [anon_sym_STAR] = ACTIONS(1517), - [anon_sym_AMP] = ACTIONS(1517), - [anon_sym___extension__] = ACTIONS(1515), - [anon_sym_typedef] = ACTIONS(1515), - [anon_sym_extern] = ACTIONS(1515), - [anon_sym___attribute__] = ACTIONS(1515), - [anon_sym___scanf] = ACTIONS(1515), - [anon_sym___printf] = ACTIONS(1515), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1517), - [anon_sym___declspec] = ACTIONS(1515), - [anon_sym___cdecl] = ACTIONS(1515), - [anon_sym___clrcall] = ACTIONS(1515), - [anon_sym___stdcall] = ACTIONS(1515), - [anon_sym___fastcall] = ACTIONS(1515), - [anon_sym___thiscall] = ACTIONS(1515), - [anon_sym___vectorcall] = ACTIONS(1515), - [anon_sym_LBRACE] = ACTIONS(1517), - [anon_sym_signed] = ACTIONS(1515), - [anon_sym_unsigned] = ACTIONS(1515), - [anon_sym_long] = ACTIONS(1515), - [anon_sym_short] = ACTIONS(1515), - [anon_sym_static] = ACTIONS(1515), - [anon_sym_auto] = ACTIONS(1515), - [anon_sym_register] = ACTIONS(1515), - [anon_sym_inline] = ACTIONS(1515), - [anon_sym___inline] = ACTIONS(1515), - [anon_sym___inline__] = ACTIONS(1515), - [anon_sym___forceinline] = ACTIONS(1515), - [anon_sym_thread_local] = ACTIONS(1515), - [anon_sym___thread] = ACTIONS(1515), - [anon_sym_const] = ACTIONS(1515), - [anon_sym_constexpr] = ACTIONS(1515), - [anon_sym_volatile] = ACTIONS(1515), - [anon_sym_restrict] = ACTIONS(1515), - [anon_sym___restrict__] = ACTIONS(1515), - [anon_sym__Atomic] = ACTIONS(1515), - [anon_sym__Noreturn] = ACTIONS(1515), - [anon_sym_noreturn] = ACTIONS(1515), - [sym_primitive_type] = ACTIONS(1515), - [anon_sym_enum] = ACTIONS(1515), - [anon_sym_struct] = ACTIONS(1515), - [anon_sym_union] = ACTIONS(1515), - [anon_sym_if] = ACTIONS(1515), - [anon_sym_switch] = ACTIONS(1515), - [anon_sym_case] = ACTIONS(1515), - [anon_sym_default] = ACTIONS(1515), - [anon_sym_while] = ACTIONS(1515), - [anon_sym_do] = ACTIONS(1515), - [anon_sym_for] = ACTIONS(1515), - [anon_sym_return] = ACTIONS(1515), - [anon_sym_break] = ACTIONS(1515), - [anon_sym_continue] = ACTIONS(1515), - [anon_sym_goto] = ACTIONS(1515), - [anon_sym_DASH_DASH] = ACTIONS(1517), - [anon_sym_PLUS_PLUS] = ACTIONS(1517), - [anon_sym_sizeof] = ACTIONS(1515), - [anon_sym___alignof__] = ACTIONS(1515), - [anon_sym___alignof] = ACTIONS(1515), - [anon_sym__alignof] = ACTIONS(1515), - [anon_sym_alignof] = ACTIONS(1515), - [anon_sym__Alignof] = ACTIONS(1515), - [anon_sym_offsetof] = ACTIONS(1515), - [anon_sym__Generic] = ACTIONS(1515), - [anon_sym_asm] = ACTIONS(1515), - [anon_sym___asm__] = ACTIONS(1515), - [sym_number_literal] = ACTIONS(1517), - [anon_sym_L_SQUOTE] = ACTIONS(1517), - [anon_sym_u_SQUOTE] = ACTIONS(1517), - [anon_sym_U_SQUOTE] = ACTIONS(1517), - [anon_sym_u8_SQUOTE] = ACTIONS(1517), - [anon_sym_SQUOTE] = ACTIONS(1517), - [anon_sym_L_DQUOTE] = ACTIONS(1517), - [anon_sym_u_DQUOTE] = ACTIONS(1517), - [anon_sym_U_DQUOTE] = ACTIONS(1517), - [anon_sym_u8_DQUOTE] = ACTIONS(1517), - [anon_sym_DQUOTE] = ACTIONS(1517), - [sym_true] = ACTIONS(1515), - [sym_false] = ACTIONS(1515), - [anon_sym_NULL] = ACTIONS(1515), - [anon_sym_nullptr] = ACTIONS(1515), + [439] = { + [sym_attribute_declaration] = STATE(439), + [sym_compound_statement] = STATE(290), + [sym_attributed_statement] = STATE(290), + [sym_labeled_statement] = STATE(290), + [sym_expression_statement] = STATE(290), + [sym_if_statement] = STATE(290), + [sym_switch_statement] = STATE(290), + [sym_case_statement] = STATE(290), + [sym_while_statement] = STATE(290), + [sym_do_statement] = STATE(290), + [sym_for_statement] = STATE(290), + [sym_return_statement] = STATE(290), + [sym_break_statement] = STATE(290), + [sym_continue_statement] = STATE(290), + [sym_goto_statement] = STATE(290), + [sym_seh_try_statement] = STATE(290), + [sym_seh_leave_statement] = STATE(290), + [sym__expression] = STATE(1272), + [sym__expression_not_binary] = STATE(809), + [sym_comma_expression] = STATE(2198), + [sym_conditional_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_pointer_expression] = STATE(877), + [sym_unary_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_update_expression] = STATE(809), + [sym_cast_expression] = STATE(809), + [sym_sizeof_expression] = STATE(809), + [sym_alignof_expression] = STATE(809), + [sym_offsetof_expression] = STATE(809), + [sym_generic_expression] = STATE(809), + [sym_subscript_expression] = STATE(877), + [sym_call_expression] = STATE(877), + [sym_gnu_asm_expression] = STATE(809), + [sym_field_expression] = STATE(877), + [sym_compound_literal_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(877), + [sym_char_literal] = STATE(809), + [sym_concatenated_string] = STATE(809), + [sym_string_literal] = STATE(573), + [sym_null] = STATE(809), + [aux_sym_attributed_declarator_repeat1] = STATE(439), + [sym_identifier] = ACTIONS(1672), + [anon_sym_LPAREN2] = ACTIONS(1579), + [anon_sym_BANG] = ACTIONS(1582), + [anon_sym_TILDE] = ACTIONS(1582), + [anon_sym_DASH] = ACTIONS(1585), + [anon_sym_PLUS] = ACTIONS(1585), + [anon_sym_STAR] = ACTIONS(1588), + [anon_sym_AMP] = ACTIONS(1588), + [anon_sym_SEMI] = ACTIONS(1675), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1594), + [anon_sym_LBRACE] = ACTIONS(1678), + [anon_sym_if] = ACTIONS(1681), + [anon_sym_switch] = ACTIONS(1684), + [anon_sym_case] = ACTIONS(1687), + [anon_sym_default] = ACTIONS(1690), + [anon_sym_while] = ACTIONS(1693), + [anon_sym_do] = ACTIONS(1696), + [anon_sym_for] = ACTIONS(1699), + [anon_sym_return] = ACTIONS(1702), + [anon_sym_break] = ACTIONS(1705), + [anon_sym_continue] = ACTIONS(1708), + [anon_sym_goto] = ACTIONS(1711), + [anon_sym___try] = ACTIONS(1714), + [anon_sym___leave] = ACTIONS(1717), + [anon_sym_DASH_DASH] = ACTIONS(1639), + [anon_sym_PLUS_PLUS] = ACTIONS(1639), + [anon_sym_sizeof] = ACTIONS(1642), + [anon_sym___alignof__] = ACTIONS(1645), + [anon_sym___alignof] = ACTIONS(1645), + [anon_sym__alignof] = ACTIONS(1645), + [anon_sym_alignof] = ACTIONS(1645), + [anon_sym__Alignof] = ACTIONS(1645), + [anon_sym_offsetof] = ACTIONS(1648), + [anon_sym__Generic] = ACTIONS(1651), + [anon_sym_asm] = ACTIONS(1654), + [anon_sym___asm__] = ACTIONS(1654), + [sym_number_literal] = ACTIONS(1657), + [anon_sym_L_SQUOTE] = ACTIONS(1660), + [anon_sym_u_SQUOTE] = ACTIONS(1660), + [anon_sym_U_SQUOTE] = ACTIONS(1660), + [anon_sym_u8_SQUOTE] = ACTIONS(1660), + [anon_sym_SQUOTE] = ACTIONS(1660), + [anon_sym_L_DQUOTE] = ACTIONS(1663), + [anon_sym_u_DQUOTE] = ACTIONS(1663), + [anon_sym_U_DQUOTE] = ACTIONS(1663), + [anon_sym_u8_DQUOTE] = ACTIONS(1663), + [anon_sym_DQUOTE] = ACTIONS(1663), + [sym_true] = ACTIONS(1666), + [sym_false] = ACTIONS(1666), + [anon_sym_NULL] = ACTIONS(1669), + [anon_sym_nullptr] = ACTIONS(1669), [sym_comment] = ACTIONS(3), }, - [435] = { - [sym_attribute_declaration] = STATE(439), + [440] = { + [sym_attribute_declaration] = STATE(440), [sym_compound_statement] = STATE(197), [sym_attributed_statement] = STATE(197), [sym_labeled_statement] = STATE(197), @@ -64816,128 +67313,128 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(197), [sym_seh_try_statement] = STATE(197), [sym_seh_leave_statement] = STATE(197), - [sym__expression] = STATE(1230), - [sym__expression_not_binary] = STATE(792), - [sym_comma_expression] = STATE(2008), - [sym_conditional_expression] = STATE(792), - [sym_assignment_expression] = STATE(792), - [sym_pointer_expression] = STATE(901), - [sym_unary_expression] = STATE(792), - [sym_binary_expression] = STATE(792), - [sym_update_expression] = STATE(792), - [sym_cast_expression] = STATE(792), - [sym_sizeof_expression] = STATE(792), - [sym_alignof_expression] = STATE(792), - [sym_offsetof_expression] = STATE(792), - [sym_generic_expression] = STATE(792), - [sym_subscript_expression] = STATE(901), - [sym_call_expression] = STATE(901), - [sym_gnu_asm_expression] = STATE(792), - [sym_field_expression] = STATE(901), - [sym_compound_literal_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(901), - [sym_char_literal] = STATE(792), - [sym_concatenated_string] = STATE(792), - [sym_string_literal] = STATE(675), - [sym_null] = STATE(792), - [aux_sym_attributed_declarator_repeat1] = STATE(439), - [sym_identifier] = ACTIONS(1679), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(195), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1573), - [anon_sym_LBRACE] = ACTIONS(203), - [anon_sym_if] = ACTIONS(205), - [anon_sym_switch] = ACTIONS(207), - [anon_sym_case] = ACTIONS(209), - [anon_sym_default] = ACTIONS(211), - [anon_sym_while] = ACTIONS(213), - [anon_sym_do] = ACTIONS(215), - [anon_sym_for] = ACTIONS(217), - [anon_sym_return] = ACTIONS(219), - [anon_sym_break] = ACTIONS(221), - [anon_sym_continue] = ACTIONS(223), - [anon_sym_goto] = ACTIONS(225), - [anon_sym___try] = ACTIONS(227), - [anon_sym___leave] = ACTIONS(229), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(83), - [anon_sym___alignof__] = ACTIONS(85), - [anon_sym___alignof] = ACTIONS(85), - [anon_sym__alignof] = ACTIONS(85), - [anon_sym_alignof] = ACTIONS(85), - [anon_sym__Alignof] = ACTIONS(85), - [anon_sym_offsetof] = ACTIONS(87), - [anon_sym__Generic] = ACTIONS(89), - [anon_sym_asm] = ACTIONS(91), - [anon_sym___asm__] = ACTIONS(91), - [sym_number_literal] = ACTIONS(159), - [anon_sym_L_SQUOTE] = ACTIONS(95), - [anon_sym_u_SQUOTE] = ACTIONS(95), - [anon_sym_U_SQUOTE] = ACTIONS(95), - [anon_sym_u8_SQUOTE] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(95), - [anon_sym_L_DQUOTE] = ACTIONS(97), - [anon_sym_u_DQUOTE] = ACTIONS(97), - [anon_sym_U_DQUOTE] = ACTIONS(97), - [anon_sym_u8_DQUOTE] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(97), - [sym_true] = ACTIONS(161), - [sym_false] = ACTIONS(161), - [anon_sym_NULL] = ACTIONS(101), - [anon_sym_nullptr] = ACTIONS(101), + [sym__expression] = STATE(1258), + [sym__expression_not_binary] = STATE(809), + [sym_comma_expression] = STATE(2110), + [sym_conditional_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_pointer_expression] = STATE(877), + [sym_unary_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_update_expression] = STATE(809), + [sym_cast_expression] = STATE(809), + [sym_sizeof_expression] = STATE(809), + [sym_alignof_expression] = STATE(809), + [sym_offsetof_expression] = STATE(809), + [sym_generic_expression] = STATE(809), + [sym_subscript_expression] = STATE(877), + [sym_call_expression] = STATE(877), + [sym_gnu_asm_expression] = STATE(809), + [sym_field_expression] = STATE(877), + [sym_compound_literal_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(877), + [sym_char_literal] = STATE(809), + [sym_concatenated_string] = STATE(809), + [sym_string_literal] = STATE(573), + [sym_null] = STATE(809), + [aux_sym_attributed_declarator_repeat1] = STATE(440), + [sym_identifier] = ACTIONS(1720), + [anon_sym_LPAREN2] = ACTIONS(1579), + [anon_sym_BANG] = ACTIONS(1582), + [anon_sym_TILDE] = ACTIONS(1582), + [anon_sym_DASH] = ACTIONS(1585), + [anon_sym_PLUS] = ACTIONS(1585), + [anon_sym_STAR] = ACTIONS(1588), + [anon_sym_AMP] = ACTIONS(1588), + [anon_sym_SEMI] = ACTIONS(1723), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1594), + [anon_sym_LBRACE] = ACTIONS(1726), + [anon_sym_if] = ACTIONS(1729), + [anon_sym_switch] = ACTIONS(1732), + [anon_sym_case] = ACTIONS(1735), + [anon_sym_default] = ACTIONS(1738), + [anon_sym_while] = ACTIONS(1741), + [anon_sym_do] = ACTIONS(1744), + [anon_sym_for] = ACTIONS(1747), + [anon_sym_return] = ACTIONS(1750), + [anon_sym_break] = ACTIONS(1753), + [anon_sym_continue] = ACTIONS(1756), + [anon_sym_goto] = ACTIONS(1759), + [anon_sym___try] = ACTIONS(1762), + [anon_sym___leave] = ACTIONS(1765), + [anon_sym_DASH_DASH] = ACTIONS(1639), + [anon_sym_PLUS_PLUS] = ACTIONS(1639), + [anon_sym_sizeof] = ACTIONS(1642), + [anon_sym___alignof__] = ACTIONS(1645), + [anon_sym___alignof] = ACTIONS(1645), + [anon_sym__alignof] = ACTIONS(1645), + [anon_sym_alignof] = ACTIONS(1645), + [anon_sym__Alignof] = ACTIONS(1645), + [anon_sym_offsetof] = ACTIONS(1648), + [anon_sym__Generic] = ACTIONS(1651), + [anon_sym_asm] = ACTIONS(1654), + [anon_sym___asm__] = ACTIONS(1654), + [sym_number_literal] = ACTIONS(1657), + [anon_sym_L_SQUOTE] = ACTIONS(1660), + [anon_sym_u_SQUOTE] = ACTIONS(1660), + [anon_sym_U_SQUOTE] = ACTIONS(1660), + [anon_sym_u8_SQUOTE] = ACTIONS(1660), + [anon_sym_SQUOTE] = ACTIONS(1660), + [anon_sym_L_DQUOTE] = ACTIONS(1663), + [anon_sym_u_DQUOTE] = ACTIONS(1663), + [anon_sym_U_DQUOTE] = ACTIONS(1663), + [anon_sym_u8_DQUOTE] = ACTIONS(1663), + [anon_sym_DQUOTE] = ACTIONS(1663), + [sym_true] = ACTIONS(1666), + [sym_false] = ACTIONS(1666), + [anon_sym_NULL] = ACTIONS(1669), + [anon_sym_nullptr] = ACTIONS(1669), [sym_comment] = ACTIONS(3), }, - [436] = { - [sym_attribute_declaration] = STATE(463), - [sym_compound_statement] = STATE(90), - [sym_attributed_statement] = STATE(90), - [sym_labeled_statement] = STATE(90), - [sym_expression_statement] = STATE(90), - [sym_if_statement] = STATE(90), - [sym_switch_statement] = STATE(90), - [sym_case_statement] = STATE(90), - [sym_while_statement] = STATE(90), - [sym_do_statement] = STATE(90), - [sym_for_statement] = STATE(90), - [sym_return_statement] = STATE(90), - [sym_break_statement] = STATE(90), - [sym_continue_statement] = STATE(90), - [sym_goto_statement] = STATE(90), - [sym_seh_try_statement] = STATE(90), - [sym_seh_leave_statement] = STATE(90), - [sym__expression] = STATE(1225), - [sym__expression_not_binary] = STATE(792), - [sym_comma_expression] = STATE(2038), - [sym_conditional_expression] = STATE(792), - [sym_assignment_expression] = STATE(792), - [sym_pointer_expression] = STATE(901), - [sym_unary_expression] = STATE(792), - [sym_binary_expression] = STATE(792), - [sym_update_expression] = STATE(792), - [sym_cast_expression] = STATE(792), - [sym_sizeof_expression] = STATE(792), - [sym_alignof_expression] = STATE(792), - [sym_offsetof_expression] = STATE(792), - [sym_generic_expression] = STATE(792), - [sym_subscript_expression] = STATE(901), - [sym_call_expression] = STATE(901), - [sym_gnu_asm_expression] = STATE(792), - [sym_field_expression] = STATE(901), - [sym_compound_literal_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(901), - [sym_char_literal] = STATE(792), - [sym_concatenated_string] = STATE(792), - [sym_string_literal] = STATE(675), - [sym_null] = STATE(792), - [aux_sym_attributed_declarator_repeat1] = STATE(463), - [sym_identifier] = ACTIONS(1581), + [441] = { + [sym_attribute_declaration] = STATE(445), + [sym_compound_statement] = STATE(238), + [sym_attributed_statement] = STATE(238), + [sym_labeled_statement] = STATE(238), + [sym_expression_statement] = STATE(238), + [sym_if_statement] = STATE(238), + [sym_switch_statement] = STATE(238), + [sym_case_statement] = STATE(238), + [sym_while_statement] = STATE(238), + [sym_do_statement] = STATE(238), + [sym_for_statement] = STATE(238), + [sym_return_statement] = STATE(238), + [sym_break_statement] = STATE(238), + [sym_continue_statement] = STATE(238), + [sym_goto_statement] = STATE(238), + [sym_seh_try_statement] = STATE(238), + [sym_seh_leave_statement] = STATE(238), + [sym__expression] = STATE(1253), + [sym__expression_not_binary] = STATE(809), + [sym_comma_expression] = STATE(2218), + [sym_conditional_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_pointer_expression] = STATE(877), + [sym_unary_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_update_expression] = STATE(809), + [sym_cast_expression] = STATE(809), + [sym_sizeof_expression] = STATE(809), + [sym_alignof_expression] = STATE(809), + [sym_offsetof_expression] = STATE(809), + [sym_generic_expression] = STATE(809), + [sym_subscript_expression] = STATE(877), + [sym_call_expression] = STATE(877), + [sym_gnu_asm_expression] = STATE(809), + [sym_field_expression] = STATE(877), + [sym_compound_literal_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(877), + [sym_char_literal] = STATE(809), + [sym_concatenated_string] = STATE(809), + [sym_string_literal] = STATE(573), + [sym_null] = STATE(809), + [aux_sym_attributed_declarator_repeat1] = STATE(445), + [sym_identifier] = ACTIONS(1768), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -64945,149 +67442,53 @@ 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(123), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1573), - [anon_sym_LBRACE] = ACTIONS(131), - [anon_sym_if] = ACTIONS(133), - [anon_sym_switch] = ACTIONS(135), - [anon_sym_case] = ACTIONS(137), - [anon_sym_default] = ACTIONS(139), - [anon_sym_while] = ACTIONS(141), - [anon_sym_do] = ACTIONS(143), - [anon_sym_for] = ACTIONS(145), - [anon_sym_return] = ACTIONS(147), - [anon_sym_break] = ACTIONS(149), - [anon_sym_continue] = ACTIONS(151), - [anon_sym_goto] = ACTIONS(153), - [anon_sym___try] = ACTIONS(155), - [anon_sym___leave] = ACTIONS(157), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(83), - [anon_sym___alignof__] = ACTIONS(85), - [anon_sym___alignof] = ACTIONS(85), - [anon_sym__alignof] = ACTIONS(85), - [anon_sym_alignof] = ACTIONS(85), - [anon_sym__Alignof] = ACTIONS(85), - [anon_sym_offsetof] = ACTIONS(87), - [anon_sym__Generic] = ACTIONS(89), - [anon_sym_asm] = ACTIONS(91), - [anon_sym___asm__] = ACTIONS(91), - [sym_number_literal] = ACTIONS(159), - [anon_sym_L_SQUOTE] = ACTIONS(95), - [anon_sym_u_SQUOTE] = ACTIONS(95), - [anon_sym_U_SQUOTE] = ACTIONS(95), - [anon_sym_u8_SQUOTE] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(95), - [anon_sym_L_DQUOTE] = ACTIONS(97), - [anon_sym_u_DQUOTE] = ACTIONS(97), - [anon_sym_U_DQUOTE] = ACTIONS(97), - [anon_sym_u8_DQUOTE] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(97), - [sym_true] = ACTIONS(161), - [sym_false] = ACTIONS(161), - [anon_sym_NULL] = ACTIONS(101), - [anon_sym_nullptr] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - }, - [437] = { - [ts_builtin_sym_end] = ACTIONS(1509), - [sym_identifier] = ACTIONS(1507), - [aux_sym_preproc_include_token1] = ACTIONS(1507), - [aux_sym_preproc_def_token1] = ACTIONS(1507), - [aux_sym_preproc_if_token1] = ACTIONS(1507), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1507), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1507), - [sym_preproc_directive] = ACTIONS(1507), - [anon_sym_LPAREN2] = ACTIONS(1509), - [anon_sym_BANG] = ACTIONS(1509), - [anon_sym_TILDE] = ACTIONS(1509), - [anon_sym_DASH] = ACTIONS(1507), - [anon_sym_PLUS] = ACTIONS(1507), - [anon_sym_STAR] = ACTIONS(1509), - [anon_sym_AMP] = ACTIONS(1509), - [anon_sym___extension__] = ACTIONS(1507), - [anon_sym_typedef] = ACTIONS(1507), - [anon_sym_extern] = ACTIONS(1507), - [anon_sym___attribute__] = ACTIONS(1507), - [anon_sym___scanf] = ACTIONS(1507), - [anon_sym___printf] = ACTIONS(1507), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1509), - [anon_sym___declspec] = ACTIONS(1507), - [anon_sym___cdecl] = ACTIONS(1507), - [anon_sym___clrcall] = ACTIONS(1507), - [anon_sym___stdcall] = ACTIONS(1507), - [anon_sym___fastcall] = ACTIONS(1507), - [anon_sym___thiscall] = ACTIONS(1507), - [anon_sym___vectorcall] = ACTIONS(1507), - [anon_sym_LBRACE] = ACTIONS(1509), - [anon_sym_signed] = ACTIONS(1507), - [anon_sym_unsigned] = ACTIONS(1507), - [anon_sym_long] = ACTIONS(1507), - [anon_sym_short] = ACTIONS(1507), - [anon_sym_static] = ACTIONS(1507), - [anon_sym_auto] = ACTIONS(1507), - [anon_sym_register] = ACTIONS(1507), - [anon_sym_inline] = ACTIONS(1507), - [anon_sym___inline] = ACTIONS(1507), - [anon_sym___inline__] = ACTIONS(1507), - [anon_sym___forceinline] = ACTIONS(1507), - [anon_sym_thread_local] = ACTIONS(1507), - [anon_sym___thread] = ACTIONS(1507), - [anon_sym_const] = ACTIONS(1507), - [anon_sym_constexpr] = ACTIONS(1507), - [anon_sym_volatile] = ACTIONS(1507), - [anon_sym_restrict] = ACTIONS(1507), - [anon_sym___restrict__] = ACTIONS(1507), - [anon_sym__Atomic] = ACTIONS(1507), - [anon_sym__Noreturn] = ACTIONS(1507), - [anon_sym_noreturn] = ACTIONS(1507), - [sym_primitive_type] = ACTIONS(1507), - [anon_sym_enum] = ACTIONS(1507), - [anon_sym_struct] = ACTIONS(1507), - [anon_sym_union] = ACTIONS(1507), - [anon_sym_if] = ACTIONS(1507), - [anon_sym_switch] = ACTIONS(1507), - [anon_sym_case] = ACTIONS(1507), - [anon_sym_default] = ACTIONS(1507), - [anon_sym_while] = ACTIONS(1507), - [anon_sym_do] = ACTIONS(1507), - [anon_sym_for] = ACTIONS(1507), - [anon_sym_return] = ACTIONS(1507), - [anon_sym_break] = ACTIONS(1507), - [anon_sym_continue] = ACTIONS(1507), - [anon_sym_goto] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1509), - [anon_sym_PLUS_PLUS] = ACTIONS(1509), - [anon_sym_sizeof] = ACTIONS(1507), - [anon_sym___alignof__] = ACTIONS(1507), - [anon_sym___alignof] = ACTIONS(1507), - [anon_sym__alignof] = ACTIONS(1507), - [anon_sym_alignof] = ACTIONS(1507), - [anon_sym__Alignof] = ACTIONS(1507), - [anon_sym_offsetof] = ACTIONS(1507), - [anon_sym__Generic] = ACTIONS(1507), - [anon_sym_asm] = ACTIONS(1507), - [anon_sym___asm__] = ACTIONS(1507), - [sym_number_literal] = ACTIONS(1509), - [anon_sym_L_SQUOTE] = ACTIONS(1509), - [anon_sym_u_SQUOTE] = ACTIONS(1509), - [anon_sym_U_SQUOTE] = ACTIONS(1509), - [anon_sym_u8_SQUOTE] = ACTIONS(1509), - [anon_sym_SQUOTE] = ACTIONS(1509), - [anon_sym_L_DQUOTE] = ACTIONS(1509), - [anon_sym_u_DQUOTE] = ACTIONS(1509), - [anon_sym_U_DQUOTE] = ACTIONS(1509), - [anon_sym_u8_DQUOTE] = ACTIONS(1509), - [anon_sym_DQUOTE] = ACTIONS(1509), - [sym_true] = ACTIONS(1507), - [sym_false] = ACTIONS(1507), - [anon_sym_NULL] = ACTIONS(1507), - [anon_sym_nullptr] = ACTIONS(1507), + [anon_sym_SEMI] = ACTIONS(1171), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1566), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_if] = ACTIONS(61), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_case] = ACTIONS(65), + [anon_sym_default] = ACTIONS(67), + [anon_sym_while] = ACTIONS(69), + [anon_sym_do] = ACTIONS(71), + [anon_sym_for] = ACTIONS(73), + [anon_sym_return] = ACTIONS(75), + [anon_sym_break] = ACTIONS(77), + [anon_sym_continue] = ACTIONS(79), + [anon_sym_goto] = ACTIONS(81), + [anon_sym___try] = ACTIONS(1173), + [anon_sym___leave] = ACTIONS(1175), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [sym_number_literal] = ACTIONS(161), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(163), + [sym_false] = ACTIONS(163), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [438] = { - [sym_attribute_declaration] = STATE(438), + [442] = { + [sym_attribute_declaration] = STATE(435), [sym_compound_statement] = STATE(118), [sym_attributed_statement] = STATE(118), [sym_labeled_statement] = STATE(118), @@ -65104,224 +67505,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(118), [sym_seh_try_statement] = STATE(118), [sym_seh_leave_statement] = STATE(118), - [sym__expression] = STATE(1225), - [sym__expression_not_binary] = STATE(792), - [sym_comma_expression] = STATE(2038), - [sym_conditional_expression] = STATE(792), - [sym_assignment_expression] = STATE(792), - [sym_pointer_expression] = STATE(901), - [sym_unary_expression] = STATE(792), - [sym_binary_expression] = STATE(792), - [sym_update_expression] = STATE(792), - [sym_cast_expression] = STATE(792), - [sym_sizeof_expression] = STATE(792), - [sym_alignof_expression] = STATE(792), - [sym_offsetof_expression] = STATE(792), - [sym_generic_expression] = STATE(792), - [sym_subscript_expression] = STATE(901), - [sym_call_expression] = STATE(901), - [sym_gnu_asm_expression] = STATE(792), - [sym_field_expression] = STATE(901), - [sym_compound_literal_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(901), - [sym_char_literal] = STATE(792), - [sym_concatenated_string] = STATE(792), - [sym_string_literal] = STATE(675), - [sym_null] = STATE(792), - [aux_sym_attributed_declarator_repeat1] = STATE(438), - [sym_identifier] = ACTIONS(1685), - [anon_sym_LPAREN2] = ACTIONS(1586), - [anon_sym_BANG] = ACTIONS(1589), - [anon_sym_TILDE] = ACTIONS(1589), - [anon_sym_DASH] = ACTIONS(1592), - [anon_sym_PLUS] = ACTIONS(1592), - [anon_sym_STAR] = ACTIONS(1595), - [anon_sym_AMP] = ACTIONS(1595), - [anon_sym_SEMI] = ACTIONS(1688), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1601), - [anon_sym_LBRACE] = ACTIONS(1691), - [anon_sym_if] = ACTIONS(1694), - [anon_sym_switch] = ACTIONS(1697), - [anon_sym_case] = ACTIONS(1700), - [anon_sym_default] = ACTIONS(1703), - [anon_sym_while] = ACTIONS(1706), - [anon_sym_do] = ACTIONS(1709), - [anon_sym_for] = ACTIONS(1712), - [anon_sym_return] = ACTIONS(1715), - [anon_sym_break] = ACTIONS(1718), - [anon_sym_continue] = ACTIONS(1721), - [anon_sym_goto] = ACTIONS(1724), - [anon_sym___try] = ACTIONS(1727), - [anon_sym___leave] = ACTIONS(1730), - [anon_sym_DASH_DASH] = ACTIONS(1646), - [anon_sym_PLUS_PLUS] = ACTIONS(1646), - [anon_sym_sizeof] = ACTIONS(1649), - [anon_sym___alignof__] = ACTIONS(1652), - [anon_sym___alignof] = ACTIONS(1652), - [anon_sym__alignof] = ACTIONS(1652), - [anon_sym_alignof] = ACTIONS(1652), - [anon_sym__Alignof] = ACTIONS(1652), - [anon_sym_offsetof] = ACTIONS(1655), - [anon_sym__Generic] = ACTIONS(1658), - [anon_sym_asm] = ACTIONS(1661), - [anon_sym___asm__] = ACTIONS(1661), - [sym_number_literal] = ACTIONS(1664), - [anon_sym_L_SQUOTE] = ACTIONS(1667), - [anon_sym_u_SQUOTE] = ACTIONS(1667), - [anon_sym_U_SQUOTE] = ACTIONS(1667), - [anon_sym_u8_SQUOTE] = ACTIONS(1667), - [anon_sym_SQUOTE] = ACTIONS(1667), - [anon_sym_L_DQUOTE] = ACTIONS(1670), - [anon_sym_u_DQUOTE] = ACTIONS(1670), - [anon_sym_U_DQUOTE] = ACTIONS(1670), - [anon_sym_u8_DQUOTE] = ACTIONS(1670), - [anon_sym_DQUOTE] = ACTIONS(1670), - [sym_true] = ACTIONS(1673), - [sym_false] = ACTIONS(1673), - [anon_sym_NULL] = ACTIONS(1676), - [anon_sym_nullptr] = ACTIONS(1676), - [sym_comment] = ACTIONS(3), - }, - [439] = { - [sym_attribute_declaration] = STATE(439), - [sym_compound_statement] = STATE(197), - [sym_attributed_statement] = STATE(197), - [sym_labeled_statement] = STATE(197), - [sym_expression_statement] = STATE(197), - [sym_if_statement] = STATE(197), - [sym_switch_statement] = STATE(197), - [sym_case_statement] = STATE(197), - [sym_while_statement] = STATE(197), - [sym_do_statement] = STATE(197), - [sym_for_statement] = STATE(197), - [sym_return_statement] = STATE(197), - [sym_break_statement] = STATE(197), - [sym_continue_statement] = STATE(197), - [sym_goto_statement] = STATE(197), - [sym_seh_try_statement] = STATE(197), - [sym_seh_leave_statement] = STATE(197), - [sym__expression] = STATE(1230), - [sym__expression_not_binary] = STATE(792), - [sym_comma_expression] = STATE(2008), - [sym_conditional_expression] = STATE(792), - [sym_assignment_expression] = STATE(792), - [sym_pointer_expression] = STATE(901), - [sym_unary_expression] = STATE(792), - [sym_binary_expression] = STATE(792), - [sym_update_expression] = STATE(792), - [sym_cast_expression] = STATE(792), - [sym_sizeof_expression] = STATE(792), - [sym_alignof_expression] = STATE(792), - [sym_offsetof_expression] = STATE(792), - [sym_generic_expression] = STATE(792), - [sym_subscript_expression] = STATE(901), - [sym_call_expression] = STATE(901), - [sym_gnu_asm_expression] = STATE(792), - [sym_field_expression] = STATE(901), - [sym_compound_literal_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(901), - [sym_char_literal] = STATE(792), - [sym_concatenated_string] = STATE(792), - [sym_string_literal] = STATE(675), - [sym_null] = STATE(792), - [aux_sym_attributed_declarator_repeat1] = STATE(439), - [sym_identifier] = ACTIONS(1733), - [anon_sym_LPAREN2] = ACTIONS(1586), - [anon_sym_BANG] = ACTIONS(1589), - [anon_sym_TILDE] = ACTIONS(1589), - [anon_sym_DASH] = ACTIONS(1592), - [anon_sym_PLUS] = ACTIONS(1592), - [anon_sym_STAR] = ACTIONS(1595), - [anon_sym_AMP] = ACTIONS(1595), - [anon_sym_SEMI] = ACTIONS(1736), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1601), - [anon_sym_LBRACE] = ACTIONS(1739), - [anon_sym_if] = ACTIONS(1742), - [anon_sym_switch] = ACTIONS(1745), - [anon_sym_case] = ACTIONS(1748), - [anon_sym_default] = ACTIONS(1751), - [anon_sym_while] = ACTIONS(1754), - [anon_sym_do] = ACTIONS(1757), - [anon_sym_for] = ACTIONS(1760), - [anon_sym_return] = ACTIONS(1763), - [anon_sym_break] = ACTIONS(1766), - [anon_sym_continue] = ACTIONS(1769), - [anon_sym_goto] = ACTIONS(1772), - [anon_sym___try] = ACTIONS(1775), - [anon_sym___leave] = ACTIONS(1778), - [anon_sym_DASH_DASH] = ACTIONS(1646), - [anon_sym_PLUS_PLUS] = ACTIONS(1646), - [anon_sym_sizeof] = ACTIONS(1649), - [anon_sym___alignof__] = ACTIONS(1652), - [anon_sym___alignof] = ACTIONS(1652), - [anon_sym__alignof] = ACTIONS(1652), - [anon_sym_alignof] = ACTIONS(1652), - [anon_sym__Alignof] = ACTIONS(1652), - [anon_sym_offsetof] = ACTIONS(1655), - [anon_sym__Generic] = ACTIONS(1658), - [anon_sym_asm] = ACTIONS(1661), - [anon_sym___asm__] = ACTIONS(1661), - [sym_number_literal] = ACTIONS(1664), - [anon_sym_L_SQUOTE] = ACTIONS(1667), - [anon_sym_u_SQUOTE] = ACTIONS(1667), - [anon_sym_U_SQUOTE] = ACTIONS(1667), - [anon_sym_u8_SQUOTE] = ACTIONS(1667), - [anon_sym_SQUOTE] = ACTIONS(1667), - [anon_sym_L_DQUOTE] = ACTIONS(1670), - [anon_sym_u_DQUOTE] = ACTIONS(1670), - [anon_sym_U_DQUOTE] = ACTIONS(1670), - [anon_sym_u8_DQUOTE] = ACTIONS(1670), - [anon_sym_DQUOTE] = ACTIONS(1670), - [sym_true] = ACTIONS(1673), - [sym_false] = ACTIONS(1673), - [anon_sym_NULL] = ACTIONS(1676), - [anon_sym_nullptr] = ACTIONS(1676), - [sym_comment] = ACTIONS(3), - }, - [440] = { - [sym_attribute_declaration] = STATE(449), - [sym_compound_statement] = STATE(312), - [sym_attributed_statement] = STATE(312), - [sym_labeled_statement] = STATE(312), - [sym_expression_statement] = STATE(312), - [sym_if_statement] = STATE(312), - [sym_switch_statement] = STATE(312), - [sym_case_statement] = STATE(312), - [sym_while_statement] = STATE(312), - [sym_do_statement] = STATE(312), - [sym_for_statement] = STATE(312), - [sym_return_statement] = STATE(312), - [sym_break_statement] = STATE(312), - [sym_continue_statement] = STATE(312), - [sym_goto_statement] = STATE(312), - [sym_seh_try_statement] = STATE(312), - [sym_seh_leave_statement] = STATE(312), - [sym__expression] = STATE(1227), - [sym__expression_not_binary] = STATE(792), - [sym_comma_expression] = STATE(2090), - [sym_conditional_expression] = STATE(792), - [sym_assignment_expression] = STATE(792), - [sym_pointer_expression] = STATE(901), - [sym_unary_expression] = STATE(792), - [sym_binary_expression] = STATE(792), - [sym_update_expression] = STATE(792), - [sym_cast_expression] = STATE(792), - [sym_sizeof_expression] = STATE(792), - [sym_alignof_expression] = STATE(792), - [sym_offsetof_expression] = STATE(792), - [sym_generic_expression] = STATE(792), - [sym_subscript_expression] = STATE(901), - [sym_call_expression] = STATE(901), - [sym_gnu_asm_expression] = STATE(792), - [sym_field_expression] = STATE(901), - [sym_compound_literal_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(901), - [sym_char_literal] = STATE(792), - [sym_concatenated_string] = STATE(792), - [sym_string_literal] = STATE(675), - [sym_null] = STATE(792), - [aux_sym_attributed_declarator_repeat1] = STATE(449), - [sym_identifier] = ACTIONS(1571), + [sym__expression] = STATE(1239), + [sym__expression_not_binary] = STATE(809), + [sym_comma_expression] = STATE(2249), + [sym_conditional_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_pointer_expression] = STATE(877), + [sym_unary_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_update_expression] = STATE(809), + [sym_cast_expression] = STATE(809), + [sym_sizeof_expression] = STATE(809), + [sym_alignof_expression] = STATE(809), + [sym_offsetof_expression] = STATE(809), + [sym_generic_expression] = STATE(809), + [sym_subscript_expression] = STATE(877), + [sym_call_expression] = STATE(877), + [sym_gnu_asm_expression] = STATE(809), + [sym_field_expression] = STATE(877), + [sym_compound_literal_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(877), + [sym_char_literal] = STATE(809), + [sym_concatenated_string] = STATE(809), + [sym_string_literal] = STATE(573), + [sym_null] = STATE(809), + [aux_sym_attributed_declarator_repeat1] = STATE(435), + [sym_identifier] = ACTIONS(1574), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -65329,95 +67538,95 @@ 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(1110), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1573), - [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_if] = ACTIONS(59), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_case] = ACTIONS(63), - [anon_sym_default] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_do] = ACTIONS(69), - [anon_sym_for] = ACTIONS(71), - [anon_sym_return] = ACTIONS(73), - [anon_sym_break] = ACTIONS(75), - [anon_sym_continue] = ACTIONS(77), - [anon_sym_goto] = ACTIONS(79), - [anon_sym___try] = ACTIONS(1112), - [anon_sym___leave] = ACTIONS(1114), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(83), - [anon_sym___alignof__] = ACTIONS(85), - [anon_sym___alignof] = ACTIONS(85), - [anon_sym__alignof] = ACTIONS(85), - [anon_sym_alignof] = ACTIONS(85), - [anon_sym__Alignof] = ACTIONS(85), - [anon_sym_offsetof] = ACTIONS(87), - [anon_sym__Generic] = ACTIONS(89), - [anon_sym_asm] = ACTIONS(91), - [anon_sym___asm__] = ACTIONS(91), - [sym_number_literal] = ACTIONS(159), - [anon_sym_L_SQUOTE] = ACTIONS(95), - [anon_sym_u_SQUOTE] = ACTIONS(95), - [anon_sym_U_SQUOTE] = ACTIONS(95), - [anon_sym_u8_SQUOTE] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(95), - [anon_sym_L_DQUOTE] = ACTIONS(97), - [anon_sym_u_DQUOTE] = ACTIONS(97), - [anon_sym_U_DQUOTE] = ACTIONS(97), - [anon_sym_u8_DQUOTE] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(97), - [sym_true] = ACTIONS(161), - [sym_false] = ACTIONS(161), - [anon_sym_NULL] = ACTIONS(101), - [anon_sym_nullptr] = ACTIONS(101), + [anon_sym_SEMI] = ACTIONS(125), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1566), + [anon_sym_LBRACE] = ACTIONS(133), + [anon_sym_if] = ACTIONS(135), + [anon_sym_switch] = ACTIONS(137), + [anon_sym_case] = ACTIONS(139), + [anon_sym_default] = ACTIONS(141), + [anon_sym_while] = ACTIONS(143), + [anon_sym_do] = ACTIONS(145), + [anon_sym_for] = ACTIONS(147), + [anon_sym_return] = ACTIONS(149), + [anon_sym_break] = ACTIONS(151), + [anon_sym_continue] = ACTIONS(153), + [anon_sym_goto] = ACTIONS(155), + [anon_sym___try] = ACTIONS(157), + [anon_sym___leave] = ACTIONS(159), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [sym_number_literal] = ACTIONS(161), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(163), + [sym_false] = ACTIONS(163), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [441] = { - [sym_attribute_declaration] = STATE(435), - [sym_compound_statement] = STATE(179), - [sym_attributed_statement] = STATE(179), - [sym_labeled_statement] = STATE(179), - [sym_expression_statement] = STATE(179), - [sym_if_statement] = STATE(179), - [sym_switch_statement] = STATE(179), - [sym_case_statement] = STATE(179), - [sym_while_statement] = STATE(179), - [sym_do_statement] = STATE(179), - [sym_for_statement] = STATE(179), - [sym_return_statement] = STATE(179), - [sym_break_statement] = STATE(179), - [sym_continue_statement] = STATE(179), - [sym_goto_statement] = STATE(179), - [sym_seh_try_statement] = STATE(179), - [sym_seh_leave_statement] = STATE(179), - [sym__expression] = STATE(1230), - [sym__expression_not_binary] = STATE(792), - [sym_comma_expression] = STATE(2008), - [sym_conditional_expression] = STATE(792), - [sym_assignment_expression] = STATE(792), - [sym_pointer_expression] = STATE(901), - [sym_unary_expression] = STATE(792), - [sym_binary_expression] = STATE(792), - [sym_update_expression] = STATE(792), - [sym_cast_expression] = STATE(792), - [sym_sizeof_expression] = STATE(792), - [sym_alignof_expression] = STATE(792), - [sym_offsetof_expression] = STATE(792), - [sym_generic_expression] = STATE(792), - [sym_subscript_expression] = STATE(901), - [sym_call_expression] = STATE(901), - [sym_gnu_asm_expression] = STATE(792), - [sym_field_expression] = STATE(901), - [sym_compound_literal_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(901), - [sym_char_literal] = STATE(792), - [sym_concatenated_string] = STATE(792), - [sym_string_literal] = STATE(675), - [sym_null] = STATE(792), - [aux_sym_attributed_declarator_repeat1] = STATE(435), - [sym_identifier] = ACTIONS(1679), + [443] = { + [sym_attribute_declaration] = STATE(480), + [sym_compound_statement] = STATE(177), + [sym_attributed_statement] = STATE(177), + [sym_labeled_statement] = STATE(177), + [sym_expression_statement] = STATE(177), + [sym_if_statement] = STATE(177), + [sym_switch_statement] = STATE(177), + [sym_case_statement] = STATE(177), + [sym_while_statement] = STATE(177), + [sym_do_statement] = STATE(177), + [sym_for_statement] = STATE(177), + [sym_return_statement] = STATE(177), + [sym_break_statement] = STATE(177), + [sym_continue_statement] = STATE(177), + [sym_goto_statement] = STATE(177), + [sym_seh_try_statement] = STATE(177), + [sym_seh_leave_statement] = STATE(177), + [sym__expression] = STATE(1258), + [sym__expression_not_binary] = STATE(809), + [sym_comma_expression] = STATE(2110), + [sym_conditional_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_pointer_expression] = STATE(877), + [sym_unary_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_update_expression] = STATE(809), + [sym_cast_expression] = STATE(809), + [sym_sizeof_expression] = STATE(809), + [sym_alignof_expression] = STATE(809), + [sym_offsetof_expression] = STATE(809), + [sym_generic_expression] = STATE(809), + [sym_subscript_expression] = STATE(877), + [sym_call_expression] = STATE(877), + [sym_gnu_asm_expression] = STATE(809), + [sym_field_expression] = STATE(877), + [sym_compound_literal_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(877), + [sym_char_literal] = STATE(809), + [sym_concatenated_string] = STATE(809), + [sym_string_literal] = STATE(573), + [sym_null] = STATE(809), + [aux_sym_attributed_declarator_repeat1] = STATE(480), + [sym_identifier] = ACTIONS(1770), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -65425,95 +67634,95 @@ 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(195), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1573), - [anon_sym_LBRACE] = ACTIONS(203), - [anon_sym_if] = ACTIONS(205), - [anon_sym_switch] = ACTIONS(207), - [anon_sym_case] = ACTIONS(209), - [anon_sym_default] = ACTIONS(211), - [anon_sym_while] = ACTIONS(213), - [anon_sym_do] = ACTIONS(215), - [anon_sym_for] = ACTIONS(217), - [anon_sym_return] = ACTIONS(219), - [anon_sym_break] = ACTIONS(221), - [anon_sym_continue] = ACTIONS(223), - [anon_sym_goto] = ACTIONS(225), - [anon_sym___try] = ACTIONS(227), - [anon_sym___leave] = ACTIONS(229), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(83), - [anon_sym___alignof__] = ACTIONS(85), - [anon_sym___alignof] = ACTIONS(85), - [anon_sym__alignof] = ACTIONS(85), - [anon_sym_alignof] = ACTIONS(85), - [anon_sym__Alignof] = ACTIONS(85), - [anon_sym_offsetof] = ACTIONS(87), - [anon_sym__Generic] = ACTIONS(89), - [anon_sym_asm] = ACTIONS(91), - [anon_sym___asm__] = ACTIONS(91), - [sym_number_literal] = ACTIONS(159), - [anon_sym_L_SQUOTE] = ACTIONS(95), - [anon_sym_u_SQUOTE] = ACTIONS(95), - [anon_sym_U_SQUOTE] = ACTIONS(95), - [anon_sym_u8_SQUOTE] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(95), - [anon_sym_L_DQUOTE] = ACTIONS(97), - [anon_sym_u_DQUOTE] = ACTIONS(97), - [anon_sym_U_DQUOTE] = ACTIONS(97), - [anon_sym_u8_DQUOTE] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(97), - [sym_true] = ACTIONS(161), - [sym_false] = ACTIONS(161), - [anon_sym_NULL] = ACTIONS(101), - [anon_sym_nullptr] = ACTIONS(101), + [anon_sym_SEMI] = ACTIONS(197), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1566), + [anon_sym_LBRACE] = ACTIONS(205), + [anon_sym_if] = ACTIONS(207), + [anon_sym_switch] = ACTIONS(209), + [anon_sym_case] = ACTIONS(211), + [anon_sym_default] = ACTIONS(213), + [anon_sym_while] = ACTIONS(215), + [anon_sym_do] = ACTIONS(217), + [anon_sym_for] = ACTIONS(219), + [anon_sym_return] = ACTIONS(221), + [anon_sym_break] = ACTIONS(223), + [anon_sym_continue] = ACTIONS(225), + [anon_sym_goto] = ACTIONS(227), + [anon_sym___try] = ACTIONS(229), + [anon_sym___leave] = ACTIONS(231), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [sym_number_literal] = ACTIONS(161), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(163), + [sym_false] = ACTIONS(163), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [442] = { - [sym_attribute_declaration] = STATE(435), - [sym_compound_statement] = STATE(189), - [sym_attributed_statement] = STATE(190), - [sym_labeled_statement] = STATE(194), - [sym_expression_statement] = STATE(196), - [sym_if_statement] = STATE(195), - [sym_switch_statement] = STATE(186), - [sym_case_statement] = STATE(162), - [sym_while_statement] = STATE(181), - [sym_do_statement] = STATE(180), - [sym_for_statement] = STATE(178), - [sym_return_statement] = STATE(176), - [sym_break_statement] = STATE(172), - [sym_continue_statement] = STATE(171), - [sym_goto_statement] = STATE(170), - [sym_seh_try_statement] = STATE(169), - [sym_seh_leave_statement] = STATE(168), - [sym__expression] = STATE(1230), - [sym__expression_not_binary] = STATE(792), - [sym_comma_expression] = STATE(2008), - [sym_conditional_expression] = STATE(792), - [sym_assignment_expression] = STATE(792), - [sym_pointer_expression] = STATE(901), - [sym_unary_expression] = STATE(792), - [sym_binary_expression] = STATE(792), - [sym_update_expression] = STATE(792), - [sym_cast_expression] = STATE(792), - [sym_sizeof_expression] = STATE(792), - [sym_alignof_expression] = STATE(792), - [sym_offsetof_expression] = STATE(792), - [sym_generic_expression] = STATE(792), - [sym_subscript_expression] = STATE(901), - [sym_call_expression] = STATE(901), - [sym_gnu_asm_expression] = STATE(792), - [sym_field_expression] = STATE(901), - [sym_compound_literal_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(901), - [sym_char_literal] = STATE(792), - [sym_concatenated_string] = STATE(792), - [sym_string_literal] = STATE(675), - [sym_null] = STATE(792), - [aux_sym_attributed_declarator_repeat1] = STATE(435), - [sym_identifier] = ACTIONS(1679), + [444] = { + [sym_attribute_declaration] = STATE(465), + [sym_compound_statement] = STATE(2172), + [sym_attributed_statement] = STATE(2172), + [sym_labeled_statement] = STATE(2172), + [sym_expression_statement] = STATE(2172), + [sym_if_statement] = STATE(2172), + [sym_switch_statement] = STATE(2172), + [sym_case_statement] = STATE(2172), + [sym_while_statement] = STATE(2172), + [sym_do_statement] = STATE(2172), + [sym_for_statement] = STATE(2172), + [sym_return_statement] = STATE(2172), + [sym_break_statement] = STATE(2172), + [sym_continue_statement] = STATE(2172), + [sym_goto_statement] = STATE(2172), + [sym_seh_try_statement] = STATE(2172), + [sym_seh_leave_statement] = STATE(2172), + [sym__expression] = STATE(1272), + [sym__expression_not_binary] = STATE(809), + [sym_comma_expression] = STATE(2198), + [sym_conditional_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_pointer_expression] = STATE(877), + [sym_unary_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_update_expression] = STATE(809), + [sym_cast_expression] = STATE(809), + [sym_sizeof_expression] = STATE(809), + [sym_alignof_expression] = STATE(809), + [sym_offsetof_expression] = STATE(809), + [sym_generic_expression] = STATE(809), + [sym_subscript_expression] = STATE(877), + [sym_call_expression] = STATE(877), + [sym_gnu_asm_expression] = STATE(809), + [sym_field_expression] = STATE(877), + [sym_compound_literal_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(877), + [sym_char_literal] = STATE(809), + [sym_concatenated_string] = STATE(809), + [sym_string_literal] = STATE(573), + [sym_null] = STATE(809), + [aux_sym_attributed_declarator_repeat1] = STATE(465), + [sym_identifier] = ACTIONS(1568), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -65521,287 +67730,95 @@ 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(195), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1573), - [anon_sym_LBRACE] = ACTIONS(203), - [anon_sym_if] = ACTIONS(205), - [anon_sym_switch] = ACTIONS(207), - [anon_sym_case] = ACTIONS(209), - [anon_sym_default] = ACTIONS(211), - [anon_sym_while] = ACTIONS(213), - [anon_sym_do] = ACTIONS(215), - [anon_sym_for] = ACTIONS(217), - [anon_sym_return] = ACTIONS(219), - [anon_sym_break] = ACTIONS(221), - [anon_sym_continue] = ACTIONS(223), - [anon_sym_goto] = ACTIONS(225), - [anon_sym___try] = ACTIONS(227), - [anon_sym___leave] = ACTIONS(229), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(83), - [anon_sym___alignof__] = ACTIONS(85), - [anon_sym___alignof] = ACTIONS(85), - [anon_sym__alignof] = ACTIONS(85), - [anon_sym_alignof] = ACTIONS(85), - [anon_sym__Alignof] = ACTIONS(85), - [anon_sym_offsetof] = ACTIONS(87), - [anon_sym__Generic] = ACTIONS(89), - [anon_sym_asm] = ACTIONS(91), - [anon_sym___asm__] = ACTIONS(91), - [sym_number_literal] = ACTIONS(159), - [anon_sym_L_SQUOTE] = ACTIONS(95), - [anon_sym_u_SQUOTE] = ACTIONS(95), - [anon_sym_U_SQUOTE] = ACTIONS(95), - [anon_sym_u8_SQUOTE] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(95), - [anon_sym_L_DQUOTE] = ACTIONS(97), - [anon_sym_u_DQUOTE] = ACTIONS(97), - [anon_sym_U_DQUOTE] = ACTIONS(97), - [anon_sym_u8_DQUOTE] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(97), - [sym_true] = ACTIONS(161), - [sym_false] = ACTIONS(161), - [anon_sym_NULL] = ACTIONS(101), - [anon_sym_nullptr] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - }, - [443] = { - [ts_builtin_sym_end] = ACTIONS(1505), - [sym_identifier] = ACTIONS(1503), - [aux_sym_preproc_include_token1] = ACTIONS(1503), - [aux_sym_preproc_def_token1] = ACTIONS(1503), - [aux_sym_preproc_if_token1] = ACTIONS(1503), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1503), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1503), - [sym_preproc_directive] = ACTIONS(1503), - [anon_sym_LPAREN2] = ACTIONS(1505), - [anon_sym_BANG] = ACTIONS(1505), - [anon_sym_TILDE] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1503), - [anon_sym_PLUS] = ACTIONS(1503), - [anon_sym_STAR] = ACTIONS(1505), - [anon_sym_AMP] = ACTIONS(1505), - [anon_sym___extension__] = ACTIONS(1503), - [anon_sym_typedef] = ACTIONS(1503), - [anon_sym_extern] = ACTIONS(1503), - [anon_sym___attribute__] = ACTIONS(1503), - [anon_sym___scanf] = ACTIONS(1503), - [anon_sym___printf] = ACTIONS(1503), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1505), - [anon_sym___declspec] = ACTIONS(1503), - [anon_sym___cdecl] = ACTIONS(1503), - [anon_sym___clrcall] = ACTIONS(1503), - [anon_sym___stdcall] = ACTIONS(1503), - [anon_sym___fastcall] = ACTIONS(1503), - [anon_sym___thiscall] = ACTIONS(1503), - [anon_sym___vectorcall] = ACTIONS(1503), - [anon_sym_LBRACE] = ACTIONS(1505), - [anon_sym_signed] = ACTIONS(1503), - [anon_sym_unsigned] = ACTIONS(1503), - [anon_sym_long] = ACTIONS(1503), - [anon_sym_short] = ACTIONS(1503), - [anon_sym_static] = ACTIONS(1503), - [anon_sym_auto] = ACTIONS(1503), - [anon_sym_register] = ACTIONS(1503), - [anon_sym_inline] = ACTIONS(1503), - [anon_sym___inline] = ACTIONS(1503), - [anon_sym___inline__] = ACTIONS(1503), - [anon_sym___forceinline] = ACTIONS(1503), - [anon_sym_thread_local] = ACTIONS(1503), - [anon_sym___thread] = ACTIONS(1503), - [anon_sym_const] = ACTIONS(1503), - [anon_sym_constexpr] = ACTIONS(1503), - [anon_sym_volatile] = ACTIONS(1503), - [anon_sym_restrict] = ACTIONS(1503), - [anon_sym___restrict__] = ACTIONS(1503), - [anon_sym__Atomic] = ACTIONS(1503), - [anon_sym__Noreturn] = ACTIONS(1503), - [anon_sym_noreturn] = ACTIONS(1503), - [sym_primitive_type] = ACTIONS(1503), - [anon_sym_enum] = ACTIONS(1503), - [anon_sym_struct] = ACTIONS(1503), - [anon_sym_union] = ACTIONS(1503), - [anon_sym_if] = ACTIONS(1503), - [anon_sym_switch] = ACTIONS(1503), - [anon_sym_case] = ACTIONS(1503), - [anon_sym_default] = ACTIONS(1503), - [anon_sym_while] = ACTIONS(1503), - [anon_sym_do] = ACTIONS(1503), - [anon_sym_for] = ACTIONS(1503), - [anon_sym_return] = ACTIONS(1503), - [anon_sym_break] = ACTIONS(1503), - [anon_sym_continue] = ACTIONS(1503), - [anon_sym_goto] = ACTIONS(1503), - [anon_sym_DASH_DASH] = ACTIONS(1505), - [anon_sym_PLUS_PLUS] = ACTIONS(1505), - [anon_sym_sizeof] = ACTIONS(1503), - [anon_sym___alignof__] = ACTIONS(1503), - [anon_sym___alignof] = ACTIONS(1503), - [anon_sym__alignof] = ACTIONS(1503), - [anon_sym_alignof] = ACTIONS(1503), - [anon_sym__Alignof] = ACTIONS(1503), - [anon_sym_offsetof] = ACTIONS(1503), - [anon_sym__Generic] = ACTIONS(1503), - [anon_sym_asm] = ACTIONS(1503), - [anon_sym___asm__] = ACTIONS(1503), - [sym_number_literal] = ACTIONS(1505), - [anon_sym_L_SQUOTE] = ACTIONS(1505), - [anon_sym_u_SQUOTE] = ACTIONS(1505), - [anon_sym_U_SQUOTE] = ACTIONS(1505), - [anon_sym_u8_SQUOTE] = ACTIONS(1505), - [anon_sym_SQUOTE] = ACTIONS(1505), - [anon_sym_L_DQUOTE] = ACTIONS(1505), - [anon_sym_u_DQUOTE] = ACTIONS(1505), - [anon_sym_U_DQUOTE] = ACTIONS(1505), - [anon_sym_u8_DQUOTE] = ACTIONS(1505), - [anon_sym_DQUOTE] = ACTIONS(1505), - [sym_true] = ACTIONS(1503), - [sym_false] = ACTIONS(1503), - [anon_sym_NULL] = ACTIONS(1503), - [anon_sym_nullptr] = ACTIONS(1503), - [sym_comment] = ACTIONS(3), - }, - [444] = { - [ts_builtin_sym_end] = ACTIONS(1499), - [sym_identifier] = ACTIONS(1497), - [aux_sym_preproc_include_token1] = ACTIONS(1497), - [aux_sym_preproc_def_token1] = ACTIONS(1497), - [aux_sym_preproc_if_token1] = ACTIONS(1497), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1497), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1497), - [sym_preproc_directive] = ACTIONS(1497), - [anon_sym_LPAREN2] = ACTIONS(1499), - [anon_sym_BANG] = ACTIONS(1499), - [anon_sym_TILDE] = ACTIONS(1499), - [anon_sym_DASH] = ACTIONS(1497), - [anon_sym_PLUS] = ACTIONS(1497), - [anon_sym_STAR] = ACTIONS(1499), - [anon_sym_AMP] = ACTIONS(1499), - [anon_sym___extension__] = ACTIONS(1497), - [anon_sym_typedef] = ACTIONS(1497), - [anon_sym_extern] = ACTIONS(1497), - [anon_sym___attribute__] = ACTIONS(1497), - [anon_sym___scanf] = ACTIONS(1497), - [anon_sym___printf] = ACTIONS(1497), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1499), - [anon_sym___declspec] = ACTIONS(1497), - [anon_sym___cdecl] = ACTIONS(1497), - [anon_sym___clrcall] = ACTIONS(1497), - [anon_sym___stdcall] = ACTIONS(1497), - [anon_sym___fastcall] = ACTIONS(1497), - [anon_sym___thiscall] = ACTIONS(1497), - [anon_sym___vectorcall] = ACTIONS(1497), - [anon_sym_LBRACE] = ACTIONS(1499), - [anon_sym_signed] = ACTIONS(1497), - [anon_sym_unsigned] = ACTIONS(1497), - [anon_sym_long] = ACTIONS(1497), - [anon_sym_short] = ACTIONS(1497), - [anon_sym_static] = ACTIONS(1497), - [anon_sym_auto] = ACTIONS(1497), - [anon_sym_register] = ACTIONS(1497), - [anon_sym_inline] = ACTIONS(1497), - [anon_sym___inline] = ACTIONS(1497), - [anon_sym___inline__] = ACTIONS(1497), - [anon_sym___forceinline] = ACTIONS(1497), - [anon_sym_thread_local] = ACTIONS(1497), - [anon_sym___thread] = ACTIONS(1497), - [anon_sym_const] = ACTIONS(1497), - [anon_sym_constexpr] = ACTIONS(1497), - [anon_sym_volatile] = ACTIONS(1497), - [anon_sym_restrict] = ACTIONS(1497), - [anon_sym___restrict__] = ACTIONS(1497), - [anon_sym__Atomic] = ACTIONS(1497), - [anon_sym__Noreturn] = ACTIONS(1497), - [anon_sym_noreturn] = ACTIONS(1497), - [sym_primitive_type] = ACTIONS(1497), - [anon_sym_enum] = ACTIONS(1497), - [anon_sym_struct] = ACTIONS(1497), - [anon_sym_union] = ACTIONS(1497), - [anon_sym_if] = ACTIONS(1497), - [anon_sym_switch] = ACTIONS(1497), - [anon_sym_case] = ACTIONS(1497), - [anon_sym_default] = ACTIONS(1497), - [anon_sym_while] = ACTIONS(1497), - [anon_sym_do] = ACTIONS(1497), - [anon_sym_for] = ACTIONS(1497), - [anon_sym_return] = ACTIONS(1497), - [anon_sym_break] = ACTIONS(1497), - [anon_sym_continue] = ACTIONS(1497), - [anon_sym_goto] = ACTIONS(1497), - [anon_sym_DASH_DASH] = ACTIONS(1499), - [anon_sym_PLUS_PLUS] = ACTIONS(1499), - [anon_sym_sizeof] = ACTIONS(1497), - [anon_sym___alignof__] = ACTIONS(1497), - [anon_sym___alignof] = ACTIONS(1497), - [anon_sym__alignof] = ACTIONS(1497), - [anon_sym_alignof] = ACTIONS(1497), - [anon_sym__Alignof] = ACTIONS(1497), - [anon_sym_offsetof] = ACTIONS(1497), - [anon_sym__Generic] = ACTIONS(1497), - [anon_sym_asm] = ACTIONS(1497), - [anon_sym___asm__] = ACTIONS(1497), - [sym_number_literal] = ACTIONS(1499), - [anon_sym_L_SQUOTE] = ACTIONS(1499), - [anon_sym_u_SQUOTE] = ACTIONS(1499), - [anon_sym_U_SQUOTE] = ACTIONS(1499), - [anon_sym_u8_SQUOTE] = ACTIONS(1499), - [anon_sym_SQUOTE] = ACTIONS(1499), - [anon_sym_L_DQUOTE] = ACTIONS(1499), - [anon_sym_u_DQUOTE] = ACTIONS(1499), - [anon_sym_U_DQUOTE] = ACTIONS(1499), - [anon_sym_u8_DQUOTE] = ACTIONS(1499), - [anon_sym_DQUOTE] = ACTIONS(1499), - [sym_true] = ACTIONS(1497), - [sym_false] = ACTIONS(1497), - [anon_sym_NULL] = ACTIONS(1497), - [anon_sym_nullptr] = ACTIONS(1497), + [anon_sym_SEMI] = ACTIONS(623), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1566), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_if] = ACTIONS(1285), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_case] = ACTIONS(1570), + [anon_sym_default] = ACTIONS(1572), + [anon_sym_while] = ACTIONS(1287), + [anon_sym_do] = ACTIONS(71), + [anon_sym_for] = ACTIONS(1289), + [anon_sym_return] = ACTIONS(75), + [anon_sym_break] = ACTIONS(77), + [anon_sym_continue] = ACTIONS(79), + [anon_sym_goto] = ACTIONS(81), + [anon_sym___try] = ACTIONS(1291), + [anon_sym___leave] = ACTIONS(659), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [sym_number_literal] = ACTIONS(161), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(163), + [sym_false] = ACTIONS(163), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, [445] = { - [sym_attribute_declaration] = STATE(414), - [sym_compound_statement] = STATE(340), - [sym_attributed_statement] = STATE(340), - [sym_labeled_statement] = STATE(340), - [sym_expression_statement] = STATE(340), - [sym_if_statement] = STATE(340), - [sym_switch_statement] = STATE(340), - [sym_case_statement] = STATE(340), - [sym_while_statement] = STATE(340), - [sym_do_statement] = STATE(340), - [sym_for_statement] = STATE(340), - [sym_return_statement] = STATE(340), - [sym_break_statement] = STATE(340), - [sym_continue_statement] = STATE(340), - [sym_goto_statement] = STATE(340), - [sym_seh_try_statement] = STATE(340), - [sym_seh_leave_statement] = STATE(340), - [sym__expression] = STATE(1221), - [sym__expression_not_binary] = STATE(792), - [sym_comma_expression] = STATE(2106), - [sym_conditional_expression] = STATE(792), - [sym_assignment_expression] = STATE(792), - [sym_pointer_expression] = STATE(901), - [sym_unary_expression] = STATE(792), - [sym_binary_expression] = STATE(792), - [sym_update_expression] = STATE(792), - [sym_cast_expression] = STATE(792), - [sym_sizeof_expression] = STATE(792), - [sym_alignof_expression] = STATE(792), - [sym_offsetof_expression] = STATE(792), - [sym_generic_expression] = STATE(792), - [sym_subscript_expression] = STATE(901), - [sym_call_expression] = STATE(901), - [sym_gnu_asm_expression] = STATE(792), - [sym_field_expression] = STATE(901), - [sym_compound_literal_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(901), - [sym_char_literal] = STATE(792), - [sym_concatenated_string] = STATE(792), - [sym_string_literal] = STATE(675), - [sym_null] = STATE(792), - [aux_sym_attributed_declarator_repeat1] = STATE(414), - [sym_identifier] = ACTIONS(1683), + [sym_attribute_declaration] = STATE(437), + [sym_compound_statement] = STATE(314), + [sym_attributed_statement] = STATE(314), + [sym_labeled_statement] = STATE(314), + [sym_expression_statement] = STATE(314), + [sym_if_statement] = STATE(314), + [sym_switch_statement] = STATE(314), + [sym_case_statement] = STATE(314), + [sym_while_statement] = STATE(314), + [sym_do_statement] = STATE(314), + [sym_for_statement] = STATE(314), + [sym_return_statement] = STATE(314), + [sym_break_statement] = STATE(314), + [sym_continue_statement] = STATE(314), + [sym_goto_statement] = STATE(314), + [sym_seh_try_statement] = STATE(314), + [sym_seh_leave_statement] = STATE(314), + [sym__expression] = STATE(1253), + [sym__expression_not_binary] = STATE(809), + [sym_comma_expression] = STATE(2218), + [sym_conditional_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_pointer_expression] = STATE(877), + [sym_unary_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_update_expression] = STATE(809), + [sym_cast_expression] = STATE(809), + [sym_sizeof_expression] = STATE(809), + [sym_alignof_expression] = STATE(809), + [sym_offsetof_expression] = STATE(809), + [sym_generic_expression] = STATE(809), + [sym_subscript_expression] = STATE(877), + [sym_call_expression] = STATE(877), + [sym_gnu_asm_expression] = STATE(809), + [sym_field_expression] = STATE(877), + [sym_compound_literal_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(877), + [sym_char_literal] = STATE(809), + [sym_concatenated_string] = STATE(809), + [sym_string_literal] = STATE(573), + [sym_null] = STATE(809), + [aux_sym_attributed_declarator_repeat1] = STATE(437), + [sym_identifier] = ACTIONS(1768), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -65809,287 +67826,95 @@ 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(496), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1573), - [anon_sym_LBRACE] = ACTIONS(504), - [anon_sym_if] = ACTIONS(508), - [anon_sym_switch] = ACTIONS(510), - [anon_sym_case] = ACTIONS(512), - [anon_sym_default] = ACTIONS(514), - [anon_sym_while] = ACTIONS(516), - [anon_sym_do] = ACTIONS(518), - [anon_sym_for] = ACTIONS(520), - [anon_sym_return] = ACTIONS(522), - [anon_sym_break] = ACTIONS(524), - [anon_sym_continue] = ACTIONS(526), - [anon_sym_goto] = ACTIONS(528), - [anon_sym___try] = ACTIONS(530), - [anon_sym___leave] = ACTIONS(532), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(83), - [anon_sym___alignof__] = ACTIONS(85), - [anon_sym___alignof] = ACTIONS(85), - [anon_sym__alignof] = ACTIONS(85), - [anon_sym_alignof] = ACTIONS(85), - [anon_sym__Alignof] = ACTIONS(85), - [anon_sym_offsetof] = ACTIONS(87), - [anon_sym__Generic] = ACTIONS(89), - [anon_sym_asm] = ACTIONS(91), - [anon_sym___asm__] = ACTIONS(91), - [sym_number_literal] = ACTIONS(159), - [anon_sym_L_SQUOTE] = ACTIONS(95), - [anon_sym_u_SQUOTE] = ACTIONS(95), - [anon_sym_U_SQUOTE] = ACTIONS(95), - [anon_sym_u8_SQUOTE] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(95), - [anon_sym_L_DQUOTE] = ACTIONS(97), - [anon_sym_u_DQUOTE] = ACTIONS(97), - [anon_sym_U_DQUOTE] = ACTIONS(97), - [anon_sym_u8_DQUOTE] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(97), - [sym_true] = ACTIONS(161), - [sym_false] = ACTIONS(161), - [anon_sym_NULL] = ACTIONS(101), - [anon_sym_nullptr] = ACTIONS(101), + [anon_sym_SEMI] = ACTIONS(1171), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1566), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_if] = ACTIONS(61), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_case] = ACTIONS(65), + [anon_sym_default] = ACTIONS(67), + [anon_sym_while] = ACTIONS(69), + [anon_sym_do] = ACTIONS(71), + [anon_sym_for] = ACTIONS(73), + [anon_sym_return] = ACTIONS(75), + [anon_sym_break] = ACTIONS(77), + [anon_sym_continue] = ACTIONS(79), + [anon_sym_goto] = ACTIONS(81), + [anon_sym___try] = ACTIONS(1173), + [anon_sym___leave] = ACTIONS(1175), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [sym_number_literal] = ACTIONS(161), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(163), + [sym_false] = ACTIONS(163), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, [446] = { - [ts_builtin_sym_end] = ACTIONS(1435), - [sym_identifier] = ACTIONS(1433), - [aux_sym_preproc_include_token1] = ACTIONS(1433), - [aux_sym_preproc_def_token1] = ACTIONS(1433), - [aux_sym_preproc_if_token1] = ACTIONS(1433), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1433), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1433), - [sym_preproc_directive] = ACTIONS(1433), - [anon_sym_LPAREN2] = ACTIONS(1435), - [anon_sym_BANG] = ACTIONS(1435), - [anon_sym_TILDE] = ACTIONS(1435), - [anon_sym_DASH] = ACTIONS(1433), - [anon_sym_PLUS] = ACTIONS(1433), - [anon_sym_STAR] = ACTIONS(1435), - [anon_sym_AMP] = ACTIONS(1435), - [anon_sym___extension__] = ACTIONS(1433), - [anon_sym_typedef] = ACTIONS(1433), - [anon_sym_extern] = ACTIONS(1433), - [anon_sym___attribute__] = ACTIONS(1433), - [anon_sym___scanf] = ACTIONS(1433), - [anon_sym___printf] = ACTIONS(1433), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1435), - [anon_sym___declspec] = ACTIONS(1433), - [anon_sym___cdecl] = ACTIONS(1433), - [anon_sym___clrcall] = ACTIONS(1433), - [anon_sym___stdcall] = ACTIONS(1433), - [anon_sym___fastcall] = ACTIONS(1433), - [anon_sym___thiscall] = ACTIONS(1433), - [anon_sym___vectorcall] = ACTIONS(1433), - [anon_sym_LBRACE] = ACTIONS(1435), - [anon_sym_signed] = ACTIONS(1433), - [anon_sym_unsigned] = ACTIONS(1433), - [anon_sym_long] = ACTIONS(1433), - [anon_sym_short] = ACTIONS(1433), - [anon_sym_static] = ACTIONS(1433), - [anon_sym_auto] = ACTIONS(1433), - [anon_sym_register] = ACTIONS(1433), - [anon_sym_inline] = ACTIONS(1433), - [anon_sym___inline] = ACTIONS(1433), - [anon_sym___inline__] = ACTIONS(1433), - [anon_sym___forceinline] = ACTIONS(1433), - [anon_sym_thread_local] = ACTIONS(1433), - [anon_sym___thread] = ACTIONS(1433), - [anon_sym_const] = ACTIONS(1433), - [anon_sym_constexpr] = ACTIONS(1433), - [anon_sym_volatile] = ACTIONS(1433), - [anon_sym_restrict] = ACTIONS(1433), - [anon_sym___restrict__] = ACTIONS(1433), - [anon_sym__Atomic] = ACTIONS(1433), - [anon_sym__Noreturn] = ACTIONS(1433), - [anon_sym_noreturn] = ACTIONS(1433), - [sym_primitive_type] = ACTIONS(1433), - [anon_sym_enum] = ACTIONS(1433), - [anon_sym_struct] = ACTIONS(1433), - [anon_sym_union] = ACTIONS(1433), - [anon_sym_if] = ACTIONS(1433), - [anon_sym_switch] = ACTIONS(1433), - [anon_sym_case] = ACTIONS(1433), - [anon_sym_default] = ACTIONS(1433), - [anon_sym_while] = ACTIONS(1433), - [anon_sym_do] = ACTIONS(1433), - [anon_sym_for] = ACTIONS(1433), - [anon_sym_return] = ACTIONS(1433), - [anon_sym_break] = ACTIONS(1433), - [anon_sym_continue] = ACTIONS(1433), - [anon_sym_goto] = ACTIONS(1433), - [anon_sym_DASH_DASH] = ACTIONS(1435), - [anon_sym_PLUS_PLUS] = ACTIONS(1435), - [anon_sym_sizeof] = ACTIONS(1433), - [anon_sym___alignof__] = ACTIONS(1433), - [anon_sym___alignof] = ACTIONS(1433), - [anon_sym__alignof] = ACTIONS(1433), - [anon_sym_alignof] = ACTIONS(1433), - [anon_sym__Alignof] = ACTIONS(1433), - [anon_sym_offsetof] = ACTIONS(1433), - [anon_sym__Generic] = ACTIONS(1433), - [anon_sym_asm] = ACTIONS(1433), - [anon_sym___asm__] = ACTIONS(1433), - [sym_number_literal] = ACTIONS(1435), - [anon_sym_L_SQUOTE] = ACTIONS(1435), - [anon_sym_u_SQUOTE] = ACTIONS(1435), - [anon_sym_U_SQUOTE] = ACTIONS(1435), - [anon_sym_u8_SQUOTE] = ACTIONS(1435), - [anon_sym_SQUOTE] = ACTIONS(1435), - [anon_sym_L_DQUOTE] = ACTIONS(1435), - [anon_sym_u_DQUOTE] = ACTIONS(1435), - [anon_sym_U_DQUOTE] = ACTIONS(1435), - [anon_sym_u8_DQUOTE] = ACTIONS(1435), - [anon_sym_DQUOTE] = ACTIONS(1435), - [sym_true] = ACTIONS(1433), - [sym_false] = ACTIONS(1433), - [anon_sym_NULL] = ACTIONS(1433), - [anon_sym_nullptr] = ACTIONS(1433), - [sym_comment] = ACTIONS(3), - }, - [447] = { - [ts_builtin_sym_end] = ACTIONS(1495), - [sym_identifier] = ACTIONS(1493), - [aux_sym_preproc_include_token1] = ACTIONS(1493), - [aux_sym_preproc_def_token1] = ACTIONS(1493), - [aux_sym_preproc_if_token1] = ACTIONS(1493), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1493), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1493), - [sym_preproc_directive] = ACTIONS(1493), - [anon_sym_LPAREN2] = ACTIONS(1495), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), - [anon_sym___extension__] = ACTIONS(1493), - [anon_sym_typedef] = ACTIONS(1493), - [anon_sym_extern] = ACTIONS(1493), - [anon_sym___attribute__] = ACTIONS(1493), - [anon_sym___scanf] = ACTIONS(1493), - [anon_sym___printf] = ACTIONS(1493), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1495), - [anon_sym___declspec] = ACTIONS(1493), - [anon_sym___cdecl] = ACTIONS(1493), - [anon_sym___clrcall] = ACTIONS(1493), - [anon_sym___stdcall] = ACTIONS(1493), - [anon_sym___fastcall] = ACTIONS(1493), - [anon_sym___thiscall] = ACTIONS(1493), - [anon_sym___vectorcall] = ACTIONS(1493), - [anon_sym_LBRACE] = ACTIONS(1495), - [anon_sym_signed] = ACTIONS(1493), - [anon_sym_unsigned] = ACTIONS(1493), - [anon_sym_long] = ACTIONS(1493), - [anon_sym_short] = ACTIONS(1493), - [anon_sym_static] = ACTIONS(1493), - [anon_sym_auto] = ACTIONS(1493), - [anon_sym_register] = ACTIONS(1493), - [anon_sym_inline] = ACTIONS(1493), - [anon_sym___inline] = ACTIONS(1493), - [anon_sym___inline__] = ACTIONS(1493), - [anon_sym___forceinline] = ACTIONS(1493), - [anon_sym_thread_local] = ACTIONS(1493), - [anon_sym___thread] = ACTIONS(1493), - [anon_sym_const] = ACTIONS(1493), - [anon_sym_constexpr] = ACTIONS(1493), - [anon_sym_volatile] = ACTIONS(1493), - [anon_sym_restrict] = ACTIONS(1493), - [anon_sym___restrict__] = ACTIONS(1493), - [anon_sym__Atomic] = ACTIONS(1493), - [anon_sym__Noreturn] = ACTIONS(1493), - [anon_sym_noreturn] = ACTIONS(1493), - [sym_primitive_type] = ACTIONS(1493), - [anon_sym_enum] = ACTIONS(1493), - [anon_sym_struct] = ACTIONS(1493), - [anon_sym_union] = ACTIONS(1493), - [anon_sym_if] = ACTIONS(1493), - [anon_sym_switch] = ACTIONS(1493), - [anon_sym_case] = ACTIONS(1493), - [anon_sym_default] = ACTIONS(1493), - [anon_sym_while] = ACTIONS(1493), - [anon_sym_do] = ACTIONS(1493), - [anon_sym_for] = ACTIONS(1493), - [anon_sym_return] = ACTIONS(1493), - [anon_sym_break] = ACTIONS(1493), - [anon_sym_continue] = ACTIONS(1493), - [anon_sym_goto] = ACTIONS(1493), - [anon_sym_DASH_DASH] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym___alignof__] = ACTIONS(1493), - [anon_sym___alignof] = ACTIONS(1493), - [anon_sym__alignof] = ACTIONS(1493), - [anon_sym_alignof] = ACTIONS(1493), - [anon_sym__Alignof] = ACTIONS(1493), - [anon_sym_offsetof] = ACTIONS(1493), - [anon_sym__Generic] = ACTIONS(1493), - [anon_sym_asm] = ACTIONS(1493), - [anon_sym___asm__] = ACTIONS(1493), - [sym_number_literal] = ACTIONS(1495), - [anon_sym_L_SQUOTE] = ACTIONS(1495), - [anon_sym_u_SQUOTE] = ACTIONS(1495), - [anon_sym_U_SQUOTE] = ACTIONS(1495), - [anon_sym_u8_SQUOTE] = ACTIONS(1495), - [anon_sym_SQUOTE] = ACTIONS(1495), - [anon_sym_L_DQUOTE] = ACTIONS(1495), - [anon_sym_u_DQUOTE] = ACTIONS(1495), - [anon_sym_U_DQUOTE] = ACTIONS(1495), - [anon_sym_u8_DQUOTE] = ACTIONS(1495), - [anon_sym_DQUOTE] = ACTIONS(1495), - [sym_true] = ACTIONS(1493), - [sym_false] = ACTIONS(1493), - [anon_sym_NULL] = ACTIONS(1493), - [anon_sym_nullptr] = ACTIONS(1493), - [sym_comment] = ACTIONS(3), - }, - [448] = { - [sym_attribute_declaration] = STATE(460), - [sym_compound_statement] = STATE(233), - [sym_attributed_statement] = STATE(233), - [sym_labeled_statement] = STATE(233), - [sym_expression_statement] = STATE(233), - [sym_if_statement] = STATE(233), - [sym_switch_statement] = STATE(233), - [sym_case_statement] = STATE(233), - [sym_while_statement] = STATE(233), - [sym_do_statement] = STATE(233), - [sym_for_statement] = STATE(233), - [sym_return_statement] = STATE(233), - [sym_break_statement] = STATE(233), - [sym_continue_statement] = STATE(233), - [sym_goto_statement] = STATE(233), - [sym_seh_try_statement] = STATE(233), - [sym_seh_leave_statement] = STATE(233), - [sym__expression] = STATE(1221), - [sym__expression_not_binary] = STATE(792), - [sym_comma_expression] = STATE(2106), - [sym_conditional_expression] = STATE(792), - [sym_assignment_expression] = STATE(792), - [sym_pointer_expression] = STATE(901), - [sym_unary_expression] = STATE(792), - [sym_binary_expression] = STATE(792), - [sym_update_expression] = STATE(792), - [sym_cast_expression] = STATE(792), - [sym_sizeof_expression] = STATE(792), - [sym_alignof_expression] = STATE(792), - [sym_offsetof_expression] = STATE(792), - [sym_generic_expression] = STATE(792), - [sym_subscript_expression] = STATE(901), - [sym_call_expression] = STATE(901), - [sym_gnu_asm_expression] = STATE(792), - [sym_field_expression] = STATE(901), - [sym_compound_literal_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(901), - [sym_char_literal] = STATE(792), - [sym_concatenated_string] = STATE(792), - [sym_string_literal] = STATE(675), - [sym_null] = STATE(792), - [aux_sym_attributed_declarator_repeat1] = STATE(460), - [sym_identifier] = ACTIONS(1575), + [sym_attribute_declaration] = STATE(465), + [sym_compound_statement] = STATE(2192), + [sym_attributed_statement] = STATE(2192), + [sym_labeled_statement] = STATE(2192), + [sym_expression_statement] = STATE(2192), + [sym_if_statement] = STATE(2192), + [sym_switch_statement] = STATE(2192), + [sym_case_statement] = STATE(2192), + [sym_while_statement] = STATE(2192), + [sym_do_statement] = STATE(2192), + [sym_for_statement] = STATE(2192), + [sym_return_statement] = STATE(2192), + [sym_break_statement] = STATE(2192), + [sym_continue_statement] = STATE(2192), + [sym_goto_statement] = STATE(2192), + [sym_seh_try_statement] = STATE(2192), + [sym_seh_leave_statement] = STATE(2192), + [sym__expression] = STATE(1272), + [sym__expression_not_binary] = STATE(809), + [sym_comma_expression] = STATE(2198), + [sym_conditional_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_pointer_expression] = STATE(877), + [sym_unary_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_update_expression] = STATE(809), + [sym_cast_expression] = STATE(809), + [sym_sizeof_expression] = STATE(809), + [sym_alignof_expression] = STATE(809), + [sym_offsetof_expression] = STATE(809), + [sym_generic_expression] = STATE(809), + [sym_subscript_expression] = STATE(877), + [sym_call_expression] = STATE(877), + [sym_gnu_asm_expression] = STATE(809), + [sym_field_expression] = STATE(877), + [sym_compound_literal_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(877), + [sym_char_literal] = STATE(809), + [sym_concatenated_string] = STATE(809), + [sym_string_literal] = STATE(573), + [sym_null] = STATE(809), + [aux_sym_attributed_declarator_repeat1] = STATE(465), + [sym_identifier] = ACTIONS(1568), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -66097,95 +67922,95 @@ 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(496), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1573), - [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_if] = ACTIONS(1274), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_case] = ACTIONS(1577), - [anon_sym_default] = ACTIONS(1579), - [anon_sym_while] = ACTIONS(1276), - [anon_sym_do] = ACTIONS(69), - [anon_sym_for] = ACTIONS(1278), - [anon_sym_return] = ACTIONS(73), - [anon_sym_break] = ACTIONS(75), - [anon_sym_continue] = ACTIONS(77), - [anon_sym_goto] = ACTIONS(79), - [anon_sym___try] = ACTIONS(1280), - [anon_sym___leave] = ACTIONS(532), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(83), - [anon_sym___alignof__] = ACTIONS(85), - [anon_sym___alignof] = ACTIONS(85), - [anon_sym__alignof] = ACTIONS(85), - [anon_sym_alignof] = ACTIONS(85), - [anon_sym__Alignof] = ACTIONS(85), - [anon_sym_offsetof] = ACTIONS(87), - [anon_sym__Generic] = ACTIONS(89), - [anon_sym_asm] = ACTIONS(91), - [anon_sym___asm__] = ACTIONS(91), - [sym_number_literal] = ACTIONS(159), - [anon_sym_L_SQUOTE] = ACTIONS(95), - [anon_sym_u_SQUOTE] = ACTIONS(95), - [anon_sym_U_SQUOTE] = ACTIONS(95), - [anon_sym_u8_SQUOTE] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(95), - [anon_sym_L_DQUOTE] = ACTIONS(97), - [anon_sym_u_DQUOTE] = ACTIONS(97), - [anon_sym_U_DQUOTE] = ACTIONS(97), - [anon_sym_u8_DQUOTE] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(97), - [sym_true] = ACTIONS(161), - [sym_false] = ACTIONS(161), - [anon_sym_NULL] = ACTIONS(101), - [anon_sym_nullptr] = ACTIONS(101), + [anon_sym_SEMI] = ACTIONS(623), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1566), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_if] = ACTIONS(1285), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_case] = ACTIONS(1570), + [anon_sym_default] = ACTIONS(1572), + [anon_sym_while] = ACTIONS(1287), + [anon_sym_do] = ACTIONS(71), + [anon_sym_for] = ACTIONS(1289), + [anon_sym_return] = ACTIONS(75), + [anon_sym_break] = ACTIONS(77), + [anon_sym_continue] = ACTIONS(79), + [anon_sym_goto] = ACTIONS(81), + [anon_sym___try] = ACTIONS(1291), + [anon_sym___leave] = ACTIONS(659), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [sym_number_literal] = ACTIONS(161), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(163), + [sym_false] = ACTIONS(163), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [449] = { - [sym_attribute_declaration] = STATE(451), - [sym_compound_statement] = STATE(233), - [sym_attributed_statement] = STATE(233), - [sym_labeled_statement] = STATE(233), - [sym_expression_statement] = STATE(233), - [sym_if_statement] = STATE(233), - [sym_switch_statement] = STATE(233), - [sym_case_statement] = STATE(233), - [sym_while_statement] = STATE(233), - [sym_do_statement] = STATE(233), - [sym_for_statement] = STATE(233), - [sym_return_statement] = STATE(233), - [sym_break_statement] = STATE(233), - [sym_continue_statement] = STATE(233), - [sym_goto_statement] = STATE(233), - [sym_seh_try_statement] = STATE(233), - [sym_seh_leave_statement] = STATE(233), - [sym__expression] = STATE(1227), - [sym__expression_not_binary] = STATE(792), - [sym_comma_expression] = STATE(2090), - [sym_conditional_expression] = STATE(792), - [sym_assignment_expression] = STATE(792), - [sym_pointer_expression] = STATE(901), - [sym_unary_expression] = STATE(792), - [sym_binary_expression] = STATE(792), - [sym_update_expression] = STATE(792), - [sym_cast_expression] = STATE(792), - [sym_sizeof_expression] = STATE(792), - [sym_alignof_expression] = STATE(792), - [sym_offsetof_expression] = STATE(792), - [sym_generic_expression] = STATE(792), - [sym_subscript_expression] = STATE(901), - [sym_call_expression] = STATE(901), - [sym_gnu_asm_expression] = STATE(792), - [sym_field_expression] = STATE(901), - [sym_compound_literal_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(901), - [sym_char_literal] = STATE(792), - [sym_concatenated_string] = STATE(792), - [sym_string_literal] = STATE(675), - [sym_null] = STATE(792), - [aux_sym_attributed_declarator_repeat1] = STATE(451), - [sym_identifier] = ACTIONS(1571), + [447] = { + [sym_attribute_declaration] = STATE(480), + [sym_compound_statement] = STATE(167), + [sym_attributed_statement] = STATE(167), + [sym_labeled_statement] = STATE(167), + [sym_expression_statement] = STATE(167), + [sym_if_statement] = STATE(167), + [sym_switch_statement] = STATE(167), + [sym_case_statement] = STATE(167), + [sym_while_statement] = STATE(167), + [sym_do_statement] = STATE(167), + [sym_for_statement] = STATE(167), + [sym_return_statement] = STATE(167), + [sym_break_statement] = STATE(167), + [sym_continue_statement] = STATE(167), + [sym_goto_statement] = STATE(167), + [sym_seh_try_statement] = STATE(167), + [sym_seh_leave_statement] = STATE(167), + [sym__expression] = STATE(1258), + [sym__expression_not_binary] = STATE(809), + [sym_comma_expression] = STATE(2110), + [sym_conditional_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_pointer_expression] = STATE(877), + [sym_unary_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_update_expression] = STATE(809), + [sym_cast_expression] = STATE(809), + [sym_sizeof_expression] = STATE(809), + [sym_alignof_expression] = STATE(809), + [sym_offsetof_expression] = STATE(809), + [sym_generic_expression] = STATE(809), + [sym_subscript_expression] = STATE(877), + [sym_call_expression] = STATE(877), + [sym_gnu_asm_expression] = STATE(809), + [sym_field_expression] = STATE(877), + [sym_compound_literal_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(877), + [sym_char_literal] = STATE(809), + [sym_concatenated_string] = STATE(809), + [sym_string_literal] = STATE(573), + [sym_null] = STATE(809), + [aux_sym_attributed_declarator_repeat1] = STATE(480), + [sym_identifier] = ACTIONS(1770), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -66193,287 +68018,95 @@ 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(1110), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1573), - [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_if] = ACTIONS(59), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_case] = ACTIONS(63), - [anon_sym_default] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_do] = ACTIONS(69), - [anon_sym_for] = ACTIONS(71), - [anon_sym_return] = ACTIONS(73), - [anon_sym_break] = ACTIONS(75), - [anon_sym_continue] = ACTIONS(77), - [anon_sym_goto] = ACTIONS(79), - [anon_sym___try] = ACTIONS(1112), - [anon_sym___leave] = ACTIONS(1114), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(83), - [anon_sym___alignof__] = ACTIONS(85), - [anon_sym___alignof] = ACTIONS(85), - [anon_sym__alignof] = ACTIONS(85), - [anon_sym_alignof] = ACTIONS(85), - [anon_sym__Alignof] = ACTIONS(85), - [anon_sym_offsetof] = ACTIONS(87), - [anon_sym__Generic] = ACTIONS(89), - [anon_sym_asm] = ACTIONS(91), - [anon_sym___asm__] = ACTIONS(91), - [sym_number_literal] = ACTIONS(159), - [anon_sym_L_SQUOTE] = ACTIONS(95), - [anon_sym_u_SQUOTE] = ACTIONS(95), - [anon_sym_U_SQUOTE] = ACTIONS(95), - [anon_sym_u8_SQUOTE] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(95), - [anon_sym_L_DQUOTE] = ACTIONS(97), - [anon_sym_u_DQUOTE] = ACTIONS(97), - [anon_sym_U_DQUOTE] = ACTIONS(97), - [anon_sym_u8_DQUOTE] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(97), - [sym_true] = ACTIONS(161), - [sym_false] = ACTIONS(161), - [anon_sym_NULL] = ACTIONS(101), - [anon_sym_nullptr] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - }, - [450] = { - [ts_builtin_sym_end] = ACTIONS(1781), - [sym_identifier] = ACTIONS(1783), - [aux_sym_preproc_include_token1] = ACTIONS(1783), - [aux_sym_preproc_def_token1] = ACTIONS(1783), - [aux_sym_preproc_if_token1] = ACTIONS(1783), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1783), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1783), - [sym_preproc_directive] = ACTIONS(1783), - [anon_sym_LPAREN2] = ACTIONS(1781), - [anon_sym_BANG] = ACTIONS(1781), - [anon_sym_TILDE] = ACTIONS(1781), - [anon_sym_DASH] = ACTIONS(1783), - [anon_sym_PLUS] = ACTIONS(1783), - [anon_sym_STAR] = ACTIONS(1781), - [anon_sym_AMP] = ACTIONS(1781), - [anon_sym___extension__] = ACTIONS(1783), - [anon_sym_typedef] = ACTIONS(1783), - [anon_sym_extern] = ACTIONS(1783), - [anon_sym___attribute__] = ACTIONS(1783), - [anon_sym___scanf] = ACTIONS(1783), - [anon_sym___printf] = ACTIONS(1783), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1781), - [anon_sym___declspec] = ACTIONS(1783), - [anon_sym___cdecl] = ACTIONS(1783), - [anon_sym___clrcall] = ACTIONS(1783), - [anon_sym___stdcall] = ACTIONS(1783), - [anon_sym___fastcall] = ACTIONS(1783), - [anon_sym___thiscall] = ACTIONS(1783), - [anon_sym___vectorcall] = ACTIONS(1783), - [anon_sym_LBRACE] = ACTIONS(1781), - [anon_sym_signed] = ACTIONS(1783), - [anon_sym_unsigned] = ACTIONS(1783), - [anon_sym_long] = ACTIONS(1783), - [anon_sym_short] = ACTIONS(1783), - [anon_sym_static] = ACTIONS(1783), - [anon_sym_auto] = ACTIONS(1783), - [anon_sym_register] = ACTIONS(1783), - [anon_sym_inline] = ACTIONS(1783), - [anon_sym___inline] = ACTIONS(1783), - [anon_sym___inline__] = ACTIONS(1783), - [anon_sym___forceinline] = ACTIONS(1783), - [anon_sym_thread_local] = ACTIONS(1783), - [anon_sym___thread] = ACTIONS(1783), - [anon_sym_const] = ACTIONS(1783), - [anon_sym_constexpr] = ACTIONS(1783), - [anon_sym_volatile] = ACTIONS(1783), - [anon_sym_restrict] = ACTIONS(1783), - [anon_sym___restrict__] = ACTIONS(1783), - [anon_sym__Atomic] = ACTIONS(1783), - [anon_sym__Noreturn] = ACTIONS(1783), - [anon_sym_noreturn] = ACTIONS(1783), - [sym_primitive_type] = ACTIONS(1783), - [anon_sym_enum] = ACTIONS(1783), - [anon_sym_struct] = ACTIONS(1783), - [anon_sym_union] = ACTIONS(1783), - [anon_sym_if] = ACTIONS(1783), - [anon_sym_switch] = ACTIONS(1783), - [anon_sym_case] = ACTIONS(1783), - [anon_sym_default] = ACTIONS(1783), - [anon_sym_while] = ACTIONS(1783), - [anon_sym_do] = ACTIONS(1783), - [anon_sym_for] = ACTIONS(1783), - [anon_sym_return] = ACTIONS(1783), - [anon_sym_break] = ACTIONS(1783), - [anon_sym_continue] = ACTIONS(1783), - [anon_sym_goto] = ACTIONS(1783), - [anon_sym_DASH_DASH] = ACTIONS(1781), - [anon_sym_PLUS_PLUS] = ACTIONS(1781), - [anon_sym_sizeof] = ACTIONS(1783), - [anon_sym___alignof__] = ACTIONS(1783), - [anon_sym___alignof] = ACTIONS(1783), - [anon_sym__alignof] = ACTIONS(1783), - [anon_sym_alignof] = ACTIONS(1783), - [anon_sym__Alignof] = ACTIONS(1783), - [anon_sym_offsetof] = ACTIONS(1783), - [anon_sym__Generic] = ACTIONS(1783), - [anon_sym_asm] = ACTIONS(1783), - [anon_sym___asm__] = ACTIONS(1783), - [sym_number_literal] = ACTIONS(1781), - [anon_sym_L_SQUOTE] = ACTIONS(1781), - [anon_sym_u_SQUOTE] = ACTIONS(1781), - [anon_sym_U_SQUOTE] = ACTIONS(1781), - [anon_sym_u8_SQUOTE] = ACTIONS(1781), - [anon_sym_SQUOTE] = ACTIONS(1781), - [anon_sym_L_DQUOTE] = ACTIONS(1781), - [anon_sym_u_DQUOTE] = ACTIONS(1781), - [anon_sym_U_DQUOTE] = ACTIONS(1781), - [anon_sym_u8_DQUOTE] = ACTIONS(1781), - [anon_sym_DQUOTE] = ACTIONS(1781), - [sym_true] = ACTIONS(1783), - [sym_false] = ACTIONS(1783), - [anon_sym_NULL] = ACTIONS(1783), - [anon_sym_nullptr] = ACTIONS(1783), - [sym_comment] = ACTIONS(3), - }, - [451] = { - [sym_attribute_declaration] = STATE(451), - [sym_compound_statement] = STATE(233), - [sym_attributed_statement] = STATE(233), - [sym_labeled_statement] = STATE(233), - [sym_expression_statement] = STATE(233), - [sym_if_statement] = STATE(233), - [sym_switch_statement] = STATE(233), - [sym_case_statement] = STATE(233), - [sym_while_statement] = STATE(233), - [sym_do_statement] = STATE(233), - [sym_for_statement] = STATE(233), - [sym_return_statement] = STATE(233), - [sym_break_statement] = STATE(233), - [sym_continue_statement] = STATE(233), - [sym_goto_statement] = STATE(233), - [sym_seh_try_statement] = STATE(233), - [sym_seh_leave_statement] = STATE(233), - [sym__expression] = STATE(1227), - [sym__expression_not_binary] = STATE(792), - [sym_comma_expression] = STATE(2090), - [sym_conditional_expression] = STATE(792), - [sym_assignment_expression] = STATE(792), - [sym_pointer_expression] = STATE(901), - [sym_unary_expression] = STATE(792), - [sym_binary_expression] = STATE(792), - [sym_update_expression] = STATE(792), - [sym_cast_expression] = STATE(792), - [sym_sizeof_expression] = STATE(792), - [sym_alignof_expression] = STATE(792), - [sym_offsetof_expression] = STATE(792), - [sym_generic_expression] = STATE(792), - [sym_subscript_expression] = STATE(901), - [sym_call_expression] = STATE(901), - [sym_gnu_asm_expression] = STATE(792), - [sym_field_expression] = STATE(901), - [sym_compound_literal_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(901), - [sym_char_literal] = STATE(792), - [sym_concatenated_string] = STATE(792), - [sym_string_literal] = STATE(675), - [sym_null] = STATE(792), - [aux_sym_attributed_declarator_repeat1] = STATE(451), - [sym_identifier] = ACTIONS(1785), - [anon_sym_LPAREN2] = ACTIONS(1586), - [anon_sym_BANG] = ACTIONS(1589), - [anon_sym_TILDE] = ACTIONS(1589), - [anon_sym_DASH] = ACTIONS(1592), - [anon_sym_PLUS] = ACTIONS(1592), - [anon_sym_STAR] = ACTIONS(1595), - [anon_sym_AMP] = ACTIONS(1595), - [anon_sym_SEMI] = ACTIONS(1788), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1601), - [anon_sym_LBRACE] = ACTIONS(1791), - [anon_sym_if] = ACTIONS(1794), - [anon_sym_switch] = ACTIONS(1797), - [anon_sym_case] = ACTIONS(1800), - [anon_sym_default] = ACTIONS(1803), - [anon_sym_while] = ACTIONS(1806), - [anon_sym_do] = ACTIONS(1809), - [anon_sym_for] = ACTIONS(1812), - [anon_sym_return] = ACTIONS(1815), - [anon_sym_break] = ACTIONS(1818), - [anon_sym_continue] = ACTIONS(1821), - [anon_sym_goto] = ACTIONS(1824), - [anon_sym___try] = ACTIONS(1827), - [anon_sym___leave] = ACTIONS(1830), - [anon_sym_DASH_DASH] = ACTIONS(1646), - [anon_sym_PLUS_PLUS] = ACTIONS(1646), - [anon_sym_sizeof] = ACTIONS(1649), - [anon_sym___alignof__] = ACTIONS(1652), - [anon_sym___alignof] = ACTIONS(1652), - [anon_sym__alignof] = ACTIONS(1652), - [anon_sym_alignof] = ACTIONS(1652), - [anon_sym__Alignof] = ACTIONS(1652), - [anon_sym_offsetof] = ACTIONS(1655), - [anon_sym__Generic] = ACTIONS(1658), - [anon_sym_asm] = ACTIONS(1661), - [anon_sym___asm__] = ACTIONS(1661), - [sym_number_literal] = ACTIONS(1664), - [anon_sym_L_SQUOTE] = ACTIONS(1667), - [anon_sym_u_SQUOTE] = ACTIONS(1667), - [anon_sym_U_SQUOTE] = ACTIONS(1667), - [anon_sym_u8_SQUOTE] = ACTIONS(1667), - [anon_sym_SQUOTE] = ACTIONS(1667), - [anon_sym_L_DQUOTE] = ACTIONS(1670), - [anon_sym_u_DQUOTE] = ACTIONS(1670), - [anon_sym_U_DQUOTE] = ACTIONS(1670), - [anon_sym_u8_DQUOTE] = ACTIONS(1670), - [anon_sym_DQUOTE] = ACTIONS(1670), - [sym_true] = ACTIONS(1673), - [sym_false] = ACTIONS(1673), - [anon_sym_NULL] = ACTIONS(1676), - [anon_sym_nullptr] = ACTIONS(1676), + [anon_sym_SEMI] = ACTIONS(197), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1566), + [anon_sym_LBRACE] = ACTIONS(205), + [anon_sym_if] = ACTIONS(207), + [anon_sym_switch] = ACTIONS(209), + [anon_sym_case] = ACTIONS(211), + [anon_sym_default] = ACTIONS(213), + [anon_sym_while] = ACTIONS(215), + [anon_sym_do] = ACTIONS(217), + [anon_sym_for] = ACTIONS(219), + [anon_sym_return] = ACTIONS(221), + [anon_sym_break] = ACTIONS(223), + [anon_sym_continue] = ACTIONS(225), + [anon_sym_goto] = ACTIONS(227), + [anon_sym___try] = ACTIONS(229), + [anon_sym___leave] = ACTIONS(231), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [sym_number_literal] = ACTIONS(161), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(163), + [sym_false] = ACTIONS(163), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [452] = { - [sym_attribute_declaration] = STATE(463), - [sym_compound_statement] = STATE(133), - [sym_attributed_statement] = STATE(133), - [sym_labeled_statement] = STATE(133), - [sym_expression_statement] = STATE(133), - [sym_if_statement] = STATE(133), - [sym_switch_statement] = STATE(133), - [sym_case_statement] = STATE(133), - [sym_while_statement] = STATE(133), - [sym_do_statement] = STATE(133), - [sym_for_statement] = STATE(133), - [sym_return_statement] = STATE(133), - [sym_break_statement] = STATE(133), - [sym_continue_statement] = STATE(133), - [sym_goto_statement] = STATE(133), - [sym_seh_try_statement] = STATE(133), - [sym_seh_leave_statement] = STATE(133), - [sym__expression] = STATE(1225), - [sym__expression_not_binary] = STATE(792), - [sym_comma_expression] = STATE(2038), - [sym_conditional_expression] = STATE(792), - [sym_assignment_expression] = STATE(792), - [sym_pointer_expression] = STATE(901), - [sym_unary_expression] = STATE(792), - [sym_binary_expression] = STATE(792), - [sym_update_expression] = STATE(792), - [sym_cast_expression] = STATE(792), - [sym_sizeof_expression] = STATE(792), - [sym_alignof_expression] = STATE(792), - [sym_offsetof_expression] = STATE(792), - [sym_generic_expression] = STATE(792), - [sym_subscript_expression] = STATE(901), - [sym_call_expression] = STATE(901), - [sym_gnu_asm_expression] = STATE(792), - [sym_field_expression] = STATE(901), - [sym_compound_literal_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(901), - [sym_char_literal] = STATE(792), - [sym_concatenated_string] = STATE(792), - [sym_string_literal] = STATE(675), - [sym_null] = STATE(792), - [aux_sym_attributed_declarator_repeat1] = STATE(463), - [sym_identifier] = ACTIONS(1581), + [448] = { + [sym_attribute_declaration] = STATE(480), + [sym_compound_statement] = STATE(169), + [sym_attributed_statement] = STATE(171), + [sym_labeled_statement] = STATE(172), + [sym_expression_statement] = STATE(173), + [sym_if_statement] = STATE(176), + [sym_switch_statement] = STATE(178), + [sym_case_statement] = STATE(179), + [sym_while_statement] = STATE(181), + [sym_do_statement] = STATE(162), + [sym_for_statement] = STATE(183), + [sym_return_statement] = STATE(184), + [sym_break_statement] = STATE(190), + [sym_continue_statement] = STATE(194), + [sym_goto_statement] = STATE(195), + [sym_seh_try_statement] = STATE(161), + [sym_seh_leave_statement] = STATE(196), + [sym__expression] = STATE(1258), + [sym__expression_not_binary] = STATE(809), + [sym_comma_expression] = STATE(2110), + [sym_conditional_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_pointer_expression] = STATE(877), + [sym_unary_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_update_expression] = STATE(809), + [sym_cast_expression] = STATE(809), + [sym_sizeof_expression] = STATE(809), + [sym_alignof_expression] = STATE(809), + [sym_offsetof_expression] = STATE(809), + [sym_generic_expression] = STATE(809), + [sym_subscript_expression] = STATE(877), + [sym_call_expression] = STATE(877), + [sym_gnu_asm_expression] = STATE(809), + [sym_field_expression] = STATE(877), + [sym_compound_literal_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(877), + [sym_char_literal] = STATE(809), + [sym_concatenated_string] = STATE(809), + [sym_string_literal] = STATE(573), + [sym_null] = STATE(809), + [aux_sym_attributed_declarator_repeat1] = STATE(480), + [sym_identifier] = ACTIONS(1770), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -66481,95 +68114,95 @@ 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(123), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1573), - [anon_sym_LBRACE] = ACTIONS(131), - [anon_sym_if] = ACTIONS(133), - [anon_sym_switch] = ACTIONS(135), - [anon_sym_case] = ACTIONS(137), - [anon_sym_default] = ACTIONS(139), - [anon_sym_while] = ACTIONS(141), - [anon_sym_do] = ACTIONS(143), - [anon_sym_for] = ACTIONS(145), - [anon_sym_return] = ACTIONS(147), - [anon_sym_break] = ACTIONS(149), - [anon_sym_continue] = ACTIONS(151), - [anon_sym_goto] = ACTIONS(153), - [anon_sym___try] = ACTIONS(155), - [anon_sym___leave] = ACTIONS(157), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(83), - [anon_sym___alignof__] = ACTIONS(85), - [anon_sym___alignof] = ACTIONS(85), - [anon_sym__alignof] = ACTIONS(85), - [anon_sym_alignof] = ACTIONS(85), - [anon_sym__Alignof] = ACTIONS(85), - [anon_sym_offsetof] = ACTIONS(87), - [anon_sym__Generic] = ACTIONS(89), - [anon_sym_asm] = ACTIONS(91), - [anon_sym___asm__] = ACTIONS(91), - [sym_number_literal] = ACTIONS(159), - [anon_sym_L_SQUOTE] = ACTIONS(95), - [anon_sym_u_SQUOTE] = ACTIONS(95), - [anon_sym_U_SQUOTE] = ACTIONS(95), - [anon_sym_u8_SQUOTE] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(95), - [anon_sym_L_DQUOTE] = ACTIONS(97), - [anon_sym_u_DQUOTE] = ACTIONS(97), - [anon_sym_U_DQUOTE] = ACTIONS(97), - [anon_sym_u8_DQUOTE] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(97), - [sym_true] = ACTIONS(161), - [sym_false] = ACTIONS(161), - [anon_sym_NULL] = ACTIONS(101), - [anon_sym_nullptr] = ACTIONS(101), + [anon_sym_SEMI] = ACTIONS(197), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1566), + [anon_sym_LBRACE] = ACTIONS(205), + [anon_sym_if] = ACTIONS(207), + [anon_sym_switch] = ACTIONS(209), + [anon_sym_case] = ACTIONS(211), + [anon_sym_default] = ACTIONS(213), + [anon_sym_while] = ACTIONS(215), + [anon_sym_do] = ACTIONS(217), + [anon_sym_for] = ACTIONS(219), + [anon_sym_return] = ACTIONS(221), + [anon_sym_break] = ACTIONS(223), + [anon_sym_continue] = ACTIONS(225), + [anon_sym_goto] = ACTIONS(227), + [anon_sym___try] = ACTIONS(229), + [anon_sym___leave] = ACTIONS(231), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [sym_number_literal] = ACTIONS(161), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(163), + [sym_false] = ACTIONS(163), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [453] = { - [sym_attribute_declaration] = STATE(448), - [sym_compound_statement] = STATE(263), - [sym_attributed_statement] = STATE(265), - [sym_labeled_statement] = STATE(266), - [sym_expression_statement] = STATE(270), - [sym_if_statement] = STATE(271), - [sym_switch_statement] = STATE(272), - [sym_case_statement] = STATE(273), - [sym_while_statement] = STATE(274), - [sym_do_statement] = STATE(275), - [sym_for_statement] = STATE(278), - [sym_return_statement] = STATE(280), - [sym_break_statement] = STATE(290), - [sym_continue_statement] = STATE(299), - [sym_goto_statement] = STATE(300), - [sym_seh_try_statement] = STATE(320), - [sym_seh_leave_statement] = STATE(322), - [sym__expression] = STATE(1221), - [sym__expression_not_binary] = STATE(792), - [sym_comma_expression] = STATE(2106), - [sym_conditional_expression] = STATE(792), - [sym_assignment_expression] = STATE(792), - [sym_pointer_expression] = STATE(901), - [sym_unary_expression] = STATE(792), - [sym_binary_expression] = STATE(792), - [sym_update_expression] = STATE(792), - [sym_cast_expression] = STATE(792), - [sym_sizeof_expression] = STATE(792), - [sym_alignof_expression] = STATE(792), - [sym_offsetof_expression] = STATE(792), - [sym_generic_expression] = STATE(792), - [sym_subscript_expression] = STATE(901), - [sym_call_expression] = STATE(901), - [sym_gnu_asm_expression] = STATE(792), - [sym_field_expression] = STATE(901), - [sym_compound_literal_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(901), - [sym_char_literal] = STATE(792), - [sym_concatenated_string] = STATE(792), - [sym_string_literal] = STATE(675), - [sym_null] = STATE(792), - [aux_sym_attributed_declarator_repeat1] = STATE(448), - [sym_identifier] = ACTIONS(1575), + [449] = { + [sym_attribute_declaration] = STATE(465), + [sym_compound_statement] = STATE(485), + [sym_attributed_statement] = STATE(485), + [sym_labeled_statement] = STATE(485), + [sym_expression_statement] = STATE(485), + [sym_if_statement] = STATE(485), + [sym_switch_statement] = STATE(485), + [sym_case_statement] = STATE(485), + [sym_while_statement] = STATE(485), + [sym_do_statement] = STATE(485), + [sym_for_statement] = STATE(485), + [sym_return_statement] = STATE(485), + [sym_break_statement] = STATE(485), + [sym_continue_statement] = STATE(485), + [sym_goto_statement] = STATE(485), + [sym_seh_try_statement] = STATE(485), + [sym_seh_leave_statement] = STATE(485), + [sym__expression] = STATE(1272), + [sym__expression_not_binary] = STATE(809), + [sym_comma_expression] = STATE(2198), + [sym_conditional_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_pointer_expression] = STATE(877), + [sym_unary_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_update_expression] = STATE(809), + [sym_cast_expression] = STATE(809), + [sym_sizeof_expression] = STATE(809), + [sym_alignof_expression] = STATE(809), + [sym_offsetof_expression] = STATE(809), + [sym_generic_expression] = STATE(809), + [sym_subscript_expression] = STATE(877), + [sym_call_expression] = STATE(877), + [sym_gnu_asm_expression] = STATE(809), + [sym_field_expression] = STATE(877), + [sym_compound_literal_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(877), + [sym_char_literal] = STATE(809), + [sym_concatenated_string] = STATE(809), + [sym_string_literal] = STATE(573), + [sym_null] = STATE(809), + [aux_sym_attributed_declarator_repeat1] = STATE(465), + [sym_identifier] = ACTIONS(1568), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -66577,95 +68210,95 @@ 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(496), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1573), - [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_if] = ACTIONS(1274), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_case] = ACTIONS(1577), - [anon_sym_default] = ACTIONS(1579), - [anon_sym_while] = ACTIONS(1276), - [anon_sym_do] = ACTIONS(69), - [anon_sym_for] = ACTIONS(1278), - [anon_sym_return] = ACTIONS(73), - [anon_sym_break] = ACTIONS(75), - [anon_sym_continue] = ACTIONS(77), - [anon_sym_goto] = ACTIONS(79), - [anon_sym___try] = ACTIONS(1280), - [anon_sym___leave] = ACTIONS(532), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(83), - [anon_sym___alignof__] = ACTIONS(85), - [anon_sym___alignof] = ACTIONS(85), - [anon_sym__alignof] = ACTIONS(85), - [anon_sym_alignof] = ACTIONS(85), - [anon_sym__Alignof] = ACTIONS(85), - [anon_sym_offsetof] = ACTIONS(87), - [anon_sym__Generic] = ACTIONS(89), - [anon_sym_asm] = ACTIONS(91), - [anon_sym___asm__] = ACTIONS(91), - [sym_number_literal] = ACTIONS(159), - [anon_sym_L_SQUOTE] = ACTIONS(95), - [anon_sym_u_SQUOTE] = ACTIONS(95), - [anon_sym_U_SQUOTE] = ACTIONS(95), - [anon_sym_u8_SQUOTE] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(95), - [anon_sym_L_DQUOTE] = ACTIONS(97), - [anon_sym_u_DQUOTE] = ACTIONS(97), - [anon_sym_U_DQUOTE] = ACTIONS(97), - [anon_sym_u8_DQUOTE] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(97), - [sym_true] = ACTIONS(161), - [sym_false] = ACTIONS(161), - [anon_sym_NULL] = ACTIONS(101), - [anon_sym_nullptr] = ACTIONS(101), + [anon_sym_SEMI] = ACTIONS(623), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1566), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_if] = ACTIONS(1285), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_case] = ACTIONS(1570), + [anon_sym_default] = ACTIONS(1572), + [anon_sym_while] = ACTIONS(1287), + [anon_sym_do] = ACTIONS(71), + [anon_sym_for] = ACTIONS(1289), + [anon_sym_return] = ACTIONS(75), + [anon_sym_break] = ACTIONS(77), + [anon_sym_continue] = ACTIONS(79), + [anon_sym_goto] = ACTIONS(81), + [anon_sym___try] = ACTIONS(1291), + [anon_sym___leave] = ACTIONS(659), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [sym_number_literal] = ACTIONS(161), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(163), + [sym_false] = ACTIONS(163), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [454] = { - [sym_attribute_declaration] = STATE(463), - [sym_compound_statement] = STATE(129), - [sym_attributed_statement] = STATE(126), - [sym_labeled_statement] = STATE(123), - [sym_expression_statement] = STATE(121), - [sym_if_statement] = STATE(117), - [sym_switch_statement] = STATE(113), - [sym_case_statement] = STATE(92), - [sym_while_statement] = STATE(111), - [sym_do_statement] = STATE(109), - [sym_for_statement] = STATE(95), - [sym_return_statement] = STATE(103), - [sym_break_statement] = STATE(104), - [sym_continue_statement] = STATE(105), - [sym_goto_statement] = STATE(106), - [sym_seh_try_statement] = STATE(107), - [sym_seh_leave_statement] = STATE(108), - [sym__expression] = STATE(1225), - [sym__expression_not_binary] = STATE(792), - [sym_comma_expression] = STATE(2038), - [sym_conditional_expression] = STATE(792), - [sym_assignment_expression] = STATE(792), - [sym_pointer_expression] = STATE(901), - [sym_unary_expression] = STATE(792), - [sym_binary_expression] = STATE(792), - [sym_update_expression] = STATE(792), - [sym_cast_expression] = STATE(792), - [sym_sizeof_expression] = STATE(792), - [sym_alignof_expression] = STATE(792), - [sym_offsetof_expression] = STATE(792), - [sym_generic_expression] = STATE(792), - [sym_subscript_expression] = STATE(901), - [sym_call_expression] = STATE(901), - [sym_gnu_asm_expression] = STATE(792), - [sym_field_expression] = STATE(901), - [sym_compound_literal_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(901), - [sym_char_literal] = STATE(792), - [sym_concatenated_string] = STATE(792), - [sym_string_literal] = STATE(675), - [sym_null] = STATE(792), - [aux_sym_attributed_declarator_repeat1] = STATE(463), - [sym_identifier] = ACTIONS(1581), + [450] = { + [sym_attribute_declaration] = STATE(466), + [sym_compound_statement] = STATE(352), + [sym_attributed_statement] = STATE(352), + [sym_labeled_statement] = STATE(352), + [sym_expression_statement] = STATE(352), + [sym_if_statement] = STATE(352), + [sym_switch_statement] = STATE(352), + [sym_case_statement] = STATE(352), + [sym_while_statement] = STATE(352), + [sym_do_statement] = STATE(352), + [sym_for_statement] = STATE(352), + [sym_return_statement] = STATE(352), + [sym_break_statement] = STATE(352), + [sym_continue_statement] = STATE(352), + [sym_goto_statement] = STATE(352), + [sym_seh_try_statement] = STATE(352), + [sym_seh_leave_statement] = STATE(352), + [sym__expression] = STATE(1269), + [sym__expression_not_binary] = STATE(809), + [sym_comma_expression] = STATE(2019), + [sym_conditional_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_pointer_expression] = STATE(877), + [sym_unary_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_update_expression] = STATE(809), + [sym_cast_expression] = STATE(809), + [sym_sizeof_expression] = STATE(809), + [sym_alignof_expression] = STATE(809), + [sym_offsetof_expression] = STATE(809), + [sym_generic_expression] = STATE(809), + [sym_subscript_expression] = STATE(877), + [sym_call_expression] = STATE(877), + [sym_gnu_asm_expression] = STATE(809), + [sym_field_expression] = STATE(877), + [sym_compound_literal_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(877), + [sym_char_literal] = STATE(809), + [sym_concatenated_string] = STATE(809), + [sym_string_literal] = STATE(573), + [sym_null] = STATE(809), + [aux_sym_attributed_declarator_repeat1] = STATE(466), + [sym_identifier] = ACTIONS(1772), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -66673,95 +68306,95 @@ 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(123), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1573), - [anon_sym_LBRACE] = ACTIONS(131), - [anon_sym_if] = ACTIONS(133), - [anon_sym_switch] = ACTIONS(135), - [anon_sym_case] = ACTIONS(137), - [anon_sym_default] = ACTIONS(139), - [anon_sym_while] = ACTIONS(141), - [anon_sym_do] = ACTIONS(143), - [anon_sym_for] = ACTIONS(145), - [anon_sym_return] = ACTIONS(147), - [anon_sym_break] = ACTIONS(149), - [anon_sym_continue] = ACTIONS(151), - [anon_sym_goto] = ACTIONS(153), - [anon_sym___try] = ACTIONS(155), - [anon_sym___leave] = ACTIONS(157), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(83), - [anon_sym___alignof__] = ACTIONS(85), - [anon_sym___alignof] = ACTIONS(85), - [anon_sym__alignof] = ACTIONS(85), - [anon_sym_alignof] = ACTIONS(85), - [anon_sym__Alignof] = ACTIONS(85), - [anon_sym_offsetof] = ACTIONS(87), - [anon_sym__Generic] = ACTIONS(89), - [anon_sym_asm] = ACTIONS(91), - [anon_sym___asm__] = ACTIONS(91), - [sym_number_literal] = ACTIONS(159), - [anon_sym_L_SQUOTE] = ACTIONS(95), - [anon_sym_u_SQUOTE] = ACTIONS(95), - [anon_sym_U_SQUOTE] = ACTIONS(95), - [anon_sym_u8_SQUOTE] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(95), - [anon_sym_L_DQUOTE] = ACTIONS(97), - [anon_sym_u_DQUOTE] = ACTIONS(97), - [anon_sym_U_DQUOTE] = ACTIONS(97), - [anon_sym_u8_DQUOTE] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(97), - [sym_true] = ACTIONS(161), - [sym_false] = ACTIONS(161), - [anon_sym_NULL] = ACTIONS(101), - [anon_sym_nullptr] = ACTIONS(101), + [anon_sym_SEMI] = ACTIONS(503), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1566), + [anon_sym_LBRACE] = ACTIONS(511), + [anon_sym_if] = ACTIONS(513), + [anon_sym_switch] = ACTIONS(515), + [anon_sym_case] = ACTIONS(517), + [anon_sym_default] = ACTIONS(519), + [anon_sym_while] = ACTIONS(521), + [anon_sym_do] = ACTIONS(523), + [anon_sym_for] = ACTIONS(525), + [anon_sym_return] = ACTIONS(527), + [anon_sym_break] = ACTIONS(529), + [anon_sym_continue] = ACTIONS(531), + [anon_sym_goto] = ACTIONS(533), + [anon_sym___try] = ACTIONS(535), + [anon_sym___leave] = ACTIONS(537), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [sym_number_literal] = ACTIONS(161), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(163), + [sym_false] = ACTIONS(163), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [455] = { - [sym_attribute_declaration] = STATE(416), - [sym_compound_statement] = STATE(282), - [sym_attributed_statement] = STATE(283), - [sym_labeled_statement] = STATE(285), - [sym_expression_statement] = STATE(286), - [sym_if_statement] = STATE(287), - [sym_switch_statement] = STATE(289), - [sym_case_statement] = STATE(291), - [sym_while_statement] = STATE(292), - [sym_do_statement] = STATE(293), - [sym_for_statement] = STATE(294), - [sym_return_statement] = STATE(306), - [sym_break_statement] = STATE(333), - [sym_continue_statement] = STATE(334), - [sym_goto_statement] = STATE(351), - [sym_seh_try_statement] = STATE(352), - [sym_seh_leave_statement] = STATE(344), - [sym__expression] = STATE(1229), - [sym__expression_not_binary] = STATE(792), - [sym_comma_expression] = STATE(1976), - [sym_conditional_expression] = STATE(792), - [sym_assignment_expression] = STATE(792), - [sym_pointer_expression] = STATE(901), - [sym_unary_expression] = STATE(792), - [sym_binary_expression] = STATE(792), - [sym_update_expression] = STATE(792), - [sym_cast_expression] = STATE(792), - [sym_sizeof_expression] = STATE(792), - [sym_alignof_expression] = STATE(792), - [sym_offsetof_expression] = STATE(792), - [sym_generic_expression] = STATE(792), - [sym_subscript_expression] = STATE(901), - [sym_call_expression] = STATE(901), - [sym_gnu_asm_expression] = STATE(792), - [sym_field_expression] = STATE(901), - [sym_compound_literal_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(901), - [sym_char_literal] = STATE(792), - [sym_concatenated_string] = STATE(792), - [sym_string_literal] = STATE(675), - [sym_null] = STATE(792), - [aux_sym_attributed_declarator_repeat1] = STATE(416), - [sym_identifier] = ACTIONS(1681), + [451] = { + [sym_attribute_declaration] = STATE(478), + [sym_compound_statement] = STATE(311), + [sym_attributed_statement] = STATE(311), + [sym_labeled_statement] = STATE(311), + [sym_expression_statement] = STATE(311), + [sym_if_statement] = STATE(311), + [sym_switch_statement] = STATE(311), + [sym_case_statement] = STATE(311), + [sym_while_statement] = STATE(311), + [sym_do_statement] = STATE(311), + [sym_for_statement] = STATE(311), + [sym_return_statement] = STATE(311), + [sym_break_statement] = STATE(311), + [sym_continue_statement] = STATE(311), + [sym_goto_statement] = STATE(311), + [sym_seh_try_statement] = STATE(311), + [sym_seh_leave_statement] = STATE(311), + [sym__expression] = STATE(1272), + [sym__expression_not_binary] = STATE(809), + [sym_comma_expression] = STATE(2198), + [sym_conditional_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_pointer_expression] = STATE(877), + [sym_unary_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_update_expression] = STATE(809), + [sym_cast_expression] = STATE(809), + [sym_sizeof_expression] = STATE(809), + [sym_alignof_expression] = STATE(809), + [sym_offsetof_expression] = STATE(809), + [sym_generic_expression] = STATE(809), + [sym_subscript_expression] = STATE(877), + [sym_call_expression] = STATE(877), + [sym_gnu_asm_expression] = STATE(809), + [sym_field_expression] = STATE(877), + [sym_compound_literal_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(877), + [sym_char_literal] = STATE(809), + [sym_concatenated_string] = STATE(809), + [sym_string_literal] = STATE(573), + [sym_null] = STATE(809), + [aux_sym_attributed_declarator_repeat1] = STATE(478), + [sym_identifier] = ACTIONS(1564), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -66769,95 +68402,95 @@ 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(648), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1573), - [anon_sym_LBRACE] = ACTIONS(656), - [anon_sym_if] = ACTIONS(658), - [anon_sym_switch] = ACTIONS(660), - [anon_sym_case] = ACTIONS(662), - [anon_sym_default] = ACTIONS(664), - [anon_sym_while] = ACTIONS(666), - [anon_sym_do] = ACTIONS(668), - [anon_sym_for] = ACTIONS(670), - [anon_sym_return] = ACTIONS(672), - [anon_sym_break] = ACTIONS(674), - [anon_sym_continue] = ACTIONS(676), - [anon_sym_goto] = ACTIONS(678), - [anon_sym___try] = ACTIONS(680), - [anon_sym___leave] = ACTIONS(682), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(83), - [anon_sym___alignof__] = ACTIONS(85), - [anon_sym___alignof] = ACTIONS(85), - [anon_sym__alignof] = ACTIONS(85), - [anon_sym_alignof] = ACTIONS(85), - [anon_sym__Alignof] = ACTIONS(85), - [anon_sym_offsetof] = ACTIONS(87), - [anon_sym__Generic] = ACTIONS(89), - [anon_sym_asm] = ACTIONS(91), - [anon_sym___asm__] = ACTIONS(91), - [sym_number_literal] = ACTIONS(159), - [anon_sym_L_SQUOTE] = ACTIONS(95), - [anon_sym_u_SQUOTE] = ACTIONS(95), - [anon_sym_U_SQUOTE] = ACTIONS(95), - [anon_sym_u8_SQUOTE] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(95), - [anon_sym_L_DQUOTE] = ACTIONS(97), - [anon_sym_u_DQUOTE] = ACTIONS(97), - [anon_sym_U_DQUOTE] = ACTIONS(97), - [anon_sym_u8_DQUOTE] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(97), - [sym_true] = ACTIONS(161), - [sym_false] = ACTIONS(161), - [anon_sym_NULL] = ACTIONS(101), - [anon_sym_nullptr] = ACTIONS(101), + [anon_sym_SEMI] = ACTIONS(623), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1566), + [anon_sym_LBRACE] = ACTIONS(631), + [anon_sym_if] = ACTIONS(635), + [anon_sym_switch] = ACTIONS(637), + [anon_sym_case] = ACTIONS(639), + [anon_sym_default] = ACTIONS(641), + [anon_sym_while] = ACTIONS(643), + [anon_sym_do] = ACTIONS(645), + [anon_sym_for] = ACTIONS(647), + [anon_sym_return] = ACTIONS(649), + [anon_sym_break] = ACTIONS(651), + [anon_sym_continue] = ACTIONS(653), + [anon_sym_goto] = ACTIONS(655), + [anon_sym___try] = ACTIONS(657), + [anon_sym___leave] = ACTIONS(659), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [sym_number_literal] = ACTIONS(161), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(163), + [sym_false] = ACTIONS(163), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [456] = { - [sym_attribute_declaration] = STATE(416), - [sym_compound_statement] = STATE(235), - [sym_attributed_statement] = STATE(235), - [sym_labeled_statement] = STATE(235), - [sym_expression_statement] = STATE(235), - [sym_if_statement] = STATE(235), - [sym_switch_statement] = STATE(235), - [sym_case_statement] = STATE(235), - [sym_while_statement] = STATE(235), - [sym_do_statement] = STATE(235), - [sym_for_statement] = STATE(235), - [sym_return_statement] = STATE(235), - [sym_break_statement] = STATE(235), - [sym_continue_statement] = STATE(235), - [sym_goto_statement] = STATE(235), - [sym_seh_try_statement] = STATE(235), - [sym_seh_leave_statement] = STATE(235), - [sym__expression] = STATE(1229), - [sym__expression_not_binary] = STATE(792), - [sym_comma_expression] = STATE(1976), - [sym_conditional_expression] = STATE(792), - [sym_assignment_expression] = STATE(792), - [sym_pointer_expression] = STATE(901), - [sym_unary_expression] = STATE(792), - [sym_binary_expression] = STATE(792), - [sym_update_expression] = STATE(792), - [sym_cast_expression] = STATE(792), - [sym_sizeof_expression] = STATE(792), - [sym_alignof_expression] = STATE(792), - [sym_offsetof_expression] = STATE(792), - [sym_generic_expression] = STATE(792), - [sym_subscript_expression] = STATE(901), - [sym_call_expression] = STATE(901), - [sym_gnu_asm_expression] = STATE(792), - [sym_field_expression] = STATE(901), - [sym_compound_literal_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(901), - [sym_char_literal] = STATE(792), - [sym_concatenated_string] = STATE(792), - [sym_string_literal] = STATE(675), - [sym_null] = STATE(792), - [aux_sym_attributed_declarator_repeat1] = STATE(416), - [sym_identifier] = ACTIONS(1681), + [452] = { + [sym_attribute_declaration] = STATE(480), + [sym_compound_statement] = STATE(188), + [sym_attributed_statement] = STATE(188), + [sym_labeled_statement] = STATE(188), + [sym_expression_statement] = STATE(188), + [sym_if_statement] = STATE(188), + [sym_switch_statement] = STATE(188), + [sym_case_statement] = STATE(188), + [sym_while_statement] = STATE(188), + [sym_do_statement] = STATE(188), + [sym_for_statement] = STATE(188), + [sym_return_statement] = STATE(188), + [sym_break_statement] = STATE(188), + [sym_continue_statement] = STATE(188), + [sym_goto_statement] = STATE(188), + [sym_seh_try_statement] = STATE(188), + [sym_seh_leave_statement] = STATE(188), + [sym__expression] = STATE(1258), + [sym__expression_not_binary] = STATE(809), + [sym_comma_expression] = STATE(2110), + [sym_conditional_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_pointer_expression] = STATE(877), + [sym_unary_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_update_expression] = STATE(809), + [sym_cast_expression] = STATE(809), + [sym_sizeof_expression] = STATE(809), + [sym_alignof_expression] = STATE(809), + [sym_offsetof_expression] = STATE(809), + [sym_generic_expression] = STATE(809), + [sym_subscript_expression] = STATE(877), + [sym_call_expression] = STATE(877), + [sym_gnu_asm_expression] = STATE(809), + [sym_field_expression] = STATE(877), + [sym_compound_literal_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(877), + [sym_char_literal] = STATE(809), + [sym_concatenated_string] = STATE(809), + [sym_string_literal] = STATE(573), + [sym_null] = STATE(809), + [aux_sym_attributed_declarator_repeat1] = STATE(480), + [sym_identifier] = ACTIONS(1770), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -66865,95 +68498,95 @@ 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(648), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1573), - [anon_sym_LBRACE] = ACTIONS(656), - [anon_sym_if] = ACTIONS(658), - [anon_sym_switch] = ACTIONS(660), - [anon_sym_case] = ACTIONS(662), - [anon_sym_default] = ACTIONS(664), - [anon_sym_while] = ACTIONS(666), - [anon_sym_do] = ACTIONS(668), - [anon_sym_for] = ACTIONS(670), - [anon_sym_return] = ACTIONS(672), - [anon_sym_break] = ACTIONS(674), - [anon_sym_continue] = ACTIONS(676), - [anon_sym_goto] = ACTIONS(678), - [anon_sym___try] = ACTIONS(680), - [anon_sym___leave] = ACTIONS(682), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(83), - [anon_sym___alignof__] = ACTIONS(85), - [anon_sym___alignof] = ACTIONS(85), - [anon_sym__alignof] = ACTIONS(85), - [anon_sym_alignof] = ACTIONS(85), - [anon_sym__Alignof] = ACTIONS(85), - [anon_sym_offsetof] = ACTIONS(87), - [anon_sym__Generic] = ACTIONS(89), - [anon_sym_asm] = ACTIONS(91), - [anon_sym___asm__] = ACTIONS(91), - [sym_number_literal] = ACTIONS(159), - [anon_sym_L_SQUOTE] = ACTIONS(95), - [anon_sym_u_SQUOTE] = ACTIONS(95), - [anon_sym_U_SQUOTE] = ACTIONS(95), - [anon_sym_u8_SQUOTE] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(95), - [anon_sym_L_DQUOTE] = ACTIONS(97), - [anon_sym_u_DQUOTE] = ACTIONS(97), - [anon_sym_U_DQUOTE] = ACTIONS(97), - [anon_sym_u8_DQUOTE] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(97), - [sym_true] = ACTIONS(161), - [sym_false] = ACTIONS(161), - [anon_sym_NULL] = ACTIONS(101), - [anon_sym_nullptr] = ACTIONS(101), + [anon_sym_SEMI] = ACTIONS(197), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1566), + [anon_sym_LBRACE] = ACTIONS(205), + [anon_sym_if] = ACTIONS(207), + [anon_sym_switch] = ACTIONS(209), + [anon_sym_case] = ACTIONS(211), + [anon_sym_default] = ACTIONS(213), + [anon_sym_while] = ACTIONS(215), + [anon_sym_do] = ACTIONS(217), + [anon_sym_for] = ACTIONS(219), + [anon_sym_return] = ACTIONS(221), + [anon_sym_break] = ACTIONS(223), + [anon_sym_continue] = ACTIONS(225), + [anon_sym_goto] = ACTIONS(227), + [anon_sym___try] = ACTIONS(229), + [anon_sym___leave] = ACTIONS(231), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [sym_number_literal] = ACTIONS(161), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(163), + [sym_false] = ACTIONS(163), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [457] = { - [sym_attribute_declaration] = STATE(448), - [sym_compound_statement] = STATE(261), - [sym_attributed_statement] = STATE(261), - [sym_labeled_statement] = STATE(261), - [sym_expression_statement] = STATE(261), - [sym_if_statement] = STATE(261), - [sym_switch_statement] = STATE(261), - [sym_case_statement] = STATE(261), - [sym_while_statement] = STATE(261), - [sym_do_statement] = STATE(261), - [sym_for_statement] = STATE(261), - [sym_return_statement] = STATE(261), - [sym_break_statement] = STATE(261), - [sym_continue_statement] = STATE(261), - [sym_goto_statement] = STATE(261), - [sym_seh_try_statement] = STATE(261), - [sym_seh_leave_statement] = STATE(261), - [sym__expression] = STATE(1221), - [sym__expression_not_binary] = STATE(792), - [sym_comma_expression] = STATE(2106), - [sym_conditional_expression] = STATE(792), - [sym_assignment_expression] = STATE(792), - [sym_pointer_expression] = STATE(901), - [sym_unary_expression] = STATE(792), - [sym_binary_expression] = STATE(792), - [sym_update_expression] = STATE(792), - [sym_cast_expression] = STATE(792), - [sym_sizeof_expression] = STATE(792), - [sym_alignof_expression] = STATE(792), - [sym_offsetof_expression] = STATE(792), - [sym_generic_expression] = STATE(792), - [sym_subscript_expression] = STATE(901), - [sym_call_expression] = STATE(901), - [sym_gnu_asm_expression] = STATE(792), - [sym_field_expression] = STATE(901), - [sym_compound_literal_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(901), - [sym_char_literal] = STATE(792), - [sym_concatenated_string] = STATE(792), - [sym_string_literal] = STATE(675), - [sym_null] = STATE(792), - [aux_sym_attributed_declarator_repeat1] = STATE(448), - [sym_identifier] = ACTIONS(1575), + [453] = { + [sym_attribute_declaration] = STATE(465), + [sym_compound_statement] = STATE(238), + [sym_attributed_statement] = STATE(238), + [sym_labeled_statement] = STATE(238), + [sym_expression_statement] = STATE(238), + [sym_if_statement] = STATE(238), + [sym_switch_statement] = STATE(238), + [sym_case_statement] = STATE(238), + [sym_while_statement] = STATE(238), + [sym_do_statement] = STATE(238), + [sym_for_statement] = STATE(238), + [sym_return_statement] = STATE(238), + [sym_break_statement] = STATE(238), + [sym_continue_statement] = STATE(238), + [sym_goto_statement] = STATE(238), + [sym_seh_try_statement] = STATE(238), + [sym_seh_leave_statement] = STATE(238), + [sym__expression] = STATE(1272), + [sym__expression_not_binary] = STATE(809), + [sym_comma_expression] = STATE(2198), + [sym_conditional_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_pointer_expression] = STATE(877), + [sym_unary_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_update_expression] = STATE(809), + [sym_cast_expression] = STATE(809), + [sym_sizeof_expression] = STATE(809), + [sym_alignof_expression] = STATE(809), + [sym_offsetof_expression] = STATE(809), + [sym_generic_expression] = STATE(809), + [sym_subscript_expression] = STATE(877), + [sym_call_expression] = STATE(877), + [sym_gnu_asm_expression] = STATE(809), + [sym_field_expression] = STATE(877), + [sym_compound_literal_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(877), + [sym_char_literal] = STATE(809), + [sym_concatenated_string] = STATE(809), + [sym_string_literal] = STATE(573), + [sym_null] = STATE(809), + [aux_sym_attributed_declarator_repeat1] = STATE(465), + [sym_identifier] = ACTIONS(1568), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -66961,191 +68594,287 @@ 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(496), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1573), - [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_if] = ACTIONS(1274), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_case] = ACTIONS(1577), - [anon_sym_default] = ACTIONS(1579), - [anon_sym_while] = ACTIONS(1276), - [anon_sym_do] = ACTIONS(69), - [anon_sym_for] = ACTIONS(1278), - [anon_sym_return] = ACTIONS(73), - [anon_sym_break] = ACTIONS(75), - [anon_sym_continue] = ACTIONS(77), - [anon_sym_goto] = ACTIONS(79), - [anon_sym___try] = ACTIONS(1280), - [anon_sym___leave] = ACTIONS(532), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(83), - [anon_sym___alignof__] = ACTIONS(85), - [anon_sym___alignof] = ACTIONS(85), - [anon_sym__alignof] = ACTIONS(85), - [anon_sym_alignof] = ACTIONS(85), - [anon_sym__Alignof] = ACTIONS(85), - [anon_sym_offsetof] = ACTIONS(87), - [anon_sym__Generic] = ACTIONS(89), - [anon_sym_asm] = ACTIONS(91), - [anon_sym___asm__] = ACTIONS(91), - [sym_number_literal] = ACTIONS(159), - [anon_sym_L_SQUOTE] = ACTIONS(95), - [anon_sym_u_SQUOTE] = ACTIONS(95), - [anon_sym_U_SQUOTE] = ACTIONS(95), - [anon_sym_u8_SQUOTE] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(95), - [anon_sym_L_DQUOTE] = ACTIONS(97), - [anon_sym_u_DQUOTE] = ACTIONS(97), - [anon_sym_U_DQUOTE] = ACTIONS(97), - [anon_sym_u8_DQUOTE] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(97), - [sym_true] = ACTIONS(161), - [sym_false] = ACTIONS(161), - [anon_sym_NULL] = ACTIONS(101), - [anon_sym_nullptr] = ACTIONS(101), + [anon_sym_SEMI] = ACTIONS(623), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1566), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_if] = ACTIONS(1285), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_case] = ACTIONS(1570), + [anon_sym_default] = ACTIONS(1572), + [anon_sym_while] = ACTIONS(1287), + [anon_sym_do] = ACTIONS(71), + [anon_sym_for] = ACTIONS(1289), + [anon_sym_return] = ACTIONS(75), + [anon_sym_break] = ACTIONS(77), + [anon_sym_continue] = ACTIONS(79), + [anon_sym_goto] = ACTIONS(81), + [anon_sym___try] = ACTIONS(1291), + [anon_sym___leave] = ACTIONS(659), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [sym_number_literal] = ACTIONS(161), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(163), + [sym_false] = ACTIONS(163), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [458] = { - [ts_builtin_sym_end] = ACTIONS(1439), - [sym_identifier] = ACTIONS(1437), - [aux_sym_preproc_include_token1] = ACTIONS(1437), - [aux_sym_preproc_def_token1] = ACTIONS(1437), - [aux_sym_preproc_if_token1] = ACTIONS(1437), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1437), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1437), - [sym_preproc_directive] = ACTIONS(1437), - [anon_sym_LPAREN2] = ACTIONS(1439), - [anon_sym_BANG] = ACTIONS(1439), - [anon_sym_TILDE] = ACTIONS(1439), - [anon_sym_DASH] = ACTIONS(1437), - [anon_sym_PLUS] = ACTIONS(1437), - [anon_sym_STAR] = ACTIONS(1439), - [anon_sym_AMP] = ACTIONS(1439), - [anon_sym___extension__] = ACTIONS(1437), - [anon_sym_typedef] = ACTIONS(1437), - [anon_sym_extern] = ACTIONS(1437), - [anon_sym___attribute__] = ACTIONS(1437), - [anon_sym___scanf] = ACTIONS(1437), - [anon_sym___printf] = ACTIONS(1437), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1439), - [anon_sym___declspec] = ACTIONS(1437), - [anon_sym___cdecl] = ACTIONS(1437), - [anon_sym___clrcall] = ACTIONS(1437), - [anon_sym___stdcall] = ACTIONS(1437), - [anon_sym___fastcall] = ACTIONS(1437), - [anon_sym___thiscall] = ACTIONS(1437), - [anon_sym___vectorcall] = ACTIONS(1437), - [anon_sym_LBRACE] = ACTIONS(1439), - [anon_sym_signed] = ACTIONS(1437), - [anon_sym_unsigned] = ACTIONS(1437), - [anon_sym_long] = ACTIONS(1437), - [anon_sym_short] = ACTIONS(1437), - [anon_sym_static] = ACTIONS(1437), - [anon_sym_auto] = ACTIONS(1437), - [anon_sym_register] = ACTIONS(1437), - [anon_sym_inline] = ACTIONS(1437), - [anon_sym___inline] = ACTIONS(1437), - [anon_sym___inline__] = ACTIONS(1437), - [anon_sym___forceinline] = ACTIONS(1437), - [anon_sym_thread_local] = ACTIONS(1437), - [anon_sym___thread] = ACTIONS(1437), - [anon_sym_const] = ACTIONS(1437), - [anon_sym_constexpr] = ACTIONS(1437), - [anon_sym_volatile] = ACTIONS(1437), - [anon_sym_restrict] = ACTIONS(1437), - [anon_sym___restrict__] = ACTIONS(1437), - [anon_sym__Atomic] = ACTIONS(1437), - [anon_sym__Noreturn] = ACTIONS(1437), - [anon_sym_noreturn] = ACTIONS(1437), - [sym_primitive_type] = ACTIONS(1437), - [anon_sym_enum] = ACTIONS(1437), - [anon_sym_struct] = ACTIONS(1437), - [anon_sym_union] = ACTIONS(1437), - [anon_sym_if] = ACTIONS(1437), - [anon_sym_switch] = ACTIONS(1437), - [anon_sym_case] = ACTIONS(1437), - [anon_sym_default] = ACTIONS(1437), - [anon_sym_while] = ACTIONS(1437), - [anon_sym_do] = ACTIONS(1437), - [anon_sym_for] = ACTIONS(1437), - [anon_sym_return] = ACTIONS(1437), - [anon_sym_break] = ACTIONS(1437), - [anon_sym_continue] = ACTIONS(1437), - [anon_sym_goto] = ACTIONS(1437), - [anon_sym_DASH_DASH] = ACTIONS(1439), - [anon_sym_PLUS_PLUS] = ACTIONS(1439), - [anon_sym_sizeof] = ACTIONS(1437), - [anon_sym___alignof__] = ACTIONS(1437), - [anon_sym___alignof] = ACTIONS(1437), - [anon_sym__alignof] = ACTIONS(1437), - [anon_sym_alignof] = ACTIONS(1437), - [anon_sym__Alignof] = ACTIONS(1437), - [anon_sym_offsetof] = ACTIONS(1437), - [anon_sym__Generic] = ACTIONS(1437), - [anon_sym_asm] = ACTIONS(1437), - [anon_sym___asm__] = ACTIONS(1437), - [sym_number_literal] = ACTIONS(1439), - [anon_sym_L_SQUOTE] = ACTIONS(1439), - [anon_sym_u_SQUOTE] = ACTIONS(1439), - [anon_sym_U_SQUOTE] = ACTIONS(1439), - [anon_sym_u8_SQUOTE] = ACTIONS(1439), - [anon_sym_SQUOTE] = ACTIONS(1439), - [anon_sym_L_DQUOTE] = ACTIONS(1439), - [anon_sym_u_DQUOTE] = ACTIONS(1439), - [anon_sym_U_DQUOTE] = ACTIONS(1439), - [anon_sym_u8_DQUOTE] = ACTIONS(1439), - [anon_sym_DQUOTE] = ACTIONS(1439), - [sym_true] = ACTIONS(1437), - [sym_false] = ACTIONS(1437), - [anon_sym_NULL] = ACTIONS(1437), - [anon_sym_nullptr] = ACTIONS(1437), + [454] = { + [sym_attribute_declaration] = STATE(454), + [sym_compound_statement] = STATE(129), + [sym_attributed_statement] = STATE(129), + [sym_labeled_statement] = STATE(129), + [sym_expression_statement] = STATE(129), + [sym_if_statement] = STATE(129), + [sym_switch_statement] = STATE(129), + [sym_case_statement] = STATE(129), + [sym_while_statement] = STATE(129), + [sym_do_statement] = STATE(129), + [sym_for_statement] = STATE(129), + [sym_return_statement] = STATE(129), + [sym_break_statement] = STATE(129), + [sym_continue_statement] = STATE(129), + [sym_goto_statement] = STATE(129), + [sym_seh_try_statement] = STATE(129), + [sym_seh_leave_statement] = STATE(129), + [sym__expression] = STATE(1239), + [sym__expression_not_binary] = STATE(809), + [sym_comma_expression] = STATE(2249), + [sym_conditional_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_pointer_expression] = STATE(877), + [sym_unary_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_update_expression] = STATE(809), + [sym_cast_expression] = STATE(809), + [sym_sizeof_expression] = STATE(809), + [sym_alignof_expression] = STATE(809), + [sym_offsetof_expression] = STATE(809), + [sym_generic_expression] = STATE(809), + [sym_subscript_expression] = STATE(877), + [sym_call_expression] = STATE(877), + [sym_gnu_asm_expression] = STATE(809), + [sym_field_expression] = STATE(877), + [sym_compound_literal_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(877), + [sym_char_literal] = STATE(809), + [sym_concatenated_string] = STATE(809), + [sym_string_literal] = STATE(573), + [sym_null] = STATE(809), + [aux_sym_attributed_declarator_repeat1] = STATE(454), + [sym_identifier] = ACTIONS(1774), + [anon_sym_LPAREN2] = ACTIONS(1579), + [anon_sym_BANG] = ACTIONS(1582), + [anon_sym_TILDE] = ACTIONS(1582), + [anon_sym_DASH] = ACTIONS(1585), + [anon_sym_PLUS] = ACTIONS(1585), + [anon_sym_STAR] = ACTIONS(1588), + [anon_sym_AMP] = ACTIONS(1588), + [anon_sym_SEMI] = ACTIONS(1777), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1594), + [anon_sym_LBRACE] = ACTIONS(1780), + [anon_sym_if] = ACTIONS(1783), + [anon_sym_switch] = ACTIONS(1786), + [anon_sym_case] = ACTIONS(1789), + [anon_sym_default] = ACTIONS(1792), + [anon_sym_while] = ACTIONS(1795), + [anon_sym_do] = ACTIONS(1798), + [anon_sym_for] = ACTIONS(1801), + [anon_sym_return] = ACTIONS(1804), + [anon_sym_break] = ACTIONS(1807), + [anon_sym_continue] = ACTIONS(1810), + [anon_sym_goto] = ACTIONS(1813), + [anon_sym___try] = ACTIONS(1816), + [anon_sym___leave] = ACTIONS(1819), + [anon_sym_DASH_DASH] = ACTIONS(1639), + [anon_sym_PLUS_PLUS] = ACTIONS(1639), + [anon_sym_sizeof] = ACTIONS(1642), + [anon_sym___alignof__] = ACTIONS(1645), + [anon_sym___alignof] = ACTIONS(1645), + [anon_sym__alignof] = ACTIONS(1645), + [anon_sym_alignof] = ACTIONS(1645), + [anon_sym__Alignof] = ACTIONS(1645), + [anon_sym_offsetof] = ACTIONS(1648), + [anon_sym__Generic] = ACTIONS(1651), + [anon_sym_asm] = ACTIONS(1654), + [anon_sym___asm__] = ACTIONS(1654), + [sym_number_literal] = ACTIONS(1657), + [anon_sym_L_SQUOTE] = ACTIONS(1660), + [anon_sym_u_SQUOTE] = ACTIONS(1660), + [anon_sym_U_SQUOTE] = ACTIONS(1660), + [anon_sym_u8_SQUOTE] = ACTIONS(1660), + [anon_sym_SQUOTE] = ACTIONS(1660), + [anon_sym_L_DQUOTE] = ACTIONS(1663), + [anon_sym_u_DQUOTE] = ACTIONS(1663), + [anon_sym_U_DQUOTE] = ACTIONS(1663), + [anon_sym_u8_DQUOTE] = ACTIONS(1663), + [anon_sym_DQUOTE] = ACTIONS(1663), + [sym_true] = ACTIONS(1666), + [sym_false] = ACTIONS(1666), + [anon_sym_NULL] = ACTIONS(1669), + [anon_sym_nullptr] = ACTIONS(1669), [sym_comment] = ACTIONS(3), }, - [459] = { - [sym_attribute_declaration] = STATE(448), - [sym_compound_statement] = STATE(2180), - [sym_attributed_statement] = STATE(2180), - [sym_labeled_statement] = STATE(2180), - [sym_expression_statement] = STATE(2180), - [sym_if_statement] = STATE(2180), - [sym_switch_statement] = STATE(2180), - [sym_case_statement] = STATE(2180), - [sym_while_statement] = STATE(2180), - [sym_do_statement] = STATE(2180), - [sym_for_statement] = STATE(2180), - [sym_return_statement] = STATE(2180), - [sym_break_statement] = STATE(2180), - [sym_continue_statement] = STATE(2180), - [sym_goto_statement] = STATE(2180), - [sym_seh_try_statement] = STATE(2180), - [sym_seh_leave_statement] = STATE(2180), - [sym__expression] = STATE(1221), - [sym__expression_not_binary] = STATE(792), - [sym_comma_expression] = STATE(2106), - [sym_conditional_expression] = STATE(792), - [sym_assignment_expression] = STATE(792), - [sym_pointer_expression] = STATE(901), - [sym_unary_expression] = STATE(792), - [sym_binary_expression] = STATE(792), - [sym_update_expression] = STATE(792), - [sym_cast_expression] = STATE(792), - [sym_sizeof_expression] = STATE(792), - [sym_alignof_expression] = STATE(792), - [sym_offsetof_expression] = STATE(792), - [sym_generic_expression] = STATE(792), - [sym_subscript_expression] = STATE(901), - [sym_call_expression] = STATE(901), - [sym_gnu_asm_expression] = STATE(792), - [sym_field_expression] = STATE(901), - [sym_compound_literal_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(901), - [sym_char_literal] = STATE(792), - [sym_concatenated_string] = STATE(792), - [sym_string_literal] = STATE(675), - [sym_null] = STATE(792), - [aux_sym_attributed_declarator_repeat1] = STATE(448), - [sym_identifier] = ACTIONS(1575), + [455] = { + [sym__expression] = STATE(1054), + [sym__expression_not_binary] = STATE(1110), + [sym_conditional_expression] = STATE(1110), + [sym_assignment_expression] = STATE(1110), + [sym_pointer_expression] = STATE(1110), + [sym_unary_expression] = STATE(1110), + [sym_binary_expression] = STATE(1110), + [sym_update_expression] = STATE(1110), + [sym_cast_expression] = STATE(1110), + [sym_sizeof_expression] = STATE(1110), + [sym_alignof_expression] = STATE(1110), + [sym_offsetof_expression] = STATE(1110), + [sym_generic_expression] = STATE(1110), + [sym_subscript_expression] = STATE(1110), + [sym_call_expression] = STATE(1110), + [sym_gnu_asm_expression] = STATE(1110), + [sym_field_expression] = STATE(1110), + [sym_compound_literal_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1110), + [sym_initializer_list] = STATE(1107), + [sym_char_literal] = STATE(1110), + [sym_concatenated_string] = STATE(1110), + [sym_string_literal] = STATE(893), + [sym_null] = STATE(1110), + [sym_identifier] = ACTIONS(1544), + [anon_sym_COMMA] = ACTIONS(1538), + [aux_sym_preproc_if_token2] = ACTIONS(1538), + [aux_sym_preproc_else_token1] = ACTIONS(1538), + [aux_sym_preproc_elif_token1] = ACTIONS(1538), + [anon_sym_LPAREN2] = ACTIONS(1538), + [anon_sym_BANG] = ACTIONS(1822), + [anon_sym_TILDE] = ACTIONS(1824), + [anon_sym_DASH] = ACTIONS(1544), + [anon_sym_PLUS] = ACTIONS(1544), + [anon_sym_STAR] = ACTIONS(1544), + [anon_sym_SLASH] = ACTIONS(1544), + [anon_sym_PERCENT] = ACTIONS(1544), + [anon_sym_PIPE_PIPE] = ACTIONS(1538), + [anon_sym_AMP_AMP] = ACTIONS(1538), + [anon_sym_PIPE] = ACTIONS(1544), + [anon_sym_CARET] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(1544), + [anon_sym_EQ_EQ] = ACTIONS(1538), + [anon_sym_BANG_EQ] = ACTIONS(1538), + [anon_sym_GT] = ACTIONS(1544), + [anon_sym_GT_EQ] = ACTIONS(1538), + [anon_sym_LT_EQ] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(1544), + [anon_sym_LT_LT] = ACTIONS(1544), + [anon_sym_GT_GT] = ACTIONS(1544), + [anon_sym_LBRACE] = ACTIONS(1826), + [anon_sym_LBRACK] = ACTIONS(1538), + [anon_sym_EQ] = ACTIONS(1544), + [anon_sym_QMARK] = ACTIONS(1538), + [anon_sym_STAR_EQ] = ACTIONS(1538), + [anon_sym_SLASH_EQ] = ACTIONS(1538), + [anon_sym_PERCENT_EQ] = ACTIONS(1538), + [anon_sym_PLUS_EQ] = ACTIONS(1538), + [anon_sym_DASH_EQ] = ACTIONS(1538), + [anon_sym_LT_LT_EQ] = ACTIONS(1538), + [anon_sym_GT_GT_EQ] = ACTIONS(1538), + [anon_sym_AMP_EQ] = ACTIONS(1538), + [anon_sym_CARET_EQ] = ACTIONS(1538), + [anon_sym_PIPE_EQ] = ACTIONS(1538), + [anon_sym_DASH_DASH] = ACTIONS(1538), + [anon_sym_PLUS_PLUS] = ACTIONS(1538), + [anon_sym_sizeof] = ACTIONS(1828), + [anon_sym___alignof__] = ACTIONS(1830), + [anon_sym___alignof] = ACTIONS(1830), + [anon_sym__alignof] = ACTIONS(1830), + [anon_sym_alignof] = ACTIONS(1830), + [anon_sym__Alignof] = ACTIONS(1830), + [anon_sym_offsetof] = ACTIONS(1832), + [anon_sym__Generic] = ACTIONS(1834), + [anon_sym_asm] = ACTIONS(1836), + [anon_sym___asm__] = ACTIONS(1836), + [anon_sym_DOT] = ACTIONS(1544), + [anon_sym_DASH_GT] = ACTIONS(1538), + [sym_number_literal] = ACTIONS(1838), + [anon_sym_L_SQUOTE] = ACTIONS(1840), + [anon_sym_u_SQUOTE] = ACTIONS(1840), + [anon_sym_U_SQUOTE] = ACTIONS(1840), + [anon_sym_u8_SQUOTE] = ACTIONS(1840), + [anon_sym_SQUOTE] = ACTIONS(1840), + [anon_sym_L_DQUOTE] = ACTIONS(1842), + [anon_sym_u_DQUOTE] = ACTIONS(1842), + [anon_sym_U_DQUOTE] = ACTIONS(1842), + [anon_sym_u8_DQUOTE] = ACTIONS(1842), + [anon_sym_DQUOTE] = ACTIONS(1842), + [sym_true] = ACTIONS(1844), + [sym_false] = ACTIONS(1844), + [anon_sym_NULL] = ACTIONS(1846), + [anon_sym_nullptr] = ACTIONS(1846), + [sym_comment] = ACTIONS(3), + }, + [456] = { + [sym_attribute_declaration] = STATE(435), + [sym_compound_statement] = STATE(122), + [sym_attributed_statement] = STATE(122), + [sym_labeled_statement] = STATE(122), + [sym_expression_statement] = STATE(122), + [sym_if_statement] = STATE(122), + [sym_switch_statement] = STATE(122), + [sym_case_statement] = STATE(122), + [sym_while_statement] = STATE(122), + [sym_do_statement] = STATE(122), + [sym_for_statement] = STATE(122), + [sym_return_statement] = STATE(122), + [sym_break_statement] = STATE(122), + [sym_continue_statement] = STATE(122), + [sym_goto_statement] = STATE(122), + [sym_seh_try_statement] = STATE(122), + [sym_seh_leave_statement] = STATE(122), + [sym__expression] = STATE(1239), + [sym__expression_not_binary] = STATE(809), + [sym_comma_expression] = STATE(2249), + [sym_conditional_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_pointer_expression] = STATE(877), + [sym_unary_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_update_expression] = STATE(809), + [sym_cast_expression] = STATE(809), + [sym_sizeof_expression] = STATE(809), + [sym_alignof_expression] = STATE(809), + [sym_offsetof_expression] = STATE(809), + [sym_generic_expression] = STATE(809), + [sym_subscript_expression] = STATE(877), + [sym_call_expression] = STATE(877), + [sym_gnu_asm_expression] = STATE(809), + [sym_field_expression] = STATE(877), + [sym_compound_literal_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(877), + [sym_char_literal] = STATE(809), + [sym_concatenated_string] = STATE(809), + [sym_string_literal] = STATE(573), + [sym_null] = STATE(809), + [aux_sym_attributed_declarator_repeat1] = STATE(435), + [sym_identifier] = ACTIONS(1574), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -67153,383 +68882,95 @@ 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(496), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1573), - [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_if] = ACTIONS(1274), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_case] = ACTIONS(1577), - [anon_sym_default] = ACTIONS(1579), - [anon_sym_while] = ACTIONS(1276), - [anon_sym_do] = ACTIONS(69), - [anon_sym_for] = ACTIONS(1278), - [anon_sym_return] = ACTIONS(73), - [anon_sym_break] = ACTIONS(75), - [anon_sym_continue] = ACTIONS(77), - [anon_sym_goto] = ACTIONS(79), - [anon_sym___try] = ACTIONS(1280), - [anon_sym___leave] = ACTIONS(532), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(83), - [anon_sym___alignof__] = ACTIONS(85), - [anon_sym___alignof] = ACTIONS(85), - [anon_sym__alignof] = ACTIONS(85), - [anon_sym_alignof] = ACTIONS(85), - [anon_sym__Alignof] = ACTIONS(85), - [anon_sym_offsetof] = ACTIONS(87), - [anon_sym__Generic] = ACTIONS(89), - [anon_sym_asm] = ACTIONS(91), - [anon_sym___asm__] = ACTIONS(91), - [sym_number_literal] = ACTIONS(159), - [anon_sym_L_SQUOTE] = ACTIONS(95), - [anon_sym_u_SQUOTE] = ACTIONS(95), - [anon_sym_U_SQUOTE] = ACTIONS(95), - [anon_sym_u8_SQUOTE] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(95), - [anon_sym_L_DQUOTE] = ACTIONS(97), - [anon_sym_u_DQUOTE] = ACTIONS(97), - [anon_sym_U_DQUOTE] = ACTIONS(97), - [anon_sym_u8_DQUOTE] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(97), - [sym_true] = ACTIONS(161), - [sym_false] = ACTIONS(161), - [anon_sym_NULL] = ACTIONS(101), - [anon_sym_nullptr] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - }, - [460] = { - [sym_attribute_declaration] = STATE(460), - [sym_compound_statement] = STATE(233), - [sym_attributed_statement] = STATE(233), - [sym_labeled_statement] = STATE(233), - [sym_expression_statement] = STATE(233), - [sym_if_statement] = STATE(233), - [sym_switch_statement] = STATE(233), - [sym_case_statement] = STATE(233), - [sym_while_statement] = STATE(233), - [sym_do_statement] = STATE(233), - [sym_for_statement] = STATE(233), - [sym_return_statement] = STATE(233), - [sym_break_statement] = STATE(233), - [sym_continue_statement] = STATE(233), - [sym_goto_statement] = STATE(233), - [sym_seh_try_statement] = STATE(233), - [sym_seh_leave_statement] = STATE(233), - [sym__expression] = STATE(1221), - [sym__expression_not_binary] = STATE(792), - [sym_comma_expression] = STATE(2106), - [sym_conditional_expression] = STATE(792), - [sym_assignment_expression] = STATE(792), - [sym_pointer_expression] = STATE(901), - [sym_unary_expression] = STATE(792), - [sym_binary_expression] = STATE(792), - [sym_update_expression] = STATE(792), - [sym_cast_expression] = STATE(792), - [sym_sizeof_expression] = STATE(792), - [sym_alignof_expression] = STATE(792), - [sym_offsetof_expression] = STATE(792), - [sym_generic_expression] = STATE(792), - [sym_subscript_expression] = STATE(901), - [sym_call_expression] = STATE(901), - [sym_gnu_asm_expression] = STATE(792), - [sym_field_expression] = STATE(901), - [sym_compound_literal_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(901), - [sym_char_literal] = STATE(792), - [sym_concatenated_string] = STATE(792), - [sym_string_literal] = STATE(675), - [sym_null] = STATE(792), - [aux_sym_attributed_declarator_repeat1] = STATE(460), - [sym_identifier] = ACTIONS(1833), - [anon_sym_LPAREN2] = ACTIONS(1586), - [anon_sym_BANG] = ACTIONS(1589), - [anon_sym_TILDE] = ACTIONS(1589), - [anon_sym_DASH] = ACTIONS(1592), - [anon_sym_PLUS] = ACTIONS(1592), - [anon_sym_STAR] = ACTIONS(1595), - [anon_sym_AMP] = ACTIONS(1595), - [anon_sym_SEMI] = ACTIONS(1598), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1601), - [anon_sym_LBRACE] = ACTIONS(1791), - [anon_sym_if] = ACTIONS(1836), - [anon_sym_switch] = ACTIONS(1797), - [anon_sym_case] = ACTIONS(1839), - [anon_sym_default] = ACTIONS(1842), - [anon_sym_while] = ACTIONS(1845), - [anon_sym_do] = ACTIONS(1809), - [anon_sym_for] = ACTIONS(1848), - [anon_sym_return] = ACTIONS(1815), - [anon_sym_break] = ACTIONS(1818), - [anon_sym_continue] = ACTIONS(1821), - [anon_sym_goto] = ACTIONS(1824), - [anon_sym___try] = ACTIONS(1851), - [anon_sym___leave] = ACTIONS(1643), - [anon_sym_DASH_DASH] = ACTIONS(1646), - [anon_sym_PLUS_PLUS] = ACTIONS(1646), - [anon_sym_sizeof] = ACTIONS(1649), - [anon_sym___alignof__] = ACTIONS(1652), - [anon_sym___alignof] = ACTIONS(1652), - [anon_sym__alignof] = ACTIONS(1652), - [anon_sym_alignof] = ACTIONS(1652), - [anon_sym__Alignof] = ACTIONS(1652), - [anon_sym_offsetof] = ACTIONS(1655), - [anon_sym__Generic] = ACTIONS(1658), - [anon_sym_asm] = ACTIONS(1661), - [anon_sym___asm__] = ACTIONS(1661), - [sym_number_literal] = ACTIONS(1664), - [anon_sym_L_SQUOTE] = ACTIONS(1667), - [anon_sym_u_SQUOTE] = ACTIONS(1667), - [anon_sym_U_SQUOTE] = ACTIONS(1667), - [anon_sym_u8_SQUOTE] = ACTIONS(1667), - [anon_sym_SQUOTE] = ACTIONS(1667), - [anon_sym_L_DQUOTE] = ACTIONS(1670), - [anon_sym_u_DQUOTE] = ACTIONS(1670), - [anon_sym_U_DQUOTE] = ACTIONS(1670), - [anon_sym_u8_DQUOTE] = ACTIONS(1670), - [anon_sym_DQUOTE] = ACTIONS(1670), - [sym_true] = ACTIONS(1673), - [sym_false] = ACTIONS(1673), - [anon_sym_NULL] = ACTIONS(1676), - [anon_sym_nullptr] = ACTIONS(1676), - [sym_comment] = ACTIONS(3), - }, - [461] = { - [ts_builtin_sym_end] = ACTIONS(1854), - [sym_identifier] = ACTIONS(1856), - [aux_sym_preproc_include_token1] = ACTIONS(1856), - [aux_sym_preproc_def_token1] = ACTIONS(1856), - [aux_sym_preproc_if_token1] = ACTIONS(1856), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1856), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1856), - [sym_preproc_directive] = ACTIONS(1856), - [anon_sym_LPAREN2] = ACTIONS(1854), - [anon_sym_BANG] = ACTIONS(1854), - [anon_sym_TILDE] = ACTIONS(1854), - [anon_sym_DASH] = ACTIONS(1856), - [anon_sym_PLUS] = ACTIONS(1856), - [anon_sym_STAR] = ACTIONS(1854), - [anon_sym_AMP] = ACTIONS(1854), - [anon_sym___extension__] = ACTIONS(1856), - [anon_sym_typedef] = ACTIONS(1856), - [anon_sym_extern] = ACTIONS(1856), - [anon_sym___attribute__] = ACTIONS(1856), - [anon_sym___scanf] = ACTIONS(1856), - [anon_sym___printf] = ACTIONS(1856), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1854), - [anon_sym___declspec] = ACTIONS(1856), - [anon_sym___cdecl] = ACTIONS(1856), - [anon_sym___clrcall] = ACTIONS(1856), - [anon_sym___stdcall] = ACTIONS(1856), - [anon_sym___fastcall] = ACTIONS(1856), - [anon_sym___thiscall] = ACTIONS(1856), - [anon_sym___vectorcall] = ACTIONS(1856), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_signed] = ACTIONS(1856), - [anon_sym_unsigned] = ACTIONS(1856), - [anon_sym_long] = ACTIONS(1856), - [anon_sym_short] = ACTIONS(1856), - [anon_sym_static] = ACTIONS(1856), - [anon_sym_auto] = ACTIONS(1856), - [anon_sym_register] = ACTIONS(1856), - [anon_sym_inline] = ACTIONS(1856), - [anon_sym___inline] = ACTIONS(1856), - [anon_sym___inline__] = ACTIONS(1856), - [anon_sym___forceinline] = ACTIONS(1856), - [anon_sym_thread_local] = ACTIONS(1856), - [anon_sym___thread] = ACTIONS(1856), - [anon_sym_const] = ACTIONS(1856), - [anon_sym_constexpr] = ACTIONS(1856), - [anon_sym_volatile] = ACTIONS(1856), - [anon_sym_restrict] = ACTIONS(1856), - [anon_sym___restrict__] = ACTIONS(1856), - [anon_sym__Atomic] = ACTIONS(1856), - [anon_sym__Noreturn] = ACTIONS(1856), - [anon_sym_noreturn] = ACTIONS(1856), - [sym_primitive_type] = ACTIONS(1856), - [anon_sym_enum] = ACTIONS(1856), - [anon_sym_struct] = ACTIONS(1856), - [anon_sym_union] = ACTIONS(1856), - [anon_sym_if] = ACTIONS(1856), - [anon_sym_switch] = ACTIONS(1856), - [anon_sym_case] = ACTIONS(1856), - [anon_sym_default] = ACTIONS(1856), - [anon_sym_while] = ACTIONS(1856), - [anon_sym_do] = ACTIONS(1856), - [anon_sym_for] = ACTIONS(1856), - [anon_sym_return] = ACTIONS(1856), - [anon_sym_break] = ACTIONS(1856), - [anon_sym_continue] = ACTIONS(1856), - [anon_sym_goto] = ACTIONS(1856), - [anon_sym_DASH_DASH] = ACTIONS(1854), - [anon_sym_PLUS_PLUS] = ACTIONS(1854), - [anon_sym_sizeof] = ACTIONS(1856), - [anon_sym___alignof__] = ACTIONS(1856), - [anon_sym___alignof] = ACTIONS(1856), - [anon_sym__alignof] = ACTIONS(1856), - [anon_sym_alignof] = ACTIONS(1856), - [anon_sym__Alignof] = ACTIONS(1856), - [anon_sym_offsetof] = ACTIONS(1856), - [anon_sym__Generic] = ACTIONS(1856), - [anon_sym_asm] = ACTIONS(1856), - [anon_sym___asm__] = ACTIONS(1856), - [sym_number_literal] = ACTIONS(1854), - [anon_sym_L_SQUOTE] = ACTIONS(1854), - [anon_sym_u_SQUOTE] = ACTIONS(1854), - [anon_sym_U_SQUOTE] = ACTIONS(1854), - [anon_sym_u8_SQUOTE] = ACTIONS(1854), - [anon_sym_SQUOTE] = ACTIONS(1854), - [anon_sym_L_DQUOTE] = ACTIONS(1854), - [anon_sym_u_DQUOTE] = ACTIONS(1854), - [anon_sym_U_DQUOTE] = ACTIONS(1854), - [anon_sym_u8_DQUOTE] = ACTIONS(1854), - [anon_sym_DQUOTE] = ACTIONS(1854), - [sym_true] = ACTIONS(1856), - [sym_false] = ACTIONS(1856), - [anon_sym_NULL] = ACTIONS(1856), - [anon_sym_nullptr] = ACTIONS(1856), - [sym_comment] = ACTIONS(3), - }, - [462] = { - [ts_builtin_sym_end] = ACTIONS(1443), - [sym_identifier] = ACTIONS(1441), - [aux_sym_preproc_include_token1] = ACTIONS(1441), - [aux_sym_preproc_def_token1] = ACTIONS(1441), - [aux_sym_preproc_if_token1] = ACTIONS(1441), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1441), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1441), - [sym_preproc_directive] = ACTIONS(1441), - [anon_sym_LPAREN2] = ACTIONS(1443), - [anon_sym_BANG] = ACTIONS(1443), - [anon_sym_TILDE] = ACTIONS(1443), - [anon_sym_DASH] = ACTIONS(1441), - [anon_sym_PLUS] = ACTIONS(1441), - [anon_sym_STAR] = ACTIONS(1443), - [anon_sym_AMP] = ACTIONS(1443), - [anon_sym___extension__] = ACTIONS(1441), - [anon_sym_typedef] = ACTIONS(1441), - [anon_sym_extern] = ACTIONS(1441), - [anon_sym___attribute__] = ACTIONS(1441), - [anon_sym___scanf] = ACTIONS(1441), - [anon_sym___printf] = ACTIONS(1441), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1443), - [anon_sym___declspec] = ACTIONS(1441), - [anon_sym___cdecl] = ACTIONS(1441), - [anon_sym___clrcall] = ACTIONS(1441), - [anon_sym___stdcall] = ACTIONS(1441), - [anon_sym___fastcall] = ACTIONS(1441), - [anon_sym___thiscall] = ACTIONS(1441), - [anon_sym___vectorcall] = ACTIONS(1441), - [anon_sym_LBRACE] = ACTIONS(1443), - [anon_sym_signed] = ACTIONS(1441), - [anon_sym_unsigned] = ACTIONS(1441), - [anon_sym_long] = ACTIONS(1441), - [anon_sym_short] = ACTIONS(1441), - [anon_sym_static] = ACTIONS(1441), - [anon_sym_auto] = ACTIONS(1441), - [anon_sym_register] = ACTIONS(1441), - [anon_sym_inline] = ACTIONS(1441), - [anon_sym___inline] = ACTIONS(1441), - [anon_sym___inline__] = ACTIONS(1441), - [anon_sym___forceinline] = ACTIONS(1441), - [anon_sym_thread_local] = ACTIONS(1441), - [anon_sym___thread] = ACTIONS(1441), - [anon_sym_const] = ACTIONS(1441), - [anon_sym_constexpr] = ACTIONS(1441), - [anon_sym_volatile] = ACTIONS(1441), - [anon_sym_restrict] = ACTIONS(1441), - [anon_sym___restrict__] = ACTIONS(1441), - [anon_sym__Atomic] = ACTIONS(1441), - [anon_sym__Noreturn] = ACTIONS(1441), - [anon_sym_noreturn] = ACTIONS(1441), - [sym_primitive_type] = ACTIONS(1441), - [anon_sym_enum] = ACTIONS(1441), - [anon_sym_struct] = ACTIONS(1441), - [anon_sym_union] = ACTIONS(1441), - [anon_sym_if] = ACTIONS(1441), - [anon_sym_switch] = ACTIONS(1441), - [anon_sym_case] = ACTIONS(1441), - [anon_sym_default] = ACTIONS(1441), - [anon_sym_while] = ACTIONS(1441), - [anon_sym_do] = ACTIONS(1441), - [anon_sym_for] = ACTIONS(1441), - [anon_sym_return] = ACTIONS(1441), - [anon_sym_break] = ACTIONS(1441), - [anon_sym_continue] = ACTIONS(1441), - [anon_sym_goto] = ACTIONS(1441), - [anon_sym_DASH_DASH] = ACTIONS(1443), - [anon_sym_PLUS_PLUS] = ACTIONS(1443), - [anon_sym_sizeof] = ACTIONS(1441), - [anon_sym___alignof__] = ACTIONS(1441), - [anon_sym___alignof] = ACTIONS(1441), - [anon_sym__alignof] = ACTIONS(1441), - [anon_sym_alignof] = ACTIONS(1441), - [anon_sym__Alignof] = ACTIONS(1441), - [anon_sym_offsetof] = ACTIONS(1441), - [anon_sym__Generic] = ACTIONS(1441), - [anon_sym_asm] = ACTIONS(1441), - [anon_sym___asm__] = ACTIONS(1441), - [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(1441), - [sym_false] = ACTIONS(1441), - [anon_sym_NULL] = ACTIONS(1441), - [anon_sym_nullptr] = ACTIONS(1441), + [anon_sym_SEMI] = ACTIONS(125), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1566), + [anon_sym_LBRACE] = ACTIONS(133), + [anon_sym_if] = ACTIONS(135), + [anon_sym_switch] = ACTIONS(137), + [anon_sym_case] = ACTIONS(139), + [anon_sym_default] = ACTIONS(141), + [anon_sym_while] = ACTIONS(143), + [anon_sym_do] = ACTIONS(145), + [anon_sym_for] = ACTIONS(147), + [anon_sym_return] = ACTIONS(149), + [anon_sym_break] = ACTIONS(151), + [anon_sym_continue] = ACTIONS(153), + [anon_sym_goto] = ACTIONS(155), + [anon_sym___try] = ACTIONS(157), + [anon_sym___leave] = ACTIONS(159), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [sym_number_literal] = ACTIONS(161), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(163), + [sym_false] = ACTIONS(163), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [463] = { - [sym_attribute_declaration] = STATE(438), - [sym_compound_statement] = STATE(118), - [sym_attributed_statement] = STATE(118), - [sym_labeled_statement] = STATE(118), - [sym_expression_statement] = STATE(118), - [sym_if_statement] = STATE(118), - [sym_switch_statement] = STATE(118), - [sym_case_statement] = STATE(118), - [sym_while_statement] = STATE(118), - [sym_do_statement] = STATE(118), - [sym_for_statement] = STATE(118), - [sym_return_statement] = STATE(118), - [sym_break_statement] = STATE(118), - [sym_continue_statement] = STATE(118), - [sym_goto_statement] = STATE(118), - [sym_seh_try_statement] = STATE(118), - [sym_seh_leave_statement] = STATE(118), - [sym__expression] = STATE(1225), - [sym__expression_not_binary] = STATE(792), - [sym_comma_expression] = STATE(2038), - [sym_conditional_expression] = STATE(792), - [sym_assignment_expression] = STATE(792), - [sym_pointer_expression] = STATE(901), - [sym_unary_expression] = STATE(792), - [sym_binary_expression] = STATE(792), - [sym_update_expression] = STATE(792), - [sym_cast_expression] = STATE(792), - [sym_sizeof_expression] = STATE(792), - [sym_alignof_expression] = STATE(792), - [sym_offsetof_expression] = STATE(792), - [sym_generic_expression] = STATE(792), - [sym_subscript_expression] = STATE(901), - [sym_call_expression] = STATE(901), - [sym_gnu_asm_expression] = STATE(792), - [sym_field_expression] = STATE(901), - [sym_compound_literal_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(901), - [sym_char_literal] = STATE(792), - [sym_concatenated_string] = STATE(792), - [sym_string_literal] = STATE(675), - [sym_null] = STATE(792), - [aux_sym_attributed_declarator_repeat1] = STATE(438), - [sym_identifier] = ACTIONS(1581), + [457] = { + [sym_attribute_declaration] = STATE(435), + [sym_compound_statement] = STATE(90), + [sym_attributed_statement] = STATE(90), + [sym_labeled_statement] = STATE(90), + [sym_expression_statement] = STATE(90), + [sym_if_statement] = STATE(90), + [sym_switch_statement] = STATE(90), + [sym_case_statement] = STATE(90), + [sym_while_statement] = STATE(90), + [sym_do_statement] = STATE(90), + [sym_for_statement] = STATE(90), + [sym_return_statement] = STATE(90), + [sym_break_statement] = STATE(90), + [sym_continue_statement] = STATE(90), + [sym_goto_statement] = STATE(90), + [sym_seh_try_statement] = STATE(90), + [sym_seh_leave_statement] = STATE(90), + [sym__expression] = STATE(1239), + [sym__expression_not_binary] = STATE(809), + [sym_comma_expression] = STATE(2249), + [sym_conditional_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_pointer_expression] = STATE(877), + [sym_unary_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_update_expression] = STATE(809), + [sym_cast_expression] = STATE(809), + [sym_sizeof_expression] = STATE(809), + [sym_alignof_expression] = STATE(809), + [sym_offsetof_expression] = STATE(809), + [sym_generic_expression] = STATE(809), + [sym_subscript_expression] = STATE(877), + [sym_call_expression] = STATE(877), + [sym_gnu_asm_expression] = STATE(809), + [sym_field_expression] = STATE(877), + [sym_compound_literal_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(877), + [sym_char_literal] = STATE(809), + [sym_concatenated_string] = STATE(809), + [sym_string_literal] = STATE(573), + [sym_null] = STATE(809), + [aux_sym_attributed_declarator_repeat1] = STATE(435), + [sym_identifier] = ACTIONS(1574), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -67537,95 +68978,95 @@ 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(123), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1573), - [anon_sym_LBRACE] = ACTIONS(131), - [anon_sym_if] = ACTIONS(133), - [anon_sym_switch] = ACTIONS(135), - [anon_sym_case] = ACTIONS(137), - [anon_sym_default] = ACTIONS(139), - [anon_sym_while] = ACTIONS(141), - [anon_sym_do] = ACTIONS(143), - [anon_sym_for] = ACTIONS(145), - [anon_sym_return] = ACTIONS(147), - [anon_sym_break] = ACTIONS(149), - [anon_sym_continue] = ACTIONS(151), - [anon_sym_goto] = ACTIONS(153), - [anon_sym___try] = ACTIONS(155), - [anon_sym___leave] = ACTIONS(157), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(83), - [anon_sym___alignof__] = ACTIONS(85), - [anon_sym___alignof] = ACTIONS(85), - [anon_sym__alignof] = ACTIONS(85), - [anon_sym_alignof] = ACTIONS(85), - [anon_sym__Alignof] = ACTIONS(85), - [anon_sym_offsetof] = ACTIONS(87), - [anon_sym__Generic] = ACTIONS(89), - [anon_sym_asm] = ACTIONS(91), - [anon_sym___asm__] = ACTIONS(91), - [sym_number_literal] = ACTIONS(159), - [anon_sym_L_SQUOTE] = ACTIONS(95), - [anon_sym_u_SQUOTE] = ACTIONS(95), - [anon_sym_U_SQUOTE] = ACTIONS(95), - [anon_sym_u8_SQUOTE] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(95), - [anon_sym_L_DQUOTE] = ACTIONS(97), - [anon_sym_u_DQUOTE] = ACTIONS(97), - [anon_sym_U_DQUOTE] = ACTIONS(97), - [anon_sym_u8_DQUOTE] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(97), - [sym_true] = ACTIONS(161), - [sym_false] = ACTIONS(161), - [anon_sym_NULL] = ACTIONS(101), - [anon_sym_nullptr] = ACTIONS(101), + [anon_sym_SEMI] = ACTIONS(125), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1566), + [anon_sym_LBRACE] = ACTIONS(133), + [anon_sym_if] = ACTIONS(135), + [anon_sym_switch] = ACTIONS(137), + [anon_sym_case] = ACTIONS(139), + [anon_sym_default] = ACTIONS(141), + [anon_sym_while] = ACTIONS(143), + [anon_sym_do] = ACTIONS(145), + [anon_sym_for] = ACTIONS(147), + [anon_sym_return] = ACTIONS(149), + [anon_sym_break] = ACTIONS(151), + [anon_sym_continue] = ACTIONS(153), + [anon_sym_goto] = ACTIONS(155), + [anon_sym___try] = ACTIONS(157), + [anon_sym___leave] = ACTIONS(159), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [sym_number_literal] = ACTIONS(161), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(163), + [sym_false] = ACTIONS(163), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [464] = { - [sym_attribute_declaration] = STATE(448), - [sym_compound_statement] = STATE(312), - [sym_attributed_statement] = STATE(312), - [sym_labeled_statement] = STATE(312), - [sym_expression_statement] = STATE(312), - [sym_if_statement] = STATE(312), - [sym_switch_statement] = STATE(312), - [sym_case_statement] = STATE(312), - [sym_while_statement] = STATE(312), - [sym_do_statement] = STATE(312), - [sym_for_statement] = STATE(312), - [sym_return_statement] = STATE(312), - [sym_break_statement] = STATE(312), - [sym_continue_statement] = STATE(312), - [sym_goto_statement] = STATE(312), - [sym_seh_try_statement] = STATE(312), - [sym_seh_leave_statement] = STATE(312), - [sym__expression] = STATE(1221), - [sym__expression_not_binary] = STATE(792), - [sym_comma_expression] = STATE(2106), - [sym_conditional_expression] = STATE(792), - [sym_assignment_expression] = STATE(792), - [sym_pointer_expression] = STATE(901), - [sym_unary_expression] = STATE(792), - [sym_binary_expression] = STATE(792), - [sym_update_expression] = STATE(792), - [sym_cast_expression] = STATE(792), - [sym_sizeof_expression] = STATE(792), - [sym_alignof_expression] = STATE(792), - [sym_offsetof_expression] = STATE(792), - [sym_generic_expression] = STATE(792), - [sym_subscript_expression] = STATE(901), - [sym_call_expression] = STATE(901), - [sym_gnu_asm_expression] = STATE(792), - [sym_field_expression] = STATE(901), - [sym_compound_literal_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(901), - [sym_char_literal] = STATE(792), - [sym_concatenated_string] = STATE(792), - [sym_string_literal] = STATE(675), - [sym_null] = STATE(792), - [aux_sym_attributed_declarator_repeat1] = STATE(448), - [sym_identifier] = ACTIONS(1575), + [458] = { + [sym_attribute_declaration] = STATE(478), + [sym_compound_statement] = STATE(337), + [sym_attributed_statement] = STATE(337), + [sym_labeled_statement] = STATE(337), + [sym_expression_statement] = STATE(337), + [sym_if_statement] = STATE(337), + [sym_switch_statement] = STATE(337), + [sym_case_statement] = STATE(337), + [sym_while_statement] = STATE(337), + [sym_do_statement] = STATE(337), + [sym_for_statement] = STATE(337), + [sym_return_statement] = STATE(337), + [sym_break_statement] = STATE(337), + [sym_continue_statement] = STATE(337), + [sym_goto_statement] = STATE(337), + [sym_seh_try_statement] = STATE(337), + [sym_seh_leave_statement] = STATE(337), + [sym__expression] = STATE(1272), + [sym__expression_not_binary] = STATE(809), + [sym_comma_expression] = STATE(2198), + [sym_conditional_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_pointer_expression] = STATE(877), + [sym_unary_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_update_expression] = STATE(809), + [sym_cast_expression] = STATE(809), + [sym_sizeof_expression] = STATE(809), + [sym_alignof_expression] = STATE(809), + [sym_offsetof_expression] = STATE(809), + [sym_generic_expression] = STATE(809), + [sym_subscript_expression] = STATE(877), + [sym_call_expression] = STATE(877), + [sym_gnu_asm_expression] = STATE(809), + [sym_field_expression] = STATE(877), + [sym_compound_literal_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(877), + [sym_char_literal] = STATE(809), + [sym_concatenated_string] = STATE(809), + [sym_string_literal] = STATE(573), + [sym_null] = STATE(809), + [aux_sym_attributed_declarator_repeat1] = STATE(478), + [sym_identifier] = ACTIONS(1564), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -67633,95 +69074,95 @@ 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(496), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1573), - [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_if] = ACTIONS(1274), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_case] = ACTIONS(1577), - [anon_sym_default] = ACTIONS(1579), - [anon_sym_while] = ACTIONS(1276), - [anon_sym_do] = ACTIONS(69), - [anon_sym_for] = ACTIONS(1278), - [anon_sym_return] = ACTIONS(73), - [anon_sym_break] = ACTIONS(75), - [anon_sym_continue] = ACTIONS(77), - [anon_sym_goto] = ACTIONS(79), - [anon_sym___try] = ACTIONS(1280), - [anon_sym___leave] = ACTIONS(532), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(83), - [anon_sym___alignof__] = ACTIONS(85), - [anon_sym___alignof] = ACTIONS(85), - [anon_sym__alignof] = ACTIONS(85), - [anon_sym_alignof] = ACTIONS(85), - [anon_sym__Alignof] = ACTIONS(85), - [anon_sym_offsetof] = ACTIONS(87), - [anon_sym__Generic] = ACTIONS(89), - [anon_sym_asm] = ACTIONS(91), - [anon_sym___asm__] = ACTIONS(91), - [sym_number_literal] = ACTIONS(159), - [anon_sym_L_SQUOTE] = ACTIONS(95), - [anon_sym_u_SQUOTE] = ACTIONS(95), - [anon_sym_U_SQUOTE] = ACTIONS(95), - [anon_sym_u8_SQUOTE] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(95), - [anon_sym_L_DQUOTE] = ACTIONS(97), - [anon_sym_u_DQUOTE] = ACTIONS(97), - [anon_sym_U_DQUOTE] = ACTIONS(97), - [anon_sym_u8_DQUOTE] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(97), - [sym_true] = ACTIONS(161), - [sym_false] = ACTIONS(161), - [anon_sym_NULL] = ACTIONS(101), - [anon_sym_nullptr] = ACTIONS(101), + [anon_sym_SEMI] = ACTIONS(623), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1566), + [anon_sym_LBRACE] = ACTIONS(631), + [anon_sym_if] = ACTIONS(635), + [anon_sym_switch] = ACTIONS(637), + [anon_sym_case] = ACTIONS(639), + [anon_sym_default] = ACTIONS(641), + [anon_sym_while] = ACTIONS(643), + [anon_sym_do] = ACTIONS(645), + [anon_sym_for] = ACTIONS(647), + [anon_sym_return] = ACTIONS(649), + [anon_sym_break] = ACTIONS(651), + [anon_sym_continue] = ACTIONS(653), + [anon_sym_goto] = ACTIONS(655), + [anon_sym___try] = ACTIONS(657), + [anon_sym___leave] = ACTIONS(659), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [sym_number_literal] = ACTIONS(161), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(163), + [sym_false] = ACTIONS(163), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [465] = { - [sym_attribute_declaration] = STATE(448), - [sym_compound_statement] = STATE(288), - [sym_attributed_statement] = STATE(288), - [sym_labeled_statement] = STATE(288), - [sym_expression_statement] = STATE(288), - [sym_if_statement] = STATE(288), - [sym_switch_statement] = STATE(288), - [sym_case_statement] = STATE(288), - [sym_while_statement] = STATE(288), - [sym_do_statement] = STATE(288), - [sym_for_statement] = STATE(288), - [sym_return_statement] = STATE(288), - [sym_break_statement] = STATE(288), - [sym_continue_statement] = STATE(288), - [sym_goto_statement] = STATE(288), - [sym_seh_try_statement] = STATE(288), - [sym_seh_leave_statement] = STATE(288), - [sym__expression] = STATE(1221), - [sym__expression_not_binary] = STATE(792), - [sym_comma_expression] = STATE(2106), - [sym_conditional_expression] = STATE(792), - [sym_assignment_expression] = STATE(792), - [sym_pointer_expression] = STATE(901), - [sym_unary_expression] = STATE(792), - [sym_binary_expression] = STATE(792), - [sym_update_expression] = STATE(792), - [sym_cast_expression] = STATE(792), - [sym_sizeof_expression] = STATE(792), - [sym_alignof_expression] = STATE(792), - [sym_offsetof_expression] = STATE(792), - [sym_generic_expression] = STATE(792), - [sym_subscript_expression] = STATE(901), - [sym_call_expression] = STATE(901), - [sym_gnu_asm_expression] = STATE(792), - [sym_field_expression] = STATE(901), - [sym_compound_literal_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(901), - [sym_char_literal] = STATE(792), - [sym_concatenated_string] = STATE(792), - [sym_string_literal] = STATE(675), - [sym_null] = STATE(792), - [aux_sym_attributed_declarator_repeat1] = STATE(448), - [sym_identifier] = ACTIONS(1575), + [459] = { + [sym_attribute_declaration] = STATE(450), + [sym_compound_statement] = STATE(223), + [sym_attributed_statement] = STATE(223), + [sym_labeled_statement] = STATE(223), + [sym_expression_statement] = STATE(223), + [sym_if_statement] = STATE(223), + [sym_switch_statement] = STATE(223), + [sym_case_statement] = STATE(223), + [sym_while_statement] = STATE(223), + [sym_do_statement] = STATE(223), + [sym_for_statement] = STATE(223), + [sym_return_statement] = STATE(223), + [sym_break_statement] = STATE(223), + [sym_continue_statement] = STATE(223), + [sym_goto_statement] = STATE(223), + [sym_seh_try_statement] = STATE(223), + [sym_seh_leave_statement] = STATE(223), + [sym__expression] = STATE(1269), + [sym__expression_not_binary] = STATE(809), + [sym_comma_expression] = STATE(2019), + [sym_conditional_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_pointer_expression] = STATE(877), + [sym_unary_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_update_expression] = STATE(809), + [sym_cast_expression] = STATE(809), + [sym_sizeof_expression] = STATE(809), + [sym_alignof_expression] = STATE(809), + [sym_offsetof_expression] = STATE(809), + [sym_generic_expression] = STATE(809), + [sym_subscript_expression] = STATE(877), + [sym_call_expression] = STATE(877), + [sym_gnu_asm_expression] = STATE(809), + [sym_field_expression] = STATE(877), + [sym_compound_literal_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(877), + [sym_char_literal] = STATE(809), + [sym_concatenated_string] = STATE(809), + [sym_string_literal] = STATE(573), + [sym_null] = STATE(809), + [aux_sym_attributed_declarator_repeat1] = STATE(450), + [sym_identifier] = ACTIONS(1772), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -67729,95 +69170,95 @@ 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(496), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1573), - [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_if] = ACTIONS(1274), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_case] = ACTIONS(1577), - [anon_sym_default] = ACTIONS(1579), - [anon_sym_while] = ACTIONS(1276), - [anon_sym_do] = ACTIONS(69), - [anon_sym_for] = ACTIONS(1278), - [anon_sym_return] = ACTIONS(73), - [anon_sym_break] = ACTIONS(75), - [anon_sym_continue] = ACTIONS(77), - [anon_sym_goto] = ACTIONS(79), - [anon_sym___try] = ACTIONS(1280), - [anon_sym___leave] = ACTIONS(532), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(83), - [anon_sym___alignof__] = ACTIONS(85), - [anon_sym___alignof] = ACTIONS(85), - [anon_sym__alignof] = ACTIONS(85), - [anon_sym_alignof] = ACTIONS(85), - [anon_sym__Alignof] = ACTIONS(85), - [anon_sym_offsetof] = ACTIONS(87), - [anon_sym__Generic] = ACTIONS(89), - [anon_sym_asm] = ACTIONS(91), - [anon_sym___asm__] = ACTIONS(91), - [sym_number_literal] = ACTIONS(159), - [anon_sym_L_SQUOTE] = ACTIONS(95), - [anon_sym_u_SQUOTE] = ACTIONS(95), - [anon_sym_U_SQUOTE] = ACTIONS(95), - [anon_sym_u8_SQUOTE] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(95), - [anon_sym_L_DQUOTE] = ACTIONS(97), - [anon_sym_u_DQUOTE] = ACTIONS(97), - [anon_sym_U_DQUOTE] = ACTIONS(97), - [anon_sym_u8_DQUOTE] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(97), - [sym_true] = ACTIONS(161), - [sym_false] = ACTIONS(161), - [anon_sym_NULL] = ACTIONS(101), - [anon_sym_nullptr] = ACTIONS(101), + [anon_sym_SEMI] = ACTIONS(503), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1566), + [anon_sym_LBRACE] = ACTIONS(511), + [anon_sym_if] = ACTIONS(513), + [anon_sym_switch] = ACTIONS(515), + [anon_sym_case] = ACTIONS(517), + [anon_sym_default] = ACTIONS(519), + [anon_sym_while] = ACTIONS(521), + [anon_sym_do] = ACTIONS(523), + [anon_sym_for] = ACTIONS(525), + [anon_sym_return] = ACTIONS(527), + [anon_sym_break] = ACTIONS(529), + [anon_sym_continue] = ACTIONS(531), + [anon_sym_goto] = ACTIONS(533), + [anon_sym___try] = ACTIONS(535), + [anon_sym___leave] = ACTIONS(537), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [sym_number_literal] = ACTIONS(161), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(163), + [sym_false] = ACTIONS(163), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [466] = { - [sym_attribute_declaration] = STATE(448), - [sym_compound_statement] = STATE(502), - [sym_attributed_statement] = STATE(502), - [sym_labeled_statement] = STATE(502), - [sym_expression_statement] = STATE(502), - [sym_if_statement] = STATE(502), - [sym_switch_statement] = STATE(502), - [sym_case_statement] = STATE(502), - [sym_while_statement] = STATE(502), - [sym_do_statement] = STATE(502), - [sym_for_statement] = STATE(502), - [sym_return_statement] = STATE(502), - [sym_break_statement] = STATE(502), - [sym_continue_statement] = STATE(502), - [sym_goto_statement] = STATE(502), - [sym_seh_try_statement] = STATE(502), - [sym_seh_leave_statement] = STATE(502), - [sym__expression] = STATE(1221), - [sym__expression_not_binary] = STATE(792), - [sym_comma_expression] = STATE(2106), - [sym_conditional_expression] = STATE(792), - [sym_assignment_expression] = STATE(792), - [sym_pointer_expression] = STATE(901), - [sym_unary_expression] = STATE(792), - [sym_binary_expression] = STATE(792), - [sym_update_expression] = STATE(792), - [sym_cast_expression] = STATE(792), - [sym_sizeof_expression] = STATE(792), - [sym_alignof_expression] = STATE(792), - [sym_offsetof_expression] = STATE(792), - [sym_generic_expression] = STATE(792), - [sym_subscript_expression] = STATE(901), - [sym_call_expression] = STATE(901), - [sym_gnu_asm_expression] = STATE(792), - [sym_field_expression] = STATE(901), - [sym_compound_literal_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(901), - [sym_char_literal] = STATE(792), - [sym_concatenated_string] = STATE(792), - [sym_string_literal] = STATE(675), - [sym_null] = STATE(792), - [aux_sym_attributed_declarator_repeat1] = STATE(448), - [sym_identifier] = ACTIONS(1575), + [460] = { + [sym_attribute_declaration] = STATE(450), + [sym_compound_statement] = STATE(334), + [sym_attributed_statement] = STATE(334), + [sym_labeled_statement] = STATE(334), + [sym_expression_statement] = STATE(334), + [sym_if_statement] = STATE(334), + [sym_switch_statement] = STATE(334), + [sym_case_statement] = STATE(334), + [sym_while_statement] = STATE(334), + [sym_do_statement] = STATE(334), + [sym_for_statement] = STATE(334), + [sym_return_statement] = STATE(334), + [sym_break_statement] = STATE(334), + [sym_continue_statement] = STATE(334), + [sym_goto_statement] = STATE(334), + [sym_seh_try_statement] = STATE(334), + [sym_seh_leave_statement] = STATE(334), + [sym__expression] = STATE(1269), + [sym__expression_not_binary] = STATE(809), + [sym_comma_expression] = STATE(2019), + [sym_conditional_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_pointer_expression] = STATE(877), + [sym_unary_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_update_expression] = STATE(809), + [sym_cast_expression] = STATE(809), + [sym_sizeof_expression] = STATE(809), + [sym_alignof_expression] = STATE(809), + [sym_offsetof_expression] = STATE(809), + [sym_generic_expression] = STATE(809), + [sym_subscript_expression] = STATE(877), + [sym_call_expression] = STATE(877), + [sym_gnu_asm_expression] = STATE(809), + [sym_field_expression] = STATE(877), + [sym_compound_literal_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(877), + [sym_char_literal] = STATE(809), + [sym_concatenated_string] = STATE(809), + [sym_string_literal] = STATE(573), + [sym_null] = STATE(809), + [aux_sym_attributed_declarator_repeat1] = STATE(450), + [sym_identifier] = ACTIONS(1772), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -67825,287 +69266,95 @@ 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(496), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1573), - [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_if] = ACTIONS(1274), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_case] = ACTIONS(1577), - [anon_sym_default] = ACTIONS(1579), - [anon_sym_while] = ACTIONS(1276), - [anon_sym_do] = ACTIONS(69), - [anon_sym_for] = ACTIONS(1278), - [anon_sym_return] = ACTIONS(73), - [anon_sym_break] = ACTIONS(75), - [anon_sym_continue] = ACTIONS(77), - [anon_sym_goto] = ACTIONS(79), - [anon_sym___try] = ACTIONS(1280), - [anon_sym___leave] = ACTIONS(532), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(83), - [anon_sym___alignof__] = ACTIONS(85), - [anon_sym___alignof] = ACTIONS(85), - [anon_sym__alignof] = ACTIONS(85), - [anon_sym_alignof] = ACTIONS(85), - [anon_sym__Alignof] = ACTIONS(85), - [anon_sym_offsetof] = ACTIONS(87), - [anon_sym__Generic] = ACTIONS(89), - [anon_sym_asm] = ACTIONS(91), - [anon_sym___asm__] = ACTIONS(91), - [sym_number_literal] = ACTIONS(159), - [anon_sym_L_SQUOTE] = ACTIONS(95), - [anon_sym_u_SQUOTE] = ACTIONS(95), - [anon_sym_U_SQUOTE] = ACTIONS(95), - [anon_sym_u8_SQUOTE] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(95), - [anon_sym_L_DQUOTE] = ACTIONS(97), - [anon_sym_u_DQUOTE] = ACTIONS(97), - [anon_sym_U_DQUOTE] = ACTIONS(97), - [anon_sym_u8_DQUOTE] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(97), - [sym_true] = ACTIONS(161), - [sym_false] = ACTIONS(161), - [anon_sym_NULL] = ACTIONS(101), - [anon_sym_nullptr] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - }, - [467] = { - [sym_attribute_declaration] = STATE(467), - [sym_compound_statement] = STATE(242), - [sym_attributed_statement] = STATE(242), - [sym_labeled_statement] = STATE(242), - [sym_expression_statement] = STATE(242), - [sym_if_statement] = STATE(242), - [sym_switch_statement] = STATE(242), - [sym_case_statement] = STATE(242), - [sym_while_statement] = STATE(242), - [sym_do_statement] = STATE(242), - [sym_for_statement] = STATE(242), - [sym_return_statement] = STATE(242), - [sym_break_statement] = STATE(242), - [sym_continue_statement] = STATE(242), - [sym_goto_statement] = STATE(242), - [sym_seh_try_statement] = STATE(242), - [sym_seh_leave_statement] = STATE(242), - [sym__expression] = STATE(1229), - [sym__expression_not_binary] = STATE(792), - [sym_comma_expression] = STATE(1976), - [sym_conditional_expression] = STATE(792), - [sym_assignment_expression] = STATE(792), - [sym_pointer_expression] = STATE(901), - [sym_unary_expression] = STATE(792), - [sym_binary_expression] = STATE(792), - [sym_update_expression] = STATE(792), - [sym_cast_expression] = STATE(792), - [sym_sizeof_expression] = STATE(792), - [sym_alignof_expression] = STATE(792), - [sym_offsetof_expression] = STATE(792), - [sym_generic_expression] = STATE(792), - [sym_subscript_expression] = STATE(901), - [sym_call_expression] = STATE(901), - [sym_gnu_asm_expression] = STATE(792), - [sym_field_expression] = STATE(901), - [sym_compound_literal_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(901), - [sym_char_literal] = STATE(792), - [sym_concatenated_string] = STATE(792), - [sym_string_literal] = STATE(675), - [sym_null] = STATE(792), - [aux_sym_attributed_declarator_repeat1] = STATE(467), - [sym_identifier] = ACTIONS(1858), - [anon_sym_LPAREN2] = ACTIONS(1586), - [anon_sym_BANG] = ACTIONS(1589), - [anon_sym_TILDE] = ACTIONS(1589), - [anon_sym_DASH] = ACTIONS(1592), - [anon_sym_PLUS] = ACTIONS(1592), - [anon_sym_STAR] = ACTIONS(1595), - [anon_sym_AMP] = ACTIONS(1595), - [anon_sym_SEMI] = ACTIONS(1861), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1601), - [anon_sym_LBRACE] = ACTIONS(1864), - [anon_sym_if] = ACTIONS(1867), - [anon_sym_switch] = ACTIONS(1870), - [anon_sym_case] = ACTIONS(1873), - [anon_sym_default] = ACTIONS(1876), - [anon_sym_while] = ACTIONS(1879), - [anon_sym_do] = ACTIONS(1882), - [anon_sym_for] = ACTIONS(1885), - [anon_sym_return] = ACTIONS(1888), - [anon_sym_break] = ACTIONS(1891), - [anon_sym_continue] = ACTIONS(1894), - [anon_sym_goto] = ACTIONS(1897), - [anon_sym___try] = ACTIONS(1900), - [anon_sym___leave] = ACTIONS(1903), - [anon_sym_DASH_DASH] = ACTIONS(1646), - [anon_sym_PLUS_PLUS] = ACTIONS(1646), - [anon_sym_sizeof] = ACTIONS(1649), - [anon_sym___alignof__] = ACTIONS(1652), - [anon_sym___alignof] = ACTIONS(1652), - [anon_sym__alignof] = ACTIONS(1652), - [anon_sym_alignof] = ACTIONS(1652), - [anon_sym__Alignof] = ACTIONS(1652), - [anon_sym_offsetof] = ACTIONS(1655), - [anon_sym__Generic] = ACTIONS(1658), - [anon_sym_asm] = ACTIONS(1661), - [anon_sym___asm__] = ACTIONS(1661), - [sym_number_literal] = ACTIONS(1664), - [anon_sym_L_SQUOTE] = ACTIONS(1667), - [anon_sym_u_SQUOTE] = ACTIONS(1667), - [anon_sym_U_SQUOTE] = ACTIONS(1667), - [anon_sym_u8_SQUOTE] = ACTIONS(1667), - [anon_sym_SQUOTE] = ACTIONS(1667), - [anon_sym_L_DQUOTE] = ACTIONS(1670), - [anon_sym_u_DQUOTE] = ACTIONS(1670), - [anon_sym_U_DQUOTE] = ACTIONS(1670), - [anon_sym_u8_DQUOTE] = ACTIONS(1670), - [anon_sym_DQUOTE] = ACTIONS(1670), - [sym_true] = ACTIONS(1673), - [sym_false] = ACTIONS(1673), - [anon_sym_NULL] = ACTIONS(1676), - [anon_sym_nullptr] = ACTIONS(1676), - [sym_comment] = ACTIONS(3), - }, - [468] = { - [ts_builtin_sym_end] = ACTIONS(1455), - [sym_identifier] = ACTIONS(1453), - [aux_sym_preproc_include_token1] = ACTIONS(1453), - [aux_sym_preproc_def_token1] = ACTIONS(1453), - [aux_sym_preproc_if_token1] = ACTIONS(1453), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1453), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1453), - [sym_preproc_directive] = ACTIONS(1453), - [anon_sym_LPAREN2] = ACTIONS(1455), - [anon_sym_BANG] = ACTIONS(1455), - [anon_sym_TILDE] = ACTIONS(1455), - [anon_sym_DASH] = ACTIONS(1453), - [anon_sym_PLUS] = ACTIONS(1453), - [anon_sym_STAR] = ACTIONS(1455), - [anon_sym_AMP] = ACTIONS(1455), - [anon_sym___extension__] = ACTIONS(1453), - [anon_sym_typedef] = ACTIONS(1453), - [anon_sym_extern] = ACTIONS(1453), - [anon_sym___attribute__] = ACTIONS(1453), - [anon_sym___scanf] = ACTIONS(1453), - [anon_sym___printf] = ACTIONS(1453), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1455), - [anon_sym___declspec] = ACTIONS(1453), - [anon_sym___cdecl] = ACTIONS(1453), - [anon_sym___clrcall] = ACTIONS(1453), - [anon_sym___stdcall] = ACTIONS(1453), - [anon_sym___fastcall] = ACTIONS(1453), - [anon_sym___thiscall] = ACTIONS(1453), - [anon_sym___vectorcall] = ACTIONS(1453), - [anon_sym_LBRACE] = ACTIONS(1455), - [anon_sym_signed] = ACTIONS(1453), - [anon_sym_unsigned] = ACTIONS(1453), - [anon_sym_long] = ACTIONS(1453), - [anon_sym_short] = ACTIONS(1453), - [anon_sym_static] = ACTIONS(1453), - [anon_sym_auto] = ACTIONS(1453), - [anon_sym_register] = ACTIONS(1453), - [anon_sym_inline] = ACTIONS(1453), - [anon_sym___inline] = ACTIONS(1453), - [anon_sym___inline__] = ACTIONS(1453), - [anon_sym___forceinline] = ACTIONS(1453), - [anon_sym_thread_local] = ACTIONS(1453), - [anon_sym___thread] = ACTIONS(1453), - [anon_sym_const] = ACTIONS(1453), - [anon_sym_constexpr] = ACTIONS(1453), - [anon_sym_volatile] = ACTIONS(1453), - [anon_sym_restrict] = ACTIONS(1453), - [anon_sym___restrict__] = ACTIONS(1453), - [anon_sym__Atomic] = ACTIONS(1453), - [anon_sym__Noreturn] = ACTIONS(1453), - [anon_sym_noreturn] = ACTIONS(1453), - [sym_primitive_type] = ACTIONS(1453), - [anon_sym_enum] = ACTIONS(1453), - [anon_sym_struct] = ACTIONS(1453), - [anon_sym_union] = ACTIONS(1453), - [anon_sym_if] = ACTIONS(1453), - [anon_sym_switch] = ACTIONS(1453), - [anon_sym_case] = ACTIONS(1453), - [anon_sym_default] = ACTIONS(1453), - [anon_sym_while] = ACTIONS(1453), - [anon_sym_do] = ACTIONS(1453), - [anon_sym_for] = ACTIONS(1453), - [anon_sym_return] = ACTIONS(1453), - [anon_sym_break] = ACTIONS(1453), - [anon_sym_continue] = ACTIONS(1453), - [anon_sym_goto] = ACTIONS(1453), - [anon_sym_DASH_DASH] = ACTIONS(1455), - [anon_sym_PLUS_PLUS] = ACTIONS(1455), - [anon_sym_sizeof] = ACTIONS(1453), - [anon_sym___alignof__] = ACTIONS(1453), - [anon_sym___alignof] = ACTIONS(1453), - [anon_sym__alignof] = ACTIONS(1453), - [anon_sym_alignof] = ACTIONS(1453), - [anon_sym__Alignof] = ACTIONS(1453), - [anon_sym_offsetof] = ACTIONS(1453), - [anon_sym__Generic] = ACTIONS(1453), - [anon_sym_asm] = ACTIONS(1453), - [anon_sym___asm__] = ACTIONS(1453), - [sym_number_literal] = ACTIONS(1455), - [anon_sym_L_SQUOTE] = ACTIONS(1455), - [anon_sym_u_SQUOTE] = ACTIONS(1455), - [anon_sym_U_SQUOTE] = ACTIONS(1455), - [anon_sym_u8_SQUOTE] = ACTIONS(1455), - [anon_sym_SQUOTE] = ACTIONS(1455), - [anon_sym_L_DQUOTE] = ACTIONS(1455), - [anon_sym_u_DQUOTE] = ACTIONS(1455), - [anon_sym_U_DQUOTE] = ACTIONS(1455), - [anon_sym_u8_DQUOTE] = ACTIONS(1455), - [anon_sym_DQUOTE] = ACTIONS(1455), - [sym_true] = ACTIONS(1453), - [sym_false] = ACTIONS(1453), - [anon_sym_NULL] = ACTIONS(1453), - [anon_sym_nullptr] = ACTIONS(1453), + [anon_sym_SEMI] = ACTIONS(503), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1566), + [anon_sym_LBRACE] = ACTIONS(511), + [anon_sym_if] = ACTIONS(513), + [anon_sym_switch] = ACTIONS(515), + [anon_sym_case] = ACTIONS(517), + [anon_sym_default] = ACTIONS(519), + [anon_sym_while] = ACTIONS(521), + [anon_sym_do] = ACTIONS(523), + [anon_sym_for] = ACTIONS(525), + [anon_sym_return] = ACTIONS(527), + [anon_sym_break] = ACTIONS(529), + [anon_sym_continue] = ACTIONS(531), + [anon_sym_goto] = ACTIONS(533), + [anon_sym___try] = ACTIONS(535), + [anon_sym___leave] = ACTIONS(537), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [sym_number_literal] = ACTIONS(161), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(163), + [sym_false] = ACTIONS(163), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [469] = { - [sym_attribute_declaration] = STATE(448), - [sym_compound_statement] = STATE(2164), - [sym_attributed_statement] = STATE(2164), - [sym_labeled_statement] = STATE(2164), - [sym_expression_statement] = STATE(2164), - [sym_if_statement] = STATE(2164), - [sym_switch_statement] = STATE(2164), - [sym_case_statement] = STATE(2164), - [sym_while_statement] = STATE(2164), - [sym_do_statement] = STATE(2164), - [sym_for_statement] = STATE(2164), - [sym_return_statement] = STATE(2164), - [sym_break_statement] = STATE(2164), - [sym_continue_statement] = STATE(2164), - [sym_goto_statement] = STATE(2164), - [sym_seh_try_statement] = STATE(2164), - [sym_seh_leave_statement] = STATE(2164), - [sym__expression] = STATE(1221), - [sym__expression_not_binary] = STATE(792), - [sym_comma_expression] = STATE(2106), - [sym_conditional_expression] = STATE(792), - [sym_assignment_expression] = STATE(792), - [sym_pointer_expression] = STATE(901), - [sym_unary_expression] = STATE(792), - [sym_binary_expression] = STATE(792), - [sym_update_expression] = STATE(792), - [sym_cast_expression] = STATE(792), - [sym_sizeof_expression] = STATE(792), - [sym_alignof_expression] = STATE(792), - [sym_offsetof_expression] = STATE(792), - [sym_generic_expression] = STATE(792), - [sym_subscript_expression] = STATE(901), - [sym_call_expression] = STATE(901), - [sym_gnu_asm_expression] = STATE(792), - [sym_field_expression] = STATE(901), - [sym_compound_literal_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(901), - [sym_char_literal] = STATE(792), - [sym_concatenated_string] = STATE(792), - [sym_string_literal] = STATE(675), - [sym_null] = STATE(792), - [aux_sym_attributed_declarator_repeat1] = STATE(448), - [sym_identifier] = ACTIONS(1575), + [461] = { + [sym_attribute_declaration] = STATE(465), + [sym_compound_statement] = STATE(2253), + [sym_attributed_statement] = STATE(2253), + [sym_labeled_statement] = STATE(2253), + [sym_expression_statement] = STATE(2253), + [sym_if_statement] = STATE(2253), + [sym_switch_statement] = STATE(2253), + [sym_case_statement] = STATE(2253), + [sym_while_statement] = STATE(2253), + [sym_do_statement] = STATE(2253), + [sym_for_statement] = STATE(2253), + [sym_return_statement] = STATE(2253), + [sym_break_statement] = STATE(2253), + [sym_continue_statement] = STATE(2253), + [sym_goto_statement] = STATE(2253), + [sym_seh_try_statement] = STATE(2253), + [sym_seh_leave_statement] = STATE(2253), + [sym__expression] = STATE(1272), + [sym__expression_not_binary] = STATE(809), + [sym_comma_expression] = STATE(2198), + [sym_conditional_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_pointer_expression] = STATE(877), + [sym_unary_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_update_expression] = STATE(809), + [sym_cast_expression] = STATE(809), + [sym_sizeof_expression] = STATE(809), + [sym_alignof_expression] = STATE(809), + [sym_offsetof_expression] = STATE(809), + [sym_generic_expression] = STATE(809), + [sym_subscript_expression] = STATE(877), + [sym_call_expression] = STATE(877), + [sym_gnu_asm_expression] = STATE(809), + [sym_field_expression] = STATE(877), + [sym_compound_literal_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(877), + [sym_char_literal] = STATE(809), + [sym_concatenated_string] = STATE(809), + [sym_string_literal] = STATE(573), + [sym_null] = STATE(809), + [aux_sym_attributed_declarator_repeat1] = STATE(465), + [sym_identifier] = ACTIONS(1568), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -68113,95 +69362,95 @@ 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(496), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1573), - [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_if] = ACTIONS(1274), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_case] = ACTIONS(1577), - [anon_sym_default] = ACTIONS(1579), - [anon_sym_while] = ACTIONS(1276), - [anon_sym_do] = ACTIONS(69), - [anon_sym_for] = ACTIONS(1278), - [anon_sym_return] = ACTIONS(73), - [anon_sym_break] = ACTIONS(75), - [anon_sym_continue] = ACTIONS(77), - [anon_sym_goto] = ACTIONS(79), - [anon_sym___try] = ACTIONS(1280), - [anon_sym___leave] = ACTIONS(532), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(83), - [anon_sym___alignof__] = ACTIONS(85), - [anon_sym___alignof] = ACTIONS(85), - [anon_sym__alignof] = ACTIONS(85), - [anon_sym_alignof] = ACTIONS(85), - [anon_sym__Alignof] = ACTIONS(85), - [anon_sym_offsetof] = ACTIONS(87), - [anon_sym__Generic] = ACTIONS(89), - [anon_sym_asm] = ACTIONS(91), - [anon_sym___asm__] = ACTIONS(91), - [sym_number_literal] = ACTIONS(159), - [anon_sym_L_SQUOTE] = ACTIONS(95), - [anon_sym_u_SQUOTE] = ACTIONS(95), - [anon_sym_U_SQUOTE] = ACTIONS(95), - [anon_sym_u8_SQUOTE] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(95), - [anon_sym_L_DQUOTE] = ACTIONS(97), - [anon_sym_u_DQUOTE] = ACTIONS(97), - [anon_sym_U_DQUOTE] = ACTIONS(97), - [anon_sym_u8_DQUOTE] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(97), - [sym_true] = ACTIONS(161), - [sym_false] = ACTIONS(161), - [anon_sym_NULL] = ACTIONS(101), - [anon_sym_nullptr] = ACTIONS(101), + [anon_sym_SEMI] = ACTIONS(623), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1566), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_if] = ACTIONS(1285), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_case] = ACTIONS(1570), + [anon_sym_default] = ACTIONS(1572), + [anon_sym_while] = ACTIONS(1287), + [anon_sym_do] = ACTIONS(71), + [anon_sym_for] = ACTIONS(1289), + [anon_sym_return] = ACTIONS(75), + [anon_sym_break] = ACTIONS(77), + [anon_sym_continue] = ACTIONS(79), + [anon_sym_goto] = ACTIONS(81), + [anon_sym___try] = ACTIONS(1291), + [anon_sym___leave] = ACTIONS(659), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [sym_number_literal] = ACTIONS(161), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(163), + [sym_false] = ACTIONS(163), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [470] = { - [sym_attribute_declaration] = STATE(449), - [sym_compound_statement] = STATE(263), - [sym_attributed_statement] = STATE(265), - [sym_labeled_statement] = STATE(266), - [sym_expression_statement] = STATE(270), - [sym_if_statement] = STATE(271), - [sym_switch_statement] = STATE(272), - [sym_case_statement] = STATE(273), - [sym_while_statement] = STATE(274), - [sym_do_statement] = STATE(275), - [sym_for_statement] = STATE(278), - [sym_return_statement] = STATE(280), - [sym_break_statement] = STATE(290), - [sym_continue_statement] = STATE(299), - [sym_goto_statement] = STATE(300), - [sym_seh_try_statement] = STATE(320), - [sym_seh_leave_statement] = STATE(322), - [sym__expression] = STATE(1227), - [sym__expression_not_binary] = STATE(792), - [sym_comma_expression] = STATE(2090), - [sym_conditional_expression] = STATE(792), - [sym_assignment_expression] = STATE(792), - [sym_pointer_expression] = STATE(901), - [sym_unary_expression] = STATE(792), - [sym_binary_expression] = STATE(792), - [sym_update_expression] = STATE(792), - [sym_cast_expression] = STATE(792), - [sym_sizeof_expression] = STATE(792), - [sym_alignof_expression] = STATE(792), - [sym_offsetof_expression] = STATE(792), - [sym_generic_expression] = STATE(792), - [sym_subscript_expression] = STATE(901), - [sym_call_expression] = STATE(901), - [sym_gnu_asm_expression] = STATE(792), - [sym_field_expression] = STATE(901), - [sym_compound_literal_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(901), - [sym_char_literal] = STATE(792), - [sym_concatenated_string] = STATE(792), - [sym_string_literal] = STATE(675), - [sym_null] = STATE(792), - [aux_sym_attributed_declarator_repeat1] = STATE(449), - [sym_identifier] = ACTIONS(1571), + [462] = { + [sym_attribute_declaration] = STATE(450), + [sym_compound_statement] = STATE(328), + [sym_attributed_statement] = STATE(328), + [sym_labeled_statement] = STATE(328), + [sym_expression_statement] = STATE(328), + [sym_if_statement] = STATE(328), + [sym_switch_statement] = STATE(328), + [sym_case_statement] = STATE(328), + [sym_while_statement] = STATE(328), + [sym_do_statement] = STATE(328), + [sym_for_statement] = STATE(328), + [sym_return_statement] = STATE(328), + [sym_break_statement] = STATE(328), + [sym_continue_statement] = STATE(328), + [sym_goto_statement] = STATE(328), + [sym_seh_try_statement] = STATE(328), + [sym_seh_leave_statement] = STATE(328), + [sym__expression] = STATE(1269), + [sym__expression_not_binary] = STATE(809), + [sym_comma_expression] = STATE(2019), + [sym_conditional_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_pointer_expression] = STATE(877), + [sym_unary_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_update_expression] = STATE(809), + [sym_cast_expression] = STATE(809), + [sym_sizeof_expression] = STATE(809), + [sym_alignof_expression] = STATE(809), + [sym_offsetof_expression] = STATE(809), + [sym_generic_expression] = STATE(809), + [sym_subscript_expression] = STATE(877), + [sym_call_expression] = STATE(877), + [sym_gnu_asm_expression] = STATE(809), + [sym_field_expression] = STATE(877), + [sym_compound_literal_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(877), + [sym_char_literal] = STATE(809), + [sym_concatenated_string] = STATE(809), + [sym_string_literal] = STATE(573), + [sym_null] = STATE(809), + [aux_sym_attributed_declarator_repeat1] = STATE(450), + [sym_identifier] = ACTIONS(1772), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -68209,191 +69458,95 @@ 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(1110), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1573), - [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_if] = ACTIONS(59), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_case] = ACTIONS(63), - [anon_sym_default] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_do] = ACTIONS(69), - [anon_sym_for] = ACTIONS(71), - [anon_sym_return] = ACTIONS(73), - [anon_sym_break] = ACTIONS(75), - [anon_sym_continue] = ACTIONS(77), - [anon_sym_goto] = ACTIONS(79), - [anon_sym___try] = ACTIONS(1112), - [anon_sym___leave] = ACTIONS(1114), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(83), - [anon_sym___alignof__] = ACTIONS(85), - [anon_sym___alignof] = ACTIONS(85), - [anon_sym__alignof] = ACTIONS(85), - [anon_sym_alignof] = ACTIONS(85), - [anon_sym__Alignof] = ACTIONS(85), - [anon_sym_offsetof] = ACTIONS(87), - [anon_sym__Generic] = ACTIONS(89), - [anon_sym_asm] = ACTIONS(91), - [anon_sym___asm__] = ACTIONS(91), - [sym_number_literal] = ACTIONS(159), - [anon_sym_L_SQUOTE] = ACTIONS(95), - [anon_sym_u_SQUOTE] = ACTIONS(95), - [anon_sym_U_SQUOTE] = ACTIONS(95), - [anon_sym_u8_SQUOTE] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(95), - [anon_sym_L_DQUOTE] = ACTIONS(97), - [anon_sym_u_DQUOTE] = ACTIONS(97), - [anon_sym_U_DQUOTE] = ACTIONS(97), - [anon_sym_u8_DQUOTE] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(97), - [sym_true] = ACTIONS(161), - [sym_false] = ACTIONS(161), - [anon_sym_NULL] = ACTIONS(101), - [anon_sym_nullptr] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - }, - [471] = { - [ts_builtin_sym_end] = ACTIONS(1487), - [sym_identifier] = ACTIONS(1485), - [aux_sym_preproc_include_token1] = ACTIONS(1485), - [aux_sym_preproc_def_token1] = ACTIONS(1485), - [aux_sym_preproc_if_token1] = ACTIONS(1485), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1485), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1485), - [sym_preproc_directive] = ACTIONS(1485), - [anon_sym_LPAREN2] = ACTIONS(1487), - [anon_sym_BANG] = ACTIONS(1487), - [anon_sym_TILDE] = ACTIONS(1487), - [anon_sym_DASH] = ACTIONS(1485), - [anon_sym_PLUS] = ACTIONS(1485), - [anon_sym_STAR] = ACTIONS(1487), - [anon_sym_AMP] = ACTIONS(1487), - [anon_sym___extension__] = ACTIONS(1485), - [anon_sym_typedef] = ACTIONS(1485), - [anon_sym_extern] = ACTIONS(1485), - [anon_sym___attribute__] = ACTIONS(1485), - [anon_sym___scanf] = ACTIONS(1485), - [anon_sym___printf] = ACTIONS(1485), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1487), - [anon_sym___declspec] = ACTIONS(1485), - [anon_sym___cdecl] = ACTIONS(1485), - [anon_sym___clrcall] = ACTIONS(1485), - [anon_sym___stdcall] = ACTIONS(1485), - [anon_sym___fastcall] = ACTIONS(1485), - [anon_sym___thiscall] = ACTIONS(1485), - [anon_sym___vectorcall] = ACTIONS(1485), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_signed] = ACTIONS(1485), - [anon_sym_unsigned] = ACTIONS(1485), - [anon_sym_long] = ACTIONS(1485), - [anon_sym_short] = ACTIONS(1485), - [anon_sym_static] = ACTIONS(1485), - [anon_sym_auto] = ACTIONS(1485), - [anon_sym_register] = ACTIONS(1485), - [anon_sym_inline] = ACTIONS(1485), - [anon_sym___inline] = ACTIONS(1485), - [anon_sym___inline__] = ACTIONS(1485), - [anon_sym___forceinline] = ACTIONS(1485), - [anon_sym_thread_local] = ACTIONS(1485), - [anon_sym___thread] = ACTIONS(1485), - [anon_sym_const] = ACTIONS(1485), - [anon_sym_constexpr] = ACTIONS(1485), - [anon_sym_volatile] = ACTIONS(1485), - [anon_sym_restrict] = ACTIONS(1485), - [anon_sym___restrict__] = ACTIONS(1485), - [anon_sym__Atomic] = ACTIONS(1485), - [anon_sym__Noreturn] = ACTIONS(1485), - [anon_sym_noreturn] = ACTIONS(1485), - [sym_primitive_type] = ACTIONS(1485), - [anon_sym_enum] = ACTIONS(1485), - [anon_sym_struct] = ACTIONS(1485), - [anon_sym_union] = ACTIONS(1485), - [anon_sym_if] = ACTIONS(1485), - [anon_sym_switch] = ACTIONS(1485), - [anon_sym_case] = ACTIONS(1485), - [anon_sym_default] = ACTIONS(1485), - [anon_sym_while] = ACTIONS(1485), - [anon_sym_do] = ACTIONS(1485), - [anon_sym_for] = ACTIONS(1485), - [anon_sym_return] = ACTIONS(1485), - [anon_sym_break] = ACTIONS(1485), - [anon_sym_continue] = ACTIONS(1485), - [anon_sym_goto] = ACTIONS(1485), - [anon_sym_DASH_DASH] = ACTIONS(1487), - [anon_sym_PLUS_PLUS] = ACTIONS(1487), - [anon_sym_sizeof] = ACTIONS(1485), - [anon_sym___alignof__] = ACTIONS(1485), - [anon_sym___alignof] = ACTIONS(1485), - [anon_sym__alignof] = ACTIONS(1485), - [anon_sym_alignof] = ACTIONS(1485), - [anon_sym__Alignof] = ACTIONS(1485), - [anon_sym_offsetof] = ACTIONS(1485), - [anon_sym__Generic] = ACTIONS(1485), - [anon_sym_asm] = ACTIONS(1485), - [anon_sym___asm__] = ACTIONS(1485), - [sym_number_literal] = ACTIONS(1487), - [anon_sym_L_SQUOTE] = ACTIONS(1487), - [anon_sym_u_SQUOTE] = ACTIONS(1487), - [anon_sym_U_SQUOTE] = ACTIONS(1487), - [anon_sym_u8_SQUOTE] = ACTIONS(1487), - [anon_sym_SQUOTE] = ACTIONS(1487), - [anon_sym_L_DQUOTE] = ACTIONS(1487), - [anon_sym_u_DQUOTE] = ACTIONS(1487), - [anon_sym_U_DQUOTE] = ACTIONS(1487), - [anon_sym_u8_DQUOTE] = ACTIONS(1487), - [anon_sym_DQUOTE] = ACTIONS(1487), - [sym_true] = ACTIONS(1485), - [sym_false] = ACTIONS(1485), - [anon_sym_NULL] = ACTIONS(1485), - [anon_sym_nullptr] = ACTIONS(1485), + [anon_sym_SEMI] = ACTIONS(503), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1566), + [anon_sym_LBRACE] = ACTIONS(511), + [anon_sym_if] = ACTIONS(513), + [anon_sym_switch] = ACTIONS(515), + [anon_sym_case] = ACTIONS(517), + [anon_sym_default] = ACTIONS(519), + [anon_sym_while] = ACTIONS(521), + [anon_sym_do] = ACTIONS(523), + [anon_sym_for] = ACTIONS(525), + [anon_sym_return] = ACTIONS(527), + [anon_sym_break] = ACTIONS(529), + [anon_sym_continue] = ACTIONS(531), + [anon_sym_goto] = ACTIONS(533), + [anon_sym___try] = ACTIONS(535), + [anon_sym___leave] = ACTIONS(537), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [sym_number_literal] = ACTIONS(161), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(163), + [sym_false] = ACTIONS(163), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [472] = { - [sym_attribute_declaration] = STATE(416), - [sym_compound_statement] = STATE(258), - [sym_attributed_statement] = STATE(258), - [sym_labeled_statement] = STATE(258), - [sym_expression_statement] = STATE(258), - [sym_if_statement] = STATE(258), - [sym_switch_statement] = STATE(258), - [sym_case_statement] = STATE(258), - [sym_while_statement] = STATE(258), - [sym_do_statement] = STATE(258), - [sym_for_statement] = STATE(258), - [sym_return_statement] = STATE(258), - [sym_break_statement] = STATE(258), - [sym_continue_statement] = STATE(258), - [sym_goto_statement] = STATE(258), - [sym_seh_try_statement] = STATE(258), - [sym_seh_leave_statement] = STATE(258), - [sym__expression] = STATE(1229), - [sym__expression_not_binary] = STATE(792), - [sym_comma_expression] = STATE(1976), - [sym_conditional_expression] = STATE(792), - [sym_assignment_expression] = STATE(792), - [sym_pointer_expression] = STATE(901), - [sym_unary_expression] = STATE(792), - [sym_binary_expression] = STATE(792), - [sym_update_expression] = STATE(792), - [sym_cast_expression] = STATE(792), - [sym_sizeof_expression] = STATE(792), - [sym_alignof_expression] = STATE(792), - [sym_offsetof_expression] = STATE(792), - [sym_generic_expression] = STATE(792), - [sym_subscript_expression] = STATE(901), - [sym_call_expression] = STATE(901), - [sym_gnu_asm_expression] = STATE(792), - [sym_field_expression] = STATE(901), - [sym_compound_literal_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(901), - [sym_char_literal] = STATE(792), - [sym_concatenated_string] = STATE(792), - [sym_string_literal] = STATE(675), - [sym_null] = STATE(792), - [aux_sym_attributed_declarator_repeat1] = STATE(416), - [sym_identifier] = ACTIONS(1681), + [463] = { + [sym_attribute_declaration] = STATE(478), + [sym_compound_statement] = STATE(230), + [sym_attributed_statement] = STATE(230), + [sym_labeled_statement] = STATE(230), + [sym_expression_statement] = STATE(230), + [sym_if_statement] = STATE(230), + [sym_switch_statement] = STATE(230), + [sym_case_statement] = STATE(230), + [sym_while_statement] = STATE(230), + [sym_do_statement] = STATE(230), + [sym_for_statement] = STATE(230), + [sym_return_statement] = STATE(230), + [sym_break_statement] = STATE(230), + [sym_continue_statement] = STATE(230), + [sym_goto_statement] = STATE(230), + [sym_seh_try_statement] = STATE(230), + [sym_seh_leave_statement] = STATE(230), + [sym__expression] = STATE(1272), + [sym__expression_not_binary] = STATE(809), + [sym_comma_expression] = STATE(2198), + [sym_conditional_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_pointer_expression] = STATE(877), + [sym_unary_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_update_expression] = STATE(809), + [sym_cast_expression] = STATE(809), + [sym_sizeof_expression] = STATE(809), + [sym_alignof_expression] = STATE(809), + [sym_offsetof_expression] = STATE(809), + [sym_generic_expression] = STATE(809), + [sym_subscript_expression] = STATE(877), + [sym_call_expression] = STATE(877), + [sym_gnu_asm_expression] = STATE(809), + [sym_field_expression] = STATE(877), + [sym_compound_literal_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(877), + [sym_char_literal] = STATE(809), + [sym_concatenated_string] = STATE(809), + [sym_string_literal] = STATE(573), + [sym_null] = STATE(809), + [aux_sym_attributed_declarator_repeat1] = STATE(478), + [sym_identifier] = ACTIONS(1564), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -68401,287 +69554,95 @@ 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(648), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1573), - [anon_sym_LBRACE] = ACTIONS(656), - [anon_sym_if] = ACTIONS(658), - [anon_sym_switch] = ACTIONS(660), - [anon_sym_case] = ACTIONS(662), - [anon_sym_default] = ACTIONS(664), - [anon_sym_while] = ACTIONS(666), - [anon_sym_do] = ACTIONS(668), - [anon_sym_for] = ACTIONS(670), - [anon_sym_return] = ACTIONS(672), - [anon_sym_break] = ACTIONS(674), - [anon_sym_continue] = ACTIONS(676), - [anon_sym_goto] = ACTIONS(678), - [anon_sym___try] = ACTIONS(680), - [anon_sym___leave] = ACTIONS(682), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(83), - [anon_sym___alignof__] = ACTIONS(85), - [anon_sym___alignof] = ACTIONS(85), - [anon_sym__alignof] = ACTIONS(85), - [anon_sym_alignof] = ACTIONS(85), - [anon_sym__Alignof] = ACTIONS(85), - [anon_sym_offsetof] = ACTIONS(87), - [anon_sym__Generic] = ACTIONS(89), - [anon_sym_asm] = ACTIONS(91), - [anon_sym___asm__] = ACTIONS(91), - [sym_number_literal] = ACTIONS(159), - [anon_sym_L_SQUOTE] = ACTIONS(95), - [anon_sym_u_SQUOTE] = ACTIONS(95), - [anon_sym_U_SQUOTE] = ACTIONS(95), - [anon_sym_u8_SQUOTE] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(95), - [anon_sym_L_DQUOTE] = ACTIONS(97), - [anon_sym_u_DQUOTE] = ACTIONS(97), - [anon_sym_U_DQUOTE] = ACTIONS(97), - [anon_sym_u8_DQUOTE] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(97), - [sym_true] = ACTIONS(161), - [sym_false] = ACTIONS(161), - [anon_sym_NULL] = ACTIONS(101), - [anon_sym_nullptr] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - }, - [473] = { - [ts_builtin_sym_end] = ACTIONS(1475), - [sym_identifier] = ACTIONS(1473), - [aux_sym_preproc_include_token1] = ACTIONS(1473), - [aux_sym_preproc_def_token1] = ACTIONS(1473), - [aux_sym_preproc_if_token1] = ACTIONS(1473), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1473), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1473), - [sym_preproc_directive] = ACTIONS(1473), - [anon_sym_LPAREN2] = ACTIONS(1475), - [anon_sym_BANG] = ACTIONS(1475), - [anon_sym_TILDE] = ACTIONS(1475), - [anon_sym_DASH] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(1473), - [anon_sym_STAR] = ACTIONS(1475), - [anon_sym_AMP] = ACTIONS(1475), - [anon_sym___extension__] = ACTIONS(1473), - [anon_sym_typedef] = ACTIONS(1473), - [anon_sym_extern] = ACTIONS(1473), - [anon_sym___attribute__] = ACTIONS(1473), - [anon_sym___scanf] = ACTIONS(1473), - [anon_sym___printf] = ACTIONS(1473), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1475), - [anon_sym___declspec] = ACTIONS(1473), - [anon_sym___cdecl] = ACTIONS(1473), - [anon_sym___clrcall] = ACTIONS(1473), - [anon_sym___stdcall] = ACTIONS(1473), - [anon_sym___fastcall] = ACTIONS(1473), - [anon_sym___thiscall] = ACTIONS(1473), - [anon_sym___vectorcall] = ACTIONS(1473), - [anon_sym_LBRACE] = ACTIONS(1475), - [anon_sym_signed] = ACTIONS(1473), - [anon_sym_unsigned] = ACTIONS(1473), - [anon_sym_long] = ACTIONS(1473), - [anon_sym_short] = ACTIONS(1473), - [anon_sym_static] = ACTIONS(1473), - [anon_sym_auto] = ACTIONS(1473), - [anon_sym_register] = ACTIONS(1473), - [anon_sym_inline] = ACTIONS(1473), - [anon_sym___inline] = ACTIONS(1473), - [anon_sym___inline__] = ACTIONS(1473), - [anon_sym___forceinline] = ACTIONS(1473), - [anon_sym_thread_local] = ACTIONS(1473), - [anon_sym___thread] = ACTIONS(1473), - [anon_sym_const] = ACTIONS(1473), - [anon_sym_constexpr] = ACTIONS(1473), - [anon_sym_volatile] = ACTIONS(1473), - [anon_sym_restrict] = ACTIONS(1473), - [anon_sym___restrict__] = ACTIONS(1473), - [anon_sym__Atomic] = ACTIONS(1473), - [anon_sym__Noreturn] = ACTIONS(1473), - [anon_sym_noreturn] = ACTIONS(1473), - [sym_primitive_type] = ACTIONS(1473), - [anon_sym_enum] = ACTIONS(1473), - [anon_sym_struct] = ACTIONS(1473), - [anon_sym_union] = ACTIONS(1473), - [anon_sym_if] = ACTIONS(1473), - [anon_sym_switch] = ACTIONS(1473), - [anon_sym_case] = ACTIONS(1473), - [anon_sym_default] = ACTIONS(1473), - [anon_sym_while] = ACTIONS(1473), - [anon_sym_do] = ACTIONS(1473), - [anon_sym_for] = ACTIONS(1473), - [anon_sym_return] = ACTIONS(1473), - [anon_sym_break] = ACTIONS(1473), - [anon_sym_continue] = ACTIONS(1473), - [anon_sym_goto] = ACTIONS(1473), - [anon_sym_DASH_DASH] = ACTIONS(1475), - [anon_sym_PLUS_PLUS] = ACTIONS(1475), - [anon_sym_sizeof] = ACTIONS(1473), - [anon_sym___alignof__] = ACTIONS(1473), - [anon_sym___alignof] = ACTIONS(1473), - [anon_sym__alignof] = ACTIONS(1473), - [anon_sym_alignof] = ACTIONS(1473), - [anon_sym__Alignof] = ACTIONS(1473), - [anon_sym_offsetof] = ACTIONS(1473), - [anon_sym__Generic] = ACTIONS(1473), - [anon_sym_asm] = ACTIONS(1473), - [anon_sym___asm__] = ACTIONS(1473), - [sym_number_literal] = ACTIONS(1475), - [anon_sym_L_SQUOTE] = ACTIONS(1475), - [anon_sym_u_SQUOTE] = ACTIONS(1475), - [anon_sym_U_SQUOTE] = ACTIONS(1475), - [anon_sym_u8_SQUOTE] = ACTIONS(1475), - [anon_sym_SQUOTE] = ACTIONS(1475), - [anon_sym_L_DQUOTE] = ACTIONS(1475), - [anon_sym_u_DQUOTE] = ACTIONS(1475), - [anon_sym_U_DQUOTE] = ACTIONS(1475), - [anon_sym_u8_DQUOTE] = ACTIONS(1475), - [anon_sym_DQUOTE] = ACTIONS(1475), - [sym_true] = ACTIONS(1473), - [sym_false] = ACTIONS(1473), - [anon_sym_NULL] = ACTIONS(1473), - [anon_sym_nullptr] = ACTIONS(1473), + [anon_sym_SEMI] = ACTIONS(623), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1566), + [anon_sym_LBRACE] = ACTIONS(631), + [anon_sym_if] = ACTIONS(635), + [anon_sym_switch] = ACTIONS(637), + [anon_sym_case] = ACTIONS(639), + [anon_sym_default] = ACTIONS(641), + [anon_sym_while] = ACTIONS(643), + [anon_sym_do] = ACTIONS(645), + [anon_sym_for] = ACTIONS(647), + [anon_sym_return] = ACTIONS(649), + [anon_sym_break] = ACTIONS(651), + [anon_sym_continue] = ACTIONS(653), + [anon_sym_goto] = ACTIONS(655), + [anon_sym___try] = ACTIONS(657), + [anon_sym___leave] = ACTIONS(659), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [sym_number_literal] = ACTIONS(161), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(163), + [sym_false] = ACTIONS(163), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [474] = { - [ts_builtin_sym_end] = ACTIONS(1447), - [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(1447), - [anon_sym_BANG] = ACTIONS(1447), - [anon_sym_TILDE] = ACTIONS(1447), - [anon_sym_DASH] = ACTIONS(1445), - [anon_sym_PLUS] = ACTIONS(1445), - [anon_sym_STAR] = ACTIONS(1447), - [anon_sym_AMP] = ACTIONS(1447), - [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_LBRACK_LBRACK] = ACTIONS(1447), - [anon_sym___declspec] = 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(1447), - [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), - [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(1447), - [anon_sym_PLUS_PLUS] = ACTIONS(1447), - [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(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(1445), - [sym_false] = ACTIONS(1445), - [anon_sym_NULL] = ACTIONS(1445), - [anon_sym_nullptr] = ACTIONS(1445), - [sym_comment] = ACTIONS(3), - }, - [475] = { - [sym_attribute_declaration] = STATE(449), - [sym_compound_statement] = STATE(261), - [sym_attributed_statement] = STATE(261), - [sym_labeled_statement] = STATE(261), - [sym_expression_statement] = STATE(261), - [sym_if_statement] = STATE(261), - [sym_switch_statement] = STATE(261), - [sym_case_statement] = STATE(261), - [sym_while_statement] = STATE(261), - [sym_do_statement] = STATE(261), - [sym_for_statement] = STATE(261), - [sym_return_statement] = STATE(261), - [sym_break_statement] = STATE(261), - [sym_continue_statement] = STATE(261), - [sym_goto_statement] = STATE(261), - [sym_seh_try_statement] = STATE(261), - [sym_seh_leave_statement] = STATE(261), - [sym__expression] = STATE(1227), - [sym__expression_not_binary] = STATE(792), - [sym_comma_expression] = STATE(2090), - [sym_conditional_expression] = STATE(792), - [sym_assignment_expression] = STATE(792), - [sym_pointer_expression] = STATE(901), - [sym_unary_expression] = STATE(792), - [sym_binary_expression] = STATE(792), - [sym_update_expression] = STATE(792), - [sym_cast_expression] = STATE(792), - [sym_sizeof_expression] = STATE(792), - [sym_alignof_expression] = STATE(792), - [sym_offsetof_expression] = STATE(792), - [sym_generic_expression] = STATE(792), - [sym_subscript_expression] = STATE(901), - [sym_call_expression] = STATE(901), - [sym_gnu_asm_expression] = STATE(792), - [sym_field_expression] = STATE(901), - [sym_compound_literal_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(901), - [sym_char_literal] = STATE(792), - [sym_concatenated_string] = STATE(792), - [sym_string_literal] = STATE(675), - [sym_null] = STATE(792), - [aux_sym_attributed_declarator_repeat1] = STATE(449), - [sym_identifier] = ACTIONS(1571), + [464] = { + [sym_attribute_declaration] = STATE(445), + [sym_compound_statement] = STATE(291), + [sym_attributed_statement] = STATE(291), + [sym_labeled_statement] = STATE(291), + [sym_expression_statement] = STATE(291), + [sym_if_statement] = STATE(291), + [sym_switch_statement] = STATE(291), + [sym_case_statement] = STATE(291), + [sym_while_statement] = STATE(291), + [sym_do_statement] = STATE(291), + [sym_for_statement] = STATE(291), + [sym_return_statement] = STATE(291), + [sym_break_statement] = STATE(291), + [sym_continue_statement] = STATE(291), + [sym_goto_statement] = STATE(291), + [sym_seh_try_statement] = STATE(291), + [sym_seh_leave_statement] = STATE(291), + [sym__expression] = STATE(1253), + [sym__expression_not_binary] = STATE(809), + [sym_comma_expression] = STATE(2218), + [sym_conditional_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_pointer_expression] = STATE(877), + [sym_unary_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_update_expression] = STATE(809), + [sym_cast_expression] = STATE(809), + [sym_sizeof_expression] = STATE(809), + [sym_alignof_expression] = STATE(809), + [sym_offsetof_expression] = STATE(809), + [sym_generic_expression] = STATE(809), + [sym_subscript_expression] = STATE(877), + [sym_call_expression] = STATE(877), + [sym_gnu_asm_expression] = STATE(809), + [sym_field_expression] = STATE(877), + [sym_compound_literal_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(877), + [sym_char_literal] = STATE(809), + [sym_concatenated_string] = STATE(809), + [sym_string_literal] = STATE(573), + [sym_null] = STATE(809), + [aux_sym_attributed_declarator_repeat1] = STATE(445), + [sym_identifier] = ACTIONS(1768), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -68689,191 +69650,95 @@ 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(1110), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1573), - [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_if] = ACTIONS(59), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_case] = ACTIONS(63), - [anon_sym_default] = ACTIONS(65), - [anon_sym_while] = ACTIONS(67), - [anon_sym_do] = ACTIONS(69), - [anon_sym_for] = ACTIONS(71), - [anon_sym_return] = ACTIONS(73), - [anon_sym_break] = ACTIONS(75), - [anon_sym_continue] = ACTIONS(77), - [anon_sym_goto] = ACTIONS(79), - [anon_sym___try] = ACTIONS(1112), - [anon_sym___leave] = ACTIONS(1114), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(83), - [anon_sym___alignof__] = ACTIONS(85), - [anon_sym___alignof] = ACTIONS(85), - [anon_sym__alignof] = ACTIONS(85), - [anon_sym_alignof] = ACTIONS(85), - [anon_sym__Alignof] = ACTIONS(85), - [anon_sym_offsetof] = ACTIONS(87), - [anon_sym__Generic] = ACTIONS(89), - [anon_sym_asm] = ACTIONS(91), - [anon_sym___asm__] = ACTIONS(91), - [sym_number_literal] = ACTIONS(159), - [anon_sym_L_SQUOTE] = ACTIONS(95), - [anon_sym_u_SQUOTE] = ACTIONS(95), - [anon_sym_U_SQUOTE] = ACTIONS(95), - [anon_sym_u8_SQUOTE] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(95), - [anon_sym_L_DQUOTE] = ACTIONS(97), - [anon_sym_u_DQUOTE] = ACTIONS(97), - [anon_sym_U_DQUOTE] = ACTIONS(97), - [anon_sym_u8_DQUOTE] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(97), - [sym_true] = ACTIONS(161), - [sym_false] = ACTIONS(161), - [anon_sym_NULL] = ACTIONS(101), - [anon_sym_nullptr] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - }, - [476] = { - [ts_builtin_sym_end] = ACTIONS(1513), - [sym_identifier] = ACTIONS(1511), - [aux_sym_preproc_include_token1] = ACTIONS(1511), - [aux_sym_preproc_def_token1] = ACTIONS(1511), - [aux_sym_preproc_if_token1] = ACTIONS(1511), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1511), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1511), - [sym_preproc_directive] = ACTIONS(1511), - [anon_sym_LPAREN2] = ACTIONS(1513), - [anon_sym_BANG] = ACTIONS(1513), - [anon_sym_TILDE] = ACTIONS(1513), - [anon_sym_DASH] = ACTIONS(1511), - [anon_sym_PLUS] = ACTIONS(1511), - [anon_sym_STAR] = ACTIONS(1513), - [anon_sym_AMP] = ACTIONS(1513), - [anon_sym___extension__] = ACTIONS(1511), - [anon_sym_typedef] = ACTIONS(1511), - [anon_sym_extern] = ACTIONS(1511), - [anon_sym___attribute__] = ACTIONS(1511), - [anon_sym___scanf] = ACTIONS(1511), - [anon_sym___printf] = ACTIONS(1511), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1513), - [anon_sym___declspec] = ACTIONS(1511), - [anon_sym___cdecl] = ACTIONS(1511), - [anon_sym___clrcall] = ACTIONS(1511), - [anon_sym___stdcall] = ACTIONS(1511), - [anon_sym___fastcall] = ACTIONS(1511), - [anon_sym___thiscall] = ACTIONS(1511), - [anon_sym___vectorcall] = ACTIONS(1511), - [anon_sym_LBRACE] = ACTIONS(1513), - [anon_sym_signed] = ACTIONS(1511), - [anon_sym_unsigned] = ACTIONS(1511), - [anon_sym_long] = ACTIONS(1511), - [anon_sym_short] = ACTIONS(1511), - [anon_sym_static] = ACTIONS(1511), - [anon_sym_auto] = ACTIONS(1511), - [anon_sym_register] = ACTIONS(1511), - [anon_sym_inline] = ACTIONS(1511), - [anon_sym___inline] = ACTIONS(1511), - [anon_sym___inline__] = ACTIONS(1511), - [anon_sym___forceinline] = ACTIONS(1511), - [anon_sym_thread_local] = ACTIONS(1511), - [anon_sym___thread] = ACTIONS(1511), - [anon_sym_const] = ACTIONS(1511), - [anon_sym_constexpr] = ACTIONS(1511), - [anon_sym_volatile] = ACTIONS(1511), - [anon_sym_restrict] = ACTIONS(1511), - [anon_sym___restrict__] = ACTIONS(1511), - [anon_sym__Atomic] = ACTIONS(1511), - [anon_sym__Noreturn] = ACTIONS(1511), - [anon_sym_noreturn] = ACTIONS(1511), - [sym_primitive_type] = ACTIONS(1511), - [anon_sym_enum] = ACTIONS(1511), - [anon_sym_struct] = ACTIONS(1511), - [anon_sym_union] = ACTIONS(1511), - [anon_sym_if] = ACTIONS(1511), - [anon_sym_switch] = ACTIONS(1511), - [anon_sym_case] = ACTIONS(1511), - [anon_sym_default] = ACTIONS(1511), - [anon_sym_while] = ACTIONS(1511), - [anon_sym_do] = ACTIONS(1511), - [anon_sym_for] = ACTIONS(1511), - [anon_sym_return] = ACTIONS(1511), - [anon_sym_break] = ACTIONS(1511), - [anon_sym_continue] = ACTIONS(1511), - [anon_sym_goto] = ACTIONS(1511), - [anon_sym_DASH_DASH] = ACTIONS(1513), - [anon_sym_PLUS_PLUS] = ACTIONS(1513), - [anon_sym_sizeof] = ACTIONS(1511), - [anon_sym___alignof__] = ACTIONS(1511), - [anon_sym___alignof] = ACTIONS(1511), - [anon_sym__alignof] = ACTIONS(1511), - [anon_sym_alignof] = ACTIONS(1511), - [anon_sym__Alignof] = ACTIONS(1511), - [anon_sym_offsetof] = ACTIONS(1511), - [anon_sym__Generic] = ACTIONS(1511), - [anon_sym_asm] = ACTIONS(1511), - [anon_sym___asm__] = ACTIONS(1511), - [sym_number_literal] = ACTIONS(1513), - [anon_sym_L_SQUOTE] = ACTIONS(1513), - [anon_sym_u_SQUOTE] = ACTIONS(1513), - [anon_sym_U_SQUOTE] = ACTIONS(1513), - [anon_sym_u8_SQUOTE] = ACTIONS(1513), - [anon_sym_SQUOTE] = ACTIONS(1513), - [anon_sym_L_DQUOTE] = ACTIONS(1513), - [anon_sym_u_DQUOTE] = ACTIONS(1513), - [anon_sym_U_DQUOTE] = ACTIONS(1513), - [anon_sym_u8_DQUOTE] = ACTIONS(1513), - [anon_sym_DQUOTE] = ACTIONS(1513), - [sym_true] = ACTIONS(1511), - [sym_false] = ACTIONS(1511), - [anon_sym_NULL] = ACTIONS(1511), - [anon_sym_nullptr] = ACTIONS(1511), + [anon_sym_SEMI] = ACTIONS(1171), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1566), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_if] = ACTIONS(61), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_case] = ACTIONS(65), + [anon_sym_default] = ACTIONS(67), + [anon_sym_while] = ACTIONS(69), + [anon_sym_do] = ACTIONS(71), + [anon_sym_for] = ACTIONS(73), + [anon_sym_return] = ACTIONS(75), + [anon_sym_break] = ACTIONS(77), + [anon_sym_continue] = ACTIONS(79), + [anon_sym_goto] = ACTIONS(81), + [anon_sym___try] = ACTIONS(1173), + [anon_sym___leave] = ACTIONS(1175), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [sym_number_literal] = ACTIONS(161), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(163), + [sym_false] = ACTIONS(163), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [477] = { - [sym_attribute_declaration] = STATE(416), - [sym_compound_statement] = STATE(255), - [sym_attributed_statement] = STATE(255), - [sym_labeled_statement] = STATE(255), - [sym_expression_statement] = STATE(255), - [sym_if_statement] = STATE(255), - [sym_switch_statement] = STATE(255), - [sym_case_statement] = STATE(255), - [sym_while_statement] = STATE(255), - [sym_do_statement] = STATE(255), - [sym_for_statement] = STATE(255), - [sym_return_statement] = STATE(255), - [sym_break_statement] = STATE(255), - [sym_continue_statement] = STATE(255), - [sym_goto_statement] = STATE(255), - [sym_seh_try_statement] = STATE(255), - [sym_seh_leave_statement] = STATE(255), - [sym__expression] = STATE(1229), - [sym__expression_not_binary] = STATE(792), - [sym_comma_expression] = STATE(1976), - [sym_conditional_expression] = STATE(792), - [sym_assignment_expression] = STATE(792), - [sym_pointer_expression] = STATE(901), - [sym_unary_expression] = STATE(792), - [sym_binary_expression] = STATE(792), - [sym_update_expression] = STATE(792), - [sym_cast_expression] = STATE(792), - [sym_sizeof_expression] = STATE(792), - [sym_alignof_expression] = STATE(792), - [sym_offsetof_expression] = STATE(792), - [sym_generic_expression] = STATE(792), - [sym_subscript_expression] = STATE(901), - [sym_call_expression] = STATE(901), - [sym_gnu_asm_expression] = STATE(792), - [sym_field_expression] = STATE(901), - [sym_compound_literal_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(901), - [sym_char_literal] = STATE(792), - [sym_concatenated_string] = STATE(792), - [sym_string_literal] = STATE(675), - [sym_null] = STATE(792), - [aux_sym_attributed_declarator_repeat1] = STATE(416), - [sym_identifier] = ACTIONS(1681), + [465] = { + [sym_attribute_declaration] = STATE(470), + [sym_compound_statement] = STATE(314), + [sym_attributed_statement] = STATE(314), + [sym_labeled_statement] = STATE(314), + [sym_expression_statement] = STATE(314), + [sym_if_statement] = STATE(314), + [sym_switch_statement] = STATE(314), + [sym_case_statement] = STATE(314), + [sym_while_statement] = STATE(314), + [sym_do_statement] = STATE(314), + [sym_for_statement] = STATE(314), + [sym_return_statement] = STATE(314), + [sym_break_statement] = STATE(314), + [sym_continue_statement] = STATE(314), + [sym_goto_statement] = STATE(314), + [sym_seh_try_statement] = STATE(314), + [sym_seh_leave_statement] = STATE(314), + [sym__expression] = STATE(1272), + [sym__expression_not_binary] = STATE(809), + [sym_comma_expression] = STATE(2198), + [sym_conditional_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_pointer_expression] = STATE(877), + [sym_unary_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_update_expression] = STATE(809), + [sym_cast_expression] = STATE(809), + [sym_sizeof_expression] = STATE(809), + [sym_alignof_expression] = STATE(809), + [sym_offsetof_expression] = STATE(809), + [sym_generic_expression] = STATE(809), + [sym_subscript_expression] = STATE(877), + [sym_call_expression] = STATE(877), + [sym_gnu_asm_expression] = STATE(809), + [sym_field_expression] = STATE(877), + [sym_compound_literal_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(877), + [sym_char_literal] = STATE(809), + [sym_concatenated_string] = STATE(809), + [sym_string_literal] = STATE(573), + [sym_null] = STATE(809), + [aux_sym_attributed_declarator_repeat1] = STATE(470), + [sym_identifier] = ACTIONS(1568), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -68881,95 +69746,191 @@ 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(648), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1573), - [anon_sym_LBRACE] = ACTIONS(656), - [anon_sym_if] = ACTIONS(658), - [anon_sym_switch] = ACTIONS(660), - [anon_sym_case] = ACTIONS(662), - [anon_sym_default] = ACTIONS(664), - [anon_sym_while] = ACTIONS(666), - [anon_sym_do] = ACTIONS(668), - [anon_sym_for] = ACTIONS(670), - [anon_sym_return] = ACTIONS(672), - [anon_sym_break] = ACTIONS(674), - [anon_sym_continue] = ACTIONS(676), - [anon_sym_goto] = ACTIONS(678), - [anon_sym___try] = ACTIONS(680), - [anon_sym___leave] = ACTIONS(682), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(83), - [anon_sym___alignof__] = ACTIONS(85), - [anon_sym___alignof] = ACTIONS(85), - [anon_sym__alignof] = ACTIONS(85), - [anon_sym_alignof] = ACTIONS(85), - [anon_sym__Alignof] = ACTIONS(85), - [anon_sym_offsetof] = ACTIONS(87), - [anon_sym__Generic] = ACTIONS(89), - [anon_sym_asm] = ACTIONS(91), - [anon_sym___asm__] = ACTIONS(91), - [sym_number_literal] = ACTIONS(159), - [anon_sym_L_SQUOTE] = ACTIONS(95), - [anon_sym_u_SQUOTE] = ACTIONS(95), - [anon_sym_U_SQUOTE] = ACTIONS(95), - [anon_sym_u8_SQUOTE] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(95), - [anon_sym_L_DQUOTE] = ACTIONS(97), - [anon_sym_u_DQUOTE] = ACTIONS(97), - [anon_sym_U_DQUOTE] = ACTIONS(97), - [anon_sym_u8_DQUOTE] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(97), - [sym_true] = ACTIONS(161), - [sym_false] = ACTIONS(161), - [anon_sym_NULL] = ACTIONS(101), - [anon_sym_nullptr] = ACTIONS(101), + [anon_sym_SEMI] = ACTIONS(623), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1566), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_if] = ACTIONS(1285), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_case] = ACTIONS(1570), + [anon_sym_default] = ACTIONS(1572), + [anon_sym_while] = ACTIONS(1287), + [anon_sym_do] = ACTIONS(71), + [anon_sym_for] = ACTIONS(1289), + [anon_sym_return] = ACTIONS(75), + [anon_sym_break] = ACTIONS(77), + [anon_sym_continue] = ACTIONS(79), + [anon_sym_goto] = ACTIONS(81), + [anon_sym___try] = ACTIONS(1291), + [anon_sym___leave] = ACTIONS(659), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [sym_number_literal] = ACTIONS(161), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(163), + [sym_false] = ACTIONS(163), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [478] = { - [sym_attribute_declaration] = STATE(448), - [sym_compound_statement] = STATE(2119), - [sym_attributed_statement] = STATE(2119), - [sym_labeled_statement] = STATE(2119), - [sym_expression_statement] = STATE(2119), - [sym_if_statement] = STATE(2119), - [sym_switch_statement] = STATE(2119), - [sym_case_statement] = STATE(2119), - [sym_while_statement] = STATE(2119), - [sym_do_statement] = STATE(2119), - [sym_for_statement] = STATE(2119), - [sym_return_statement] = STATE(2119), - [sym_break_statement] = STATE(2119), - [sym_continue_statement] = STATE(2119), - [sym_goto_statement] = STATE(2119), - [sym_seh_try_statement] = STATE(2119), - [sym_seh_leave_statement] = STATE(2119), - [sym__expression] = STATE(1221), - [sym__expression_not_binary] = STATE(792), - [sym_comma_expression] = STATE(2106), - [sym_conditional_expression] = STATE(792), - [sym_assignment_expression] = STATE(792), - [sym_pointer_expression] = STATE(901), - [sym_unary_expression] = STATE(792), - [sym_binary_expression] = STATE(792), - [sym_update_expression] = STATE(792), - [sym_cast_expression] = STATE(792), - [sym_sizeof_expression] = STATE(792), - [sym_alignof_expression] = STATE(792), - [sym_offsetof_expression] = STATE(792), - [sym_generic_expression] = STATE(792), - [sym_subscript_expression] = STATE(901), - [sym_call_expression] = STATE(901), - [sym_gnu_asm_expression] = STATE(792), - [sym_field_expression] = STATE(901), - [sym_compound_literal_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(901), - [sym_char_literal] = STATE(792), - [sym_concatenated_string] = STATE(792), - [sym_string_literal] = STATE(675), - [sym_null] = STATE(792), - [aux_sym_attributed_declarator_repeat1] = STATE(448), - [sym_identifier] = ACTIONS(1575), + [466] = { + [sym_attribute_declaration] = STATE(466), + [sym_compound_statement] = STATE(352), + [sym_attributed_statement] = STATE(352), + [sym_labeled_statement] = STATE(352), + [sym_expression_statement] = STATE(352), + [sym_if_statement] = STATE(352), + [sym_switch_statement] = STATE(352), + [sym_case_statement] = STATE(352), + [sym_while_statement] = STATE(352), + [sym_do_statement] = STATE(352), + [sym_for_statement] = STATE(352), + [sym_return_statement] = STATE(352), + [sym_break_statement] = STATE(352), + [sym_continue_statement] = STATE(352), + [sym_goto_statement] = STATE(352), + [sym_seh_try_statement] = STATE(352), + [sym_seh_leave_statement] = STATE(352), + [sym__expression] = STATE(1269), + [sym__expression_not_binary] = STATE(809), + [sym_comma_expression] = STATE(2019), + [sym_conditional_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_pointer_expression] = STATE(877), + [sym_unary_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_update_expression] = STATE(809), + [sym_cast_expression] = STATE(809), + [sym_sizeof_expression] = STATE(809), + [sym_alignof_expression] = STATE(809), + [sym_offsetof_expression] = STATE(809), + [sym_generic_expression] = STATE(809), + [sym_subscript_expression] = STATE(877), + [sym_call_expression] = STATE(877), + [sym_gnu_asm_expression] = STATE(809), + [sym_field_expression] = STATE(877), + [sym_compound_literal_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(877), + [sym_char_literal] = STATE(809), + [sym_concatenated_string] = STATE(809), + [sym_string_literal] = STATE(573), + [sym_null] = STATE(809), + [aux_sym_attributed_declarator_repeat1] = STATE(466), + [sym_identifier] = ACTIONS(1848), + [anon_sym_LPAREN2] = ACTIONS(1579), + [anon_sym_BANG] = ACTIONS(1582), + [anon_sym_TILDE] = ACTIONS(1582), + [anon_sym_DASH] = ACTIONS(1585), + [anon_sym_PLUS] = ACTIONS(1585), + [anon_sym_STAR] = ACTIONS(1588), + [anon_sym_AMP] = ACTIONS(1588), + [anon_sym_SEMI] = ACTIONS(1851), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1594), + [anon_sym_LBRACE] = ACTIONS(1854), + [anon_sym_if] = ACTIONS(1857), + [anon_sym_switch] = ACTIONS(1860), + [anon_sym_case] = ACTIONS(1863), + [anon_sym_default] = ACTIONS(1866), + [anon_sym_while] = ACTIONS(1869), + [anon_sym_do] = ACTIONS(1872), + [anon_sym_for] = ACTIONS(1875), + [anon_sym_return] = ACTIONS(1878), + [anon_sym_break] = ACTIONS(1881), + [anon_sym_continue] = ACTIONS(1884), + [anon_sym_goto] = ACTIONS(1887), + [anon_sym___try] = ACTIONS(1890), + [anon_sym___leave] = ACTIONS(1893), + [anon_sym_DASH_DASH] = ACTIONS(1639), + [anon_sym_PLUS_PLUS] = ACTIONS(1639), + [anon_sym_sizeof] = ACTIONS(1642), + [anon_sym___alignof__] = ACTIONS(1645), + [anon_sym___alignof] = ACTIONS(1645), + [anon_sym__alignof] = ACTIONS(1645), + [anon_sym_alignof] = ACTIONS(1645), + [anon_sym__Alignof] = ACTIONS(1645), + [anon_sym_offsetof] = ACTIONS(1648), + [anon_sym__Generic] = ACTIONS(1651), + [anon_sym_asm] = ACTIONS(1654), + [anon_sym___asm__] = ACTIONS(1654), + [sym_number_literal] = ACTIONS(1657), + [anon_sym_L_SQUOTE] = ACTIONS(1660), + [anon_sym_u_SQUOTE] = ACTIONS(1660), + [anon_sym_U_SQUOTE] = ACTIONS(1660), + [anon_sym_u8_SQUOTE] = ACTIONS(1660), + [anon_sym_SQUOTE] = ACTIONS(1660), + [anon_sym_L_DQUOTE] = ACTIONS(1663), + [anon_sym_u_DQUOTE] = ACTIONS(1663), + [anon_sym_U_DQUOTE] = ACTIONS(1663), + [anon_sym_u8_DQUOTE] = ACTIONS(1663), + [anon_sym_DQUOTE] = ACTIONS(1663), + [sym_true] = ACTIONS(1666), + [sym_false] = ACTIONS(1666), + [anon_sym_NULL] = ACTIONS(1669), + [anon_sym_nullptr] = ACTIONS(1669), + [sym_comment] = ACTIONS(3), + }, + [467] = { + [sym_attribute_declaration] = STATE(445), + [sym_compound_statement] = STATE(211), + [sym_attributed_statement] = STATE(211), + [sym_labeled_statement] = STATE(211), + [sym_expression_statement] = STATE(211), + [sym_if_statement] = STATE(211), + [sym_switch_statement] = STATE(211), + [sym_case_statement] = STATE(211), + [sym_while_statement] = STATE(211), + [sym_do_statement] = STATE(211), + [sym_for_statement] = STATE(211), + [sym_return_statement] = STATE(211), + [sym_break_statement] = STATE(211), + [sym_continue_statement] = STATE(211), + [sym_goto_statement] = STATE(211), + [sym_seh_try_statement] = STATE(211), + [sym_seh_leave_statement] = STATE(211), + [sym__expression] = STATE(1253), + [sym__expression_not_binary] = STATE(809), + [sym_comma_expression] = STATE(2218), + [sym_conditional_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_pointer_expression] = STATE(877), + [sym_unary_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_update_expression] = STATE(809), + [sym_cast_expression] = STATE(809), + [sym_sizeof_expression] = STATE(809), + [sym_alignof_expression] = STATE(809), + [sym_offsetof_expression] = STATE(809), + [sym_generic_expression] = STATE(809), + [sym_subscript_expression] = STATE(877), + [sym_call_expression] = STATE(877), + [sym_gnu_asm_expression] = STATE(809), + [sym_field_expression] = STATE(877), + [sym_compound_literal_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(877), + [sym_char_literal] = STATE(809), + [sym_concatenated_string] = STATE(809), + [sym_string_literal] = STATE(573), + [sym_null] = STATE(809), + [aux_sym_attributed_declarator_repeat1] = STATE(445), + [sym_identifier] = ACTIONS(1768), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -68977,95 +69938,95 @@ 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(496), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1573), - [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_if] = ACTIONS(1274), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_case] = ACTIONS(1577), - [anon_sym_default] = ACTIONS(1579), - [anon_sym_while] = ACTIONS(1276), - [anon_sym_do] = ACTIONS(69), - [anon_sym_for] = ACTIONS(1278), - [anon_sym_return] = ACTIONS(73), - [anon_sym_break] = ACTIONS(75), - [anon_sym_continue] = ACTIONS(77), - [anon_sym_goto] = ACTIONS(79), - [anon_sym___try] = ACTIONS(1280), - [anon_sym___leave] = ACTIONS(532), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(83), - [anon_sym___alignof__] = ACTIONS(85), - [anon_sym___alignof] = ACTIONS(85), - [anon_sym__alignof] = ACTIONS(85), - [anon_sym_alignof] = ACTIONS(85), - [anon_sym__Alignof] = ACTIONS(85), - [anon_sym_offsetof] = ACTIONS(87), - [anon_sym__Generic] = ACTIONS(89), - [anon_sym_asm] = ACTIONS(91), - [anon_sym___asm__] = ACTIONS(91), - [sym_number_literal] = ACTIONS(159), - [anon_sym_L_SQUOTE] = ACTIONS(95), - [anon_sym_u_SQUOTE] = ACTIONS(95), - [anon_sym_U_SQUOTE] = ACTIONS(95), - [anon_sym_u8_SQUOTE] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(95), - [anon_sym_L_DQUOTE] = ACTIONS(97), - [anon_sym_u_DQUOTE] = ACTIONS(97), - [anon_sym_U_DQUOTE] = ACTIONS(97), - [anon_sym_u8_DQUOTE] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(97), - [sym_true] = ACTIONS(161), - [sym_false] = ACTIONS(161), - [anon_sym_NULL] = ACTIONS(101), - [anon_sym_nullptr] = ACTIONS(101), + [anon_sym_SEMI] = ACTIONS(1171), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1566), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_if] = ACTIONS(61), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_case] = ACTIONS(65), + [anon_sym_default] = ACTIONS(67), + [anon_sym_while] = ACTIONS(69), + [anon_sym_do] = ACTIONS(71), + [anon_sym_for] = ACTIONS(73), + [anon_sym_return] = ACTIONS(75), + [anon_sym_break] = ACTIONS(77), + [anon_sym_continue] = ACTIONS(79), + [anon_sym_goto] = ACTIONS(81), + [anon_sym___try] = ACTIONS(1173), + [anon_sym___leave] = ACTIONS(1175), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [sym_number_literal] = ACTIONS(161), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(163), + [sym_false] = ACTIONS(163), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [479] = { - [sym_attribute_declaration] = STATE(416), - [sym_compound_statement] = STATE(208), - [sym_attributed_statement] = STATE(208), - [sym_labeled_statement] = STATE(208), - [sym_expression_statement] = STATE(208), - [sym_if_statement] = STATE(208), - [sym_switch_statement] = STATE(208), - [sym_case_statement] = STATE(208), - [sym_while_statement] = STATE(208), - [sym_do_statement] = STATE(208), - [sym_for_statement] = STATE(208), - [sym_return_statement] = STATE(208), - [sym_break_statement] = STATE(208), - [sym_continue_statement] = STATE(208), - [sym_goto_statement] = STATE(208), - [sym_seh_try_statement] = STATE(208), - [sym_seh_leave_statement] = STATE(208), - [sym__expression] = STATE(1229), - [sym__expression_not_binary] = STATE(792), - [sym_comma_expression] = STATE(1976), - [sym_conditional_expression] = STATE(792), - [sym_assignment_expression] = STATE(792), - [sym_pointer_expression] = STATE(901), - [sym_unary_expression] = STATE(792), - [sym_binary_expression] = STATE(792), - [sym_update_expression] = STATE(792), - [sym_cast_expression] = STATE(792), - [sym_sizeof_expression] = STATE(792), - [sym_alignof_expression] = STATE(792), - [sym_offsetof_expression] = STATE(792), - [sym_generic_expression] = STATE(792), - [sym_subscript_expression] = STATE(901), - [sym_call_expression] = STATE(901), - [sym_gnu_asm_expression] = STATE(792), - [sym_field_expression] = STATE(901), - [sym_compound_literal_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(901), - [sym_char_literal] = STATE(792), - [sym_concatenated_string] = STATE(792), - [sym_string_literal] = STATE(675), - [sym_null] = STATE(792), - [aux_sym_attributed_declarator_repeat1] = STATE(416), - [sym_identifier] = ACTIONS(1681), + [468] = { + [sym_attribute_declaration] = STATE(465), + [sym_compound_statement] = STATE(2245), + [sym_attributed_statement] = STATE(2245), + [sym_labeled_statement] = STATE(2245), + [sym_expression_statement] = STATE(2245), + [sym_if_statement] = STATE(2245), + [sym_switch_statement] = STATE(2245), + [sym_case_statement] = STATE(2245), + [sym_while_statement] = STATE(2245), + [sym_do_statement] = STATE(2245), + [sym_for_statement] = STATE(2245), + [sym_return_statement] = STATE(2245), + [sym_break_statement] = STATE(2245), + [sym_continue_statement] = STATE(2245), + [sym_goto_statement] = STATE(2245), + [sym_seh_try_statement] = STATE(2245), + [sym_seh_leave_statement] = STATE(2245), + [sym__expression] = STATE(1272), + [sym__expression_not_binary] = STATE(809), + [sym_comma_expression] = STATE(2198), + [sym_conditional_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_pointer_expression] = STATE(877), + [sym_unary_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_update_expression] = STATE(809), + [sym_cast_expression] = STATE(809), + [sym_sizeof_expression] = STATE(809), + [sym_alignof_expression] = STATE(809), + [sym_offsetof_expression] = STATE(809), + [sym_generic_expression] = STATE(809), + [sym_subscript_expression] = STATE(877), + [sym_call_expression] = STATE(877), + [sym_gnu_asm_expression] = STATE(809), + [sym_field_expression] = STATE(877), + [sym_compound_literal_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(877), + [sym_char_literal] = STATE(809), + [sym_concatenated_string] = STATE(809), + [sym_string_literal] = STATE(573), + [sym_null] = STATE(809), + [aux_sym_attributed_declarator_repeat1] = STATE(465), + [sym_identifier] = ACTIONS(1568), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -69073,95 +70034,95 @@ 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(648), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1573), - [anon_sym_LBRACE] = ACTIONS(656), - [anon_sym_if] = ACTIONS(658), - [anon_sym_switch] = ACTIONS(660), - [anon_sym_case] = ACTIONS(662), - [anon_sym_default] = ACTIONS(664), - [anon_sym_while] = ACTIONS(666), - [anon_sym_do] = ACTIONS(668), - [anon_sym_for] = ACTIONS(670), - [anon_sym_return] = ACTIONS(672), - [anon_sym_break] = ACTIONS(674), - [anon_sym_continue] = ACTIONS(676), - [anon_sym_goto] = ACTIONS(678), - [anon_sym___try] = ACTIONS(680), - [anon_sym___leave] = ACTIONS(682), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(83), - [anon_sym___alignof__] = ACTIONS(85), - [anon_sym___alignof] = ACTIONS(85), - [anon_sym__alignof] = ACTIONS(85), - [anon_sym_alignof] = ACTIONS(85), - [anon_sym__Alignof] = ACTIONS(85), - [anon_sym_offsetof] = ACTIONS(87), - [anon_sym__Generic] = ACTIONS(89), - [anon_sym_asm] = ACTIONS(91), - [anon_sym___asm__] = ACTIONS(91), - [sym_number_literal] = ACTIONS(159), - [anon_sym_L_SQUOTE] = ACTIONS(95), - [anon_sym_u_SQUOTE] = ACTIONS(95), - [anon_sym_U_SQUOTE] = ACTIONS(95), - [anon_sym_u8_SQUOTE] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(95), - [anon_sym_L_DQUOTE] = ACTIONS(97), - [anon_sym_u_DQUOTE] = ACTIONS(97), - [anon_sym_U_DQUOTE] = ACTIONS(97), - [anon_sym_u8_DQUOTE] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(97), - [sym_true] = ACTIONS(161), - [sym_false] = ACTIONS(161), - [anon_sym_NULL] = ACTIONS(101), - [anon_sym_nullptr] = ACTIONS(101), + [anon_sym_SEMI] = ACTIONS(623), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1566), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_if] = ACTIONS(1285), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_case] = ACTIONS(1570), + [anon_sym_default] = ACTIONS(1572), + [anon_sym_while] = ACTIONS(1287), + [anon_sym_do] = ACTIONS(71), + [anon_sym_for] = ACTIONS(1289), + [anon_sym_return] = ACTIONS(75), + [anon_sym_break] = ACTIONS(77), + [anon_sym_continue] = ACTIONS(79), + [anon_sym_goto] = ACTIONS(81), + [anon_sym___try] = ACTIONS(1291), + [anon_sym___leave] = ACTIONS(659), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [sym_number_literal] = ACTIONS(161), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(163), + [sym_false] = ACTIONS(163), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [480] = { - [sym_attribute_declaration] = STATE(448), - [sym_compound_statement] = STATE(2172), - [sym_attributed_statement] = STATE(2172), - [sym_labeled_statement] = STATE(2172), - [sym_expression_statement] = STATE(2172), - [sym_if_statement] = STATE(2172), - [sym_switch_statement] = STATE(2172), - [sym_case_statement] = STATE(2172), - [sym_while_statement] = STATE(2172), - [sym_do_statement] = STATE(2172), - [sym_for_statement] = STATE(2172), - [sym_return_statement] = STATE(2172), - [sym_break_statement] = STATE(2172), - [sym_continue_statement] = STATE(2172), - [sym_goto_statement] = STATE(2172), - [sym_seh_try_statement] = STATE(2172), - [sym_seh_leave_statement] = STATE(2172), - [sym__expression] = STATE(1221), - [sym__expression_not_binary] = STATE(792), - [sym_comma_expression] = STATE(2106), - [sym_conditional_expression] = STATE(792), - [sym_assignment_expression] = STATE(792), - [sym_pointer_expression] = STATE(901), - [sym_unary_expression] = STATE(792), - [sym_binary_expression] = STATE(792), - [sym_update_expression] = STATE(792), - [sym_cast_expression] = STATE(792), - [sym_sizeof_expression] = STATE(792), - [sym_alignof_expression] = STATE(792), - [sym_offsetof_expression] = STATE(792), - [sym_generic_expression] = STATE(792), - [sym_subscript_expression] = STATE(901), - [sym_call_expression] = STATE(901), - [sym_gnu_asm_expression] = STATE(792), - [sym_field_expression] = STATE(901), - [sym_compound_literal_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(901), - [sym_char_literal] = STATE(792), - [sym_concatenated_string] = STATE(792), - [sym_string_literal] = STATE(675), - [sym_null] = STATE(792), - [aux_sym_attributed_declarator_repeat1] = STATE(448), - [sym_identifier] = ACTIONS(1575), + [469] = { + [sym_attribute_declaration] = STATE(445), + [sym_compound_statement] = STATE(236), + [sym_attributed_statement] = STATE(235), + [sym_labeled_statement] = STATE(234), + [sym_expression_statement] = STATE(233), + [sym_if_statement] = STATE(333), + [sym_switch_statement] = STATE(243), + [sym_case_statement] = STATE(245), + [sym_while_statement] = STATE(247), + [sym_do_statement] = STATE(248), + [sym_for_statement] = STATE(252), + [sym_return_statement] = STATE(254), + [sym_break_statement] = STATE(258), + [sym_continue_statement] = STATE(259), + [sym_goto_statement] = STATE(268), + [sym_seh_try_statement] = STATE(269), + [sym_seh_leave_statement] = STATE(279), + [sym__expression] = STATE(1253), + [sym__expression_not_binary] = STATE(809), + [sym_comma_expression] = STATE(2218), + [sym_conditional_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_pointer_expression] = STATE(877), + [sym_unary_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_update_expression] = STATE(809), + [sym_cast_expression] = STATE(809), + [sym_sizeof_expression] = STATE(809), + [sym_alignof_expression] = STATE(809), + [sym_offsetof_expression] = STATE(809), + [sym_generic_expression] = STATE(809), + [sym_subscript_expression] = STATE(877), + [sym_call_expression] = STATE(877), + [sym_gnu_asm_expression] = STATE(809), + [sym_field_expression] = STATE(877), + [sym_compound_literal_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(877), + [sym_char_literal] = STATE(809), + [sym_concatenated_string] = STATE(809), + [sym_string_literal] = STATE(573), + [sym_null] = STATE(809), + [aux_sym_attributed_declarator_repeat1] = STATE(445), + [sym_identifier] = ACTIONS(1768), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -69169,361 +70130,191 @@ 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(496), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1573), - [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_if] = ACTIONS(1274), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_case] = ACTIONS(1577), - [anon_sym_default] = ACTIONS(1579), - [anon_sym_while] = ACTIONS(1276), - [anon_sym_do] = ACTIONS(69), - [anon_sym_for] = ACTIONS(1278), - [anon_sym_return] = ACTIONS(73), - [anon_sym_break] = ACTIONS(75), - [anon_sym_continue] = ACTIONS(77), - [anon_sym_goto] = ACTIONS(79), - [anon_sym___try] = ACTIONS(1280), - [anon_sym___leave] = ACTIONS(532), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(83), - [anon_sym___alignof__] = ACTIONS(85), - [anon_sym___alignof] = ACTIONS(85), - [anon_sym__alignof] = ACTIONS(85), - [anon_sym_alignof] = ACTIONS(85), - [anon_sym__Alignof] = ACTIONS(85), - [anon_sym_offsetof] = ACTIONS(87), - [anon_sym__Generic] = ACTIONS(89), - [anon_sym_asm] = ACTIONS(91), - [anon_sym___asm__] = ACTIONS(91), - [sym_number_literal] = ACTIONS(159), - [anon_sym_L_SQUOTE] = ACTIONS(95), - [anon_sym_u_SQUOTE] = ACTIONS(95), - [anon_sym_U_SQUOTE] = ACTIONS(95), - [anon_sym_u8_SQUOTE] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(95), - [anon_sym_L_DQUOTE] = ACTIONS(97), - [anon_sym_u_DQUOTE] = ACTIONS(97), - [anon_sym_U_DQUOTE] = ACTIONS(97), - [anon_sym_u8_DQUOTE] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(97), - [sym_true] = ACTIONS(161), - [sym_false] = ACTIONS(161), - [anon_sym_NULL] = ACTIONS(101), - [anon_sym_nullptr] = ACTIONS(101), + [anon_sym_SEMI] = ACTIONS(1171), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1566), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_if] = ACTIONS(61), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_case] = ACTIONS(65), + [anon_sym_default] = ACTIONS(67), + [anon_sym_while] = ACTIONS(69), + [anon_sym_do] = ACTIONS(71), + [anon_sym_for] = ACTIONS(73), + [anon_sym_return] = ACTIONS(75), + [anon_sym_break] = ACTIONS(77), + [anon_sym_continue] = ACTIONS(79), + [anon_sym_goto] = ACTIONS(81), + [anon_sym___try] = ACTIONS(1173), + [anon_sym___leave] = ACTIONS(1175), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [sym_number_literal] = ACTIONS(161), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(163), + [sym_false] = ACTIONS(163), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [481] = { - [sym__expression] = STATE(1016), - [sym__expression_not_binary] = STATE(792), - [sym_conditional_expression] = STATE(792), - [sym_assignment_expression] = STATE(792), - [sym_pointer_expression] = STATE(792), - [sym_unary_expression] = STATE(792), - [sym_binary_expression] = STATE(792), - [sym_update_expression] = STATE(792), - [sym_cast_expression] = STATE(792), - [sym_sizeof_expression] = STATE(792), - [sym_alignof_expression] = STATE(792), - [sym_offsetof_expression] = STATE(792), - [sym_generic_expression] = STATE(792), - [sym_subscript_expression] = STATE(792), - [sym_call_expression] = STATE(792), - [sym_gnu_asm_expression] = STATE(792), - [sym_field_expression] = STATE(792), - [sym_compound_literal_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(792), - [sym_initializer_list] = STATE(794), - [sym_char_literal] = STATE(792), - [sym_concatenated_string] = STATE(792), - [sym_string_literal] = STATE(675), - [sym_null] = STATE(792), - [sym_identifier] = ACTIONS(1525), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1527), - [anon_sym_LPAREN2] = ACTIONS(1527), - [anon_sym_BANG] = ACTIONS(1906), - [anon_sym_TILDE] = ACTIONS(1908), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1533), - [anon_sym_SLASH] = ACTIONS(1533), - [anon_sym_PERCENT] = ACTIONS(1533), - [anon_sym_PIPE_PIPE] = ACTIONS(1527), - [anon_sym_AMP_AMP] = ACTIONS(1527), - [anon_sym_PIPE] = ACTIONS(1533), - [anon_sym_CARET] = ACTIONS(1533), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_EQ_EQ] = ACTIONS(1527), - [anon_sym_BANG_EQ] = ACTIONS(1527), - [anon_sym_GT] = ACTIONS(1533), - [anon_sym_GT_EQ] = ACTIONS(1527), - [anon_sym_LT_EQ] = ACTIONS(1527), - [anon_sym_LT] = ACTIONS(1533), - [anon_sym_LT_LT] = ACTIONS(1533), - [anon_sym_GT_GT] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1527), - [anon_sym_RBRACK] = ACTIONS(1527), - [anon_sym_EQ] = ACTIONS(1533), - [anon_sym_QMARK] = ACTIONS(1527), - [anon_sym_STAR_EQ] = ACTIONS(1527), - [anon_sym_SLASH_EQ] = ACTIONS(1527), - [anon_sym_PERCENT_EQ] = ACTIONS(1527), - [anon_sym_PLUS_EQ] = ACTIONS(1527), - [anon_sym_DASH_EQ] = ACTIONS(1527), - [anon_sym_LT_LT_EQ] = ACTIONS(1527), - [anon_sym_GT_GT_EQ] = ACTIONS(1527), - [anon_sym_AMP_EQ] = ACTIONS(1527), - [anon_sym_CARET_EQ] = ACTIONS(1527), - [anon_sym_PIPE_EQ] = ACTIONS(1527), - [anon_sym_DASH_DASH] = ACTIONS(1527), - [anon_sym_PLUS_PLUS] = ACTIONS(1527), - [anon_sym_sizeof] = ACTIONS(1910), - [anon_sym___alignof__] = ACTIONS(85), - [anon_sym___alignof] = ACTIONS(85), - [anon_sym__alignof] = ACTIONS(85), - [anon_sym_alignof] = ACTIONS(85), - [anon_sym__Alignof] = ACTIONS(85), - [anon_sym_offsetof] = ACTIONS(87), - [anon_sym__Generic] = ACTIONS(89), - [anon_sym_asm] = ACTIONS(91), - [anon_sym___asm__] = ACTIONS(91), - [anon_sym_DOT] = ACTIONS(1533), - [anon_sym_DASH_GT] = ACTIONS(1527), - [sym_number_literal] = ACTIONS(159), - [anon_sym_L_SQUOTE] = ACTIONS(95), - [anon_sym_u_SQUOTE] = ACTIONS(95), - [anon_sym_U_SQUOTE] = ACTIONS(95), - [anon_sym_u8_SQUOTE] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(95), - [anon_sym_L_DQUOTE] = ACTIONS(97), - [anon_sym_u_DQUOTE] = ACTIONS(97), - [anon_sym_U_DQUOTE] = ACTIONS(97), - [anon_sym_u8_DQUOTE] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(97), - [sym_true] = ACTIONS(161), - [sym_false] = ACTIONS(161), - [anon_sym_NULL] = ACTIONS(101), - [anon_sym_nullptr] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - }, - [482] = { - [sym_identifier] = ACTIONS(1912), - [anon_sym_COMMA] = ACTIONS(1914), - [anon_sym_RPAREN] = ACTIONS(1914), - [anon_sym_LPAREN2] = ACTIONS(1914), - [anon_sym_BANG] = ACTIONS(1914), - [anon_sym_TILDE] = ACTIONS(1914), - [anon_sym_DASH] = ACTIONS(1912), - [anon_sym_PLUS] = ACTIONS(1912), - [anon_sym_STAR] = ACTIONS(1914), - [anon_sym_AMP] = ACTIONS(1914), - [anon_sym_SEMI] = ACTIONS(1914), - [anon_sym___extension__] = ACTIONS(1912), - [anon_sym_extern] = ACTIONS(1912), - [anon_sym___attribute__] = ACTIONS(1912), - [anon_sym___scanf] = ACTIONS(1912), - [anon_sym___printf] = ACTIONS(1912), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1914), - [anon_sym___declspec] = ACTIONS(1912), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_signed] = ACTIONS(1912), - [anon_sym_unsigned] = ACTIONS(1912), - [anon_sym_long] = ACTIONS(1912), - [anon_sym_short] = ACTIONS(1912), - [anon_sym_LBRACK] = ACTIONS(1912), - [anon_sym_EQ] = ACTIONS(1914), - [anon_sym_static] = ACTIONS(1912), - [anon_sym_auto] = ACTIONS(1912), - [anon_sym_register] = ACTIONS(1912), - [anon_sym_inline] = ACTIONS(1912), - [anon_sym___inline] = ACTIONS(1912), - [anon_sym___inline__] = ACTIONS(1912), - [anon_sym___forceinline] = ACTIONS(1912), - [anon_sym_thread_local] = ACTIONS(1912), - [anon_sym___thread] = ACTIONS(1912), - [anon_sym_const] = ACTIONS(1912), - [anon_sym_constexpr] = ACTIONS(1912), - [anon_sym_volatile] = ACTIONS(1912), - [anon_sym_restrict] = ACTIONS(1912), - [anon_sym___restrict__] = ACTIONS(1912), - [anon_sym__Atomic] = ACTIONS(1912), - [anon_sym__Noreturn] = ACTIONS(1912), - [anon_sym_noreturn] = ACTIONS(1912), - [sym_primitive_type] = ACTIONS(1912), - [anon_sym_enum] = ACTIONS(1912), - [anon_sym_COLON] = ACTIONS(1914), - [anon_sym_struct] = ACTIONS(1912), - [anon_sym_union] = ACTIONS(1912), - [anon_sym_if] = ACTIONS(1912), - [anon_sym_switch] = ACTIONS(1912), - [anon_sym_case] = ACTIONS(1912), - [anon_sym_default] = ACTIONS(1912), - [anon_sym_while] = ACTIONS(1912), - [anon_sym_do] = ACTIONS(1912), - [anon_sym_for] = ACTIONS(1912), - [anon_sym_return] = ACTIONS(1912), - [anon_sym_break] = ACTIONS(1912), - [anon_sym_continue] = ACTIONS(1912), - [anon_sym_goto] = ACTIONS(1912), - [anon_sym___try] = ACTIONS(1912), - [anon_sym___leave] = ACTIONS(1912), - [anon_sym_DASH_DASH] = ACTIONS(1914), - [anon_sym_PLUS_PLUS] = ACTIONS(1914), - [anon_sym_sizeof] = ACTIONS(1912), - [anon_sym___alignof__] = ACTIONS(1912), - [anon_sym___alignof] = ACTIONS(1912), - [anon_sym__alignof] = ACTIONS(1912), - [anon_sym_alignof] = ACTIONS(1912), - [anon_sym__Alignof] = ACTIONS(1912), - [anon_sym_offsetof] = ACTIONS(1912), - [anon_sym__Generic] = ACTIONS(1912), - [anon_sym_asm] = ACTIONS(1912), - [anon_sym___asm__] = ACTIONS(1912), - [sym_number_literal] = ACTIONS(1914), - [anon_sym_L_SQUOTE] = ACTIONS(1914), - [anon_sym_u_SQUOTE] = ACTIONS(1914), - [anon_sym_U_SQUOTE] = ACTIONS(1914), - [anon_sym_u8_SQUOTE] = ACTIONS(1914), - [anon_sym_SQUOTE] = ACTIONS(1914), - [anon_sym_L_DQUOTE] = ACTIONS(1914), - [anon_sym_u_DQUOTE] = ACTIONS(1914), - [anon_sym_U_DQUOTE] = ACTIONS(1914), - [anon_sym_u8_DQUOTE] = ACTIONS(1914), - [anon_sym_DQUOTE] = ACTIONS(1914), - [sym_true] = ACTIONS(1912), - [sym_false] = ACTIONS(1912), - [anon_sym_NULL] = ACTIONS(1912), - [anon_sym_nullptr] = ACTIONS(1912), - [sym_comment] = ACTIONS(3), - }, - [483] = { - [sym_identifier] = ACTIONS(1916), - [anon_sym_COMMA] = ACTIONS(1918), - [anon_sym_RPAREN] = ACTIONS(1918), - [anon_sym_LPAREN2] = ACTIONS(1918), - [anon_sym_BANG] = ACTIONS(1918), - [anon_sym_TILDE] = ACTIONS(1918), - [anon_sym_DASH] = ACTIONS(1916), - [anon_sym_PLUS] = ACTIONS(1916), - [anon_sym_STAR] = ACTIONS(1918), - [anon_sym_AMP] = ACTIONS(1918), - [anon_sym_SEMI] = ACTIONS(1918), - [anon_sym___extension__] = ACTIONS(1916), - [anon_sym_extern] = ACTIONS(1916), - [anon_sym___attribute__] = ACTIONS(1916), - [anon_sym___scanf] = ACTIONS(1916), - [anon_sym___printf] = ACTIONS(1916), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1918), - [anon_sym___declspec] = ACTIONS(1916), - [anon_sym_LBRACE] = ACTIONS(1918), - [anon_sym_signed] = ACTIONS(1916), - [anon_sym_unsigned] = ACTIONS(1916), - [anon_sym_long] = ACTIONS(1916), - [anon_sym_short] = ACTIONS(1916), - [anon_sym_LBRACK] = ACTIONS(1916), - [anon_sym_EQ] = ACTIONS(1918), - [anon_sym_static] = ACTIONS(1916), - [anon_sym_auto] = ACTIONS(1916), - [anon_sym_register] = ACTIONS(1916), - [anon_sym_inline] = ACTIONS(1916), - [anon_sym___inline] = ACTIONS(1916), - [anon_sym___inline__] = ACTIONS(1916), - [anon_sym___forceinline] = ACTIONS(1916), - [anon_sym_thread_local] = ACTIONS(1916), - [anon_sym___thread] = ACTIONS(1916), - [anon_sym_const] = ACTIONS(1916), - [anon_sym_constexpr] = ACTIONS(1916), - [anon_sym_volatile] = ACTIONS(1916), - [anon_sym_restrict] = ACTIONS(1916), - [anon_sym___restrict__] = ACTIONS(1916), - [anon_sym__Atomic] = ACTIONS(1916), - [anon_sym__Noreturn] = ACTIONS(1916), - [anon_sym_noreturn] = ACTIONS(1916), - [sym_primitive_type] = ACTIONS(1916), - [anon_sym_enum] = ACTIONS(1916), - [anon_sym_COLON] = ACTIONS(1918), - [anon_sym_struct] = ACTIONS(1916), - [anon_sym_union] = ACTIONS(1916), - [anon_sym_if] = ACTIONS(1916), - [anon_sym_switch] = ACTIONS(1916), - [anon_sym_case] = ACTIONS(1916), - [anon_sym_default] = ACTIONS(1916), - [anon_sym_while] = ACTIONS(1916), - [anon_sym_do] = ACTIONS(1916), - [anon_sym_for] = ACTIONS(1916), - [anon_sym_return] = ACTIONS(1916), - [anon_sym_break] = ACTIONS(1916), - [anon_sym_continue] = ACTIONS(1916), - [anon_sym_goto] = ACTIONS(1916), - [anon_sym___try] = ACTIONS(1916), - [anon_sym___leave] = ACTIONS(1916), - [anon_sym_DASH_DASH] = ACTIONS(1918), - [anon_sym_PLUS_PLUS] = ACTIONS(1918), - [anon_sym_sizeof] = ACTIONS(1916), - [anon_sym___alignof__] = ACTIONS(1916), - [anon_sym___alignof] = ACTIONS(1916), - [anon_sym__alignof] = ACTIONS(1916), - [anon_sym_alignof] = ACTIONS(1916), - [anon_sym__Alignof] = ACTIONS(1916), - [anon_sym_offsetof] = ACTIONS(1916), - [anon_sym__Generic] = ACTIONS(1916), - [anon_sym_asm] = ACTIONS(1916), - [anon_sym___asm__] = ACTIONS(1916), - [sym_number_literal] = ACTIONS(1918), - [anon_sym_L_SQUOTE] = ACTIONS(1918), - [anon_sym_u_SQUOTE] = ACTIONS(1918), - [anon_sym_U_SQUOTE] = ACTIONS(1918), - [anon_sym_u8_SQUOTE] = ACTIONS(1918), - [anon_sym_SQUOTE] = ACTIONS(1918), - [anon_sym_L_DQUOTE] = ACTIONS(1918), - [anon_sym_u_DQUOTE] = ACTIONS(1918), - [anon_sym_U_DQUOTE] = ACTIONS(1918), - [anon_sym_u8_DQUOTE] = ACTIONS(1918), - [anon_sym_DQUOTE] = ACTIONS(1918), - [sym_true] = ACTIONS(1916), - [sym_false] = ACTIONS(1916), - [anon_sym_NULL] = ACTIONS(1916), - [anon_sym_nullptr] = ACTIONS(1916), + [470] = { + [sym_attribute_declaration] = STATE(470), + [sym_compound_statement] = STATE(314), + [sym_attributed_statement] = STATE(314), + [sym_labeled_statement] = STATE(314), + [sym_expression_statement] = STATE(314), + [sym_if_statement] = STATE(314), + [sym_switch_statement] = STATE(314), + [sym_case_statement] = STATE(314), + [sym_while_statement] = STATE(314), + [sym_do_statement] = STATE(314), + [sym_for_statement] = STATE(314), + [sym_return_statement] = STATE(314), + [sym_break_statement] = STATE(314), + [sym_continue_statement] = STATE(314), + [sym_goto_statement] = STATE(314), + [sym_seh_try_statement] = STATE(314), + [sym_seh_leave_statement] = STATE(314), + [sym__expression] = STATE(1272), + [sym__expression_not_binary] = STATE(809), + [sym_comma_expression] = STATE(2198), + [sym_conditional_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_pointer_expression] = STATE(877), + [sym_unary_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_update_expression] = STATE(809), + [sym_cast_expression] = STATE(809), + [sym_sizeof_expression] = STATE(809), + [sym_alignof_expression] = STATE(809), + [sym_offsetof_expression] = STATE(809), + [sym_generic_expression] = STATE(809), + [sym_subscript_expression] = STATE(877), + [sym_call_expression] = STATE(877), + [sym_gnu_asm_expression] = STATE(809), + [sym_field_expression] = STATE(877), + [sym_compound_literal_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(877), + [sym_char_literal] = STATE(809), + [sym_concatenated_string] = STATE(809), + [sym_string_literal] = STATE(573), + [sym_null] = STATE(809), + [aux_sym_attributed_declarator_repeat1] = STATE(470), + [sym_identifier] = ACTIONS(1896), + [anon_sym_LPAREN2] = ACTIONS(1579), + [anon_sym_BANG] = ACTIONS(1582), + [anon_sym_TILDE] = ACTIONS(1582), + [anon_sym_DASH] = ACTIONS(1585), + [anon_sym_PLUS] = ACTIONS(1585), + [anon_sym_STAR] = ACTIONS(1588), + [anon_sym_AMP] = ACTIONS(1588), + [anon_sym_SEMI] = ACTIONS(1675), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1594), + [anon_sym_LBRACE] = ACTIONS(1597), + [anon_sym_if] = ACTIONS(1899), + [anon_sym_switch] = ACTIONS(1603), + [anon_sym_case] = ACTIONS(1902), + [anon_sym_default] = ACTIONS(1905), + [anon_sym_while] = ACTIONS(1908), + [anon_sym_do] = ACTIONS(1615), + [anon_sym_for] = ACTIONS(1911), + [anon_sym_return] = ACTIONS(1621), + [anon_sym_break] = ACTIONS(1624), + [anon_sym_continue] = ACTIONS(1627), + [anon_sym_goto] = ACTIONS(1630), + [anon_sym___try] = ACTIONS(1914), + [anon_sym___leave] = ACTIONS(1717), + [anon_sym_DASH_DASH] = ACTIONS(1639), + [anon_sym_PLUS_PLUS] = ACTIONS(1639), + [anon_sym_sizeof] = ACTIONS(1642), + [anon_sym___alignof__] = ACTIONS(1645), + [anon_sym___alignof] = ACTIONS(1645), + [anon_sym__alignof] = ACTIONS(1645), + [anon_sym_alignof] = ACTIONS(1645), + [anon_sym__Alignof] = ACTIONS(1645), + [anon_sym_offsetof] = ACTIONS(1648), + [anon_sym__Generic] = ACTIONS(1651), + [anon_sym_asm] = ACTIONS(1654), + [anon_sym___asm__] = ACTIONS(1654), + [sym_number_literal] = ACTIONS(1657), + [anon_sym_L_SQUOTE] = ACTIONS(1660), + [anon_sym_u_SQUOTE] = ACTIONS(1660), + [anon_sym_U_SQUOTE] = ACTIONS(1660), + [anon_sym_u8_SQUOTE] = ACTIONS(1660), + [anon_sym_SQUOTE] = ACTIONS(1660), + [anon_sym_L_DQUOTE] = ACTIONS(1663), + [anon_sym_u_DQUOTE] = ACTIONS(1663), + [anon_sym_U_DQUOTE] = ACTIONS(1663), + [anon_sym_u8_DQUOTE] = ACTIONS(1663), + [anon_sym_DQUOTE] = ACTIONS(1663), + [sym_true] = ACTIONS(1666), + [sym_false] = ACTIONS(1666), + [anon_sym_NULL] = ACTIONS(1669), + [anon_sym_nullptr] = ACTIONS(1669), [sym_comment] = ACTIONS(3), }, - [484] = { - [sym_type_qualifier] = STATE(1287), - [sym__type_specifier] = STATE(1314), - [sym_sized_type_specifier] = STATE(1106), - [sym_enum_specifier] = STATE(1106), - [sym_struct_specifier] = STATE(1106), - [sym_union_specifier] = STATE(1106), - [sym__expression] = STATE(1208), - [sym__expression_not_binary] = STATE(792), - [sym_comma_expression] = STATE(2076), - [sym_conditional_expression] = STATE(792), - [sym_assignment_expression] = STATE(792), - [sym_pointer_expression] = STATE(901), - [sym_unary_expression] = STATE(792), - [sym_binary_expression] = STATE(792), - [sym_update_expression] = STATE(792), - [sym_cast_expression] = STATE(792), - [sym_type_descriptor] = STATE(2107), - [sym_sizeof_expression] = STATE(792), - [sym_alignof_expression] = STATE(792), - [sym_offsetof_expression] = STATE(792), - [sym_generic_expression] = STATE(792), - [sym_subscript_expression] = STATE(901), - [sym_call_expression] = STATE(901), - [sym_gnu_asm_expression] = STATE(792), - [sym_field_expression] = STATE(901), - [sym_compound_literal_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(901), - [sym_char_literal] = STATE(792), - [sym_concatenated_string] = STATE(792), - [sym_string_literal] = STATE(675), - [sym_null] = STATE(792), - [sym_macro_type_specifier] = STATE(1106), - [aux_sym__type_definition_type_repeat1] = STATE(1287), - [aux_sym_sized_type_specifier_repeat1] = STATE(1323), - [sym_identifier] = ACTIONS(1920), + [471] = { + [sym_attribute_declaration] = STATE(450), + [sym_compound_statement] = STATE(262), + [sym_attributed_statement] = STATE(262), + [sym_labeled_statement] = STATE(262), + [sym_expression_statement] = STATE(262), + [sym_if_statement] = STATE(262), + [sym_switch_statement] = STATE(262), + [sym_case_statement] = STATE(262), + [sym_while_statement] = STATE(262), + [sym_do_statement] = STATE(262), + [sym_for_statement] = STATE(262), + [sym_return_statement] = STATE(262), + [sym_break_statement] = STATE(262), + [sym_continue_statement] = STATE(262), + [sym_goto_statement] = STATE(262), + [sym_seh_try_statement] = STATE(262), + [sym_seh_leave_statement] = STATE(262), + [sym__expression] = STATE(1269), + [sym__expression_not_binary] = STATE(809), + [sym_comma_expression] = STATE(2019), + [sym_conditional_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_pointer_expression] = STATE(877), + [sym_unary_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_update_expression] = STATE(809), + [sym_cast_expression] = STATE(809), + [sym_sizeof_expression] = STATE(809), + [sym_alignof_expression] = STATE(809), + [sym_offsetof_expression] = STATE(809), + [sym_generic_expression] = STATE(809), + [sym_subscript_expression] = STATE(877), + [sym_call_expression] = STATE(877), + [sym_gnu_asm_expression] = STATE(809), + [sym_field_expression] = STATE(877), + [sym_compound_literal_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(877), + [sym_char_literal] = STATE(809), + [sym_concatenated_string] = STATE(809), + [sym_string_literal] = STATE(573), + [sym_null] = STATE(809), + [aux_sym_attributed_declarator_repeat1] = STATE(450), + [sym_identifier] = ACTIONS(1772), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -69531,88 +70322,95 @@ 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(49), - [anon_sym_signed] = ACTIONS(1922), - [anon_sym_unsigned] = ACTIONS(1922), - [anon_sym_long] = ACTIONS(1922), - [anon_sym_short] = ACTIONS(1922), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [sym_primitive_type] = ACTIONS(51), - [anon_sym_enum] = ACTIONS(1924), - [anon_sym_struct] = ACTIONS(55), - [anon_sym_union] = ACTIONS(57), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(83), - [anon_sym___alignof__] = ACTIONS(85), - [anon_sym___alignof] = ACTIONS(85), - [anon_sym__alignof] = ACTIONS(85), - [anon_sym_alignof] = ACTIONS(85), - [anon_sym__Alignof] = ACTIONS(85), - [anon_sym_offsetof] = ACTIONS(87), - [anon_sym__Generic] = ACTIONS(89), - [anon_sym_asm] = ACTIONS(91), - [anon_sym___asm__] = ACTIONS(91), - [sym_number_literal] = ACTIONS(159), - [anon_sym_L_SQUOTE] = ACTIONS(95), - [anon_sym_u_SQUOTE] = ACTIONS(95), - [anon_sym_U_SQUOTE] = ACTIONS(95), - [anon_sym_u8_SQUOTE] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(95), - [anon_sym_L_DQUOTE] = ACTIONS(97), - [anon_sym_u_DQUOTE] = ACTIONS(97), - [anon_sym_U_DQUOTE] = ACTIONS(97), - [anon_sym_u8_DQUOTE] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(97), - [sym_true] = ACTIONS(161), - [sym_false] = ACTIONS(161), - [anon_sym_NULL] = ACTIONS(101), - [anon_sym_nullptr] = ACTIONS(101), + [anon_sym_SEMI] = ACTIONS(503), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1566), + [anon_sym_LBRACE] = ACTIONS(511), + [anon_sym_if] = ACTIONS(513), + [anon_sym_switch] = ACTIONS(515), + [anon_sym_case] = ACTIONS(517), + [anon_sym_default] = ACTIONS(519), + [anon_sym_while] = ACTIONS(521), + [anon_sym_do] = ACTIONS(523), + [anon_sym_for] = ACTIONS(525), + [anon_sym_return] = ACTIONS(527), + [anon_sym_break] = ACTIONS(529), + [anon_sym_continue] = ACTIONS(531), + [anon_sym_goto] = ACTIONS(533), + [anon_sym___try] = ACTIONS(535), + [anon_sym___leave] = ACTIONS(537), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [sym_number_literal] = ACTIONS(161), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(163), + [sym_false] = ACTIONS(163), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [485] = { - [sym_type_qualifier] = STATE(1287), - [sym__type_specifier] = STATE(1314), - [sym_sized_type_specifier] = STATE(1106), - [sym_enum_specifier] = STATE(1106), - [sym_struct_specifier] = STATE(1106), - [sym_union_specifier] = STATE(1106), - [sym__expression] = STATE(1208), - [sym__expression_not_binary] = STATE(792), - [sym_comma_expression] = STATE(2076), - [sym_conditional_expression] = STATE(792), - [sym_assignment_expression] = STATE(792), - [sym_pointer_expression] = STATE(901), - [sym_unary_expression] = STATE(792), - [sym_binary_expression] = STATE(792), - [sym_update_expression] = STATE(792), - [sym_cast_expression] = STATE(792), - [sym_type_descriptor] = STATE(2092), - [sym_sizeof_expression] = STATE(792), - [sym_alignof_expression] = STATE(792), - [sym_offsetof_expression] = STATE(792), - [sym_generic_expression] = STATE(792), - [sym_subscript_expression] = STATE(901), - [sym_call_expression] = STATE(901), - [sym_gnu_asm_expression] = STATE(792), - [sym_field_expression] = STATE(901), - [sym_compound_literal_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(901), - [sym_char_literal] = STATE(792), - [sym_concatenated_string] = STATE(792), - [sym_string_literal] = STATE(675), - [sym_null] = STATE(792), - [sym_macro_type_specifier] = STATE(1106), - [aux_sym__type_definition_type_repeat1] = STATE(1287), - [aux_sym_sized_type_specifier_repeat1] = STATE(1323), - [sym_identifier] = ACTIONS(1920), + [472] = { + [sym_attribute_declaration] = STATE(450), + [sym_compound_statement] = STATE(264), + [sym_attributed_statement] = STATE(265), + [sym_labeled_statement] = STATE(266), + [sym_expression_statement] = STATE(267), + [sym_if_statement] = STATE(270), + [sym_switch_statement] = STATE(276), + [sym_case_statement] = STATE(277), + [sym_while_statement] = STATE(278), + [sym_do_statement] = STATE(281), + [sym_for_statement] = STATE(285), + [sym_return_statement] = STATE(286), + [sym_break_statement] = STATE(288), + [sym_continue_statement] = STATE(289), + [sym_goto_statement] = STATE(292), + [sym_seh_try_statement] = STATE(293), + [sym_seh_leave_statement] = STATE(295), + [sym__expression] = STATE(1269), + [sym__expression_not_binary] = STATE(809), + [sym_comma_expression] = STATE(2019), + [sym_conditional_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_pointer_expression] = STATE(877), + [sym_unary_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_update_expression] = STATE(809), + [sym_cast_expression] = STATE(809), + [sym_sizeof_expression] = STATE(809), + [sym_alignof_expression] = STATE(809), + [sym_offsetof_expression] = STATE(809), + [sym_generic_expression] = STATE(809), + [sym_subscript_expression] = STATE(877), + [sym_call_expression] = STATE(877), + [sym_gnu_asm_expression] = STATE(809), + [sym_field_expression] = STATE(877), + [sym_compound_literal_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(877), + [sym_char_literal] = STATE(809), + [sym_concatenated_string] = STATE(809), + [sym_string_literal] = STATE(573), + [sym_null] = STATE(809), + [aux_sym_attributed_declarator_repeat1] = STATE(450), + [sym_identifier] = ACTIONS(1772), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -69620,88 +70418,95 @@ 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(49), - [anon_sym_signed] = ACTIONS(1922), - [anon_sym_unsigned] = ACTIONS(1922), - [anon_sym_long] = ACTIONS(1922), - [anon_sym_short] = ACTIONS(1922), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [sym_primitive_type] = ACTIONS(51), - [anon_sym_enum] = ACTIONS(1924), - [anon_sym_struct] = ACTIONS(55), - [anon_sym_union] = ACTIONS(57), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(83), - [anon_sym___alignof__] = ACTIONS(85), - [anon_sym___alignof] = ACTIONS(85), - [anon_sym__alignof] = ACTIONS(85), - [anon_sym_alignof] = ACTIONS(85), - [anon_sym__Alignof] = ACTIONS(85), - [anon_sym_offsetof] = ACTIONS(87), - [anon_sym__Generic] = ACTIONS(89), - [anon_sym_asm] = ACTIONS(91), - [anon_sym___asm__] = ACTIONS(91), - [sym_number_literal] = ACTIONS(159), - [anon_sym_L_SQUOTE] = ACTIONS(95), - [anon_sym_u_SQUOTE] = ACTIONS(95), - [anon_sym_U_SQUOTE] = ACTIONS(95), - [anon_sym_u8_SQUOTE] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(95), - [anon_sym_L_DQUOTE] = ACTIONS(97), - [anon_sym_u_DQUOTE] = ACTIONS(97), - [anon_sym_U_DQUOTE] = ACTIONS(97), - [anon_sym_u8_DQUOTE] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(97), - [sym_true] = ACTIONS(161), - [sym_false] = ACTIONS(161), - [anon_sym_NULL] = ACTIONS(101), - [anon_sym_nullptr] = ACTIONS(101), + [anon_sym_SEMI] = ACTIONS(503), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1566), + [anon_sym_LBRACE] = ACTIONS(511), + [anon_sym_if] = ACTIONS(513), + [anon_sym_switch] = ACTIONS(515), + [anon_sym_case] = ACTIONS(517), + [anon_sym_default] = ACTIONS(519), + [anon_sym_while] = ACTIONS(521), + [anon_sym_do] = ACTIONS(523), + [anon_sym_for] = ACTIONS(525), + [anon_sym_return] = ACTIONS(527), + [anon_sym_break] = ACTIONS(529), + [anon_sym_continue] = ACTIONS(531), + [anon_sym_goto] = ACTIONS(533), + [anon_sym___try] = ACTIONS(535), + [anon_sym___leave] = ACTIONS(537), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [sym_number_literal] = ACTIONS(161), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(163), + [sym_false] = ACTIONS(163), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [486] = { - [sym_type_qualifier] = STATE(1287), - [sym__type_specifier] = STATE(1314), - [sym_sized_type_specifier] = STATE(1106), - [sym_enum_specifier] = STATE(1106), - [sym_struct_specifier] = STATE(1106), - [sym_union_specifier] = STATE(1106), - [sym__expression] = STATE(1247), - [sym__expression_not_binary] = STATE(792), - [sym_comma_expression] = STATE(2041), - [sym_conditional_expression] = STATE(792), - [sym_assignment_expression] = STATE(792), - [sym_pointer_expression] = STATE(901), - [sym_unary_expression] = STATE(792), - [sym_binary_expression] = STATE(792), - [sym_update_expression] = STATE(792), - [sym_cast_expression] = STATE(792), - [sym_type_descriptor] = STATE(2010), - [sym_sizeof_expression] = STATE(792), - [sym_alignof_expression] = STATE(792), - [sym_offsetof_expression] = STATE(792), - [sym_generic_expression] = STATE(792), - [sym_subscript_expression] = STATE(901), - [sym_call_expression] = STATE(901), - [sym_gnu_asm_expression] = STATE(792), - [sym_field_expression] = STATE(901), - [sym_compound_literal_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(901), - [sym_char_literal] = STATE(792), - [sym_concatenated_string] = STATE(792), - [sym_string_literal] = STATE(675), - [sym_null] = STATE(792), - [sym_macro_type_specifier] = STATE(1106), - [aux_sym__type_definition_type_repeat1] = STATE(1287), - [aux_sym_sized_type_specifier_repeat1] = STATE(1323), - [sym_identifier] = ACTIONS(1920), + [473] = { + [sym_attribute_declaration] = STATE(465), + [sym_compound_statement] = STATE(2237), + [sym_attributed_statement] = STATE(2237), + [sym_labeled_statement] = STATE(2237), + [sym_expression_statement] = STATE(2237), + [sym_if_statement] = STATE(2237), + [sym_switch_statement] = STATE(2237), + [sym_case_statement] = STATE(2237), + [sym_while_statement] = STATE(2237), + [sym_do_statement] = STATE(2237), + [sym_for_statement] = STATE(2237), + [sym_return_statement] = STATE(2237), + [sym_break_statement] = STATE(2237), + [sym_continue_statement] = STATE(2237), + [sym_goto_statement] = STATE(2237), + [sym_seh_try_statement] = STATE(2237), + [sym_seh_leave_statement] = STATE(2237), + [sym__expression] = STATE(1272), + [sym__expression_not_binary] = STATE(809), + [sym_comma_expression] = STATE(2198), + [sym_conditional_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_pointer_expression] = STATE(877), + [sym_unary_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_update_expression] = STATE(809), + [sym_cast_expression] = STATE(809), + [sym_sizeof_expression] = STATE(809), + [sym_alignof_expression] = STATE(809), + [sym_offsetof_expression] = STATE(809), + [sym_generic_expression] = STATE(809), + [sym_subscript_expression] = STATE(877), + [sym_call_expression] = STATE(877), + [sym_gnu_asm_expression] = STATE(809), + [sym_field_expression] = STATE(877), + [sym_compound_literal_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(877), + [sym_char_literal] = STATE(809), + [sym_concatenated_string] = STATE(809), + [sym_string_literal] = STATE(573), + [sym_null] = STATE(809), + [aux_sym_attributed_declarator_repeat1] = STATE(465), + [sym_identifier] = ACTIONS(1568), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -69709,177 +70514,95 @@ 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(49), - [anon_sym_signed] = ACTIONS(1922), - [anon_sym_unsigned] = ACTIONS(1922), - [anon_sym_long] = ACTIONS(1922), - [anon_sym_short] = ACTIONS(1922), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [sym_primitive_type] = ACTIONS(51), - [anon_sym_enum] = ACTIONS(1924), - [anon_sym_struct] = ACTIONS(55), - [anon_sym_union] = ACTIONS(57), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(83), - [anon_sym___alignof__] = ACTIONS(85), - [anon_sym___alignof] = ACTIONS(85), - [anon_sym__alignof] = ACTIONS(85), - [anon_sym_alignof] = ACTIONS(85), - [anon_sym__Alignof] = ACTIONS(85), - [anon_sym_offsetof] = ACTIONS(87), - [anon_sym__Generic] = ACTIONS(89), - [anon_sym_asm] = ACTIONS(91), - [anon_sym___asm__] = ACTIONS(91), - [sym_number_literal] = ACTIONS(159), - [anon_sym_L_SQUOTE] = ACTIONS(95), - [anon_sym_u_SQUOTE] = ACTIONS(95), - [anon_sym_U_SQUOTE] = ACTIONS(95), - [anon_sym_u8_SQUOTE] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(95), - [anon_sym_L_DQUOTE] = ACTIONS(97), - [anon_sym_u_DQUOTE] = ACTIONS(97), - [anon_sym_U_DQUOTE] = ACTIONS(97), - [anon_sym_u8_DQUOTE] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(97), - [sym_true] = ACTIONS(161), - [sym_false] = ACTIONS(161), - [anon_sym_NULL] = ACTIONS(101), - [anon_sym_nullptr] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - }, - [487] = { - [sym__expression] = STATE(843), - [sym__expression_not_binary] = STATE(792), - [sym_conditional_expression] = STATE(792), - [sym_assignment_expression] = STATE(792), - [sym_pointer_expression] = STATE(901), - [sym_unary_expression] = STATE(792), - [sym_binary_expression] = STATE(792), - [sym_update_expression] = STATE(792), - [sym_cast_expression] = STATE(792), - [sym_sizeof_expression] = STATE(792), - [sym_alignof_expression] = STATE(792), - [sym_offsetof_expression] = STATE(792), - [sym_generic_expression] = STATE(792), - [sym_subscript_expression] = STATE(901), - [sym_call_expression] = STATE(901), - [sym_gnu_asm_expression] = STATE(792), - [sym_field_expression] = STATE(901), - [sym_compound_literal_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(901), - [sym_initializer_list] = STATE(794), - [sym_char_literal] = STATE(792), - [sym_concatenated_string] = STATE(792), - [sym_string_literal] = STATE(675), - [sym_null] = STATE(792), - [sym_identifier] = ACTIONS(1926), - [anon_sym_COMMA] = ACTIONS(1527), - [anon_sym_RPAREN] = ACTIONS(1527), - [anon_sym_LPAREN2] = ACTIONS(1527), - [anon_sym_BANG] = ACTIONS(23), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1527), - [anon_sym_SLASH] = ACTIONS(1533), - [anon_sym_PERCENT] = ACTIONS(1527), - [anon_sym_PIPE_PIPE] = ACTIONS(1527), - [anon_sym_AMP_AMP] = ACTIONS(1527), - [anon_sym_PIPE] = ACTIONS(1533), - [anon_sym_CARET] = ACTIONS(1527), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_EQ_EQ] = ACTIONS(1527), - [anon_sym_BANG_EQ] = ACTIONS(1527), - [anon_sym_GT] = ACTIONS(1533), - [anon_sym_GT_EQ] = ACTIONS(1527), - [anon_sym_LT_EQ] = ACTIONS(1527), - [anon_sym_LT] = ACTIONS(1533), - [anon_sym_LT_LT] = ACTIONS(1527), - [anon_sym_GT_GT] = ACTIONS(1527), - [anon_sym_SEMI] = ACTIONS(1527), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym___scanf] = ACTIONS(1533), - [anon_sym___printf] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_RBRACE] = ACTIONS(1527), - [anon_sym_LBRACK] = ACTIONS(1527), - [anon_sym_COLON] = ACTIONS(1527), - [anon_sym_QMARK] = ACTIONS(1527), - [anon_sym_DASH_DASH] = ACTIONS(1527), - [anon_sym_PLUS_PLUS] = ACTIONS(1527), - [anon_sym_sizeof] = ACTIONS(83), - [anon_sym___alignof__] = ACTIONS(85), - [anon_sym___alignof] = ACTIONS(85), - [anon_sym__alignof] = ACTIONS(85), - [anon_sym_alignof] = ACTIONS(85), - [anon_sym__Alignof] = ACTIONS(85), - [anon_sym_offsetof] = ACTIONS(87), - [anon_sym__Generic] = ACTIONS(89), - [anon_sym_asm] = ACTIONS(91), - [anon_sym___asm__] = ACTIONS(91), - [anon_sym_DOT] = ACTIONS(1533), - [anon_sym_DASH_GT] = ACTIONS(1527), - [sym_number_literal] = ACTIONS(159), - [anon_sym_L_SQUOTE] = ACTIONS(95), - [anon_sym_u_SQUOTE] = ACTIONS(95), - [anon_sym_U_SQUOTE] = ACTIONS(95), - [anon_sym_u8_SQUOTE] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(95), - [anon_sym_L_DQUOTE] = ACTIONS(97), - [anon_sym_u_DQUOTE] = ACTIONS(97), - [anon_sym_U_DQUOTE] = ACTIONS(97), - [anon_sym_u8_DQUOTE] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(97), - [sym_true] = ACTIONS(161), - [sym_false] = ACTIONS(161), - [anon_sym_NULL] = ACTIONS(101), - [anon_sym_nullptr] = ACTIONS(101), + [anon_sym_SEMI] = ACTIONS(623), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1566), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_if] = ACTIONS(1285), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_case] = ACTIONS(1570), + [anon_sym_default] = ACTIONS(1572), + [anon_sym_while] = ACTIONS(1287), + [anon_sym_do] = ACTIONS(71), + [anon_sym_for] = ACTIONS(1289), + [anon_sym_return] = ACTIONS(75), + [anon_sym_break] = ACTIONS(77), + [anon_sym_continue] = ACTIONS(79), + [anon_sym_goto] = ACTIONS(81), + [anon_sym___try] = ACTIONS(1291), + [anon_sym___leave] = ACTIONS(659), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [sym_number_literal] = ACTIONS(161), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(163), + [sym_false] = ACTIONS(163), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [488] = { - [sym_type_qualifier] = STATE(1287), - [sym__type_specifier] = STATE(1314), - [sym_sized_type_specifier] = STATE(1106), - [sym_enum_specifier] = STATE(1106), - [sym_struct_specifier] = STATE(1106), - [sym_union_specifier] = STATE(1106), - [sym__expression] = STATE(1247), - [sym__expression_not_binary] = STATE(792), - [sym_comma_expression] = STATE(2041), - [sym_conditional_expression] = STATE(792), - [sym_assignment_expression] = STATE(792), - [sym_pointer_expression] = STATE(901), - [sym_unary_expression] = STATE(792), - [sym_binary_expression] = STATE(792), - [sym_update_expression] = STATE(792), - [sym_cast_expression] = STATE(792), - [sym_type_descriptor] = STATE(1978), - [sym_sizeof_expression] = STATE(792), - [sym_alignof_expression] = STATE(792), - [sym_offsetof_expression] = STATE(792), - [sym_generic_expression] = STATE(792), - [sym_subscript_expression] = STATE(901), - [sym_call_expression] = STATE(901), - [sym_gnu_asm_expression] = STATE(792), - [sym_field_expression] = STATE(901), - [sym_compound_literal_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(901), - [sym_char_literal] = STATE(792), - [sym_concatenated_string] = STATE(792), - [sym_string_literal] = STATE(675), - [sym_null] = STATE(792), - [sym_macro_type_specifier] = STATE(1106), - [aux_sym__type_definition_type_repeat1] = STATE(1287), - [aux_sym_sized_type_specifier_repeat1] = STATE(1323), - [sym_identifier] = ACTIONS(1920), + [474] = { + [sym_attribute_declaration] = STATE(445), + [sym_compound_statement] = STATE(315), + [sym_attributed_statement] = STATE(315), + [sym_labeled_statement] = STATE(315), + [sym_expression_statement] = STATE(315), + [sym_if_statement] = STATE(315), + [sym_switch_statement] = STATE(315), + [sym_case_statement] = STATE(315), + [sym_while_statement] = STATE(315), + [sym_do_statement] = STATE(315), + [sym_for_statement] = STATE(315), + [sym_return_statement] = STATE(315), + [sym_break_statement] = STATE(315), + [sym_continue_statement] = STATE(315), + [sym_goto_statement] = STATE(315), + [sym_seh_try_statement] = STATE(315), + [sym_seh_leave_statement] = STATE(315), + [sym__expression] = STATE(1253), + [sym__expression_not_binary] = STATE(809), + [sym_comma_expression] = STATE(2218), + [sym_conditional_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_pointer_expression] = STATE(877), + [sym_unary_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_update_expression] = STATE(809), + [sym_cast_expression] = STATE(809), + [sym_sizeof_expression] = STATE(809), + [sym_alignof_expression] = STATE(809), + [sym_offsetof_expression] = STATE(809), + [sym_generic_expression] = STATE(809), + [sym_subscript_expression] = STATE(877), + [sym_call_expression] = STATE(877), + [sym_gnu_asm_expression] = STATE(809), + [sym_field_expression] = STATE(877), + [sym_compound_literal_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(877), + [sym_char_literal] = STATE(809), + [sym_concatenated_string] = STATE(809), + [sym_string_literal] = STATE(573), + [sym_null] = STATE(809), + [aux_sym_attributed_declarator_repeat1] = STATE(445), + [sym_identifier] = ACTIONS(1768), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -69887,88 +70610,95 @@ 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(49), - [anon_sym_signed] = ACTIONS(1922), - [anon_sym_unsigned] = ACTIONS(1922), - [anon_sym_long] = ACTIONS(1922), - [anon_sym_short] = ACTIONS(1922), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [sym_primitive_type] = ACTIONS(51), - [anon_sym_enum] = ACTIONS(1924), - [anon_sym_struct] = ACTIONS(55), - [anon_sym_union] = ACTIONS(57), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(83), - [anon_sym___alignof__] = ACTIONS(85), - [anon_sym___alignof] = ACTIONS(85), - [anon_sym__alignof] = ACTIONS(85), - [anon_sym_alignof] = ACTIONS(85), - [anon_sym__Alignof] = ACTIONS(85), - [anon_sym_offsetof] = ACTIONS(87), - [anon_sym__Generic] = ACTIONS(89), - [anon_sym_asm] = ACTIONS(91), - [anon_sym___asm__] = ACTIONS(91), - [sym_number_literal] = ACTIONS(159), - [anon_sym_L_SQUOTE] = ACTIONS(95), - [anon_sym_u_SQUOTE] = ACTIONS(95), - [anon_sym_U_SQUOTE] = ACTIONS(95), - [anon_sym_u8_SQUOTE] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(95), - [anon_sym_L_DQUOTE] = ACTIONS(97), - [anon_sym_u_DQUOTE] = ACTIONS(97), - [anon_sym_U_DQUOTE] = ACTIONS(97), - [anon_sym_u8_DQUOTE] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(97), - [sym_true] = ACTIONS(161), - [sym_false] = ACTIONS(161), - [anon_sym_NULL] = ACTIONS(101), - [anon_sym_nullptr] = ACTIONS(101), + [anon_sym_SEMI] = ACTIONS(1171), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1566), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_if] = ACTIONS(61), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_case] = ACTIONS(65), + [anon_sym_default] = ACTIONS(67), + [anon_sym_while] = ACTIONS(69), + [anon_sym_do] = ACTIONS(71), + [anon_sym_for] = ACTIONS(73), + [anon_sym_return] = ACTIONS(75), + [anon_sym_break] = ACTIONS(77), + [anon_sym_continue] = ACTIONS(79), + [anon_sym_goto] = ACTIONS(81), + [anon_sym___try] = ACTIONS(1173), + [anon_sym___leave] = ACTIONS(1175), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [sym_number_literal] = ACTIONS(161), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(163), + [sym_false] = ACTIONS(163), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [489] = { - [sym_type_qualifier] = STATE(1287), - [sym__type_specifier] = STATE(1314), - [sym_sized_type_specifier] = STATE(1106), - [sym_enum_specifier] = STATE(1106), - [sym_struct_specifier] = STATE(1106), - [sym_union_specifier] = STATE(1106), - [sym__expression] = STATE(1208), - [sym__expression_not_binary] = STATE(792), - [sym_comma_expression] = STATE(2076), - [sym_conditional_expression] = STATE(792), - [sym_assignment_expression] = STATE(792), - [sym_pointer_expression] = STATE(901), - [sym_unary_expression] = STATE(792), - [sym_binary_expression] = STATE(792), - [sym_update_expression] = STATE(792), - [sym_cast_expression] = STATE(792), - [sym_type_descriptor] = STATE(2115), - [sym_sizeof_expression] = STATE(792), - [sym_alignof_expression] = STATE(792), - [sym_offsetof_expression] = STATE(792), - [sym_generic_expression] = STATE(792), - [sym_subscript_expression] = STATE(901), - [sym_call_expression] = STATE(901), - [sym_gnu_asm_expression] = STATE(792), - [sym_field_expression] = STATE(901), - [sym_compound_literal_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(901), - [sym_char_literal] = STATE(792), - [sym_concatenated_string] = STATE(792), - [sym_string_literal] = STATE(675), - [sym_null] = STATE(792), - [sym_macro_type_specifier] = STATE(1106), - [aux_sym__type_definition_type_repeat1] = STATE(1287), - [aux_sym_sized_type_specifier_repeat1] = STATE(1323), - [sym_identifier] = ACTIONS(1920), + [475] = { + [sym_attribute_declaration] = STATE(480), + [sym_compound_statement] = STATE(160), + [sym_attributed_statement] = STATE(160), + [sym_labeled_statement] = STATE(160), + [sym_expression_statement] = STATE(160), + [sym_if_statement] = STATE(160), + [sym_switch_statement] = STATE(160), + [sym_case_statement] = STATE(160), + [sym_while_statement] = STATE(160), + [sym_do_statement] = STATE(160), + [sym_for_statement] = STATE(160), + [sym_return_statement] = STATE(160), + [sym_break_statement] = STATE(160), + [sym_continue_statement] = STATE(160), + [sym_goto_statement] = STATE(160), + [sym_seh_try_statement] = STATE(160), + [sym_seh_leave_statement] = STATE(160), + [sym__expression] = STATE(1258), + [sym__expression_not_binary] = STATE(809), + [sym_comma_expression] = STATE(2110), + [sym_conditional_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_pointer_expression] = STATE(877), + [sym_unary_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_update_expression] = STATE(809), + [sym_cast_expression] = STATE(809), + [sym_sizeof_expression] = STATE(809), + [sym_alignof_expression] = STATE(809), + [sym_offsetof_expression] = STATE(809), + [sym_generic_expression] = STATE(809), + [sym_subscript_expression] = STATE(877), + [sym_call_expression] = STATE(877), + [sym_gnu_asm_expression] = STATE(809), + [sym_field_expression] = STATE(877), + [sym_compound_literal_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(877), + [sym_char_literal] = STATE(809), + [sym_concatenated_string] = STATE(809), + [sym_string_literal] = STATE(573), + [sym_null] = STATE(809), + [aux_sym_attributed_declarator_repeat1] = STATE(480), + [sym_identifier] = ACTIONS(1770), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -69976,88 +70706,95 @@ 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(49), - [anon_sym_signed] = ACTIONS(1922), - [anon_sym_unsigned] = ACTIONS(1922), - [anon_sym_long] = ACTIONS(1922), - [anon_sym_short] = ACTIONS(1922), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [sym_primitive_type] = ACTIONS(51), - [anon_sym_enum] = ACTIONS(1924), - [anon_sym_struct] = ACTIONS(55), - [anon_sym_union] = ACTIONS(57), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(83), - [anon_sym___alignof__] = ACTIONS(85), - [anon_sym___alignof] = ACTIONS(85), - [anon_sym__alignof] = ACTIONS(85), - [anon_sym_alignof] = ACTIONS(85), - [anon_sym__Alignof] = ACTIONS(85), - [anon_sym_offsetof] = ACTIONS(87), - [anon_sym__Generic] = ACTIONS(89), - [anon_sym_asm] = ACTIONS(91), - [anon_sym___asm__] = ACTIONS(91), - [sym_number_literal] = ACTIONS(159), - [anon_sym_L_SQUOTE] = ACTIONS(95), - [anon_sym_u_SQUOTE] = ACTIONS(95), - [anon_sym_U_SQUOTE] = ACTIONS(95), - [anon_sym_u8_SQUOTE] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(95), - [anon_sym_L_DQUOTE] = ACTIONS(97), - [anon_sym_u_DQUOTE] = ACTIONS(97), - [anon_sym_U_DQUOTE] = ACTIONS(97), - [anon_sym_u8_DQUOTE] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(97), - [sym_true] = ACTIONS(161), - [sym_false] = ACTIONS(161), - [anon_sym_NULL] = ACTIONS(101), - [anon_sym_nullptr] = ACTIONS(101), + [anon_sym_SEMI] = ACTIONS(197), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1566), + [anon_sym_LBRACE] = ACTIONS(205), + [anon_sym_if] = ACTIONS(207), + [anon_sym_switch] = ACTIONS(209), + [anon_sym_case] = ACTIONS(211), + [anon_sym_default] = ACTIONS(213), + [anon_sym_while] = ACTIONS(215), + [anon_sym_do] = ACTIONS(217), + [anon_sym_for] = ACTIONS(219), + [anon_sym_return] = ACTIONS(221), + [anon_sym_break] = ACTIONS(223), + [anon_sym_continue] = ACTIONS(225), + [anon_sym_goto] = ACTIONS(227), + [anon_sym___try] = ACTIONS(229), + [anon_sym___leave] = ACTIONS(231), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [sym_number_literal] = ACTIONS(161), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(163), + [sym_false] = ACTIONS(163), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [490] = { - [sym_type_qualifier] = STATE(1287), - [sym__type_specifier] = STATE(1314), - [sym_sized_type_specifier] = STATE(1106), - [sym_enum_specifier] = STATE(1106), - [sym_struct_specifier] = STATE(1106), - [sym_union_specifier] = STATE(1106), - [sym__expression] = STATE(1208), - [sym__expression_not_binary] = STATE(792), - [sym_comma_expression] = STATE(2076), - [sym_conditional_expression] = STATE(792), - [sym_assignment_expression] = STATE(792), - [sym_pointer_expression] = STATE(901), - [sym_unary_expression] = STATE(792), - [sym_binary_expression] = STATE(792), - [sym_update_expression] = STATE(792), - [sym_cast_expression] = STATE(792), - [sym_type_descriptor] = STATE(2142), - [sym_sizeof_expression] = STATE(792), - [sym_alignof_expression] = STATE(792), - [sym_offsetof_expression] = STATE(792), - [sym_generic_expression] = STATE(792), - [sym_subscript_expression] = STATE(901), - [sym_call_expression] = STATE(901), - [sym_gnu_asm_expression] = STATE(792), - [sym_field_expression] = STATE(901), - [sym_compound_literal_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(901), - [sym_char_literal] = STATE(792), - [sym_concatenated_string] = STATE(792), - [sym_string_literal] = STATE(675), - [sym_null] = STATE(792), - [sym_macro_type_specifier] = STATE(1106), - [aux_sym__type_definition_type_repeat1] = STATE(1287), - [aux_sym_sized_type_specifier_repeat1] = STATE(1323), - [sym_identifier] = ACTIONS(1920), + [476] = { + [sym_attribute_declaration] = STATE(465), + [sym_compound_statement] = STATE(315), + [sym_attributed_statement] = STATE(315), + [sym_labeled_statement] = STATE(315), + [sym_expression_statement] = STATE(315), + [sym_if_statement] = STATE(315), + [sym_switch_statement] = STATE(315), + [sym_case_statement] = STATE(315), + [sym_while_statement] = STATE(315), + [sym_do_statement] = STATE(315), + [sym_for_statement] = STATE(315), + [sym_return_statement] = STATE(315), + [sym_break_statement] = STATE(315), + [sym_continue_statement] = STATE(315), + [sym_goto_statement] = STATE(315), + [sym_seh_try_statement] = STATE(315), + [sym_seh_leave_statement] = STATE(315), + [sym__expression] = STATE(1272), + [sym__expression_not_binary] = STATE(809), + [sym_comma_expression] = STATE(2198), + [sym_conditional_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_pointer_expression] = STATE(877), + [sym_unary_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_update_expression] = STATE(809), + [sym_cast_expression] = STATE(809), + [sym_sizeof_expression] = STATE(809), + [sym_alignof_expression] = STATE(809), + [sym_offsetof_expression] = STATE(809), + [sym_generic_expression] = STATE(809), + [sym_subscript_expression] = STATE(877), + [sym_call_expression] = STATE(877), + [sym_gnu_asm_expression] = STATE(809), + [sym_field_expression] = STATE(877), + [sym_compound_literal_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(877), + [sym_char_literal] = STATE(809), + [sym_concatenated_string] = STATE(809), + [sym_string_literal] = STATE(573), + [sym_null] = STATE(809), + [aux_sym_attributed_declarator_repeat1] = STATE(465), + [sym_identifier] = ACTIONS(1568), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -70065,88 +70802,95 @@ 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(49), - [anon_sym_signed] = ACTIONS(1922), - [anon_sym_unsigned] = ACTIONS(1922), - [anon_sym_long] = ACTIONS(1922), - [anon_sym_short] = ACTIONS(1922), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [sym_primitive_type] = ACTIONS(51), - [anon_sym_enum] = ACTIONS(1924), - [anon_sym_struct] = ACTIONS(55), - [anon_sym_union] = ACTIONS(57), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(83), - [anon_sym___alignof__] = ACTIONS(85), - [anon_sym___alignof] = ACTIONS(85), - [anon_sym__alignof] = ACTIONS(85), - [anon_sym_alignof] = ACTIONS(85), - [anon_sym__Alignof] = ACTIONS(85), - [anon_sym_offsetof] = ACTIONS(87), - [anon_sym__Generic] = ACTIONS(89), - [anon_sym_asm] = ACTIONS(91), - [anon_sym___asm__] = ACTIONS(91), - [sym_number_literal] = ACTIONS(159), - [anon_sym_L_SQUOTE] = ACTIONS(95), - [anon_sym_u_SQUOTE] = ACTIONS(95), - [anon_sym_U_SQUOTE] = ACTIONS(95), - [anon_sym_u8_SQUOTE] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(95), - [anon_sym_L_DQUOTE] = ACTIONS(97), - [anon_sym_u_DQUOTE] = ACTIONS(97), - [anon_sym_U_DQUOTE] = ACTIONS(97), - [anon_sym_u8_DQUOTE] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(97), - [sym_true] = ACTIONS(161), - [sym_false] = ACTIONS(161), - [anon_sym_NULL] = ACTIONS(101), - [anon_sym_nullptr] = ACTIONS(101), + [anon_sym_SEMI] = ACTIONS(623), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1566), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_if] = ACTIONS(1285), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_case] = ACTIONS(1570), + [anon_sym_default] = ACTIONS(1572), + [anon_sym_while] = ACTIONS(1287), + [anon_sym_do] = ACTIONS(71), + [anon_sym_for] = ACTIONS(1289), + [anon_sym_return] = ACTIONS(75), + [anon_sym_break] = ACTIONS(77), + [anon_sym_continue] = ACTIONS(79), + [anon_sym_goto] = ACTIONS(81), + [anon_sym___try] = ACTIONS(1291), + [anon_sym___leave] = ACTIONS(659), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [sym_number_literal] = ACTIONS(161), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(163), + [sym_false] = ACTIONS(163), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [491] = { - [sym_type_qualifier] = STATE(1287), - [sym__type_specifier] = STATE(1314), - [sym_sized_type_specifier] = STATE(1106), - [sym_enum_specifier] = STATE(1106), - [sym_struct_specifier] = STATE(1106), - [sym_union_specifier] = STATE(1106), - [sym__expression] = STATE(1208), - [sym__expression_not_binary] = STATE(792), - [sym_comma_expression] = STATE(2076), - [sym_conditional_expression] = STATE(792), - [sym_assignment_expression] = STATE(792), - [sym_pointer_expression] = STATE(901), - [sym_unary_expression] = STATE(792), - [sym_binary_expression] = STATE(792), - [sym_update_expression] = STATE(792), - [sym_cast_expression] = STATE(792), - [sym_type_descriptor] = STATE(2029), - [sym_sizeof_expression] = STATE(792), - [sym_alignof_expression] = STATE(792), - [sym_offsetof_expression] = STATE(792), - [sym_generic_expression] = STATE(792), - [sym_subscript_expression] = STATE(901), - [sym_call_expression] = STATE(901), - [sym_gnu_asm_expression] = STATE(792), - [sym_field_expression] = STATE(901), - [sym_compound_literal_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(901), - [sym_char_literal] = STATE(792), - [sym_concatenated_string] = STATE(792), - [sym_string_literal] = STATE(675), - [sym_null] = STATE(792), - [sym_macro_type_specifier] = STATE(1106), - [aux_sym__type_definition_type_repeat1] = STATE(1287), - [aux_sym_sized_type_specifier_repeat1] = STATE(1323), - [sym_identifier] = ACTIONS(1920), + [477] = { + [sym_attribute_declaration] = STATE(435), + [sym_compound_statement] = STATE(108), + [sym_attributed_statement] = STATE(108), + [sym_labeled_statement] = STATE(108), + [sym_expression_statement] = STATE(108), + [sym_if_statement] = STATE(108), + [sym_switch_statement] = STATE(108), + [sym_case_statement] = STATE(108), + [sym_while_statement] = STATE(108), + [sym_do_statement] = STATE(108), + [sym_for_statement] = STATE(108), + [sym_return_statement] = STATE(108), + [sym_break_statement] = STATE(108), + [sym_continue_statement] = STATE(108), + [sym_goto_statement] = STATE(108), + [sym_seh_try_statement] = STATE(108), + [sym_seh_leave_statement] = STATE(108), + [sym__expression] = STATE(1239), + [sym__expression_not_binary] = STATE(809), + [sym_comma_expression] = STATE(2249), + [sym_conditional_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_pointer_expression] = STATE(877), + [sym_unary_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_update_expression] = STATE(809), + [sym_cast_expression] = STATE(809), + [sym_sizeof_expression] = STATE(809), + [sym_alignof_expression] = STATE(809), + [sym_offsetof_expression] = STATE(809), + [sym_generic_expression] = STATE(809), + [sym_subscript_expression] = STATE(877), + [sym_call_expression] = STATE(877), + [sym_gnu_asm_expression] = STATE(809), + [sym_field_expression] = STATE(877), + [sym_compound_literal_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(877), + [sym_char_literal] = STATE(809), + [sym_concatenated_string] = STATE(809), + [sym_string_literal] = STATE(573), + [sym_null] = STATE(809), + [aux_sym_attributed_declarator_repeat1] = STATE(435), + [sym_identifier] = ACTIONS(1574), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -70154,88 +70898,95 @@ 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(49), - [anon_sym_signed] = ACTIONS(1922), - [anon_sym_unsigned] = ACTIONS(1922), - [anon_sym_long] = ACTIONS(1922), - [anon_sym_short] = ACTIONS(1922), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [sym_primitive_type] = ACTIONS(51), - [anon_sym_enum] = ACTIONS(1924), - [anon_sym_struct] = ACTIONS(55), - [anon_sym_union] = ACTIONS(57), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(83), - [anon_sym___alignof__] = ACTIONS(85), - [anon_sym___alignof] = ACTIONS(85), - [anon_sym__alignof] = ACTIONS(85), - [anon_sym_alignof] = ACTIONS(85), - [anon_sym__Alignof] = ACTIONS(85), - [anon_sym_offsetof] = ACTIONS(87), - [anon_sym__Generic] = ACTIONS(89), - [anon_sym_asm] = ACTIONS(91), - [anon_sym___asm__] = ACTIONS(91), - [sym_number_literal] = ACTIONS(159), - [anon_sym_L_SQUOTE] = ACTIONS(95), - [anon_sym_u_SQUOTE] = ACTIONS(95), - [anon_sym_U_SQUOTE] = ACTIONS(95), - [anon_sym_u8_SQUOTE] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(95), - [anon_sym_L_DQUOTE] = ACTIONS(97), - [anon_sym_u_DQUOTE] = ACTIONS(97), - [anon_sym_U_DQUOTE] = ACTIONS(97), - [anon_sym_u8_DQUOTE] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(97), - [sym_true] = ACTIONS(161), - [sym_false] = ACTIONS(161), - [anon_sym_NULL] = ACTIONS(101), - [anon_sym_nullptr] = ACTIONS(101), + [anon_sym_SEMI] = ACTIONS(125), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1566), + [anon_sym_LBRACE] = ACTIONS(133), + [anon_sym_if] = ACTIONS(135), + [anon_sym_switch] = ACTIONS(137), + [anon_sym_case] = ACTIONS(139), + [anon_sym_default] = ACTIONS(141), + [anon_sym_while] = ACTIONS(143), + [anon_sym_do] = ACTIONS(145), + [anon_sym_for] = ACTIONS(147), + [anon_sym_return] = ACTIONS(149), + [anon_sym_break] = ACTIONS(151), + [anon_sym_continue] = ACTIONS(153), + [anon_sym_goto] = ACTIONS(155), + [anon_sym___try] = ACTIONS(157), + [anon_sym___leave] = ACTIONS(159), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [sym_number_literal] = ACTIONS(161), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(163), + [sym_false] = ACTIONS(163), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [492] = { - [sym_type_qualifier] = STATE(1287), - [sym__type_specifier] = STATE(1314), - [sym_sized_type_specifier] = STATE(1106), - [sym_enum_specifier] = STATE(1106), - [sym_struct_specifier] = STATE(1106), - [sym_union_specifier] = STATE(1106), - [sym__expression] = STATE(1208), - [sym__expression_not_binary] = STATE(792), - [sym_comma_expression] = STATE(2076), - [sym_conditional_expression] = STATE(792), - [sym_assignment_expression] = STATE(792), - [sym_pointer_expression] = STATE(901), - [sym_unary_expression] = STATE(792), - [sym_binary_expression] = STATE(792), - [sym_update_expression] = STATE(792), - [sym_cast_expression] = STATE(792), - [sym_type_descriptor] = STATE(2040), - [sym_sizeof_expression] = STATE(792), - [sym_alignof_expression] = STATE(792), - [sym_offsetof_expression] = STATE(792), - [sym_generic_expression] = STATE(792), - [sym_subscript_expression] = STATE(901), - [sym_call_expression] = STATE(901), - [sym_gnu_asm_expression] = STATE(792), - [sym_field_expression] = STATE(901), - [sym_compound_literal_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(901), - [sym_char_literal] = STATE(792), - [sym_concatenated_string] = STATE(792), - [sym_string_literal] = STATE(675), - [sym_null] = STATE(792), - [sym_macro_type_specifier] = STATE(1106), - [aux_sym__type_definition_type_repeat1] = STATE(1287), - [aux_sym_sized_type_specifier_repeat1] = STATE(1323), - [sym_identifier] = ACTIONS(1920), + [478] = { + [sym_attribute_declaration] = STATE(439), + [sym_compound_statement] = STATE(290), + [sym_attributed_statement] = STATE(290), + [sym_labeled_statement] = STATE(290), + [sym_expression_statement] = STATE(290), + [sym_if_statement] = STATE(290), + [sym_switch_statement] = STATE(290), + [sym_case_statement] = STATE(290), + [sym_while_statement] = STATE(290), + [sym_do_statement] = STATE(290), + [sym_for_statement] = STATE(290), + [sym_return_statement] = STATE(290), + [sym_break_statement] = STATE(290), + [sym_continue_statement] = STATE(290), + [sym_goto_statement] = STATE(290), + [sym_seh_try_statement] = STATE(290), + [sym_seh_leave_statement] = STATE(290), + [sym__expression] = STATE(1272), + [sym__expression_not_binary] = STATE(809), + [sym_comma_expression] = STATE(2198), + [sym_conditional_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_pointer_expression] = STATE(877), + [sym_unary_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_update_expression] = STATE(809), + [sym_cast_expression] = STATE(809), + [sym_sizeof_expression] = STATE(809), + [sym_alignof_expression] = STATE(809), + [sym_offsetof_expression] = STATE(809), + [sym_generic_expression] = STATE(809), + [sym_subscript_expression] = STATE(877), + [sym_call_expression] = STATE(877), + [sym_gnu_asm_expression] = STATE(809), + [sym_field_expression] = STATE(877), + [sym_compound_literal_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(877), + [sym_char_literal] = STATE(809), + [sym_concatenated_string] = STATE(809), + [sym_string_literal] = STATE(573), + [sym_null] = STATE(809), + [aux_sym_attributed_declarator_repeat1] = STATE(439), + [sym_identifier] = ACTIONS(1564), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -70243,88 +70994,95 @@ 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(49), - [anon_sym_signed] = ACTIONS(1922), - [anon_sym_unsigned] = ACTIONS(1922), - [anon_sym_long] = ACTIONS(1922), - [anon_sym_short] = ACTIONS(1922), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [sym_primitive_type] = ACTIONS(51), - [anon_sym_enum] = ACTIONS(1924), - [anon_sym_struct] = ACTIONS(55), - [anon_sym_union] = ACTIONS(57), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(83), - [anon_sym___alignof__] = ACTIONS(85), - [anon_sym___alignof] = ACTIONS(85), - [anon_sym__alignof] = ACTIONS(85), - [anon_sym_alignof] = ACTIONS(85), - [anon_sym__Alignof] = ACTIONS(85), - [anon_sym_offsetof] = ACTIONS(87), - [anon_sym__Generic] = ACTIONS(89), - [anon_sym_asm] = ACTIONS(91), - [anon_sym___asm__] = ACTIONS(91), - [sym_number_literal] = ACTIONS(159), - [anon_sym_L_SQUOTE] = ACTIONS(95), - [anon_sym_u_SQUOTE] = ACTIONS(95), - [anon_sym_U_SQUOTE] = ACTIONS(95), - [anon_sym_u8_SQUOTE] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(95), - [anon_sym_L_DQUOTE] = ACTIONS(97), - [anon_sym_u_DQUOTE] = ACTIONS(97), - [anon_sym_U_DQUOTE] = ACTIONS(97), - [anon_sym_u8_DQUOTE] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(97), - [sym_true] = ACTIONS(161), - [sym_false] = ACTIONS(161), - [anon_sym_NULL] = ACTIONS(101), - [anon_sym_nullptr] = ACTIONS(101), + [anon_sym_SEMI] = ACTIONS(623), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1566), + [anon_sym_LBRACE] = ACTIONS(631), + [anon_sym_if] = ACTIONS(635), + [anon_sym_switch] = ACTIONS(637), + [anon_sym_case] = ACTIONS(639), + [anon_sym_default] = ACTIONS(641), + [anon_sym_while] = ACTIONS(643), + [anon_sym_do] = ACTIONS(645), + [anon_sym_for] = ACTIONS(647), + [anon_sym_return] = ACTIONS(649), + [anon_sym_break] = ACTIONS(651), + [anon_sym_continue] = ACTIONS(653), + [anon_sym_goto] = ACTIONS(655), + [anon_sym___try] = ACTIONS(657), + [anon_sym___leave] = ACTIONS(659), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [sym_number_literal] = ACTIONS(161), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(163), + [sym_false] = ACTIONS(163), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [493] = { - [sym_type_qualifier] = STATE(1287), - [sym__type_specifier] = STATE(1314), - [sym_sized_type_specifier] = STATE(1106), - [sym_enum_specifier] = STATE(1106), - [sym_struct_specifier] = STATE(1106), - [sym_union_specifier] = STATE(1106), - [sym__expression] = STATE(1208), - [sym__expression_not_binary] = STATE(792), - [sym_comma_expression] = STATE(2076), - [sym_conditional_expression] = STATE(792), - [sym_assignment_expression] = STATE(792), - [sym_pointer_expression] = STATE(901), - [sym_unary_expression] = STATE(792), - [sym_binary_expression] = STATE(792), - [sym_update_expression] = STATE(792), - [sym_cast_expression] = STATE(792), - [sym_type_descriptor] = STATE(2001), - [sym_sizeof_expression] = STATE(792), - [sym_alignof_expression] = STATE(792), - [sym_offsetof_expression] = STATE(792), - [sym_generic_expression] = STATE(792), - [sym_subscript_expression] = STATE(901), - [sym_call_expression] = STATE(901), - [sym_gnu_asm_expression] = STATE(792), - [sym_field_expression] = STATE(901), - [sym_compound_literal_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(901), - [sym_char_literal] = STATE(792), - [sym_concatenated_string] = STATE(792), - [sym_string_literal] = STATE(675), - [sym_null] = STATE(792), - [sym_macro_type_specifier] = STATE(1106), - [aux_sym__type_definition_type_repeat1] = STATE(1287), - [aux_sym_sized_type_specifier_repeat1] = STATE(1323), - [sym_identifier] = ACTIONS(1920), + [479] = { + [sym_attribute_declaration] = STATE(435), + [sym_compound_statement] = STATE(91), + [sym_attributed_statement] = STATE(102), + [sym_labeled_statement] = STATE(101), + [sym_expression_statement] = STATE(104), + [sym_if_statement] = STATE(94), + [sym_switch_statement] = STATE(95), + [sym_case_statement] = STATE(96), + [sym_while_statement] = STATE(97), + [sym_do_statement] = STATE(98), + [sym_for_statement] = STATE(106), + [sym_return_statement] = STATE(103), + [sym_break_statement] = STATE(124), + [sym_continue_statement] = STATE(120), + [sym_goto_statement] = STATE(117), + [sym_seh_try_statement] = STATE(110), + [sym_seh_leave_statement] = STATE(105), + [sym__expression] = STATE(1239), + [sym__expression_not_binary] = STATE(809), + [sym_comma_expression] = STATE(2249), + [sym_conditional_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_pointer_expression] = STATE(877), + [sym_unary_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_update_expression] = STATE(809), + [sym_cast_expression] = STATE(809), + [sym_sizeof_expression] = STATE(809), + [sym_alignof_expression] = STATE(809), + [sym_offsetof_expression] = STATE(809), + [sym_generic_expression] = STATE(809), + [sym_subscript_expression] = STATE(877), + [sym_call_expression] = STATE(877), + [sym_gnu_asm_expression] = STATE(809), + [sym_field_expression] = STATE(877), + [sym_compound_literal_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(877), + [sym_char_literal] = STATE(809), + [sym_concatenated_string] = STATE(809), + [sym_string_literal] = STATE(573), + [sym_null] = STATE(809), + [aux_sym_attributed_declarator_repeat1] = STATE(435), + [sym_identifier] = ACTIONS(1574), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -70332,177 +71090,1360 @@ 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(49), - [anon_sym_signed] = ACTIONS(1922), - [anon_sym_unsigned] = ACTIONS(1922), - [anon_sym_long] = ACTIONS(1922), - [anon_sym_short] = ACTIONS(1922), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [sym_primitive_type] = ACTIONS(51), - [anon_sym_enum] = ACTIONS(1924), - [anon_sym_struct] = ACTIONS(55), - [anon_sym_union] = ACTIONS(57), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(83), - [anon_sym___alignof__] = ACTIONS(85), - [anon_sym___alignof] = ACTIONS(85), - [anon_sym__alignof] = ACTIONS(85), - [anon_sym_alignof] = ACTIONS(85), - [anon_sym__Alignof] = ACTIONS(85), - [anon_sym_offsetof] = ACTIONS(87), - [anon_sym__Generic] = ACTIONS(89), - [anon_sym_asm] = ACTIONS(91), - [anon_sym___asm__] = ACTIONS(91), - [sym_number_literal] = ACTIONS(159), - [anon_sym_L_SQUOTE] = ACTIONS(95), - [anon_sym_u_SQUOTE] = ACTIONS(95), - [anon_sym_U_SQUOTE] = ACTIONS(95), - [anon_sym_u8_SQUOTE] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(95), - [anon_sym_L_DQUOTE] = ACTIONS(97), - [anon_sym_u_DQUOTE] = ACTIONS(97), - [anon_sym_U_DQUOTE] = ACTIONS(97), - [anon_sym_u8_DQUOTE] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(97), - [sym_true] = ACTIONS(161), - [sym_false] = ACTIONS(161), - [anon_sym_NULL] = ACTIONS(101), - [anon_sym_nullptr] = ACTIONS(101), + [anon_sym_SEMI] = ACTIONS(125), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1566), + [anon_sym_LBRACE] = ACTIONS(133), + [anon_sym_if] = ACTIONS(135), + [anon_sym_switch] = ACTIONS(137), + [anon_sym_case] = ACTIONS(139), + [anon_sym_default] = ACTIONS(141), + [anon_sym_while] = ACTIONS(143), + [anon_sym_do] = ACTIONS(145), + [anon_sym_for] = ACTIONS(147), + [anon_sym_return] = ACTIONS(149), + [anon_sym_break] = ACTIONS(151), + [anon_sym_continue] = ACTIONS(153), + [anon_sym_goto] = ACTIONS(155), + [anon_sym___try] = ACTIONS(157), + [anon_sym___leave] = ACTIONS(159), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [sym_number_literal] = ACTIONS(161), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(163), + [sym_false] = ACTIONS(163), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [494] = { - [sym_type_qualifier] = STATE(1287), - [sym__type_specifier] = STATE(1314), - [sym_sized_type_specifier] = STATE(1106), - [sym_enum_specifier] = STATE(1106), - [sym_struct_specifier] = STATE(1106), - [sym_union_specifier] = STATE(1106), - [sym__expression] = STATE(1208), - [sym__expression_not_binary] = STATE(792), - [sym_comma_expression] = STATE(2076), - [sym_conditional_expression] = STATE(792), - [sym_assignment_expression] = STATE(792), - [sym_pointer_expression] = STATE(901), - [sym_unary_expression] = STATE(792), - [sym_binary_expression] = STATE(792), - [sym_update_expression] = STATE(792), - [sym_cast_expression] = STATE(792), - [sym_type_descriptor] = STATE(1996), - [sym_sizeof_expression] = STATE(792), - [sym_alignof_expression] = STATE(792), - [sym_offsetof_expression] = STATE(792), - [sym_generic_expression] = STATE(792), - [sym_subscript_expression] = STATE(901), - [sym_call_expression] = STATE(901), - [sym_gnu_asm_expression] = STATE(792), - [sym_field_expression] = STATE(901), - [sym_compound_literal_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(901), - [sym_char_literal] = STATE(792), - [sym_concatenated_string] = STATE(792), - [sym_string_literal] = STATE(675), - [sym_null] = STATE(792), - [sym_macro_type_specifier] = STATE(1106), - [aux_sym__type_definition_type_repeat1] = STATE(1287), - [aux_sym_sized_type_specifier_repeat1] = STATE(1323), - [sym_identifier] = ACTIONS(1920), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), + [480] = { + [sym_attribute_declaration] = STATE(440), + [sym_compound_statement] = STATE(197), + [sym_attributed_statement] = STATE(197), + [sym_labeled_statement] = STATE(197), + [sym_expression_statement] = STATE(197), + [sym_if_statement] = STATE(197), + [sym_switch_statement] = STATE(197), + [sym_case_statement] = STATE(197), + [sym_while_statement] = STATE(197), + [sym_do_statement] = STATE(197), + [sym_for_statement] = STATE(197), + [sym_return_statement] = STATE(197), + [sym_break_statement] = STATE(197), + [sym_continue_statement] = STATE(197), + [sym_goto_statement] = STATE(197), + [sym_seh_try_statement] = STATE(197), + [sym_seh_leave_statement] = STATE(197), + [sym__expression] = STATE(1258), + [sym__expression_not_binary] = STATE(809), + [sym_comma_expression] = STATE(2110), + [sym_conditional_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_pointer_expression] = STATE(877), + [sym_unary_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_update_expression] = STATE(809), + [sym_cast_expression] = STATE(809), + [sym_sizeof_expression] = STATE(809), + [sym_alignof_expression] = STATE(809), + [sym_offsetof_expression] = STATE(809), + [sym_generic_expression] = STATE(809), + [sym_subscript_expression] = STATE(877), + [sym_call_expression] = STATE(877), + [sym_gnu_asm_expression] = STATE(809), + [sym_field_expression] = STATE(877), + [sym_compound_literal_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(877), + [sym_char_literal] = STATE(809), + [sym_concatenated_string] = STATE(809), + [sym_string_literal] = STATE(573), + [sym_null] = STATE(809), + [aux_sym_attributed_declarator_repeat1] = STATE(440), + [sym_identifier] = ACTIONS(1770), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = 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(49), - [anon_sym_signed] = ACTIONS(1922), - [anon_sym_unsigned] = ACTIONS(1922), - [anon_sym_long] = ACTIONS(1922), - [anon_sym_short] = ACTIONS(1922), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [sym_primitive_type] = ACTIONS(51), - [anon_sym_enum] = ACTIONS(1924), - [anon_sym_struct] = ACTIONS(55), - [anon_sym_union] = ACTIONS(57), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(83), - [anon_sym___alignof__] = ACTIONS(85), - [anon_sym___alignof] = ACTIONS(85), - [anon_sym__alignof] = ACTIONS(85), - [anon_sym_alignof] = ACTIONS(85), - [anon_sym__Alignof] = ACTIONS(85), - [anon_sym_offsetof] = ACTIONS(87), - [anon_sym__Generic] = ACTIONS(89), - [anon_sym_asm] = ACTIONS(91), - [anon_sym___asm__] = ACTIONS(91), - [sym_number_literal] = ACTIONS(159), - [anon_sym_L_SQUOTE] = ACTIONS(95), - [anon_sym_u_SQUOTE] = ACTIONS(95), - [anon_sym_U_SQUOTE] = ACTIONS(95), - [anon_sym_u8_SQUOTE] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(95), - [anon_sym_L_DQUOTE] = ACTIONS(97), - [anon_sym_u_DQUOTE] = ACTIONS(97), - [anon_sym_U_DQUOTE] = ACTIONS(97), - [anon_sym_u8_DQUOTE] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(97), - [sym_true] = ACTIONS(161), - [sym_false] = ACTIONS(161), - [anon_sym_NULL] = ACTIONS(101), - [anon_sym_nullptr] = ACTIONS(101), + [anon_sym_SEMI] = ACTIONS(197), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1566), + [anon_sym_LBRACE] = ACTIONS(205), + [anon_sym_if] = ACTIONS(207), + [anon_sym_switch] = ACTIONS(209), + [anon_sym_case] = ACTIONS(211), + [anon_sym_default] = ACTIONS(213), + [anon_sym_while] = ACTIONS(215), + [anon_sym_do] = ACTIONS(217), + [anon_sym_for] = ACTIONS(219), + [anon_sym_return] = ACTIONS(221), + [anon_sym_break] = ACTIONS(223), + [anon_sym_continue] = ACTIONS(225), + [anon_sym_goto] = ACTIONS(227), + [anon_sym___try] = ACTIONS(229), + [anon_sym___leave] = ACTIONS(231), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [sym_number_literal] = ACTIONS(161), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(163), + [sym_false] = ACTIONS(163), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [495] = { - [sym_type_qualifier] = STATE(1287), - [sym__type_specifier] = STATE(1314), - [sym_sized_type_specifier] = STATE(1106), - [sym_enum_specifier] = STATE(1106), - [sym_struct_specifier] = STATE(1106), - [sym_union_specifier] = STATE(1106), - [sym__expression] = STATE(1208), - [sym__expression_not_binary] = STATE(792), - [sym_comma_expression] = STATE(2076), - [sym_conditional_expression] = STATE(792), - [sym_assignment_expression] = STATE(792), - [sym_pointer_expression] = STATE(901), - [sym_unary_expression] = STATE(792), - [sym_binary_expression] = STATE(792), - [sym_update_expression] = STATE(792), - [sym_cast_expression] = STATE(792), - [sym_type_descriptor] = STATE(2224), - [sym_sizeof_expression] = STATE(792), - [sym_alignof_expression] = STATE(792), - [sym_offsetof_expression] = STATE(792), - [sym_generic_expression] = STATE(792), - [sym_subscript_expression] = STATE(901), - [sym_call_expression] = STATE(901), - [sym_gnu_asm_expression] = STATE(792), - [sym_field_expression] = STATE(901), - [sym_compound_literal_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(901), - [sym_char_literal] = STATE(792), - [sym_concatenated_string] = STATE(792), - [sym_string_literal] = STATE(675), - [sym_null] = STATE(792), - [sym_macro_type_specifier] = STATE(1106), - [aux_sym__type_definition_type_repeat1] = STATE(1287), - [aux_sym_sized_type_specifier_repeat1] = STATE(1323), - [sym_identifier] = ACTIONS(1920), + [481] = { + [sym__expression] = STATE(1139), + [sym__expression_not_binary] = STATE(809), + [sym_conditional_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_pointer_expression] = STATE(809), + [sym_unary_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_update_expression] = STATE(809), + [sym_cast_expression] = STATE(809), + [sym_sizeof_expression] = STATE(809), + [sym_alignof_expression] = STATE(809), + [sym_offsetof_expression] = STATE(809), + [sym_generic_expression] = STATE(809), + [sym_subscript_expression] = STATE(809), + [sym_call_expression] = STATE(809), + [sym_gnu_asm_expression] = STATE(809), + [sym_field_expression] = STATE(809), + [sym_compound_literal_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(809), + [sym_initializer_list] = STATE(811), + [sym_char_literal] = STATE(809), + [sym_concatenated_string] = STATE(809), + [sym_string_literal] = STATE(573), + [sym_null] = STATE(809), + [sym_identifier] = ACTIONS(1536), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1538), + [anon_sym_LPAREN2] = ACTIONS(1538), + [anon_sym_BANG] = ACTIONS(1917), + [anon_sym_TILDE] = ACTIONS(1919), + [anon_sym_DASH] = ACTIONS(1544), + [anon_sym_PLUS] = ACTIONS(1544), + [anon_sym_STAR] = ACTIONS(1544), + [anon_sym_SLASH] = ACTIONS(1544), + [anon_sym_PERCENT] = ACTIONS(1544), + [anon_sym_PIPE_PIPE] = ACTIONS(1538), + [anon_sym_AMP_AMP] = ACTIONS(1538), + [anon_sym_PIPE] = ACTIONS(1544), + [anon_sym_CARET] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(1544), + [anon_sym_EQ_EQ] = ACTIONS(1538), + [anon_sym_BANG_EQ] = ACTIONS(1538), + [anon_sym_GT] = ACTIONS(1544), + [anon_sym_GT_EQ] = ACTIONS(1538), + [anon_sym_LT_EQ] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(1544), + [anon_sym_LT_LT] = ACTIONS(1544), + [anon_sym_GT_GT] = ACTIONS(1544), + [anon_sym_LBRACE] = ACTIONS(1546), + [anon_sym_LBRACK] = ACTIONS(1538), + [anon_sym_RBRACK] = ACTIONS(1538), + [anon_sym_EQ] = ACTIONS(1544), + [anon_sym_QMARK] = ACTIONS(1538), + [anon_sym_STAR_EQ] = ACTIONS(1538), + [anon_sym_SLASH_EQ] = ACTIONS(1538), + [anon_sym_PERCENT_EQ] = ACTIONS(1538), + [anon_sym_PLUS_EQ] = ACTIONS(1538), + [anon_sym_DASH_EQ] = ACTIONS(1538), + [anon_sym_LT_LT_EQ] = ACTIONS(1538), + [anon_sym_GT_GT_EQ] = ACTIONS(1538), + [anon_sym_AMP_EQ] = ACTIONS(1538), + [anon_sym_CARET_EQ] = ACTIONS(1538), + [anon_sym_PIPE_EQ] = ACTIONS(1538), + [anon_sym_DASH_DASH] = ACTIONS(1538), + [anon_sym_PLUS_PLUS] = ACTIONS(1538), + [anon_sym_sizeof] = ACTIONS(1921), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [anon_sym_DOT] = ACTIONS(1544), + [anon_sym_DASH_GT] = ACTIONS(1538), + [sym_number_literal] = ACTIONS(161), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(163), + [sym_false] = ACTIONS(163), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + }, + [482] = { + [sym_identifier] = ACTIONS(1923), + [anon_sym_COMMA] = ACTIONS(1925), + [anon_sym_RPAREN] = ACTIONS(1925), + [anon_sym_LPAREN2] = ACTIONS(1925), + [anon_sym_BANG] = ACTIONS(1925), + [anon_sym_TILDE] = ACTIONS(1925), + [anon_sym_DASH] = ACTIONS(1923), + [anon_sym_PLUS] = ACTIONS(1923), + [anon_sym_STAR] = ACTIONS(1925), + [anon_sym_AMP] = ACTIONS(1925), + [anon_sym_SEMI] = ACTIONS(1925), + [anon_sym___extension__] = ACTIONS(1923), + [anon_sym_extern] = ACTIONS(1923), + [anon_sym___attribute__] = ACTIONS(1923), + [anon_sym___scanf] = ACTIONS(1923), + [anon_sym___printf] = ACTIONS(1923), + [anon_sym___read_mostly] = ACTIONS(1923), + [anon_sym___must_hold] = ACTIONS(1923), + [anon_sym___ro_after_init] = ACTIONS(1923), + [anon_sym___init] = ACTIONS(1923), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1925), + [anon_sym___declspec] = ACTIONS(1923), + [anon_sym_LBRACE] = ACTIONS(1925), + [anon_sym_signed] = ACTIONS(1923), + [anon_sym_unsigned] = ACTIONS(1923), + [anon_sym_long] = ACTIONS(1923), + [anon_sym_short] = ACTIONS(1923), + [anon_sym_LBRACK] = ACTIONS(1923), + [anon_sym_EQ] = ACTIONS(1925), + [anon_sym_static] = ACTIONS(1923), + [anon_sym_auto] = ACTIONS(1923), + [anon_sym_register] = ACTIONS(1923), + [anon_sym_inline] = ACTIONS(1923), + [anon_sym___inline] = ACTIONS(1923), + [anon_sym___inline__] = ACTIONS(1923), + [anon_sym___forceinline] = ACTIONS(1923), + [anon_sym_thread_local] = ACTIONS(1923), + [anon_sym___thread] = ACTIONS(1923), + [anon_sym_const] = ACTIONS(1923), + [anon_sym_constexpr] = ACTIONS(1923), + [anon_sym_volatile] = ACTIONS(1923), + [anon_sym_restrict] = ACTIONS(1923), + [anon_sym___restrict__] = ACTIONS(1923), + [anon_sym__Atomic] = ACTIONS(1923), + [anon_sym__Noreturn] = ACTIONS(1923), + [anon_sym_noreturn] = ACTIONS(1923), + [sym_primitive_type] = ACTIONS(1923), + [anon_sym_enum] = ACTIONS(1923), + [anon_sym_COLON] = ACTIONS(1925), + [anon_sym_struct] = ACTIONS(1923), + [anon_sym_union] = ACTIONS(1923), + [anon_sym_if] = ACTIONS(1923), + [anon_sym_switch] = ACTIONS(1923), + [anon_sym_case] = ACTIONS(1923), + [anon_sym_default] = ACTIONS(1923), + [anon_sym_while] = ACTIONS(1923), + [anon_sym_do] = ACTIONS(1923), + [anon_sym_for] = ACTIONS(1923), + [anon_sym_return] = ACTIONS(1923), + [anon_sym_break] = ACTIONS(1923), + [anon_sym_continue] = ACTIONS(1923), + [anon_sym_goto] = ACTIONS(1923), + [anon_sym___try] = ACTIONS(1923), + [anon_sym___leave] = ACTIONS(1923), + [anon_sym_DASH_DASH] = ACTIONS(1925), + [anon_sym_PLUS_PLUS] = ACTIONS(1925), + [anon_sym_sizeof] = ACTIONS(1923), + [anon_sym___alignof__] = ACTIONS(1923), + [anon_sym___alignof] = ACTIONS(1923), + [anon_sym__alignof] = ACTIONS(1923), + [anon_sym_alignof] = ACTIONS(1923), + [anon_sym__Alignof] = ACTIONS(1923), + [anon_sym_offsetof] = ACTIONS(1923), + [anon_sym__Generic] = ACTIONS(1923), + [anon_sym_asm] = ACTIONS(1923), + [anon_sym___asm__] = ACTIONS(1923), + [sym_number_literal] = ACTIONS(1925), + [anon_sym_L_SQUOTE] = ACTIONS(1925), + [anon_sym_u_SQUOTE] = ACTIONS(1925), + [anon_sym_U_SQUOTE] = ACTIONS(1925), + [anon_sym_u8_SQUOTE] = ACTIONS(1925), + [anon_sym_SQUOTE] = ACTIONS(1925), + [anon_sym_L_DQUOTE] = ACTIONS(1925), + [anon_sym_u_DQUOTE] = ACTIONS(1925), + [anon_sym_U_DQUOTE] = ACTIONS(1925), + [anon_sym_u8_DQUOTE] = ACTIONS(1925), + [anon_sym_DQUOTE] = ACTIONS(1925), + [sym_true] = ACTIONS(1923), + [sym_false] = ACTIONS(1923), + [anon_sym_NULL] = ACTIONS(1923), + [anon_sym_nullptr] = ACTIONS(1923), + [sym_comment] = ACTIONS(3), + }, + [483] = { + [sym_identifier] = ACTIONS(1927), + [anon_sym_COMMA] = ACTIONS(1929), + [anon_sym_RPAREN] = ACTIONS(1929), + [anon_sym_LPAREN2] = ACTIONS(1929), + [anon_sym_BANG] = ACTIONS(1929), + [anon_sym_TILDE] = ACTIONS(1929), + [anon_sym_DASH] = ACTIONS(1927), + [anon_sym_PLUS] = ACTIONS(1927), + [anon_sym_STAR] = ACTIONS(1929), + [anon_sym_AMP] = ACTIONS(1929), + [anon_sym_SEMI] = ACTIONS(1929), + [anon_sym___extension__] = ACTIONS(1927), + [anon_sym_extern] = ACTIONS(1927), + [anon_sym___attribute__] = ACTIONS(1927), + [anon_sym___scanf] = ACTIONS(1927), + [anon_sym___printf] = ACTIONS(1927), + [anon_sym___read_mostly] = ACTIONS(1927), + [anon_sym___must_hold] = ACTIONS(1927), + [anon_sym___ro_after_init] = ACTIONS(1927), + [anon_sym___init] = ACTIONS(1927), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1929), + [anon_sym___declspec] = ACTIONS(1927), + [anon_sym_LBRACE] = ACTIONS(1929), + [anon_sym_signed] = ACTIONS(1927), + [anon_sym_unsigned] = ACTIONS(1927), + [anon_sym_long] = ACTIONS(1927), + [anon_sym_short] = ACTIONS(1927), + [anon_sym_LBRACK] = ACTIONS(1927), + [anon_sym_EQ] = ACTIONS(1929), + [anon_sym_static] = ACTIONS(1927), + [anon_sym_auto] = ACTIONS(1927), + [anon_sym_register] = ACTIONS(1927), + [anon_sym_inline] = ACTIONS(1927), + [anon_sym___inline] = ACTIONS(1927), + [anon_sym___inline__] = ACTIONS(1927), + [anon_sym___forceinline] = ACTIONS(1927), + [anon_sym_thread_local] = ACTIONS(1927), + [anon_sym___thread] = ACTIONS(1927), + [anon_sym_const] = ACTIONS(1927), + [anon_sym_constexpr] = ACTIONS(1927), + [anon_sym_volatile] = ACTIONS(1927), + [anon_sym_restrict] = ACTIONS(1927), + [anon_sym___restrict__] = ACTIONS(1927), + [anon_sym__Atomic] = ACTIONS(1927), + [anon_sym__Noreturn] = ACTIONS(1927), + [anon_sym_noreturn] = ACTIONS(1927), + [sym_primitive_type] = ACTIONS(1927), + [anon_sym_enum] = ACTIONS(1927), + [anon_sym_COLON] = ACTIONS(1929), + [anon_sym_struct] = ACTIONS(1927), + [anon_sym_union] = ACTIONS(1927), + [anon_sym_if] = ACTIONS(1927), + [anon_sym_switch] = ACTIONS(1927), + [anon_sym_case] = ACTIONS(1927), + [anon_sym_default] = ACTIONS(1927), + [anon_sym_while] = ACTIONS(1927), + [anon_sym_do] = ACTIONS(1927), + [anon_sym_for] = ACTIONS(1927), + [anon_sym_return] = ACTIONS(1927), + [anon_sym_break] = ACTIONS(1927), + [anon_sym_continue] = ACTIONS(1927), + [anon_sym_goto] = ACTIONS(1927), + [anon_sym___try] = ACTIONS(1927), + [anon_sym___leave] = ACTIONS(1927), + [anon_sym_DASH_DASH] = ACTIONS(1929), + [anon_sym_PLUS_PLUS] = ACTIONS(1929), + [anon_sym_sizeof] = ACTIONS(1927), + [anon_sym___alignof__] = ACTIONS(1927), + [anon_sym___alignof] = ACTIONS(1927), + [anon_sym__alignof] = ACTIONS(1927), + [anon_sym_alignof] = ACTIONS(1927), + [anon_sym__Alignof] = ACTIONS(1927), + [anon_sym_offsetof] = ACTIONS(1927), + [anon_sym__Generic] = ACTIONS(1927), + [anon_sym_asm] = ACTIONS(1927), + [anon_sym___asm__] = ACTIONS(1927), + [sym_number_literal] = ACTIONS(1929), + [anon_sym_L_SQUOTE] = ACTIONS(1929), + [anon_sym_u_SQUOTE] = ACTIONS(1929), + [anon_sym_U_SQUOTE] = ACTIONS(1929), + [anon_sym_u8_SQUOTE] = ACTIONS(1929), + [anon_sym_SQUOTE] = ACTIONS(1929), + [anon_sym_L_DQUOTE] = ACTIONS(1929), + [anon_sym_u_DQUOTE] = ACTIONS(1929), + [anon_sym_U_DQUOTE] = ACTIONS(1929), + [anon_sym_u8_DQUOTE] = ACTIONS(1929), + [anon_sym_DQUOTE] = ACTIONS(1929), + [sym_true] = ACTIONS(1927), + [sym_false] = ACTIONS(1927), + [anon_sym_NULL] = ACTIONS(1927), + [anon_sym_nullptr] = ACTIONS(1927), + [sym_comment] = ACTIONS(3), + }, + [484] = { + [sym__expression] = STATE(835), + [sym__expression_not_binary] = STATE(809), + [sym_conditional_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_pointer_expression] = STATE(877), + [sym_unary_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_update_expression] = STATE(809), + [sym_cast_expression] = STATE(809), + [sym_sizeof_expression] = STATE(809), + [sym_alignof_expression] = STATE(809), + [sym_offsetof_expression] = STATE(809), + [sym_generic_expression] = STATE(809), + [sym_subscript_expression] = STATE(877), + [sym_call_expression] = STATE(877), + [sym_gnu_asm_expression] = STATE(809), + [sym_field_expression] = STATE(877), + [sym_compound_literal_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(877), + [sym_initializer_list] = STATE(811), + [sym_char_literal] = STATE(809), + [sym_concatenated_string] = STATE(809), + [sym_string_literal] = STATE(573), + [sym_null] = STATE(809), + [sym_identifier] = ACTIONS(1931), + [anon_sym_COMMA] = ACTIONS(1538), + [anon_sym_RPAREN] = ACTIONS(1538), + [anon_sym_LPAREN2] = ACTIONS(1538), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(1544), + [anon_sym_PLUS] = ACTIONS(1544), + [anon_sym_STAR] = ACTIONS(1538), + [anon_sym_SLASH] = ACTIONS(1544), + [anon_sym_PERCENT] = ACTIONS(1538), + [anon_sym_PIPE_PIPE] = ACTIONS(1538), + [anon_sym_AMP_AMP] = ACTIONS(1538), + [anon_sym_PIPE] = ACTIONS(1544), + [anon_sym_CARET] = ACTIONS(1538), + [anon_sym_AMP] = ACTIONS(1544), + [anon_sym_EQ_EQ] = ACTIONS(1538), + [anon_sym_BANG_EQ] = ACTIONS(1538), + [anon_sym_GT] = ACTIONS(1544), + [anon_sym_GT_EQ] = ACTIONS(1538), + [anon_sym_LT_EQ] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(1544), + [anon_sym_LT_LT] = ACTIONS(1538), + [anon_sym_GT_GT] = ACTIONS(1538), + [anon_sym_SEMI] = ACTIONS(1538), + [anon_sym___attribute__] = ACTIONS(1544), + [anon_sym___scanf] = ACTIONS(1544), + [anon_sym___printf] = ACTIONS(1544), + [anon_sym___read_mostly] = ACTIONS(1544), + [anon_sym___must_hold] = ACTIONS(1544), + [anon_sym___ro_after_init] = ACTIONS(1544), + [anon_sym___init] = ACTIONS(1544), + [anon_sym_LBRACE] = ACTIONS(1546), + [anon_sym_RBRACE] = ACTIONS(1538), + [anon_sym_LBRACK] = ACTIONS(1538), + [anon_sym_COLON] = ACTIONS(1538), + [anon_sym_QMARK] = ACTIONS(1538), + [anon_sym_DASH_DASH] = ACTIONS(1538), + [anon_sym_PLUS_PLUS] = ACTIONS(1538), + [anon_sym_sizeof] = ACTIONS(85), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [anon_sym_DOT] = ACTIONS(1544), + [anon_sym_DASH_GT] = ACTIONS(1538), + [sym_number_literal] = ACTIONS(161), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(163), + [sym_false] = ACTIONS(163), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + }, + [485] = { + [sym_else_clause] = STATE(302), + [sym_identifier] = ACTIONS(1314), + [anon_sym_LPAREN2] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(1316), + [anon_sym_TILDE] = ACTIONS(1316), + [anon_sym_DASH] = ACTIONS(1314), + [anon_sym_PLUS] = ACTIONS(1314), + [anon_sym_STAR] = ACTIONS(1316), + [anon_sym_AMP] = ACTIONS(1316), + [anon_sym_SEMI] = ACTIONS(1316), + [anon_sym___extension__] = ACTIONS(1314), + [anon_sym_typedef] = ACTIONS(1314), + [anon_sym_extern] = ACTIONS(1314), + [anon_sym___attribute__] = ACTIONS(1314), + [anon_sym___scanf] = ACTIONS(1314), + [anon_sym___printf] = ACTIONS(1314), + [anon_sym___read_mostly] = ACTIONS(1314), + [anon_sym___must_hold] = ACTIONS(1314), + [anon_sym___ro_after_init] = ACTIONS(1314), + [anon_sym___init] = ACTIONS(1314), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1316), + [anon_sym___declspec] = ACTIONS(1314), + [anon_sym_LBRACE] = ACTIONS(1316), + [anon_sym_signed] = ACTIONS(1314), + [anon_sym_unsigned] = ACTIONS(1314), + [anon_sym_long] = ACTIONS(1314), + [anon_sym_short] = ACTIONS(1314), + [anon_sym_static] = ACTIONS(1314), + [anon_sym_auto] = ACTIONS(1314), + [anon_sym_register] = ACTIONS(1314), + [anon_sym_inline] = ACTIONS(1314), + [anon_sym___inline] = ACTIONS(1314), + [anon_sym___inline__] = ACTIONS(1314), + [anon_sym___forceinline] = ACTIONS(1314), + [anon_sym_thread_local] = ACTIONS(1314), + [anon_sym___thread] = ACTIONS(1314), + [anon_sym_const] = ACTIONS(1314), + [anon_sym_constexpr] = ACTIONS(1314), + [anon_sym_volatile] = ACTIONS(1314), + [anon_sym_restrict] = ACTIONS(1314), + [anon_sym___restrict__] = ACTIONS(1314), + [anon_sym__Atomic] = ACTIONS(1314), + [anon_sym__Noreturn] = ACTIONS(1314), + [anon_sym_noreturn] = ACTIONS(1314), + [sym_primitive_type] = ACTIONS(1314), + [anon_sym_enum] = ACTIONS(1314), + [anon_sym_struct] = ACTIONS(1314), + [anon_sym_union] = ACTIONS(1314), + [anon_sym_if] = ACTIONS(1314), + [anon_sym_else] = ACTIONS(1933), + [anon_sym_switch] = ACTIONS(1314), + [anon_sym_while] = ACTIONS(1314), + [anon_sym_do] = ACTIONS(1314), + [anon_sym_for] = ACTIONS(1314), + [anon_sym_return] = ACTIONS(1314), + [anon_sym_break] = ACTIONS(1314), + [anon_sym_continue] = ACTIONS(1314), + [anon_sym_goto] = ACTIONS(1314), + [anon_sym___try] = ACTIONS(1314), + [anon_sym___leave] = ACTIONS(1314), + [anon_sym_DASH_DASH] = ACTIONS(1316), + [anon_sym_PLUS_PLUS] = ACTIONS(1316), + [anon_sym_sizeof] = ACTIONS(1314), + [anon_sym___alignof__] = ACTIONS(1314), + [anon_sym___alignof] = ACTIONS(1314), + [anon_sym__alignof] = ACTIONS(1314), + [anon_sym_alignof] = ACTIONS(1314), + [anon_sym__Alignof] = ACTIONS(1314), + [anon_sym_offsetof] = ACTIONS(1314), + [anon_sym__Generic] = ACTIONS(1314), + [anon_sym_asm] = ACTIONS(1314), + [anon_sym___asm__] = ACTIONS(1314), + [sym_number_literal] = ACTIONS(1316), + [anon_sym_L_SQUOTE] = ACTIONS(1316), + [anon_sym_u_SQUOTE] = ACTIONS(1316), + [anon_sym_U_SQUOTE] = ACTIONS(1316), + [anon_sym_u8_SQUOTE] = ACTIONS(1316), + [anon_sym_SQUOTE] = ACTIONS(1316), + [anon_sym_L_DQUOTE] = ACTIONS(1316), + [anon_sym_u_DQUOTE] = ACTIONS(1316), + [anon_sym_U_DQUOTE] = ACTIONS(1316), + [anon_sym_u8_DQUOTE] = ACTIONS(1316), + [anon_sym_DQUOTE] = ACTIONS(1316), + [sym_true] = ACTIONS(1314), + [sym_false] = ACTIONS(1314), + [anon_sym_NULL] = ACTIONS(1314), + [anon_sym_nullptr] = ACTIONS(1314), + [sym_comment] = ACTIONS(3), + }, + [486] = { + [sym_type_qualifier] = STATE(1299), + [sym__type_specifier] = STATE(1333), + [sym_sized_type_specifier] = STATE(1069), + [sym_enum_specifier] = STATE(1069), + [sym_struct_specifier] = STATE(1069), + [sym_union_specifier] = STATE(1069), + [sym__expression] = STATE(1261), + [sym__expression_not_binary] = STATE(809), + [sym_comma_expression] = STATE(2234), + [sym_conditional_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_pointer_expression] = STATE(877), + [sym_unary_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_update_expression] = STATE(809), + [sym_cast_expression] = STATE(809), + [sym_type_descriptor] = STATE(2255), + [sym_sizeof_expression] = STATE(809), + [sym_alignof_expression] = STATE(809), + [sym_offsetof_expression] = STATE(809), + [sym_generic_expression] = STATE(809), + [sym_subscript_expression] = STATE(877), + [sym_call_expression] = STATE(877), + [sym_gnu_asm_expression] = STATE(809), + [sym_field_expression] = STATE(877), + [sym_compound_literal_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(877), + [sym_char_literal] = STATE(809), + [sym_concatenated_string] = STATE(809), + [sym_string_literal] = STATE(573), + [sym_null] = STATE(809), + [sym_macro_type_specifier] = STATE(1069), + [aux_sym__type_definition_type_repeat1] = STATE(1299), + [aux_sym_sized_type_specifier_repeat1] = STATE(1339), + [sym_identifier] = ACTIONS(1935), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = 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(1937), + [anon_sym_unsigned] = ACTIONS(1937), + [anon_sym_long] = ACTIONS(1937), + [anon_sym_short] = ACTIONS(1937), + [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), + [sym_primitive_type] = ACTIONS(53), + [anon_sym_enum] = ACTIONS(1939), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [sym_number_literal] = ACTIONS(161), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(163), + [sym_false] = ACTIONS(163), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + }, + [487] = { + [sym_type_qualifier] = STATE(1299), + [sym__type_specifier] = STATE(1333), + [sym_sized_type_specifier] = STATE(1069), + [sym_enum_specifier] = STATE(1069), + [sym_struct_specifier] = STATE(1069), + [sym_union_specifier] = STATE(1069), + [sym__expression] = STATE(1238), + [sym__expression_not_binary] = STATE(809), + [sym_comma_expression] = STATE(2257), + [sym_conditional_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_pointer_expression] = STATE(877), + [sym_unary_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_update_expression] = STATE(809), + [sym_cast_expression] = STATE(809), + [sym_type_descriptor] = STATE(2007), + [sym_sizeof_expression] = STATE(809), + [sym_alignof_expression] = STATE(809), + [sym_offsetof_expression] = STATE(809), + [sym_generic_expression] = STATE(809), + [sym_subscript_expression] = STATE(877), + [sym_call_expression] = STATE(877), + [sym_gnu_asm_expression] = STATE(809), + [sym_field_expression] = STATE(877), + [sym_compound_literal_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(877), + [sym_char_literal] = STATE(809), + [sym_concatenated_string] = STATE(809), + [sym_string_literal] = STATE(573), + [sym_null] = STATE(809), + [sym_macro_type_specifier] = STATE(1069), + [aux_sym__type_definition_type_repeat1] = STATE(1299), + [aux_sym_sized_type_specifier_repeat1] = STATE(1339), + [sym_identifier] = ACTIONS(1935), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = 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(1937), + [anon_sym_unsigned] = ACTIONS(1937), + [anon_sym_long] = ACTIONS(1937), + [anon_sym_short] = ACTIONS(1937), + [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), + [sym_primitive_type] = ACTIONS(53), + [anon_sym_enum] = ACTIONS(1939), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [sym_number_literal] = ACTIONS(161), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(163), + [sym_false] = ACTIONS(163), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + }, + [488] = { + [sym_type_qualifier] = STATE(1299), + [sym__type_specifier] = STATE(1333), + [sym_sized_type_specifier] = STATE(1069), + [sym_enum_specifier] = STATE(1069), + [sym_struct_specifier] = STATE(1069), + [sym_union_specifier] = STATE(1069), + [sym__expression] = STATE(1261), + [sym__expression_not_binary] = STATE(809), + [sym_comma_expression] = STATE(2234), + [sym_conditional_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_pointer_expression] = STATE(877), + [sym_unary_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_update_expression] = STATE(809), + [sym_cast_expression] = STATE(809), + [sym_type_descriptor] = STATE(2069), + [sym_sizeof_expression] = STATE(809), + [sym_alignof_expression] = STATE(809), + [sym_offsetof_expression] = STATE(809), + [sym_generic_expression] = STATE(809), + [sym_subscript_expression] = STATE(877), + [sym_call_expression] = STATE(877), + [sym_gnu_asm_expression] = STATE(809), + [sym_field_expression] = STATE(877), + [sym_compound_literal_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(877), + [sym_char_literal] = STATE(809), + [sym_concatenated_string] = STATE(809), + [sym_string_literal] = STATE(573), + [sym_null] = STATE(809), + [sym_macro_type_specifier] = STATE(1069), + [aux_sym__type_definition_type_repeat1] = STATE(1299), + [aux_sym_sized_type_specifier_repeat1] = STATE(1339), + [sym_identifier] = ACTIONS(1935), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = 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(1937), + [anon_sym_unsigned] = ACTIONS(1937), + [anon_sym_long] = ACTIONS(1937), + [anon_sym_short] = ACTIONS(1937), + [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), + [sym_primitive_type] = ACTIONS(53), + [anon_sym_enum] = ACTIONS(1939), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [sym_number_literal] = ACTIONS(161), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(163), + [sym_false] = ACTIONS(163), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + }, + [489] = { + [sym_type_qualifier] = STATE(1299), + [sym__type_specifier] = STATE(1333), + [sym_sized_type_specifier] = STATE(1069), + [sym_enum_specifier] = STATE(1069), + [sym_struct_specifier] = STATE(1069), + [sym_union_specifier] = STATE(1069), + [sym__expression] = STATE(1238), + [sym__expression_not_binary] = STATE(809), + [sym_comma_expression] = STATE(2257), + [sym_conditional_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_pointer_expression] = STATE(877), + [sym_unary_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_update_expression] = STATE(809), + [sym_cast_expression] = STATE(809), + [sym_type_descriptor] = STATE(1999), + [sym_sizeof_expression] = STATE(809), + [sym_alignof_expression] = STATE(809), + [sym_offsetof_expression] = STATE(809), + [sym_generic_expression] = STATE(809), + [sym_subscript_expression] = STATE(877), + [sym_call_expression] = STATE(877), + [sym_gnu_asm_expression] = STATE(809), + [sym_field_expression] = STATE(877), + [sym_compound_literal_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(877), + [sym_char_literal] = STATE(809), + [sym_concatenated_string] = STATE(809), + [sym_string_literal] = STATE(573), + [sym_null] = STATE(809), + [sym_macro_type_specifier] = STATE(1069), + [aux_sym__type_definition_type_repeat1] = STATE(1299), + [aux_sym_sized_type_specifier_repeat1] = STATE(1339), + [sym_identifier] = ACTIONS(1935), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = 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(1937), + [anon_sym_unsigned] = ACTIONS(1937), + [anon_sym_long] = ACTIONS(1937), + [anon_sym_short] = ACTIONS(1937), + [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), + [sym_primitive_type] = ACTIONS(53), + [anon_sym_enum] = ACTIONS(1939), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [sym_number_literal] = ACTIONS(161), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(163), + [sym_false] = ACTIONS(163), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + }, + [490] = { + [sym_type_qualifier] = STATE(1299), + [sym__type_specifier] = STATE(1333), + [sym_sized_type_specifier] = STATE(1069), + [sym_enum_specifier] = STATE(1069), + [sym_struct_specifier] = STATE(1069), + [sym_union_specifier] = STATE(1069), + [sym__expression] = STATE(1261), + [sym__expression_not_binary] = STATE(809), + [sym_comma_expression] = STATE(2234), + [sym_conditional_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_pointer_expression] = STATE(877), + [sym_unary_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_update_expression] = STATE(809), + [sym_cast_expression] = STATE(809), + [sym_type_descriptor] = STATE(2230), + [sym_sizeof_expression] = STATE(809), + [sym_alignof_expression] = STATE(809), + [sym_offsetof_expression] = STATE(809), + [sym_generic_expression] = STATE(809), + [sym_subscript_expression] = STATE(877), + [sym_call_expression] = STATE(877), + [sym_gnu_asm_expression] = STATE(809), + [sym_field_expression] = STATE(877), + [sym_compound_literal_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(877), + [sym_char_literal] = STATE(809), + [sym_concatenated_string] = STATE(809), + [sym_string_literal] = STATE(573), + [sym_null] = STATE(809), + [sym_macro_type_specifier] = STATE(1069), + [aux_sym__type_definition_type_repeat1] = STATE(1299), + [aux_sym_sized_type_specifier_repeat1] = STATE(1339), + [sym_identifier] = ACTIONS(1935), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = 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(1937), + [anon_sym_unsigned] = ACTIONS(1937), + [anon_sym_long] = ACTIONS(1937), + [anon_sym_short] = ACTIONS(1937), + [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), + [sym_primitive_type] = ACTIONS(53), + [anon_sym_enum] = ACTIONS(1939), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [sym_number_literal] = ACTIONS(161), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(163), + [sym_false] = ACTIONS(163), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + }, + [491] = { + [sym_type_qualifier] = STATE(1299), + [sym__type_specifier] = STATE(1333), + [sym_sized_type_specifier] = STATE(1069), + [sym_enum_specifier] = STATE(1069), + [sym_struct_specifier] = STATE(1069), + [sym_union_specifier] = STATE(1069), + [sym__expression] = STATE(1261), + [sym__expression_not_binary] = STATE(809), + [sym_comma_expression] = STATE(2234), + [sym_conditional_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_pointer_expression] = STATE(877), + [sym_unary_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_update_expression] = STATE(809), + [sym_cast_expression] = STATE(809), + [sym_type_descriptor] = STATE(2263), + [sym_sizeof_expression] = STATE(809), + [sym_alignof_expression] = STATE(809), + [sym_offsetof_expression] = STATE(809), + [sym_generic_expression] = STATE(809), + [sym_subscript_expression] = STATE(877), + [sym_call_expression] = STATE(877), + [sym_gnu_asm_expression] = STATE(809), + [sym_field_expression] = STATE(877), + [sym_compound_literal_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(877), + [sym_char_literal] = STATE(809), + [sym_concatenated_string] = STATE(809), + [sym_string_literal] = STATE(573), + [sym_null] = STATE(809), + [sym_macro_type_specifier] = STATE(1069), + [aux_sym__type_definition_type_repeat1] = STATE(1299), + [aux_sym_sized_type_specifier_repeat1] = STATE(1339), + [sym_identifier] = ACTIONS(1935), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = 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(1937), + [anon_sym_unsigned] = ACTIONS(1937), + [anon_sym_long] = ACTIONS(1937), + [anon_sym_short] = ACTIONS(1937), + [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), + [sym_primitive_type] = ACTIONS(53), + [anon_sym_enum] = ACTIONS(1939), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [sym_number_literal] = ACTIONS(161), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(163), + [sym_false] = ACTIONS(163), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + }, + [492] = { + [sym_type_qualifier] = STATE(1299), + [sym__type_specifier] = STATE(1333), + [sym_sized_type_specifier] = STATE(1069), + [sym_enum_specifier] = STATE(1069), + [sym_struct_specifier] = STATE(1069), + [sym_union_specifier] = STATE(1069), + [sym__expression] = STATE(1261), + [sym__expression_not_binary] = STATE(809), + [sym_comma_expression] = STATE(2234), + [sym_conditional_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_pointer_expression] = STATE(877), + [sym_unary_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_update_expression] = STATE(809), + [sym_cast_expression] = STATE(809), + [sym_type_descriptor] = STATE(2297), + [sym_sizeof_expression] = STATE(809), + [sym_alignof_expression] = STATE(809), + [sym_offsetof_expression] = STATE(809), + [sym_generic_expression] = STATE(809), + [sym_subscript_expression] = STATE(877), + [sym_call_expression] = STATE(877), + [sym_gnu_asm_expression] = STATE(809), + [sym_field_expression] = STATE(877), + [sym_compound_literal_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(877), + [sym_char_literal] = STATE(809), + [sym_concatenated_string] = STATE(809), + [sym_string_literal] = STATE(573), + [sym_null] = STATE(809), + [sym_macro_type_specifier] = STATE(1069), + [aux_sym__type_definition_type_repeat1] = STATE(1299), + [aux_sym_sized_type_specifier_repeat1] = STATE(1339), + [sym_identifier] = ACTIONS(1935), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = 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(1937), + [anon_sym_unsigned] = ACTIONS(1937), + [anon_sym_long] = ACTIONS(1937), + [anon_sym_short] = ACTIONS(1937), + [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), + [sym_primitive_type] = ACTIONS(53), + [anon_sym_enum] = ACTIONS(1939), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [sym_number_literal] = ACTIONS(161), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(163), + [sym_false] = ACTIONS(163), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + }, + [493] = { + [sym_type_qualifier] = STATE(1299), + [sym__type_specifier] = STATE(1333), + [sym_sized_type_specifier] = STATE(1069), + [sym_enum_specifier] = STATE(1069), + [sym_struct_specifier] = STATE(1069), + [sym_union_specifier] = STATE(1069), + [sym__expression] = STATE(1261), + [sym__expression_not_binary] = STATE(809), + [sym_comma_expression] = STATE(2234), + [sym_conditional_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_pointer_expression] = STATE(877), + [sym_unary_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_update_expression] = STATE(809), + [sym_cast_expression] = STATE(809), + [sym_type_descriptor] = STATE(2188), + [sym_sizeof_expression] = STATE(809), + [sym_alignof_expression] = STATE(809), + [sym_offsetof_expression] = STATE(809), + [sym_generic_expression] = STATE(809), + [sym_subscript_expression] = STATE(877), + [sym_call_expression] = STATE(877), + [sym_gnu_asm_expression] = STATE(809), + [sym_field_expression] = STATE(877), + [sym_compound_literal_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(877), + [sym_char_literal] = STATE(809), + [sym_concatenated_string] = STATE(809), + [sym_string_literal] = STATE(573), + [sym_null] = STATE(809), + [sym_macro_type_specifier] = STATE(1069), + [aux_sym__type_definition_type_repeat1] = STATE(1299), + [aux_sym_sized_type_specifier_repeat1] = STATE(1339), + [sym_identifier] = ACTIONS(1935), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = 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(1937), + [anon_sym_unsigned] = ACTIONS(1937), + [anon_sym_long] = ACTIONS(1937), + [anon_sym_short] = ACTIONS(1937), + [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), + [sym_primitive_type] = ACTIONS(53), + [anon_sym_enum] = ACTIONS(1939), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [sym_number_literal] = ACTIONS(161), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(163), + [sym_false] = ACTIONS(163), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + }, + [494] = { + [sym_type_qualifier] = STATE(1299), + [sym__type_specifier] = STATE(1333), + [sym_sized_type_specifier] = STATE(1069), + [sym_enum_specifier] = STATE(1069), + [sym_struct_specifier] = STATE(1069), + [sym_union_specifier] = STATE(1069), + [sym__expression] = STATE(1261), + [sym__expression_not_binary] = STATE(809), + [sym_comma_expression] = STATE(2234), + [sym_conditional_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_pointer_expression] = STATE(877), + [sym_unary_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_update_expression] = STATE(809), + [sym_cast_expression] = STATE(809), + [sym_type_descriptor] = STATE(1997), + [sym_sizeof_expression] = STATE(809), + [sym_alignof_expression] = STATE(809), + [sym_offsetof_expression] = STATE(809), + [sym_generic_expression] = STATE(809), + [sym_subscript_expression] = STATE(877), + [sym_call_expression] = STATE(877), + [sym_gnu_asm_expression] = STATE(809), + [sym_field_expression] = STATE(877), + [sym_compound_literal_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(877), + [sym_char_literal] = STATE(809), + [sym_concatenated_string] = STATE(809), + [sym_string_literal] = STATE(573), + [sym_null] = STATE(809), + [sym_macro_type_specifier] = STATE(1069), + [aux_sym__type_definition_type_repeat1] = STATE(1299), + [aux_sym_sized_type_specifier_repeat1] = STATE(1339), + [sym_identifier] = ACTIONS(1935), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -70510,88 +72451,177 @@ 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(49), - [anon_sym_signed] = ACTIONS(1922), - [anon_sym_unsigned] = ACTIONS(1922), - [anon_sym_long] = ACTIONS(1922), - [anon_sym_short] = ACTIONS(1922), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [sym_primitive_type] = ACTIONS(51), - [anon_sym_enum] = ACTIONS(1924), - [anon_sym_struct] = ACTIONS(55), - [anon_sym_union] = ACTIONS(57), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(83), - [anon_sym___alignof__] = ACTIONS(85), - [anon_sym___alignof] = ACTIONS(85), - [anon_sym__alignof] = ACTIONS(85), - [anon_sym_alignof] = ACTIONS(85), - [anon_sym__Alignof] = ACTIONS(85), - [anon_sym_offsetof] = ACTIONS(87), - [anon_sym__Generic] = ACTIONS(89), - [anon_sym_asm] = ACTIONS(91), - [anon_sym___asm__] = ACTIONS(91), - [sym_number_literal] = ACTIONS(159), - [anon_sym_L_SQUOTE] = ACTIONS(95), - [anon_sym_u_SQUOTE] = ACTIONS(95), - [anon_sym_U_SQUOTE] = ACTIONS(95), - [anon_sym_u8_SQUOTE] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(95), - [anon_sym_L_DQUOTE] = ACTIONS(97), - [anon_sym_u_DQUOTE] = ACTIONS(97), - [anon_sym_U_DQUOTE] = ACTIONS(97), - [anon_sym_u8_DQUOTE] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(97), - [sym_true] = ACTIONS(161), - [sym_false] = ACTIONS(161), - [anon_sym_NULL] = ACTIONS(101), - [anon_sym_nullptr] = ACTIONS(101), + [anon_sym___extension__] = ACTIONS(51), + [anon_sym_signed] = ACTIONS(1937), + [anon_sym_unsigned] = ACTIONS(1937), + [anon_sym_long] = ACTIONS(1937), + [anon_sym_short] = ACTIONS(1937), + [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), + [sym_primitive_type] = ACTIONS(53), + [anon_sym_enum] = ACTIONS(1939), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [sym_number_literal] = ACTIONS(161), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(163), + [sym_false] = ACTIONS(163), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + }, + [495] = { + [sym_identifier] = ACTIONS(1941), + [anon_sym_LPAREN2] = ACTIONS(1944), + [anon_sym_BANG] = ACTIONS(1944), + [anon_sym_TILDE] = ACTIONS(1944), + [anon_sym_DASH] = ACTIONS(1946), + [anon_sym_PLUS] = ACTIONS(1946), + [anon_sym_STAR] = ACTIONS(1944), + [anon_sym_AMP] = ACTIONS(1944), + [anon_sym_SEMI] = ACTIONS(1944), + [anon_sym___extension__] = ACTIONS(1948), + [anon_sym_extern] = ACTIONS(1948), + [anon_sym___attribute__] = ACTIONS(1948), + [anon_sym___scanf] = ACTIONS(1948), + [anon_sym___printf] = ACTIONS(1948), + [anon_sym___read_mostly] = ACTIONS(1948), + [anon_sym___must_hold] = ACTIONS(1948), + [anon_sym___ro_after_init] = ACTIONS(1948), + [anon_sym___init] = ACTIONS(1948), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1950), + [anon_sym___declspec] = ACTIONS(1948), + [anon_sym_LBRACE] = ACTIONS(1944), + [anon_sym_signed] = ACTIONS(1948), + [anon_sym_unsigned] = ACTIONS(1948), + [anon_sym_long] = ACTIONS(1948), + [anon_sym_short] = ACTIONS(1948), + [anon_sym_static] = ACTIONS(1948), + [anon_sym_auto] = ACTIONS(1948), + [anon_sym_register] = ACTIONS(1948), + [anon_sym_inline] = ACTIONS(1948), + [anon_sym___inline] = ACTIONS(1948), + [anon_sym___inline__] = ACTIONS(1948), + [anon_sym___forceinline] = ACTIONS(1948), + [anon_sym_thread_local] = ACTIONS(1948), + [anon_sym___thread] = ACTIONS(1948), + [anon_sym_const] = ACTIONS(1948), + [anon_sym_constexpr] = ACTIONS(1948), + [anon_sym_volatile] = ACTIONS(1948), + [anon_sym_restrict] = ACTIONS(1948), + [anon_sym___restrict__] = ACTIONS(1948), + [anon_sym__Atomic] = ACTIONS(1948), + [anon_sym__Noreturn] = ACTIONS(1948), + [anon_sym_noreturn] = ACTIONS(1948), + [sym_primitive_type] = ACTIONS(1948), + [anon_sym_enum] = ACTIONS(1948), + [anon_sym_struct] = ACTIONS(1948), + [anon_sym_union] = ACTIONS(1948), + [anon_sym_if] = ACTIONS(1946), + [anon_sym_switch] = ACTIONS(1946), + [anon_sym_case] = ACTIONS(1946), + [anon_sym_default] = ACTIONS(1946), + [anon_sym_while] = ACTIONS(1946), + [anon_sym_do] = ACTIONS(1946), + [anon_sym_for] = ACTIONS(1946), + [anon_sym_return] = ACTIONS(1946), + [anon_sym_break] = ACTIONS(1946), + [anon_sym_continue] = ACTIONS(1946), + [anon_sym_goto] = ACTIONS(1946), + [anon_sym___try] = ACTIONS(1946), + [anon_sym___leave] = ACTIONS(1946), + [anon_sym_DASH_DASH] = ACTIONS(1944), + [anon_sym_PLUS_PLUS] = ACTIONS(1944), + [anon_sym_sizeof] = ACTIONS(1946), + [anon_sym___alignof__] = ACTIONS(1946), + [anon_sym___alignof] = ACTIONS(1946), + [anon_sym__alignof] = ACTIONS(1946), + [anon_sym_alignof] = ACTIONS(1946), + [anon_sym__Alignof] = ACTIONS(1946), + [anon_sym_offsetof] = ACTIONS(1946), + [anon_sym__Generic] = ACTIONS(1946), + [anon_sym_asm] = ACTIONS(1946), + [anon_sym___asm__] = ACTIONS(1946), + [sym_number_literal] = ACTIONS(1944), + [anon_sym_L_SQUOTE] = ACTIONS(1944), + [anon_sym_u_SQUOTE] = ACTIONS(1944), + [anon_sym_U_SQUOTE] = ACTIONS(1944), + [anon_sym_u8_SQUOTE] = ACTIONS(1944), + [anon_sym_SQUOTE] = ACTIONS(1944), + [anon_sym_L_DQUOTE] = ACTIONS(1944), + [anon_sym_u_DQUOTE] = ACTIONS(1944), + [anon_sym_U_DQUOTE] = ACTIONS(1944), + [anon_sym_u8_DQUOTE] = ACTIONS(1944), + [anon_sym_DQUOTE] = ACTIONS(1944), + [sym_true] = ACTIONS(1946), + [sym_false] = ACTIONS(1946), + [anon_sym_NULL] = ACTIONS(1946), + [anon_sym_nullptr] = ACTIONS(1946), [sym_comment] = ACTIONS(3), }, [496] = { - [sym_type_qualifier] = STATE(1287), - [sym__type_specifier] = STATE(1314), - [sym_sized_type_specifier] = STATE(1106), - [sym_enum_specifier] = STATE(1106), - [sym_struct_specifier] = STATE(1106), - [sym_union_specifier] = STATE(1106), - [sym__expression] = STATE(1208), - [sym__expression_not_binary] = STATE(792), - [sym_comma_expression] = STATE(2076), - [sym_conditional_expression] = STATE(792), - [sym_assignment_expression] = STATE(792), - [sym_pointer_expression] = STATE(901), - [sym_unary_expression] = STATE(792), - [sym_binary_expression] = STATE(792), - [sym_update_expression] = STATE(792), - [sym_cast_expression] = STATE(792), - [sym_type_descriptor] = STATE(2078), - [sym_sizeof_expression] = STATE(792), - [sym_alignof_expression] = STATE(792), - [sym_offsetof_expression] = STATE(792), - [sym_generic_expression] = STATE(792), - [sym_subscript_expression] = STATE(901), - [sym_call_expression] = STATE(901), - [sym_gnu_asm_expression] = STATE(792), - [sym_field_expression] = STATE(901), - [sym_compound_literal_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(901), - [sym_char_literal] = STATE(792), - [sym_concatenated_string] = STATE(792), - [sym_string_literal] = STATE(675), - [sym_null] = STATE(792), - [sym_macro_type_specifier] = STATE(1106), - [aux_sym__type_definition_type_repeat1] = STATE(1287), - [aux_sym_sized_type_specifier_repeat1] = STATE(1323), - [sym_identifier] = ACTIONS(1920), + [sym_type_qualifier] = STATE(1299), + [sym__type_specifier] = STATE(1333), + [sym_sized_type_specifier] = STATE(1069), + [sym_enum_specifier] = STATE(1069), + [sym_struct_specifier] = STATE(1069), + [sym_union_specifier] = STATE(1069), + [sym__expression] = STATE(1261), + [sym__expression_not_binary] = STATE(809), + [sym_comma_expression] = STATE(2234), + [sym_conditional_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_pointer_expression] = STATE(877), + [sym_unary_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_update_expression] = STATE(809), + [sym_cast_expression] = STATE(809), + [sym_type_descriptor] = STATE(2146), + [sym_sizeof_expression] = STATE(809), + [sym_alignof_expression] = STATE(809), + [sym_offsetof_expression] = STATE(809), + [sym_generic_expression] = STATE(809), + [sym_subscript_expression] = STATE(877), + [sym_call_expression] = STATE(877), + [sym_gnu_asm_expression] = STATE(809), + [sym_field_expression] = STATE(877), + [sym_compound_literal_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(877), + [sym_char_literal] = STATE(809), + [sym_concatenated_string] = STATE(809), + [sym_string_literal] = STATE(573), + [sym_null] = STATE(809), + [sym_macro_type_specifier] = STATE(1069), + [aux_sym__type_definition_type_repeat1] = STATE(1299), + [aux_sym_sized_type_specifier_repeat1] = STATE(1339), + [sym_identifier] = ACTIONS(1935), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -70599,88 +72629,88 @@ 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(49), - [anon_sym_signed] = ACTIONS(1922), - [anon_sym_unsigned] = ACTIONS(1922), - [anon_sym_long] = ACTIONS(1922), - [anon_sym_short] = ACTIONS(1922), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [sym_primitive_type] = ACTIONS(51), - [anon_sym_enum] = ACTIONS(1924), - [anon_sym_struct] = ACTIONS(55), - [anon_sym_union] = ACTIONS(57), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(83), - [anon_sym___alignof__] = ACTIONS(85), - [anon_sym___alignof] = ACTIONS(85), - [anon_sym__alignof] = ACTIONS(85), - [anon_sym_alignof] = ACTIONS(85), - [anon_sym__Alignof] = ACTIONS(85), - [anon_sym_offsetof] = ACTIONS(87), - [anon_sym__Generic] = ACTIONS(89), - [anon_sym_asm] = ACTIONS(91), - [anon_sym___asm__] = ACTIONS(91), - [sym_number_literal] = ACTIONS(159), - [anon_sym_L_SQUOTE] = ACTIONS(95), - [anon_sym_u_SQUOTE] = ACTIONS(95), - [anon_sym_U_SQUOTE] = ACTIONS(95), - [anon_sym_u8_SQUOTE] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(95), - [anon_sym_L_DQUOTE] = ACTIONS(97), - [anon_sym_u_DQUOTE] = ACTIONS(97), - [anon_sym_U_DQUOTE] = ACTIONS(97), - [anon_sym_u8_DQUOTE] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(97), - [sym_true] = ACTIONS(161), - [sym_false] = ACTIONS(161), - [anon_sym_NULL] = ACTIONS(101), - [anon_sym_nullptr] = ACTIONS(101), + [anon_sym___extension__] = ACTIONS(51), + [anon_sym_signed] = ACTIONS(1937), + [anon_sym_unsigned] = ACTIONS(1937), + [anon_sym_long] = ACTIONS(1937), + [anon_sym_short] = ACTIONS(1937), + [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), + [sym_primitive_type] = ACTIONS(53), + [anon_sym_enum] = ACTIONS(1939), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [sym_number_literal] = ACTIONS(161), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(163), + [sym_false] = ACTIONS(163), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, [497] = { - [sym_type_qualifier] = STATE(1287), - [sym__type_specifier] = STATE(1314), - [sym_sized_type_specifier] = STATE(1106), - [sym_enum_specifier] = STATE(1106), - [sym_struct_specifier] = STATE(1106), - [sym_union_specifier] = STATE(1106), - [sym__expression] = STATE(1208), - [sym__expression_not_binary] = STATE(792), - [sym_comma_expression] = STATE(2076), - [sym_conditional_expression] = STATE(792), - [sym_assignment_expression] = STATE(792), - [sym_pointer_expression] = STATE(901), - [sym_unary_expression] = STATE(792), - [sym_binary_expression] = STATE(792), - [sym_update_expression] = STATE(792), - [sym_cast_expression] = STATE(792), - [sym_type_descriptor] = STATE(1953), - [sym_sizeof_expression] = STATE(792), - [sym_alignof_expression] = STATE(792), - [sym_offsetof_expression] = STATE(792), - [sym_generic_expression] = STATE(792), - [sym_subscript_expression] = STATE(901), - [sym_call_expression] = STATE(901), - [sym_gnu_asm_expression] = STATE(792), - [sym_field_expression] = STATE(901), - [sym_compound_literal_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(901), - [sym_char_literal] = STATE(792), - [sym_concatenated_string] = STATE(792), - [sym_string_literal] = STATE(675), - [sym_null] = STATE(792), - [sym_macro_type_specifier] = STATE(1106), - [aux_sym__type_definition_type_repeat1] = STATE(1287), - [aux_sym_sized_type_specifier_repeat1] = STATE(1323), - [sym_identifier] = ACTIONS(1920), + [sym_type_qualifier] = STATE(1299), + [sym__type_specifier] = STATE(1333), + [sym_sized_type_specifier] = STATE(1069), + [sym_enum_specifier] = STATE(1069), + [sym_struct_specifier] = STATE(1069), + [sym_union_specifier] = STATE(1069), + [sym__expression] = STATE(1238), + [sym__expression_not_binary] = STATE(809), + [sym_comma_expression] = STATE(2257), + [sym_conditional_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_pointer_expression] = STATE(877), + [sym_unary_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_update_expression] = STATE(809), + [sym_cast_expression] = STATE(809), + [sym_type_descriptor] = STATE(2025), + [sym_sizeof_expression] = STATE(809), + [sym_alignof_expression] = STATE(809), + [sym_offsetof_expression] = STATE(809), + [sym_generic_expression] = STATE(809), + [sym_subscript_expression] = STATE(877), + [sym_call_expression] = STATE(877), + [sym_gnu_asm_expression] = STATE(809), + [sym_field_expression] = STATE(877), + [sym_compound_literal_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(877), + [sym_char_literal] = STATE(809), + [sym_concatenated_string] = STATE(809), + [sym_string_literal] = STATE(573), + [sym_null] = STATE(809), + [sym_macro_type_specifier] = STATE(1069), + [aux_sym__type_definition_type_repeat1] = STATE(1299), + [aux_sym_sized_type_specifier_repeat1] = STATE(1339), + [sym_identifier] = ACTIONS(1935), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -70688,88 +72718,88 @@ 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(49), - [anon_sym_signed] = ACTIONS(1922), - [anon_sym_unsigned] = ACTIONS(1922), - [anon_sym_long] = ACTIONS(1922), - [anon_sym_short] = ACTIONS(1922), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [sym_primitive_type] = ACTIONS(51), - [anon_sym_enum] = ACTIONS(1924), - [anon_sym_struct] = ACTIONS(55), - [anon_sym_union] = ACTIONS(57), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(83), - [anon_sym___alignof__] = ACTIONS(85), - [anon_sym___alignof] = ACTIONS(85), - [anon_sym__alignof] = ACTIONS(85), - [anon_sym_alignof] = ACTIONS(85), - [anon_sym__Alignof] = ACTIONS(85), - [anon_sym_offsetof] = ACTIONS(87), - [anon_sym__Generic] = ACTIONS(89), - [anon_sym_asm] = ACTIONS(91), - [anon_sym___asm__] = ACTIONS(91), - [sym_number_literal] = ACTIONS(159), - [anon_sym_L_SQUOTE] = ACTIONS(95), - [anon_sym_u_SQUOTE] = ACTIONS(95), - [anon_sym_U_SQUOTE] = ACTIONS(95), - [anon_sym_u8_SQUOTE] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(95), - [anon_sym_L_DQUOTE] = ACTIONS(97), - [anon_sym_u_DQUOTE] = ACTIONS(97), - [anon_sym_U_DQUOTE] = ACTIONS(97), - [anon_sym_u8_DQUOTE] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(97), - [sym_true] = ACTIONS(161), - [sym_false] = ACTIONS(161), - [anon_sym_NULL] = ACTIONS(101), - [anon_sym_nullptr] = ACTIONS(101), + [anon_sym___extension__] = ACTIONS(51), + [anon_sym_signed] = ACTIONS(1937), + [anon_sym_unsigned] = ACTIONS(1937), + [anon_sym_long] = ACTIONS(1937), + [anon_sym_short] = ACTIONS(1937), + [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), + [sym_primitive_type] = ACTIONS(53), + [anon_sym_enum] = ACTIONS(1939), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [sym_number_literal] = ACTIONS(161), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(163), + [sym_false] = ACTIONS(163), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, [498] = { - [sym_type_qualifier] = STATE(1287), - [sym__type_specifier] = STATE(1314), - [sym_sized_type_specifier] = STATE(1106), - [sym_enum_specifier] = STATE(1106), - [sym_struct_specifier] = STATE(1106), - [sym_union_specifier] = STATE(1106), - [sym__expression] = STATE(1247), - [sym__expression_not_binary] = STATE(792), - [sym_comma_expression] = STATE(2041), - [sym_conditional_expression] = STATE(792), - [sym_assignment_expression] = STATE(792), - [sym_pointer_expression] = STATE(901), - [sym_unary_expression] = STATE(792), - [sym_binary_expression] = STATE(792), - [sym_update_expression] = STATE(792), - [sym_cast_expression] = STATE(792), - [sym_type_descriptor] = STATE(1943), - [sym_sizeof_expression] = STATE(792), - [sym_alignof_expression] = STATE(792), - [sym_offsetof_expression] = STATE(792), - [sym_generic_expression] = STATE(792), - [sym_subscript_expression] = STATE(901), - [sym_call_expression] = STATE(901), - [sym_gnu_asm_expression] = STATE(792), - [sym_field_expression] = STATE(901), - [sym_compound_literal_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(901), - [sym_char_literal] = STATE(792), - [sym_concatenated_string] = STATE(792), - [sym_string_literal] = STATE(675), - [sym_null] = STATE(792), - [sym_macro_type_specifier] = STATE(1106), - [aux_sym__type_definition_type_repeat1] = STATE(1287), - [aux_sym_sized_type_specifier_repeat1] = STATE(1323), - [sym_identifier] = ACTIONS(1920), + [sym_type_qualifier] = STATE(1299), + [sym__type_specifier] = STATE(1333), + [sym_sized_type_specifier] = STATE(1069), + [sym_enum_specifier] = STATE(1069), + [sym_struct_specifier] = STATE(1069), + [sym_union_specifier] = STATE(1069), + [sym__expression] = STATE(1261), + [sym__expression_not_binary] = STATE(809), + [sym_comma_expression] = STATE(2234), + [sym_conditional_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_pointer_expression] = STATE(877), + [sym_unary_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_update_expression] = STATE(809), + [sym_cast_expression] = STATE(809), + [sym_type_descriptor] = STATE(2189), + [sym_sizeof_expression] = STATE(809), + [sym_alignof_expression] = STATE(809), + [sym_offsetof_expression] = STATE(809), + [sym_generic_expression] = STATE(809), + [sym_subscript_expression] = STATE(877), + [sym_call_expression] = STATE(877), + [sym_gnu_asm_expression] = STATE(809), + [sym_field_expression] = STATE(877), + [sym_compound_literal_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(877), + [sym_char_literal] = STATE(809), + [sym_concatenated_string] = STATE(809), + [sym_string_literal] = STATE(573), + [sym_null] = STATE(809), + [sym_macro_type_specifier] = STATE(1069), + [aux_sym__type_definition_type_repeat1] = STATE(1299), + [aux_sym_sized_type_specifier_repeat1] = STATE(1339), + [sym_identifier] = ACTIONS(1935), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -70777,88 +72807,88 @@ 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(49), - [anon_sym_signed] = ACTIONS(1922), - [anon_sym_unsigned] = ACTIONS(1922), - [anon_sym_long] = ACTIONS(1922), - [anon_sym_short] = ACTIONS(1922), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [sym_primitive_type] = ACTIONS(51), - [anon_sym_enum] = ACTIONS(1924), - [anon_sym_struct] = ACTIONS(55), - [anon_sym_union] = ACTIONS(57), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(83), - [anon_sym___alignof__] = ACTIONS(85), - [anon_sym___alignof] = ACTIONS(85), - [anon_sym__alignof] = ACTIONS(85), - [anon_sym_alignof] = ACTIONS(85), - [anon_sym__Alignof] = ACTIONS(85), - [anon_sym_offsetof] = ACTIONS(87), - [anon_sym__Generic] = ACTIONS(89), - [anon_sym_asm] = ACTIONS(91), - [anon_sym___asm__] = ACTIONS(91), - [sym_number_literal] = ACTIONS(159), - [anon_sym_L_SQUOTE] = ACTIONS(95), - [anon_sym_u_SQUOTE] = ACTIONS(95), - [anon_sym_U_SQUOTE] = ACTIONS(95), - [anon_sym_u8_SQUOTE] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(95), - [anon_sym_L_DQUOTE] = ACTIONS(97), - [anon_sym_u_DQUOTE] = ACTIONS(97), - [anon_sym_U_DQUOTE] = ACTIONS(97), - [anon_sym_u8_DQUOTE] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(97), - [sym_true] = ACTIONS(161), - [sym_false] = ACTIONS(161), - [anon_sym_NULL] = ACTIONS(101), - [anon_sym_nullptr] = ACTIONS(101), + [anon_sym___extension__] = ACTIONS(51), + [anon_sym_signed] = ACTIONS(1937), + [anon_sym_unsigned] = ACTIONS(1937), + [anon_sym_long] = ACTIONS(1937), + [anon_sym_short] = ACTIONS(1937), + [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), + [sym_primitive_type] = ACTIONS(53), + [anon_sym_enum] = ACTIONS(1939), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [sym_number_literal] = ACTIONS(161), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(163), + [sym_false] = ACTIONS(163), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, [499] = { - [sym_type_qualifier] = STATE(1287), - [sym__type_specifier] = STATE(1314), - [sym_sized_type_specifier] = STATE(1106), - [sym_enum_specifier] = STATE(1106), - [sym_struct_specifier] = STATE(1106), - [sym_union_specifier] = STATE(1106), - [sym__expression] = STATE(1208), - [sym__expression_not_binary] = STATE(792), - [sym_comma_expression] = STATE(2076), - [sym_conditional_expression] = STATE(792), - [sym_assignment_expression] = STATE(792), - [sym_pointer_expression] = STATE(901), - [sym_unary_expression] = STATE(792), - [sym_binary_expression] = STATE(792), - [sym_update_expression] = STATE(792), - [sym_cast_expression] = STATE(792), - [sym_type_descriptor] = STATE(2190), - [sym_sizeof_expression] = STATE(792), - [sym_alignof_expression] = STATE(792), - [sym_offsetof_expression] = STATE(792), - [sym_generic_expression] = STATE(792), - [sym_subscript_expression] = STATE(901), - [sym_call_expression] = STATE(901), - [sym_gnu_asm_expression] = STATE(792), - [sym_field_expression] = STATE(901), - [sym_compound_literal_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(901), - [sym_char_literal] = STATE(792), - [sym_concatenated_string] = STATE(792), - [sym_string_literal] = STATE(675), - [sym_null] = STATE(792), - [sym_macro_type_specifier] = STATE(1106), - [aux_sym__type_definition_type_repeat1] = STATE(1287), - [aux_sym_sized_type_specifier_repeat1] = STATE(1323), - [sym_identifier] = ACTIONS(1920), + [sym_type_qualifier] = STATE(1299), + [sym__type_specifier] = STATE(1333), + [sym_sized_type_specifier] = STATE(1069), + [sym_enum_specifier] = STATE(1069), + [sym_struct_specifier] = STATE(1069), + [sym_union_specifier] = STATE(1069), + [sym__expression] = STATE(1261), + [sym__expression_not_binary] = STATE(809), + [sym_comma_expression] = STATE(2234), + [sym_conditional_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_pointer_expression] = STATE(877), + [sym_unary_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_update_expression] = STATE(809), + [sym_cast_expression] = STATE(809), + [sym_type_descriptor] = STATE(2092), + [sym_sizeof_expression] = STATE(809), + [sym_alignof_expression] = STATE(809), + [sym_offsetof_expression] = STATE(809), + [sym_generic_expression] = STATE(809), + [sym_subscript_expression] = STATE(877), + [sym_call_expression] = STATE(877), + [sym_gnu_asm_expression] = STATE(809), + [sym_field_expression] = STATE(877), + [sym_compound_literal_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(877), + [sym_char_literal] = STATE(809), + [sym_concatenated_string] = STATE(809), + [sym_string_literal] = STATE(573), + [sym_null] = STATE(809), + [sym_macro_type_specifier] = STATE(1069), + [aux_sym__type_definition_type_repeat1] = STATE(1299), + [aux_sym_sized_type_specifier_repeat1] = STATE(1339), + [sym_identifier] = ACTIONS(1935), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -70866,88 +72896,88 @@ 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(49), - [anon_sym_signed] = ACTIONS(1922), - [anon_sym_unsigned] = ACTIONS(1922), - [anon_sym_long] = ACTIONS(1922), - [anon_sym_short] = ACTIONS(1922), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [sym_primitive_type] = ACTIONS(51), - [anon_sym_enum] = ACTIONS(1924), - [anon_sym_struct] = ACTIONS(55), - [anon_sym_union] = ACTIONS(57), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(83), - [anon_sym___alignof__] = ACTIONS(85), - [anon_sym___alignof] = ACTIONS(85), - [anon_sym__alignof] = ACTIONS(85), - [anon_sym_alignof] = ACTIONS(85), - [anon_sym__Alignof] = ACTIONS(85), - [anon_sym_offsetof] = ACTIONS(87), - [anon_sym__Generic] = ACTIONS(89), - [anon_sym_asm] = ACTIONS(91), - [anon_sym___asm__] = ACTIONS(91), - [sym_number_literal] = ACTIONS(159), - [anon_sym_L_SQUOTE] = ACTIONS(95), - [anon_sym_u_SQUOTE] = ACTIONS(95), - [anon_sym_U_SQUOTE] = ACTIONS(95), - [anon_sym_u8_SQUOTE] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(95), - [anon_sym_L_DQUOTE] = ACTIONS(97), - [anon_sym_u_DQUOTE] = ACTIONS(97), - [anon_sym_U_DQUOTE] = ACTIONS(97), - [anon_sym_u8_DQUOTE] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(97), - [sym_true] = ACTIONS(161), - [sym_false] = ACTIONS(161), - [anon_sym_NULL] = ACTIONS(101), - [anon_sym_nullptr] = ACTIONS(101), + [anon_sym___extension__] = ACTIONS(51), + [anon_sym_signed] = ACTIONS(1937), + [anon_sym_unsigned] = ACTIONS(1937), + [anon_sym_long] = ACTIONS(1937), + [anon_sym_short] = ACTIONS(1937), + [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), + [sym_primitive_type] = ACTIONS(53), + [anon_sym_enum] = ACTIONS(1939), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [sym_number_literal] = ACTIONS(161), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(163), + [sym_false] = ACTIONS(163), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, [500] = { - [sym_type_qualifier] = STATE(1287), - [sym__type_specifier] = STATE(1314), - [sym_sized_type_specifier] = STATE(1106), - [sym_enum_specifier] = STATE(1106), - [sym_struct_specifier] = STATE(1106), - [sym_union_specifier] = STATE(1106), - [sym__expression] = STATE(1247), - [sym__expression_not_binary] = STATE(792), - [sym_comma_expression] = STATE(2041), - [sym_conditional_expression] = STATE(792), - [sym_assignment_expression] = STATE(792), - [sym_pointer_expression] = STATE(901), - [sym_unary_expression] = STATE(792), - [sym_binary_expression] = STATE(792), - [sym_update_expression] = STATE(792), - [sym_cast_expression] = STATE(792), - [sym_type_descriptor] = STATE(1958), - [sym_sizeof_expression] = STATE(792), - [sym_alignof_expression] = STATE(792), - [sym_offsetof_expression] = STATE(792), - [sym_generic_expression] = STATE(792), - [sym_subscript_expression] = STATE(901), - [sym_call_expression] = STATE(901), - [sym_gnu_asm_expression] = STATE(792), - [sym_field_expression] = STATE(901), - [sym_compound_literal_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(901), - [sym_char_literal] = STATE(792), - [sym_concatenated_string] = STATE(792), - [sym_string_literal] = STATE(675), - [sym_null] = STATE(792), - [sym_macro_type_specifier] = STATE(1106), - [aux_sym__type_definition_type_repeat1] = STATE(1287), - [aux_sym_sized_type_specifier_repeat1] = STATE(1323), - [sym_identifier] = ACTIONS(1920), + [sym_type_qualifier] = STATE(1299), + [sym__type_specifier] = STATE(1333), + [sym_sized_type_specifier] = STATE(1069), + [sym_enum_specifier] = STATE(1069), + [sym_struct_specifier] = STATE(1069), + [sym_union_specifier] = STATE(1069), + [sym__expression] = STATE(1238), + [sym__expression_not_binary] = STATE(809), + [sym_comma_expression] = STATE(2257), + [sym_conditional_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_pointer_expression] = STATE(877), + [sym_unary_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_update_expression] = STATE(809), + [sym_cast_expression] = STATE(809), + [sym_type_descriptor] = STATE(2122), + [sym_sizeof_expression] = STATE(809), + [sym_alignof_expression] = STATE(809), + [sym_offsetof_expression] = STATE(809), + [sym_generic_expression] = STATE(809), + [sym_subscript_expression] = STATE(877), + [sym_call_expression] = STATE(877), + [sym_gnu_asm_expression] = STATE(809), + [sym_field_expression] = STATE(877), + [sym_compound_literal_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(877), + [sym_char_literal] = STATE(809), + [sym_concatenated_string] = STATE(809), + [sym_string_literal] = STATE(573), + [sym_null] = STATE(809), + [sym_macro_type_specifier] = STATE(1069), + [aux_sym__type_definition_type_repeat1] = STATE(1299), + [aux_sym_sized_type_specifier_repeat1] = STATE(1339), + [sym_identifier] = ACTIONS(1935), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -70955,2800 +72985,2891 @@ 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(49), - [anon_sym_signed] = ACTIONS(1922), - [anon_sym_unsigned] = ACTIONS(1922), - [anon_sym_long] = ACTIONS(1922), - [anon_sym_short] = ACTIONS(1922), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [sym_primitive_type] = ACTIONS(51), - [anon_sym_enum] = ACTIONS(1924), - [anon_sym_struct] = ACTIONS(55), - [anon_sym_union] = ACTIONS(57), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(83), - [anon_sym___alignof__] = ACTIONS(85), - [anon_sym___alignof] = ACTIONS(85), - [anon_sym__alignof] = ACTIONS(85), - [anon_sym_alignof] = ACTIONS(85), - [anon_sym__Alignof] = ACTIONS(85), - [anon_sym_offsetof] = ACTIONS(87), - [anon_sym__Generic] = ACTIONS(89), - [anon_sym_asm] = ACTIONS(91), - [anon_sym___asm__] = ACTIONS(91), - [sym_number_literal] = ACTIONS(159), - [anon_sym_L_SQUOTE] = ACTIONS(95), - [anon_sym_u_SQUOTE] = ACTIONS(95), - [anon_sym_U_SQUOTE] = ACTIONS(95), - [anon_sym_u8_SQUOTE] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(95), - [anon_sym_L_DQUOTE] = ACTIONS(97), - [anon_sym_u_DQUOTE] = ACTIONS(97), - [anon_sym_U_DQUOTE] = ACTIONS(97), - [anon_sym_u8_DQUOTE] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(97), - [sym_true] = ACTIONS(161), - [sym_false] = ACTIONS(161), - [anon_sym_NULL] = ACTIONS(101), - [anon_sym_nullptr] = ACTIONS(101), + [anon_sym___extension__] = ACTIONS(51), + [anon_sym_signed] = ACTIONS(1937), + [anon_sym_unsigned] = ACTIONS(1937), + [anon_sym_long] = ACTIONS(1937), + [anon_sym_short] = ACTIONS(1937), + [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), + [sym_primitive_type] = ACTIONS(53), + [anon_sym_enum] = ACTIONS(1939), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [sym_number_literal] = ACTIONS(161), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(163), + [sym_false] = ACTIONS(163), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, [501] = { - [sym__expression] = STATE(843), - [sym__expression_not_binary] = STATE(792), - [sym_conditional_expression] = STATE(792), - [sym_assignment_expression] = STATE(792), - [sym_pointer_expression] = STATE(913), - [sym_unary_expression] = STATE(792), - [sym_binary_expression] = STATE(792), - [sym_update_expression] = STATE(792), - [sym_cast_expression] = STATE(792), - [sym_sizeof_expression] = STATE(792), - [sym_alignof_expression] = STATE(792), - [sym_offsetof_expression] = STATE(792), - [sym_generic_expression] = STATE(792), - [sym_subscript_expression] = STATE(913), - [sym_call_expression] = STATE(913), - [sym_gnu_asm_expression] = STATE(792), - [sym_field_expression] = STATE(913), - [sym_compound_literal_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(913), - [sym_initializer_list] = STATE(794), - [sym_char_literal] = STATE(792), - [sym_concatenated_string] = STATE(792), - [sym_string_literal] = STATE(675), - [sym_null] = STATE(792), - [sym_identifier] = ACTIONS(1533), - [anon_sym_COMMA] = ACTIONS(1527), - [aux_sym_preproc_if_token2] = ACTIONS(1527), - [aux_sym_preproc_else_token1] = ACTIONS(1527), - [aux_sym_preproc_elif_token1] = ACTIONS(1533), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1527), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1527), - [anon_sym_LPAREN2] = ACTIONS(1527), - [anon_sym_BANG] = ACTIONS(1928), - [anon_sym_TILDE] = ACTIONS(1930), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1527), - [anon_sym_SLASH] = ACTIONS(1533), - [anon_sym_PERCENT] = ACTIONS(1527), - [anon_sym_PIPE_PIPE] = ACTIONS(1527), - [anon_sym_AMP_AMP] = ACTIONS(1527), - [anon_sym_PIPE] = ACTIONS(1533), - [anon_sym_CARET] = ACTIONS(1527), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_EQ_EQ] = ACTIONS(1527), - [anon_sym_BANG_EQ] = ACTIONS(1527), - [anon_sym_GT] = ACTIONS(1533), - [anon_sym_GT_EQ] = ACTIONS(1527), - [anon_sym_LT_EQ] = ACTIONS(1527), - [anon_sym_LT] = ACTIONS(1533), - [anon_sym_LT_LT] = ACTIONS(1527), - [anon_sym_GT_GT] = ACTIONS(1527), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1527), - [anon_sym_QMARK] = ACTIONS(1527), - [anon_sym_DASH_DASH] = ACTIONS(1527), - [anon_sym_PLUS_PLUS] = ACTIONS(1527), - [anon_sym_sizeof] = ACTIONS(1932), - [anon_sym___alignof__] = ACTIONS(85), - [anon_sym___alignof] = ACTIONS(85), - [anon_sym__alignof] = ACTIONS(85), - [anon_sym_alignof] = ACTIONS(85), - [anon_sym__Alignof] = ACTIONS(85), - [anon_sym_offsetof] = ACTIONS(87), - [anon_sym__Generic] = ACTIONS(89), - [anon_sym_asm] = ACTIONS(91), - [anon_sym___asm__] = ACTIONS(91), - [anon_sym_DOT] = ACTIONS(1533), - [anon_sym_DASH_GT] = ACTIONS(1527), - [sym_number_literal] = ACTIONS(159), - [anon_sym_L_SQUOTE] = ACTIONS(95), - [anon_sym_u_SQUOTE] = ACTIONS(95), - [anon_sym_U_SQUOTE] = ACTIONS(95), - [anon_sym_u8_SQUOTE] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(95), - [anon_sym_L_DQUOTE] = ACTIONS(97), - [anon_sym_u_DQUOTE] = ACTIONS(97), - [anon_sym_U_DQUOTE] = ACTIONS(97), - [anon_sym_u8_DQUOTE] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(97), - [sym_true] = ACTIONS(161), - [sym_false] = ACTIONS(161), - [anon_sym_NULL] = ACTIONS(101), - [anon_sym_nullptr] = ACTIONS(101), + [sym_type_qualifier] = STATE(1299), + [sym__type_specifier] = STATE(1333), + [sym_sized_type_specifier] = STATE(1069), + [sym_enum_specifier] = STATE(1069), + [sym_struct_specifier] = STATE(1069), + [sym_union_specifier] = STATE(1069), + [sym__expression] = STATE(1261), + [sym__expression_not_binary] = STATE(809), + [sym_comma_expression] = STATE(2234), + [sym_conditional_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_pointer_expression] = STATE(877), + [sym_unary_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_update_expression] = STATE(809), + [sym_cast_expression] = STATE(809), + [sym_type_descriptor] = STATE(2179), + [sym_sizeof_expression] = STATE(809), + [sym_alignof_expression] = STATE(809), + [sym_offsetof_expression] = STATE(809), + [sym_generic_expression] = STATE(809), + [sym_subscript_expression] = STATE(877), + [sym_call_expression] = STATE(877), + [sym_gnu_asm_expression] = STATE(809), + [sym_field_expression] = STATE(877), + [sym_compound_literal_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(877), + [sym_char_literal] = STATE(809), + [sym_concatenated_string] = STATE(809), + [sym_string_literal] = STATE(573), + [sym_null] = STATE(809), + [sym_macro_type_specifier] = STATE(1069), + [aux_sym__type_definition_type_repeat1] = STATE(1299), + [aux_sym_sized_type_specifier_repeat1] = STATE(1339), + [sym_identifier] = ACTIONS(1935), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = 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(1937), + [anon_sym_unsigned] = ACTIONS(1937), + [anon_sym_long] = ACTIONS(1937), + [anon_sym_short] = ACTIONS(1937), + [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), + [sym_primitive_type] = ACTIONS(53), + [anon_sym_enum] = ACTIONS(1939), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [sym_number_literal] = ACTIONS(161), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(163), + [sym_false] = ACTIONS(163), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, [502] = { - [sym_else_clause] = STATE(241), - [sym_identifier] = 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_LBRACK_LBRACK] = ACTIONS(1305), - [anon_sym___declspec] = 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), - [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_else] = ACTIONS(1934), - [anon_sym_switch] = 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_type_qualifier] = STATE(1299), + [sym__type_specifier] = STATE(1333), + [sym_sized_type_specifier] = STATE(1069), + [sym_enum_specifier] = STATE(1069), + [sym_struct_specifier] = STATE(1069), + [sym_union_specifier] = STATE(1069), + [sym__expression] = STATE(1261), + [sym__expression_not_binary] = STATE(809), + [sym_comma_expression] = STATE(2234), + [sym_conditional_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_pointer_expression] = STATE(877), + [sym_unary_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_update_expression] = STATE(809), + [sym_cast_expression] = STATE(809), + [sym_type_descriptor] = STATE(2222), + [sym_sizeof_expression] = STATE(809), + [sym_alignof_expression] = STATE(809), + [sym_offsetof_expression] = STATE(809), + [sym_generic_expression] = STATE(809), + [sym_subscript_expression] = STATE(877), + [sym_call_expression] = STATE(877), + [sym_gnu_asm_expression] = STATE(809), + [sym_field_expression] = STATE(877), + [sym_compound_literal_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(877), + [sym_char_literal] = STATE(809), + [sym_concatenated_string] = STATE(809), + [sym_string_literal] = STATE(573), + [sym_null] = STATE(809), + [sym_macro_type_specifier] = STATE(1069), + [aux_sym__type_definition_type_repeat1] = STATE(1299), + [aux_sym_sized_type_specifier_repeat1] = STATE(1339), + [sym_identifier] = ACTIONS(1935), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = 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(1937), + [anon_sym_unsigned] = ACTIONS(1937), + [anon_sym_long] = ACTIONS(1937), + [anon_sym_short] = ACTIONS(1937), + [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), + [sym_primitive_type] = ACTIONS(53), + [anon_sym_enum] = ACTIONS(1939), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [sym_number_literal] = ACTIONS(161), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(163), + [sym_false] = ACTIONS(163), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, [503] = { - [sym__expression] = STATE(936), - [sym__expression_not_binary] = STATE(963), - [sym_conditional_expression] = STATE(963), - [sym_assignment_expression] = STATE(963), - [sym_pointer_expression] = STATE(954), - [sym_unary_expression] = STATE(963), - [sym_binary_expression] = STATE(963), - [sym_update_expression] = STATE(963), - [sym_cast_expression] = STATE(963), - [sym_sizeof_expression] = STATE(963), - [sym_alignof_expression] = STATE(963), - [sym_offsetof_expression] = STATE(963), - [sym_generic_expression] = STATE(963), - [sym_subscript_expression] = STATE(954), - [sym_call_expression] = STATE(954), - [sym_gnu_asm_expression] = STATE(963), - [sym_field_expression] = STATE(954), - [sym_compound_literal_expression] = STATE(963), - [sym_parenthesized_expression] = STATE(954), - [sym_initializer_list] = STATE(967), - [sym_char_literal] = STATE(963), - [sym_concatenated_string] = STATE(963), - [sym_string_literal] = STATE(859), - [sym_null] = STATE(963), - [sym_identifier] = ACTIONS(1533), - [anon_sym_COMMA] = ACTIONS(1527), - [aux_sym_preproc_if_token2] = ACTIONS(1527), - [aux_sym_preproc_else_token1] = ACTIONS(1527), - [aux_sym_preproc_elif_token1] = ACTIONS(1527), - [anon_sym_LPAREN2] = ACTIONS(1527), - [anon_sym_BANG] = ACTIONS(1936), - [anon_sym_TILDE] = ACTIONS(1938), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1527), - [anon_sym_SLASH] = ACTIONS(1533), - [anon_sym_PERCENT] = ACTIONS(1527), - [anon_sym_PIPE_PIPE] = ACTIONS(1527), - [anon_sym_AMP_AMP] = ACTIONS(1527), - [anon_sym_PIPE] = ACTIONS(1533), - [anon_sym_CARET] = ACTIONS(1527), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_EQ_EQ] = ACTIONS(1527), - [anon_sym_BANG_EQ] = ACTIONS(1527), - [anon_sym_GT] = ACTIONS(1533), - [anon_sym_GT_EQ] = ACTIONS(1527), - [anon_sym_LT_EQ] = ACTIONS(1527), - [anon_sym_LT] = ACTIONS(1533), - [anon_sym_LT_LT] = ACTIONS(1527), - [anon_sym_GT_GT] = ACTIONS(1527), - [anon_sym_LBRACE] = ACTIONS(1549), - [anon_sym_LBRACK] = ACTIONS(1527), - [anon_sym_QMARK] = ACTIONS(1527), - [anon_sym_DASH_DASH] = ACTIONS(1527), - [anon_sym_PLUS_PLUS] = ACTIONS(1527), - [anon_sym_sizeof] = ACTIONS(1940), - [anon_sym___alignof__] = ACTIONS(1553), - [anon_sym___alignof] = ACTIONS(1553), - [anon_sym__alignof] = ACTIONS(1553), - [anon_sym_alignof] = ACTIONS(1553), - [anon_sym__Alignof] = ACTIONS(1553), - [anon_sym_offsetof] = ACTIONS(1555), - [anon_sym__Generic] = ACTIONS(1557), - [anon_sym_asm] = ACTIONS(1559), - [anon_sym___asm__] = ACTIONS(1559), - [anon_sym_DOT] = ACTIONS(1533), - [anon_sym_DASH_GT] = ACTIONS(1527), - [sym_number_literal] = ACTIONS(1561), - [anon_sym_L_SQUOTE] = ACTIONS(1563), - [anon_sym_u_SQUOTE] = ACTIONS(1563), - [anon_sym_U_SQUOTE] = ACTIONS(1563), - [anon_sym_u8_SQUOTE] = ACTIONS(1563), - [anon_sym_SQUOTE] = ACTIONS(1563), - [anon_sym_L_DQUOTE] = ACTIONS(1565), - [anon_sym_u_DQUOTE] = ACTIONS(1565), - [anon_sym_U_DQUOTE] = ACTIONS(1565), - [anon_sym_u8_DQUOTE] = ACTIONS(1565), - [anon_sym_DQUOTE] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [anon_sym_NULL] = ACTIONS(1569), - [anon_sym_nullptr] = ACTIONS(1569), + [sym__expression] = STATE(835), + [sym__expression_not_binary] = STATE(809), + [sym_conditional_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_pointer_expression] = STATE(1004), + [sym_unary_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_update_expression] = STATE(809), + [sym_cast_expression] = STATE(809), + [sym_sizeof_expression] = STATE(809), + [sym_alignof_expression] = STATE(809), + [sym_offsetof_expression] = STATE(809), + [sym_generic_expression] = STATE(809), + [sym_subscript_expression] = STATE(1004), + [sym_call_expression] = STATE(1004), + [sym_gnu_asm_expression] = STATE(809), + [sym_field_expression] = STATE(1004), + [sym_compound_literal_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(1004), + [sym_initializer_list] = STATE(811), + [sym_char_literal] = STATE(809), + [sym_concatenated_string] = STATE(809), + [sym_string_literal] = STATE(573), + [sym_null] = STATE(809), + [sym_identifier] = ACTIONS(1544), + [anon_sym_COMMA] = ACTIONS(1538), + [aux_sym_preproc_if_token2] = ACTIONS(1538), + [aux_sym_preproc_else_token1] = ACTIONS(1538), + [aux_sym_preproc_elif_token1] = ACTIONS(1544), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1538), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1538), + [anon_sym_LPAREN2] = ACTIONS(1538), + [anon_sym_BANG] = ACTIONS(1953), + [anon_sym_TILDE] = ACTIONS(1955), + [anon_sym_DASH] = ACTIONS(1544), + [anon_sym_PLUS] = ACTIONS(1544), + [anon_sym_STAR] = ACTIONS(1538), + [anon_sym_SLASH] = ACTIONS(1544), + [anon_sym_PERCENT] = ACTIONS(1538), + [anon_sym_PIPE_PIPE] = ACTIONS(1538), + [anon_sym_AMP_AMP] = ACTIONS(1538), + [anon_sym_PIPE] = ACTIONS(1544), + [anon_sym_CARET] = ACTIONS(1538), + [anon_sym_AMP] = ACTIONS(1544), + [anon_sym_EQ_EQ] = ACTIONS(1538), + [anon_sym_BANG_EQ] = ACTIONS(1538), + [anon_sym_GT] = ACTIONS(1544), + [anon_sym_GT_EQ] = ACTIONS(1538), + [anon_sym_LT_EQ] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(1544), + [anon_sym_LT_LT] = ACTIONS(1538), + [anon_sym_GT_GT] = ACTIONS(1538), + [anon_sym_LBRACE] = ACTIONS(1546), + [anon_sym_LBRACK] = ACTIONS(1538), + [anon_sym_QMARK] = ACTIONS(1538), + [anon_sym_DASH_DASH] = ACTIONS(1538), + [anon_sym_PLUS_PLUS] = ACTIONS(1538), + [anon_sym_sizeof] = ACTIONS(1957), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [anon_sym_DOT] = ACTIONS(1544), + [anon_sym_DASH_GT] = ACTIONS(1538), + [sym_number_literal] = ACTIONS(161), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(163), + [sym_false] = ACTIONS(163), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, [504] = { - [sym_identifier] = ACTIONS(1942), - [anon_sym_LPAREN2] = ACTIONS(1945), - [anon_sym_BANG] = ACTIONS(1945), - [anon_sym_TILDE] = ACTIONS(1945), - [anon_sym_DASH] = ACTIONS(1947), - [anon_sym_PLUS] = ACTIONS(1947), - [anon_sym_STAR] = ACTIONS(1945), - [anon_sym_AMP] = ACTIONS(1945), - [anon_sym_SEMI] = ACTIONS(1945), - [anon_sym___extension__] = ACTIONS(1949), - [anon_sym_extern] = ACTIONS(1949), - [anon_sym___attribute__] = ACTIONS(1949), - [anon_sym___scanf] = ACTIONS(1949), - [anon_sym___printf] = ACTIONS(1949), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1951), - [anon_sym___declspec] = ACTIONS(1949), - [anon_sym_LBRACE] = ACTIONS(1945), - [anon_sym_signed] = ACTIONS(1949), - [anon_sym_unsigned] = ACTIONS(1949), - [anon_sym_long] = ACTIONS(1949), - [anon_sym_short] = ACTIONS(1949), - [anon_sym_static] = ACTIONS(1949), - [anon_sym_auto] = ACTIONS(1949), - [anon_sym_register] = ACTIONS(1949), - [anon_sym_inline] = ACTIONS(1949), - [anon_sym___inline] = ACTIONS(1949), - [anon_sym___inline__] = ACTIONS(1949), - [anon_sym___forceinline] = ACTIONS(1949), - [anon_sym_thread_local] = ACTIONS(1949), - [anon_sym___thread] = ACTIONS(1949), - [anon_sym_const] = ACTIONS(1949), - [anon_sym_constexpr] = ACTIONS(1949), - [anon_sym_volatile] = ACTIONS(1949), - [anon_sym_restrict] = ACTIONS(1949), - [anon_sym___restrict__] = ACTIONS(1949), - [anon_sym__Atomic] = ACTIONS(1949), - [anon_sym__Noreturn] = ACTIONS(1949), - [anon_sym_noreturn] = ACTIONS(1949), - [sym_primitive_type] = ACTIONS(1949), - [anon_sym_enum] = ACTIONS(1949), - [anon_sym_struct] = ACTIONS(1949), - [anon_sym_union] = ACTIONS(1949), - [anon_sym_if] = ACTIONS(1947), - [anon_sym_switch] = ACTIONS(1947), - [anon_sym_case] = ACTIONS(1947), - [anon_sym_default] = ACTIONS(1947), - [anon_sym_while] = ACTIONS(1947), - [anon_sym_do] = ACTIONS(1947), - [anon_sym_for] = ACTIONS(1947), - [anon_sym_return] = ACTIONS(1947), - [anon_sym_break] = ACTIONS(1947), - [anon_sym_continue] = ACTIONS(1947), - [anon_sym_goto] = ACTIONS(1947), - [anon_sym___try] = ACTIONS(1947), - [anon_sym___leave] = ACTIONS(1947), - [anon_sym_DASH_DASH] = ACTIONS(1945), - [anon_sym_PLUS_PLUS] = ACTIONS(1945), - [anon_sym_sizeof] = ACTIONS(1947), - [anon_sym___alignof__] = ACTIONS(1947), - [anon_sym___alignof] = ACTIONS(1947), - [anon_sym__alignof] = ACTIONS(1947), - [anon_sym_alignof] = ACTIONS(1947), - [anon_sym__Alignof] = ACTIONS(1947), - [anon_sym_offsetof] = ACTIONS(1947), - [anon_sym__Generic] = ACTIONS(1947), - [anon_sym_asm] = ACTIONS(1947), - [anon_sym___asm__] = ACTIONS(1947), - [sym_number_literal] = ACTIONS(1945), - [anon_sym_L_SQUOTE] = ACTIONS(1945), - [anon_sym_u_SQUOTE] = ACTIONS(1945), - [anon_sym_U_SQUOTE] = ACTIONS(1945), - [anon_sym_u8_SQUOTE] = ACTIONS(1945), - [anon_sym_SQUOTE] = ACTIONS(1945), - [anon_sym_L_DQUOTE] = ACTIONS(1945), - [anon_sym_u_DQUOTE] = ACTIONS(1945), - [anon_sym_U_DQUOTE] = ACTIONS(1945), - [anon_sym_u8_DQUOTE] = ACTIONS(1945), - [anon_sym_DQUOTE] = ACTIONS(1945), - [sym_true] = ACTIONS(1947), - [sym_false] = ACTIONS(1947), - [anon_sym_NULL] = ACTIONS(1947), - [anon_sym_nullptr] = ACTIONS(1947), + [sym__expression] = STATE(1054), + [sym__expression_not_binary] = STATE(1110), + [sym_conditional_expression] = STATE(1110), + [sym_assignment_expression] = STATE(1110), + [sym_pointer_expression] = STATE(1098), + [sym_unary_expression] = STATE(1110), + [sym_binary_expression] = STATE(1110), + [sym_update_expression] = STATE(1110), + [sym_cast_expression] = STATE(1110), + [sym_sizeof_expression] = STATE(1110), + [sym_alignof_expression] = STATE(1110), + [sym_offsetof_expression] = STATE(1110), + [sym_generic_expression] = STATE(1110), + [sym_subscript_expression] = STATE(1098), + [sym_call_expression] = STATE(1098), + [sym_gnu_asm_expression] = STATE(1110), + [sym_field_expression] = STATE(1098), + [sym_compound_literal_expression] = STATE(1110), + [sym_parenthesized_expression] = STATE(1098), + [sym_initializer_list] = STATE(1107), + [sym_char_literal] = STATE(1110), + [sym_concatenated_string] = STATE(1110), + [sym_string_literal] = STATE(893), + [sym_null] = STATE(1110), + [sym_identifier] = ACTIONS(1544), + [anon_sym_COMMA] = ACTIONS(1538), + [aux_sym_preproc_if_token2] = ACTIONS(1538), + [aux_sym_preproc_else_token1] = ACTIONS(1538), + [aux_sym_preproc_elif_token1] = ACTIONS(1538), + [anon_sym_LPAREN2] = ACTIONS(1538), + [anon_sym_BANG] = ACTIONS(1959), + [anon_sym_TILDE] = ACTIONS(1961), + [anon_sym_DASH] = ACTIONS(1544), + [anon_sym_PLUS] = ACTIONS(1544), + [anon_sym_STAR] = ACTIONS(1538), + [anon_sym_SLASH] = ACTIONS(1544), + [anon_sym_PERCENT] = ACTIONS(1538), + [anon_sym_PIPE_PIPE] = ACTIONS(1538), + [anon_sym_AMP_AMP] = ACTIONS(1538), + [anon_sym_PIPE] = ACTIONS(1544), + [anon_sym_CARET] = ACTIONS(1538), + [anon_sym_AMP] = ACTIONS(1544), + [anon_sym_EQ_EQ] = ACTIONS(1538), + [anon_sym_BANG_EQ] = ACTIONS(1538), + [anon_sym_GT] = ACTIONS(1544), + [anon_sym_GT_EQ] = ACTIONS(1538), + [anon_sym_LT_EQ] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(1544), + [anon_sym_LT_LT] = ACTIONS(1538), + [anon_sym_GT_GT] = ACTIONS(1538), + [anon_sym_LBRACE] = ACTIONS(1826), + [anon_sym_LBRACK] = ACTIONS(1538), + [anon_sym_QMARK] = ACTIONS(1538), + [anon_sym_DASH_DASH] = ACTIONS(1538), + [anon_sym_PLUS_PLUS] = ACTIONS(1538), + [anon_sym_sizeof] = ACTIONS(1963), + [anon_sym___alignof__] = ACTIONS(1830), + [anon_sym___alignof] = ACTIONS(1830), + [anon_sym__alignof] = ACTIONS(1830), + [anon_sym_alignof] = ACTIONS(1830), + [anon_sym__Alignof] = ACTIONS(1830), + [anon_sym_offsetof] = ACTIONS(1832), + [anon_sym__Generic] = ACTIONS(1834), + [anon_sym_asm] = ACTIONS(1836), + [anon_sym___asm__] = ACTIONS(1836), + [anon_sym_DOT] = ACTIONS(1544), + [anon_sym_DASH_GT] = ACTIONS(1538), + [sym_number_literal] = ACTIONS(1838), + [anon_sym_L_SQUOTE] = ACTIONS(1840), + [anon_sym_u_SQUOTE] = ACTIONS(1840), + [anon_sym_U_SQUOTE] = ACTIONS(1840), + [anon_sym_u8_SQUOTE] = ACTIONS(1840), + [anon_sym_SQUOTE] = ACTIONS(1840), + [anon_sym_L_DQUOTE] = ACTIONS(1842), + [anon_sym_u_DQUOTE] = ACTIONS(1842), + [anon_sym_U_DQUOTE] = ACTIONS(1842), + [anon_sym_u8_DQUOTE] = ACTIONS(1842), + [anon_sym_DQUOTE] = ACTIONS(1842), + [sym_true] = ACTIONS(1844), + [sym_false] = ACTIONS(1844), + [anon_sym_NULL] = ACTIONS(1846), + [anon_sym_nullptr] = ACTIONS(1846), [sym_comment] = ACTIONS(3), }, [505] = { - [sym__expression] = STATE(1016), - [sym__expression_not_binary] = STATE(792), - [sym_conditional_expression] = STATE(792), - [sym_assignment_expression] = STATE(792), - [sym_pointer_expression] = STATE(1097), - [sym_unary_expression] = STATE(792), - [sym_binary_expression] = STATE(792), - [sym_update_expression] = STATE(792), - [sym_cast_expression] = STATE(792), - [sym_sizeof_expression] = STATE(792), - [sym_alignof_expression] = STATE(792), - [sym_offsetof_expression] = STATE(792), - [sym_generic_expression] = STATE(792), - [sym_subscript_expression] = STATE(1097), - [sym_call_expression] = STATE(1097), - [sym_gnu_asm_expression] = STATE(792), - [sym_field_expression] = STATE(1097), - [sym_compound_literal_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(1097), - [sym_initializer_list] = STATE(794), - [sym_char_literal] = STATE(792), - [sym_concatenated_string] = STATE(792), - [sym_string_literal] = STATE(675), - [sym_null] = STATE(792), - [sym_identifier] = ACTIONS(1954), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1527), - [anon_sym_LPAREN2] = ACTIONS(1527), - [anon_sym_BANG] = ACTIONS(1956), - [anon_sym_TILDE] = ACTIONS(1958), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1527), - [anon_sym_SLASH] = ACTIONS(1533), - [anon_sym_PERCENT] = ACTIONS(1527), - [anon_sym_PIPE_PIPE] = ACTIONS(1527), - [anon_sym_AMP_AMP] = ACTIONS(1527), - [anon_sym_PIPE] = ACTIONS(1533), - [anon_sym_CARET] = ACTIONS(1527), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_EQ_EQ] = ACTIONS(1527), - [anon_sym_BANG_EQ] = ACTIONS(1527), - [anon_sym_GT] = ACTIONS(1533), - [anon_sym_GT_EQ] = ACTIONS(1527), - [anon_sym_LT_EQ] = ACTIONS(1527), - [anon_sym_LT] = ACTIONS(1533), - [anon_sym_LT_LT] = ACTIONS(1527), - [anon_sym_GT_GT] = ACTIONS(1527), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1527), - [anon_sym_RBRACK] = ACTIONS(1527), - [anon_sym_QMARK] = ACTIONS(1527), - [anon_sym_DASH_DASH] = ACTIONS(1527), - [anon_sym_PLUS_PLUS] = ACTIONS(1527), - [anon_sym_sizeof] = ACTIONS(1960), - [anon_sym___alignof__] = ACTIONS(85), - [anon_sym___alignof] = ACTIONS(85), - [anon_sym__alignof] = ACTIONS(85), - [anon_sym_alignof] = ACTIONS(85), - [anon_sym__Alignof] = ACTIONS(85), - [anon_sym_offsetof] = ACTIONS(87), - [anon_sym__Generic] = ACTIONS(89), - [anon_sym_asm] = ACTIONS(91), - [anon_sym___asm__] = ACTIONS(91), - [anon_sym_DOT] = ACTIONS(1533), - [anon_sym_DASH_GT] = ACTIONS(1527), - [sym_number_literal] = ACTIONS(159), - [anon_sym_L_SQUOTE] = ACTIONS(95), - [anon_sym_u_SQUOTE] = ACTIONS(95), - [anon_sym_U_SQUOTE] = ACTIONS(95), - [anon_sym_u8_SQUOTE] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(95), - [anon_sym_L_DQUOTE] = ACTIONS(97), - [anon_sym_u_DQUOTE] = ACTIONS(97), - [anon_sym_U_DQUOTE] = ACTIONS(97), - [anon_sym_u8_DQUOTE] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(97), - [sym_true] = ACTIONS(161), - [sym_false] = ACTIONS(161), - [anon_sym_NULL] = ACTIONS(101), - [anon_sym_nullptr] = ACTIONS(101), + [sym_string_literal] = STATE(567), + [aux_sym_sized_type_specifier_repeat1] = STATE(1033), + [sym_identifier] = ACTIONS(1965), + [anon_sym_COMMA] = ACTIONS(1967), + [anon_sym_LPAREN2] = ACTIONS(1969), + [anon_sym_DASH] = ACTIONS(1973), + [anon_sym_PLUS] = ACTIONS(1973), + [anon_sym_STAR] = ACTIONS(1975), + [anon_sym_SLASH] = ACTIONS(1973), + [anon_sym_PERCENT] = ACTIONS(1973), + [anon_sym_PIPE_PIPE] = ACTIONS(1967), + [anon_sym_AMP_AMP] = ACTIONS(1967), + [anon_sym_PIPE] = ACTIONS(1973), + [anon_sym_CARET] = ACTIONS(1973), + [anon_sym_AMP] = ACTIONS(1973), + [anon_sym_EQ_EQ] = ACTIONS(1967), + [anon_sym_BANG_EQ] = ACTIONS(1967), + [anon_sym_GT] = ACTIONS(1973), + [anon_sym_GT_EQ] = ACTIONS(1967), + [anon_sym_LT_EQ] = ACTIONS(1967), + [anon_sym_LT] = ACTIONS(1973), + [anon_sym_LT_LT] = ACTIONS(1973), + [anon_sym_GT_GT] = ACTIONS(1973), + [anon_sym_SEMI] = ACTIONS(1978), + [anon_sym___extension__] = ACTIONS(1965), + [anon_sym_extern] = ACTIONS(1965), + [anon_sym___attribute__] = ACTIONS(1965), + [anon_sym___scanf] = ACTIONS(1965), + [anon_sym___printf] = ACTIONS(1965), + [anon_sym___read_mostly] = ACTIONS(1965), + [anon_sym___must_hold] = ACTIONS(1965), + [anon_sym___ro_after_init] = ACTIONS(1965), + [anon_sym___init] = ACTIONS(1965), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1981), + [anon_sym___declspec] = ACTIONS(1965), + [anon_sym___based] = ACTIONS(1965), + [anon_sym_signed] = ACTIONS(1983), + [anon_sym_unsigned] = ACTIONS(1983), + [anon_sym_long] = ACTIONS(1983), + [anon_sym_short] = ACTIONS(1983), + [anon_sym_LBRACK] = ACTIONS(1973), + [anon_sym_EQ] = ACTIONS(1985), + [anon_sym_static] = ACTIONS(1965), + [anon_sym_auto] = ACTIONS(1965), + [anon_sym_register] = ACTIONS(1965), + [anon_sym_inline] = ACTIONS(1965), + [anon_sym___inline] = ACTIONS(1965), + [anon_sym___inline__] = ACTIONS(1965), + [anon_sym___forceinline] = ACTIONS(1965), + [anon_sym_thread_local] = ACTIONS(1965), + [anon_sym___thread] = ACTIONS(1965), + [anon_sym_const] = ACTIONS(1965), + [anon_sym_constexpr] = ACTIONS(1965), + [anon_sym_volatile] = ACTIONS(1965), + [anon_sym_restrict] = ACTIONS(1965), + [anon_sym___restrict__] = ACTIONS(1965), + [anon_sym__Atomic] = ACTIONS(1965), + [anon_sym__Noreturn] = ACTIONS(1965), + [anon_sym_noreturn] = ACTIONS(1965), + [anon_sym_COLON] = ACTIONS(1987), + [anon_sym_QMARK] = ACTIONS(1967), + [anon_sym_STAR_EQ] = ACTIONS(1989), + [anon_sym_SLASH_EQ] = ACTIONS(1989), + [anon_sym_PERCENT_EQ] = ACTIONS(1989), + [anon_sym_PLUS_EQ] = ACTIONS(1989), + [anon_sym_DASH_EQ] = ACTIONS(1989), + [anon_sym_LT_LT_EQ] = ACTIONS(1989), + [anon_sym_GT_GT_EQ] = ACTIONS(1989), + [anon_sym_AMP_EQ] = ACTIONS(1989), + [anon_sym_CARET_EQ] = ACTIONS(1989), + [anon_sym_PIPE_EQ] = ACTIONS(1989), + [anon_sym_DASH_DASH] = ACTIONS(1967), + [anon_sym_PLUS_PLUS] = ACTIONS(1967), + [anon_sym_DOT] = ACTIONS(1967), + [anon_sym_DASH_GT] = ACTIONS(1967), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, [506] = { - [sym_string_literal] = STATE(610), - [aux_sym_sized_type_specifier_repeat1] = STATE(1085), - [sym_identifier] = ACTIONS(1962), - [anon_sym_COMMA] = ACTIONS(1964), - [anon_sym_LPAREN2] = ACTIONS(1966), - [anon_sym_DASH] = ACTIONS(1970), - [anon_sym_PLUS] = ACTIONS(1970), - [anon_sym_STAR] = ACTIONS(1972), - [anon_sym_SLASH] = ACTIONS(1970), - [anon_sym_PERCENT] = ACTIONS(1970), - [anon_sym_PIPE_PIPE] = ACTIONS(1964), - [anon_sym_AMP_AMP] = ACTIONS(1964), - [anon_sym_PIPE] = ACTIONS(1970), - [anon_sym_CARET] = ACTIONS(1970), - [anon_sym_AMP] = ACTIONS(1970), - [anon_sym_EQ_EQ] = ACTIONS(1964), - [anon_sym_BANG_EQ] = ACTIONS(1964), - [anon_sym_GT] = ACTIONS(1970), - [anon_sym_GT_EQ] = ACTIONS(1964), - [anon_sym_LT_EQ] = ACTIONS(1964), - [anon_sym_LT] = ACTIONS(1970), - [anon_sym_LT_LT] = ACTIONS(1970), - [anon_sym_GT_GT] = ACTIONS(1970), - [anon_sym_SEMI] = ACTIONS(1975), - [anon_sym___extension__] = ACTIONS(1962), - [anon_sym_extern] = ACTIONS(1962), - [anon_sym___attribute__] = ACTIONS(1962), - [anon_sym___scanf] = ACTIONS(1962), - [anon_sym___printf] = ACTIONS(1962), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1978), - [anon_sym___declspec] = ACTIONS(1962), - [anon_sym___based] = ACTIONS(1962), - [anon_sym_signed] = ACTIONS(1980), - [anon_sym_unsigned] = ACTIONS(1980), - [anon_sym_long] = ACTIONS(1980), - [anon_sym_short] = ACTIONS(1980), - [anon_sym_LBRACK] = ACTIONS(1970), - [anon_sym_EQ] = ACTIONS(1982), - [anon_sym_static] = ACTIONS(1962), - [anon_sym_auto] = ACTIONS(1962), - [anon_sym_register] = ACTIONS(1962), - [anon_sym_inline] = ACTIONS(1962), - [anon_sym___inline] = ACTIONS(1962), - [anon_sym___inline__] = ACTIONS(1962), - [anon_sym___forceinline] = ACTIONS(1962), - [anon_sym_thread_local] = ACTIONS(1962), - [anon_sym___thread] = ACTIONS(1962), - [anon_sym_const] = ACTIONS(1962), - [anon_sym_constexpr] = ACTIONS(1962), - [anon_sym_volatile] = ACTIONS(1962), - [anon_sym_restrict] = ACTIONS(1962), - [anon_sym___restrict__] = ACTIONS(1962), - [anon_sym__Atomic] = ACTIONS(1962), - [anon_sym__Noreturn] = ACTIONS(1962), - [anon_sym_noreturn] = ACTIONS(1962), - [anon_sym_COLON] = ACTIONS(1984), - [anon_sym_QMARK] = ACTIONS(1964), - [anon_sym_STAR_EQ] = ACTIONS(1986), - [anon_sym_SLASH_EQ] = ACTIONS(1986), - [anon_sym_PERCENT_EQ] = ACTIONS(1986), - [anon_sym_PLUS_EQ] = ACTIONS(1986), - [anon_sym_DASH_EQ] = ACTIONS(1986), - [anon_sym_LT_LT_EQ] = ACTIONS(1986), - [anon_sym_GT_GT_EQ] = ACTIONS(1986), - [anon_sym_AMP_EQ] = ACTIONS(1986), - [anon_sym_CARET_EQ] = ACTIONS(1986), - [anon_sym_PIPE_EQ] = ACTIONS(1986), - [anon_sym_DASH_DASH] = ACTIONS(1964), - [anon_sym_PLUS_PLUS] = ACTIONS(1964), - [anon_sym_DOT] = ACTIONS(1964), - [anon_sym_DASH_GT] = ACTIONS(1964), - [anon_sym_L_DQUOTE] = ACTIONS(97), - [anon_sym_u_DQUOTE] = ACTIONS(97), - [anon_sym_U_DQUOTE] = ACTIONS(97), - [anon_sym_u8_DQUOTE] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(97), + [sym_string_literal] = STATE(567), + [aux_sym_sized_type_specifier_repeat1] = STATE(1033), + [sym_identifier] = ACTIONS(1965), + [anon_sym_COMMA] = ACTIONS(1967), + [anon_sym_LPAREN2] = ACTIONS(1969), + [anon_sym_DASH] = ACTIONS(1973), + [anon_sym_PLUS] = ACTIONS(1973), + [anon_sym_STAR] = ACTIONS(1975), + [anon_sym_SLASH] = ACTIONS(1973), + [anon_sym_PERCENT] = ACTIONS(1973), + [anon_sym_PIPE_PIPE] = ACTIONS(1967), + [anon_sym_AMP_AMP] = ACTIONS(1967), + [anon_sym_PIPE] = ACTIONS(1973), + [anon_sym_CARET] = ACTIONS(1973), + [anon_sym_AMP] = ACTIONS(1973), + [anon_sym_EQ_EQ] = ACTIONS(1967), + [anon_sym_BANG_EQ] = ACTIONS(1967), + [anon_sym_GT] = ACTIONS(1973), + [anon_sym_GT_EQ] = ACTIONS(1967), + [anon_sym_LT_EQ] = ACTIONS(1967), + [anon_sym_LT] = ACTIONS(1973), + [anon_sym_LT_LT] = ACTIONS(1973), + [anon_sym_GT_GT] = ACTIONS(1973), + [anon_sym_SEMI] = ACTIONS(1967), + [anon_sym___extension__] = ACTIONS(1965), + [anon_sym_extern] = ACTIONS(1965), + [anon_sym___attribute__] = ACTIONS(1965), + [anon_sym___scanf] = ACTIONS(1965), + [anon_sym___printf] = ACTIONS(1965), + [anon_sym___read_mostly] = ACTIONS(1965), + [anon_sym___must_hold] = ACTIONS(1965), + [anon_sym___ro_after_init] = ACTIONS(1965), + [anon_sym___init] = ACTIONS(1965), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1981), + [anon_sym___declspec] = ACTIONS(1965), + [anon_sym___based] = ACTIONS(1965), + [anon_sym_signed] = ACTIONS(1983), + [anon_sym_unsigned] = ACTIONS(1983), + [anon_sym_long] = ACTIONS(1983), + [anon_sym_short] = ACTIONS(1983), + [anon_sym_LBRACK] = ACTIONS(1973), + [anon_sym_EQ] = ACTIONS(1985), + [anon_sym_static] = ACTIONS(1965), + [anon_sym_auto] = ACTIONS(1965), + [anon_sym_register] = ACTIONS(1965), + [anon_sym_inline] = ACTIONS(1965), + [anon_sym___inline] = ACTIONS(1965), + [anon_sym___inline__] = ACTIONS(1965), + [anon_sym___forceinline] = ACTIONS(1965), + [anon_sym_thread_local] = ACTIONS(1965), + [anon_sym___thread] = ACTIONS(1965), + [anon_sym_const] = ACTIONS(1965), + [anon_sym_constexpr] = ACTIONS(1965), + [anon_sym_volatile] = ACTIONS(1965), + [anon_sym_restrict] = ACTIONS(1965), + [anon_sym___restrict__] = ACTIONS(1965), + [anon_sym__Atomic] = ACTIONS(1965), + [anon_sym__Noreturn] = ACTIONS(1965), + [anon_sym_noreturn] = ACTIONS(1965), + [anon_sym_COLON] = ACTIONS(1991), + [anon_sym_QMARK] = ACTIONS(1967), + [anon_sym_STAR_EQ] = ACTIONS(1989), + [anon_sym_SLASH_EQ] = ACTIONS(1989), + [anon_sym_PERCENT_EQ] = ACTIONS(1989), + [anon_sym_PLUS_EQ] = ACTIONS(1989), + [anon_sym_DASH_EQ] = ACTIONS(1989), + [anon_sym_LT_LT_EQ] = ACTIONS(1989), + [anon_sym_GT_GT_EQ] = ACTIONS(1989), + [anon_sym_AMP_EQ] = ACTIONS(1989), + [anon_sym_CARET_EQ] = ACTIONS(1989), + [anon_sym_PIPE_EQ] = ACTIONS(1989), + [anon_sym_DASH_DASH] = ACTIONS(1967), + [anon_sym_PLUS_PLUS] = ACTIONS(1967), + [anon_sym_DOT] = ACTIONS(1967), + [anon_sym_DASH_GT] = ACTIONS(1967), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, [507] = { - [sym_string_literal] = STATE(610), - [aux_sym_sized_type_specifier_repeat1] = STATE(1085), - [sym_identifier] = ACTIONS(1962), - [anon_sym_COMMA] = ACTIONS(1964), - [anon_sym_LPAREN2] = ACTIONS(1966), - [anon_sym_DASH] = ACTIONS(1970), - [anon_sym_PLUS] = ACTIONS(1970), - [anon_sym_STAR] = ACTIONS(1972), - [anon_sym_SLASH] = ACTIONS(1970), - [anon_sym_PERCENT] = ACTIONS(1970), - [anon_sym_PIPE_PIPE] = ACTIONS(1964), - [anon_sym_AMP_AMP] = ACTIONS(1964), - [anon_sym_PIPE] = ACTIONS(1970), - [anon_sym_CARET] = ACTIONS(1970), - [anon_sym_AMP] = ACTIONS(1970), - [anon_sym_EQ_EQ] = ACTIONS(1964), - [anon_sym_BANG_EQ] = ACTIONS(1964), - [anon_sym_GT] = ACTIONS(1970), - [anon_sym_GT_EQ] = ACTIONS(1964), - [anon_sym_LT_EQ] = ACTIONS(1964), - [anon_sym_LT] = ACTIONS(1970), - [anon_sym_LT_LT] = ACTIONS(1970), - [anon_sym_GT_GT] = ACTIONS(1970), - [anon_sym_SEMI] = ACTIONS(1975), - [anon_sym___extension__] = ACTIONS(1962), - [anon_sym_extern] = ACTIONS(1962), - [anon_sym___attribute__] = ACTIONS(1962), - [anon_sym___scanf] = ACTIONS(1962), - [anon_sym___printf] = ACTIONS(1962), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1978), - [anon_sym___declspec] = ACTIONS(1962), - [anon_sym___based] = ACTIONS(1962), - [anon_sym_signed] = ACTIONS(1980), - [anon_sym_unsigned] = ACTIONS(1980), - [anon_sym_long] = ACTIONS(1980), - [anon_sym_short] = ACTIONS(1980), - [anon_sym_LBRACK] = ACTIONS(1970), - [anon_sym_EQ] = ACTIONS(1982), - [anon_sym_static] = ACTIONS(1962), - [anon_sym_auto] = ACTIONS(1962), - [anon_sym_register] = ACTIONS(1962), - [anon_sym_inline] = ACTIONS(1962), - [anon_sym___inline] = ACTIONS(1962), - [anon_sym___inline__] = ACTIONS(1962), - [anon_sym___forceinline] = ACTIONS(1962), - [anon_sym_thread_local] = ACTIONS(1962), - [anon_sym___thread] = ACTIONS(1962), - [anon_sym_const] = ACTIONS(1962), - [anon_sym_constexpr] = ACTIONS(1962), - [anon_sym_volatile] = ACTIONS(1962), - [anon_sym_restrict] = ACTIONS(1962), - [anon_sym___restrict__] = ACTIONS(1962), - [anon_sym__Atomic] = ACTIONS(1962), - [anon_sym__Noreturn] = ACTIONS(1962), - [anon_sym_noreturn] = ACTIONS(1962), - [anon_sym_COLON] = ACTIONS(1988), - [anon_sym_QMARK] = ACTIONS(1964), - [anon_sym_STAR_EQ] = ACTIONS(1986), - [anon_sym_SLASH_EQ] = ACTIONS(1986), - [anon_sym_PERCENT_EQ] = ACTIONS(1986), - [anon_sym_PLUS_EQ] = ACTIONS(1986), - [anon_sym_DASH_EQ] = ACTIONS(1986), - [anon_sym_LT_LT_EQ] = ACTIONS(1986), - [anon_sym_GT_GT_EQ] = ACTIONS(1986), - [anon_sym_AMP_EQ] = ACTIONS(1986), - [anon_sym_CARET_EQ] = ACTIONS(1986), - [anon_sym_PIPE_EQ] = ACTIONS(1986), - [anon_sym_DASH_DASH] = ACTIONS(1964), - [anon_sym_PLUS_PLUS] = ACTIONS(1964), - [anon_sym_DOT] = ACTIONS(1964), - [anon_sym_DASH_GT] = ACTIONS(1964), - [anon_sym_L_DQUOTE] = ACTIONS(97), - [anon_sym_u_DQUOTE] = ACTIONS(97), - [anon_sym_U_DQUOTE] = ACTIONS(97), - [anon_sym_u8_DQUOTE] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(97), + [sym_string_literal] = STATE(567), + [aux_sym_sized_type_specifier_repeat1] = STATE(1033), + [sym_identifier] = ACTIONS(1965), + [anon_sym_COMMA] = ACTIONS(1967), + [anon_sym_LPAREN2] = ACTIONS(1969), + [anon_sym_DASH] = ACTIONS(1973), + [anon_sym_PLUS] = ACTIONS(1973), + [anon_sym_STAR] = ACTIONS(1975), + [anon_sym_SLASH] = ACTIONS(1973), + [anon_sym_PERCENT] = ACTIONS(1973), + [anon_sym_PIPE_PIPE] = ACTIONS(1967), + [anon_sym_AMP_AMP] = ACTIONS(1967), + [anon_sym_PIPE] = ACTIONS(1973), + [anon_sym_CARET] = ACTIONS(1973), + [anon_sym_AMP] = ACTIONS(1973), + [anon_sym_EQ_EQ] = ACTIONS(1967), + [anon_sym_BANG_EQ] = ACTIONS(1967), + [anon_sym_GT] = ACTIONS(1973), + [anon_sym_GT_EQ] = ACTIONS(1967), + [anon_sym_LT_EQ] = ACTIONS(1967), + [anon_sym_LT] = ACTIONS(1973), + [anon_sym_LT_LT] = ACTIONS(1973), + [anon_sym_GT_GT] = ACTIONS(1973), + [anon_sym_SEMI] = ACTIONS(1978), + [anon_sym___extension__] = ACTIONS(1965), + [anon_sym_extern] = ACTIONS(1965), + [anon_sym___attribute__] = ACTIONS(1965), + [anon_sym___scanf] = ACTIONS(1965), + [anon_sym___printf] = ACTIONS(1965), + [anon_sym___read_mostly] = ACTIONS(1965), + [anon_sym___must_hold] = ACTIONS(1965), + [anon_sym___ro_after_init] = ACTIONS(1965), + [anon_sym___init] = ACTIONS(1965), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1981), + [anon_sym___declspec] = ACTIONS(1965), + [anon_sym___based] = ACTIONS(1965), + [anon_sym_signed] = ACTIONS(1983), + [anon_sym_unsigned] = ACTIONS(1983), + [anon_sym_long] = ACTIONS(1983), + [anon_sym_short] = ACTIONS(1983), + [anon_sym_LBRACK] = ACTIONS(1973), + [anon_sym_EQ] = ACTIONS(1985), + [anon_sym_static] = ACTIONS(1965), + [anon_sym_auto] = ACTIONS(1965), + [anon_sym_register] = ACTIONS(1965), + [anon_sym_inline] = ACTIONS(1965), + [anon_sym___inline] = ACTIONS(1965), + [anon_sym___inline__] = ACTIONS(1965), + [anon_sym___forceinline] = ACTIONS(1965), + [anon_sym_thread_local] = ACTIONS(1965), + [anon_sym___thread] = ACTIONS(1965), + [anon_sym_const] = ACTIONS(1965), + [anon_sym_constexpr] = ACTIONS(1965), + [anon_sym_volatile] = ACTIONS(1965), + [anon_sym_restrict] = ACTIONS(1965), + [anon_sym___restrict__] = ACTIONS(1965), + [anon_sym__Atomic] = ACTIONS(1965), + [anon_sym__Noreturn] = ACTIONS(1965), + [anon_sym_noreturn] = ACTIONS(1965), + [anon_sym_COLON] = ACTIONS(1991), + [anon_sym_QMARK] = ACTIONS(1967), + [anon_sym_STAR_EQ] = ACTIONS(1989), + [anon_sym_SLASH_EQ] = ACTIONS(1989), + [anon_sym_PERCENT_EQ] = ACTIONS(1989), + [anon_sym_PLUS_EQ] = ACTIONS(1989), + [anon_sym_DASH_EQ] = ACTIONS(1989), + [anon_sym_LT_LT_EQ] = ACTIONS(1989), + [anon_sym_GT_GT_EQ] = ACTIONS(1989), + [anon_sym_AMP_EQ] = ACTIONS(1989), + [anon_sym_CARET_EQ] = ACTIONS(1989), + [anon_sym_PIPE_EQ] = ACTIONS(1989), + [anon_sym_DASH_DASH] = ACTIONS(1967), + [anon_sym_PLUS_PLUS] = ACTIONS(1967), + [anon_sym_DOT] = ACTIONS(1967), + [anon_sym_DASH_GT] = ACTIONS(1967), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, [508] = { - [sym_string_literal] = STATE(610), - [aux_sym_sized_type_specifier_repeat1] = STATE(1085), - [sym_identifier] = ACTIONS(1962), - [anon_sym_COMMA] = ACTIONS(1964), - [anon_sym_LPAREN2] = ACTIONS(1966), - [anon_sym_DASH] = ACTIONS(1970), - [anon_sym_PLUS] = ACTIONS(1970), - [anon_sym_STAR] = ACTIONS(1972), - [anon_sym_SLASH] = ACTIONS(1970), - [anon_sym_PERCENT] = ACTIONS(1970), - [anon_sym_PIPE_PIPE] = ACTIONS(1964), - [anon_sym_AMP_AMP] = ACTIONS(1964), - [anon_sym_PIPE] = ACTIONS(1970), - [anon_sym_CARET] = ACTIONS(1970), - [anon_sym_AMP] = ACTIONS(1970), - [anon_sym_EQ_EQ] = ACTIONS(1964), - [anon_sym_BANG_EQ] = ACTIONS(1964), - [anon_sym_GT] = ACTIONS(1970), - [anon_sym_GT_EQ] = ACTIONS(1964), - [anon_sym_LT_EQ] = ACTIONS(1964), - [anon_sym_LT] = ACTIONS(1970), - [anon_sym_LT_LT] = ACTIONS(1970), - [anon_sym_GT_GT] = ACTIONS(1970), - [anon_sym_SEMI] = ACTIONS(1964), - [anon_sym___extension__] = ACTIONS(1962), - [anon_sym_extern] = ACTIONS(1962), - [anon_sym___attribute__] = ACTIONS(1962), - [anon_sym___scanf] = ACTIONS(1962), - [anon_sym___printf] = ACTIONS(1962), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1978), - [anon_sym___declspec] = ACTIONS(1962), - [anon_sym___based] = ACTIONS(1962), - [anon_sym_signed] = ACTIONS(1980), - [anon_sym_unsigned] = ACTIONS(1980), - [anon_sym_long] = ACTIONS(1980), - [anon_sym_short] = ACTIONS(1980), - [anon_sym_LBRACK] = ACTIONS(1970), - [anon_sym_EQ] = ACTIONS(1982), - [anon_sym_static] = ACTIONS(1962), - [anon_sym_auto] = ACTIONS(1962), - [anon_sym_register] = ACTIONS(1962), - [anon_sym_inline] = ACTIONS(1962), - [anon_sym___inline] = ACTIONS(1962), - [anon_sym___inline__] = ACTIONS(1962), - [anon_sym___forceinline] = ACTIONS(1962), - [anon_sym_thread_local] = ACTIONS(1962), - [anon_sym___thread] = ACTIONS(1962), - [anon_sym_const] = ACTIONS(1962), - [anon_sym_constexpr] = ACTIONS(1962), - [anon_sym_volatile] = ACTIONS(1962), - [anon_sym_restrict] = ACTIONS(1962), - [anon_sym___restrict__] = ACTIONS(1962), - [anon_sym__Atomic] = ACTIONS(1962), - [anon_sym__Noreturn] = ACTIONS(1962), - [anon_sym_noreturn] = ACTIONS(1962), - [anon_sym_COLON] = ACTIONS(1990), - [anon_sym_QMARK] = ACTIONS(1964), - [anon_sym_STAR_EQ] = ACTIONS(1986), - [anon_sym_SLASH_EQ] = ACTIONS(1986), - [anon_sym_PERCENT_EQ] = ACTIONS(1986), - [anon_sym_PLUS_EQ] = ACTIONS(1986), - [anon_sym_DASH_EQ] = ACTIONS(1986), - [anon_sym_LT_LT_EQ] = ACTIONS(1986), - [anon_sym_GT_GT_EQ] = ACTIONS(1986), - [anon_sym_AMP_EQ] = ACTIONS(1986), - [anon_sym_CARET_EQ] = ACTIONS(1986), - [anon_sym_PIPE_EQ] = ACTIONS(1986), - [anon_sym_DASH_DASH] = ACTIONS(1964), - [anon_sym_PLUS_PLUS] = ACTIONS(1964), - [anon_sym_DOT] = ACTIONS(1964), - [anon_sym_DASH_GT] = ACTIONS(1964), - [anon_sym_L_DQUOTE] = ACTIONS(97), - [anon_sym_u_DQUOTE] = ACTIONS(97), - [anon_sym_U_DQUOTE] = ACTIONS(97), - [anon_sym_u8_DQUOTE] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(97), + [sym__expression] = STATE(1139), + [sym__expression_not_binary] = STATE(809), + [sym_conditional_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_pointer_expression] = STATE(1154), + [sym_unary_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_update_expression] = STATE(809), + [sym_cast_expression] = STATE(809), + [sym_sizeof_expression] = STATE(809), + [sym_alignof_expression] = STATE(809), + [sym_offsetof_expression] = STATE(809), + [sym_generic_expression] = STATE(809), + [sym_subscript_expression] = STATE(1154), + [sym_call_expression] = STATE(1154), + [sym_gnu_asm_expression] = STATE(809), + [sym_field_expression] = STATE(1154), + [sym_compound_literal_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(1154), + [sym_initializer_list] = STATE(811), + [sym_char_literal] = STATE(809), + [sym_concatenated_string] = STATE(809), + [sym_string_literal] = STATE(573), + [sym_null] = STATE(809), + [sym_identifier] = ACTIONS(1993), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1538), + [anon_sym_LPAREN2] = ACTIONS(1538), + [anon_sym_BANG] = ACTIONS(1995), + [anon_sym_TILDE] = ACTIONS(1997), + [anon_sym_DASH] = ACTIONS(1544), + [anon_sym_PLUS] = ACTIONS(1544), + [anon_sym_STAR] = ACTIONS(1538), + [anon_sym_SLASH] = ACTIONS(1544), + [anon_sym_PERCENT] = ACTIONS(1538), + [anon_sym_PIPE_PIPE] = ACTIONS(1538), + [anon_sym_AMP_AMP] = ACTIONS(1538), + [anon_sym_PIPE] = ACTIONS(1544), + [anon_sym_CARET] = ACTIONS(1538), + [anon_sym_AMP] = ACTIONS(1544), + [anon_sym_EQ_EQ] = ACTIONS(1538), + [anon_sym_BANG_EQ] = ACTIONS(1538), + [anon_sym_GT] = ACTIONS(1544), + [anon_sym_GT_EQ] = ACTIONS(1538), + [anon_sym_LT_EQ] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(1544), + [anon_sym_LT_LT] = ACTIONS(1538), + [anon_sym_GT_GT] = ACTIONS(1538), + [anon_sym_LBRACE] = ACTIONS(1546), + [anon_sym_LBRACK] = ACTIONS(1538), + [anon_sym_RBRACK] = ACTIONS(1538), + [anon_sym_QMARK] = ACTIONS(1538), + [anon_sym_DASH_DASH] = ACTIONS(1538), + [anon_sym_PLUS_PLUS] = ACTIONS(1538), + [anon_sym_sizeof] = ACTIONS(1999), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [anon_sym_DOT] = ACTIONS(1544), + [anon_sym_DASH_GT] = ACTIONS(1538), + [sym_number_literal] = ACTIONS(161), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(163), + [sym_false] = ACTIONS(163), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, [509] = { - [sym_string_literal] = STATE(610), - [aux_sym_sized_type_specifier_repeat1] = STATE(1085), - [sym_identifier] = ACTIONS(1962), - [anon_sym_COMMA] = ACTIONS(1964), - [anon_sym_LPAREN2] = ACTIONS(1966), - [anon_sym_DASH] = ACTIONS(1970), - [anon_sym_PLUS] = ACTIONS(1970), - [anon_sym_STAR] = ACTIONS(1972), - [anon_sym_SLASH] = ACTIONS(1970), - [anon_sym_PERCENT] = ACTIONS(1970), - [anon_sym_PIPE_PIPE] = ACTIONS(1964), - [anon_sym_AMP_AMP] = ACTIONS(1964), - [anon_sym_PIPE] = ACTIONS(1970), - [anon_sym_CARET] = ACTIONS(1970), - [anon_sym_AMP] = ACTIONS(1970), - [anon_sym_EQ_EQ] = ACTIONS(1964), - [anon_sym_BANG_EQ] = ACTIONS(1964), - [anon_sym_GT] = ACTIONS(1970), - [anon_sym_GT_EQ] = ACTIONS(1964), - [anon_sym_LT_EQ] = ACTIONS(1964), - [anon_sym_LT] = ACTIONS(1970), - [anon_sym_LT_LT] = ACTIONS(1970), - [anon_sym_GT_GT] = ACTIONS(1970), - [anon_sym_SEMI] = ACTIONS(1975), - [anon_sym___extension__] = ACTIONS(1962), - [anon_sym_extern] = ACTIONS(1962), - [anon_sym___attribute__] = ACTIONS(1962), - [anon_sym___scanf] = ACTIONS(1962), - [anon_sym___printf] = ACTIONS(1962), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1978), - [anon_sym___declspec] = ACTIONS(1962), - [anon_sym___based] = ACTIONS(1962), - [anon_sym_signed] = ACTIONS(1980), - [anon_sym_unsigned] = ACTIONS(1980), - [anon_sym_long] = ACTIONS(1980), - [anon_sym_short] = ACTIONS(1980), - [anon_sym_LBRACK] = ACTIONS(1970), - [anon_sym_EQ] = ACTIONS(1982), - [anon_sym_static] = ACTIONS(1962), - [anon_sym_auto] = ACTIONS(1962), - [anon_sym_register] = ACTIONS(1962), - [anon_sym_inline] = ACTIONS(1962), - [anon_sym___inline] = ACTIONS(1962), - [anon_sym___inline__] = ACTIONS(1962), - [anon_sym___forceinline] = ACTIONS(1962), - [anon_sym_thread_local] = ACTIONS(1962), - [anon_sym___thread] = ACTIONS(1962), - [anon_sym_const] = ACTIONS(1962), - [anon_sym_constexpr] = ACTIONS(1962), - [anon_sym_volatile] = ACTIONS(1962), - [anon_sym_restrict] = ACTIONS(1962), - [anon_sym___restrict__] = ACTIONS(1962), - [anon_sym__Atomic] = ACTIONS(1962), - [anon_sym__Noreturn] = ACTIONS(1962), - [anon_sym_noreturn] = ACTIONS(1962), - [anon_sym_COLON] = ACTIONS(1990), - [anon_sym_QMARK] = ACTIONS(1964), - [anon_sym_STAR_EQ] = ACTIONS(1986), - [anon_sym_SLASH_EQ] = ACTIONS(1986), - [anon_sym_PERCENT_EQ] = ACTIONS(1986), - [anon_sym_PLUS_EQ] = ACTIONS(1986), - [anon_sym_DASH_EQ] = ACTIONS(1986), - [anon_sym_LT_LT_EQ] = ACTIONS(1986), - [anon_sym_GT_GT_EQ] = ACTIONS(1986), - [anon_sym_AMP_EQ] = ACTIONS(1986), - [anon_sym_CARET_EQ] = ACTIONS(1986), - [anon_sym_PIPE_EQ] = ACTIONS(1986), - [anon_sym_DASH_DASH] = ACTIONS(1964), - [anon_sym_PLUS_PLUS] = ACTIONS(1964), - [anon_sym_DOT] = ACTIONS(1964), - [anon_sym_DASH_GT] = ACTIONS(1964), - [anon_sym_L_DQUOTE] = ACTIONS(97), - [anon_sym_u_DQUOTE] = ACTIONS(97), - [anon_sym_U_DQUOTE] = ACTIONS(97), - [anon_sym_u8_DQUOTE] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(97), + [sym_string_literal] = STATE(567), + [aux_sym_sized_type_specifier_repeat1] = STATE(1033), + [sym_identifier] = ACTIONS(1965), + [anon_sym_COMMA] = ACTIONS(1967), + [anon_sym_LPAREN2] = ACTIONS(1969), + [anon_sym_DASH] = ACTIONS(1973), + [anon_sym_PLUS] = ACTIONS(1973), + [anon_sym_STAR] = ACTIONS(1975), + [anon_sym_SLASH] = ACTIONS(1973), + [anon_sym_PERCENT] = ACTIONS(1973), + [anon_sym_PIPE_PIPE] = ACTIONS(1967), + [anon_sym_AMP_AMP] = ACTIONS(1967), + [anon_sym_PIPE] = ACTIONS(1973), + [anon_sym_CARET] = ACTIONS(1973), + [anon_sym_AMP] = ACTIONS(1973), + [anon_sym_EQ_EQ] = ACTIONS(1967), + [anon_sym_BANG_EQ] = ACTIONS(1967), + [anon_sym_GT] = ACTIONS(1973), + [anon_sym_GT_EQ] = ACTIONS(1967), + [anon_sym_LT_EQ] = ACTIONS(1967), + [anon_sym_LT] = ACTIONS(1973), + [anon_sym_LT_LT] = ACTIONS(1973), + [anon_sym_GT_GT] = ACTIONS(1973), + [anon_sym_SEMI] = ACTIONS(1978), + [anon_sym___extension__] = ACTIONS(1965), + [anon_sym_extern] = ACTIONS(1965), + [anon_sym___attribute__] = ACTIONS(1965), + [anon_sym___scanf] = ACTIONS(1965), + [anon_sym___printf] = ACTIONS(1965), + [anon_sym___read_mostly] = ACTIONS(1965), + [anon_sym___must_hold] = ACTIONS(1965), + [anon_sym___ro_after_init] = ACTIONS(1965), + [anon_sym___init] = ACTIONS(1965), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1981), + [anon_sym___declspec] = ACTIONS(1965), + [anon_sym___based] = ACTIONS(1965), + [anon_sym_signed] = ACTIONS(1983), + [anon_sym_unsigned] = ACTIONS(1983), + [anon_sym_long] = ACTIONS(1983), + [anon_sym_short] = ACTIONS(1983), + [anon_sym_LBRACK] = ACTIONS(1973), + [anon_sym_EQ] = ACTIONS(1985), + [anon_sym_static] = ACTIONS(1965), + [anon_sym_auto] = ACTIONS(1965), + [anon_sym_register] = ACTIONS(1965), + [anon_sym_inline] = ACTIONS(1965), + [anon_sym___inline] = ACTIONS(1965), + [anon_sym___inline__] = ACTIONS(1965), + [anon_sym___forceinline] = ACTIONS(1965), + [anon_sym_thread_local] = ACTIONS(1965), + [anon_sym___thread] = ACTIONS(1965), + [anon_sym_const] = ACTIONS(1965), + [anon_sym_constexpr] = ACTIONS(1965), + [anon_sym_volatile] = ACTIONS(1965), + [anon_sym_restrict] = ACTIONS(1965), + [anon_sym___restrict__] = ACTIONS(1965), + [anon_sym__Atomic] = ACTIONS(1965), + [anon_sym__Noreturn] = ACTIONS(1965), + [anon_sym_noreturn] = ACTIONS(1965), + [anon_sym_COLON] = ACTIONS(2001), + [anon_sym_QMARK] = ACTIONS(1967), + [anon_sym_STAR_EQ] = ACTIONS(1989), + [anon_sym_SLASH_EQ] = ACTIONS(1989), + [anon_sym_PERCENT_EQ] = ACTIONS(1989), + [anon_sym_PLUS_EQ] = ACTIONS(1989), + [anon_sym_DASH_EQ] = ACTIONS(1989), + [anon_sym_LT_LT_EQ] = ACTIONS(1989), + [anon_sym_GT_GT_EQ] = ACTIONS(1989), + [anon_sym_AMP_EQ] = ACTIONS(1989), + [anon_sym_CARET_EQ] = ACTIONS(1989), + [anon_sym_PIPE_EQ] = ACTIONS(1989), + [anon_sym_DASH_DASH] = ACTIONS(1967), + [anon_sym_PLUS_PLUS] = ACTIONS(1967), + [anon_sym_DOT] = ACTIONS(1967), + [anon_sym_DASH_GT] = ACTIONS(1967), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, [510] = { - [sym_string_literal] = STATE(610), - [aux_sym_sized_type_specifier_repeat1] = STATE(1085), - [sym_identifier] = ACTIONS(1962), - [anon_sym_COMMA] = ACTIONS(1964), - [anon_sym_LPAREN2] = ACTIONS(1966), - [anon_sym_DASH] = ACTIONS(1970), - [anon_sym_PLUS] = ACTIONS(1970), - [anon_sym_STAR] = ACTIONS(1972), - [anon_sym_SLASH] = ACTIONS(1970), - [anon_sym_PERCENT] = ACTIONS(1970), - [anon_sym_PIPE_PIPE] = ACTIONS(1964), - [anon_sym_AMP_AMP] = ACTIONS(1964), - [anon_sym_PIPE] = ACTIONS(1970), - [anon_sym_CARET] = ACTIONS(1970), - [anon_sym_AMP] = ACTIONS(1970), - [anon_sym_EQ_EQ] = ACTIONS(1964), - [anon_sym_BANG_EQ] = ACTIONS(1964), - [anon_sym_GT] = ACTIONS(1970), - [anon_sym_GT_EQ] = ACTIONS(1964), - [anon_sym_LT_EQ] = ACTIONS(1964), - [anon_sym_LT] = ACTIONS(1970), - [anon_sym_LT_LT] = ACTIONS(1970), - [anon_sym_GT_GT] = ACTIONS(1970), - [anon_sym_SEMI] = ACTIONS(1975), - [anon_sym___extension__] = ACTIONS(1962), - [anon_sym_extern] = ACTIONS(1962), - [anon_sym___attribute__] = ACTIONS(1962), - [anon_sym___scanf] = ACTIONS(1962), - [anon_sym___printf] = ACTIONS(1962), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1978), - [anon_sym___declspec] = ACTIONS(1962), - [anon_sym___based] = ACTIONS(1962), - [anon_sym_signed] = ACTIONS(1980), - [anon_sym_unsigned] = ACTIONS(1980), - [anon_sym_long] = ACTIONS(1980), - [anon_sym_short] = ACTIONS(1980), - [anon_sym_LBRACK] = ACTIONS(1970), - [anon_sym_EQ] = ACTIONS(1982), - [anon_sym_static] = ACTIONS(1962), - [anon_sym_auto] = ACTIONS(1962), - [anon_sym_register] = ACTIONS(1962), - [anon_sym_inline] = ACTIONS(1962), - [anon_sym___inline] = ACTIONS(1962), - [anon_sym___inline__] = ACTIONS(1962), - [anon_sym___forceinline] = ACTIONS(1962), - [anon_sym_thread_local] = ACTIONS(1962), - [anon_sym___thread] = ACTIONS(1962), - [anon_sym_const] = ACTIONS(1962), - [anon_sym_constexpr] = ACTIONS(1962), - [anon_sym_volatile] = ACTIONS(1962), - [anon_sym_restrict] = ACTIONS(1962), - [anon_sym___restrict__] = ACTIONS(1962), - [anon_sym__Atomic] = ACTIONS(1962), - [anon_sym__Noreturn] = ACTIONS(1962), - [anon_sym_noreturn] = ACTIONS(1962), - [anon_sym_COLON] = ACTIONS(1992), - [anon_sym_QMARK] = ACTIONS(1964), - [anon_sym_STAR_EQ] = ACTIONS(1986), - [anon_sym_SLASH_EQ] = ACTIONS(1986), - [anon_sym_PERCENT_EQ] = ACTIONS(1986), - [anon_sym_PLUS_EQ] = ACTIONS(1986), - [anon_sym_DASH_EQ] = ACTIONS(1986), - [anon_sym_LT_LT_EQ] = ACTIONS(1986), - [anon_sym_GT_GT_EQ] = ACTIONS(1986), - [anon_sym_AMP_EQ] = ACTIONS(1986), - [anon_sym_CARET_EQ] = ACTIONS(1986), - [anon_sym_PIPE_EQ] = ACTIONS(1986), - [anon_sym_DASH_DASH] = ACTIONS(1964), - [anon_sym_PLUS_PLUS] = ACTIONS(1964), - [anon_sym_DOT] = ACTIONS(1964), - [anon_sym_DASH_GT] = ACTIONS(1964), - [anon_sym_L_DQUOTE] = ACTIONS(97), - [anon_sym_u_DQUOTE] = ACTIONS(97), - [anon_sym_U_DQUOTE] = ACTIONS(97), - [anon_sym_u8_DQUOTE] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(97), + [sym_string_literal] = STATE(567), + [aux_sym_sized_type_specifier_repeat1] = STATE(1033), + [sym_identifier] = ACTIONS(1965), + [anon_sym_COMMA] = ACTIONS(1967), + [anon_sym_LPAREN2] = ACTIONS(1969), + [anon_sym_DASH] = ACTIONS(1973), + [anon_sym_PLUS] = ACTIONS(1973), + [anon_sym_STAR] = ACTIONS(1975), + [anon_sym_SLASH] = ACTIONS(1973), + [anon_sym_PERCENT] = ACTIONS(1973), + [anon_sym_PIPE_PIPE] = ACTIONS(1967), + [anon_sym_AMP_AMP] = ACTIONS(1967), + [anon_sym_PIPE] = ACTIONS(1973), + [anon_sym_CARET] = ACTIONS(1973), + [anon_sym_AMP] = ACTIONS(1973), + [anon_sym_EQ_EQ] = ACTIONS(1967), + [anon_sym_BANG_EQ] = ACTIONS(1967), + [anon_sym_GT] = ACTIONS(1973), + [anon_sym_GT_EQ] = ACTIONS(1967), + [anon_sym_LT_EQ] = ACTIONS(1967), + [anon_sym_LT] = ACTIONS(1973), + [anon_sym_LT_LT] = ACTIONS(1973), + [anon_sym_GT_GT] = ACTIONS(1973), + [anon_sym_SEMI] = ACTIONS(1967), + [anon_sym___extension__] = ACTIONS(1965), + [anon_sym_extern] = ACTIONS(1965), + [anon_sym___attribute__] = ACTIONS(1965), + [anon_sym___scanf] = ACTIONS(1965), + [anon_sym___printf] = ACTIONS(1965), + [anon_sym___read_mostly] = ACTIONS(1965), + [anon_sym___must_hold] = ACTIONS(1965), + [anon_sym___ro_after_init] = ACTIONS(1965), + [anon_sym___init] = ACTIONS(1965), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1981), + [anon_sym___declspec] = ACTIONS(1965), + [anon_sym___based] = ACTIONS(1965), + [anon_sym_signed] = ACTIONS(1983), + [anon_sym_unsigned] = ACTIONS(1983), + [anon_sym_long] = ACTIONS(1983), + [anon_sym_short] = ACTIONS(1983), + [anon_sym_LBRACK] = ACTIONS(1973), + [anon_sym_EQ] = ACTIONS(1985), + [anon_sym_static] = ACTIONS(1965), + [anon_sym_auto] = ACTIONS(1965), + [anon_sym_register] = ACTIONS(1965), + [anon_sym_inline] = ACTIONS(1965), + [anon_sym___inline] = ACTIONS(1965), + [anon_sym___inline__] = ACTIONS(1965), + [anon_sym___forceinline] = ACTIONS(1965), + [anon_sym_thread_local] = ACTIONS(1965), + [anon_sym___thread] = ACTIONS(1965), + [anon_sym_const] = ACTIONS(1965), + [anon_sym_constexpr] = ACTIONS(1965), + [anon_sym_volatile] = ACTIONS(1965), + [anon_sym_restrict] = ACTIONS(1965), + [anon_sym___restrict__] = ACTIONS(1965), + [anon_sym__Atomic] = ACTIONS(1965), + [anon_sym__Noreturn] = ACTIONS(1965), + [anon_sym_noreturn] = ACTIONS(1965), + [anon_sym_COLON] = ACTIONS(2003), + [anon_sym_QMARK] = ACTIONS(1967), + [anon_sym_STAR_EQ] = ACTIONS(1989), + [anon_sym_SLASH_EQ] = ACTIONS(1989), + [anon_sym_PERCENT_EQ] = ACTIONS(1989), + [anon_sym_PLUS_EQ] = ACTIONS(1989), + [anon_sym_DASH_EQ] = ACTIONS(1989), + [anon_sym_LT_LT_EQ] = ACTIONS(1989), + [anon_sym_GT_GT_EQ] = ACTIONS(1989), + [anon_sym_AMP_EQ] = ACTIONS(1989), + [anon_sym_CARET_EQ] = ACTIONS(1989), + [anon_sym_PIPE_EQ] = ACTIONS(1989), + [anon_sym_DASH_DASH] = ACTIONS(1967), + [anon_sym_PLUS_PLUS] = ACTIONS(1967), + [anon_sym_DOT] = ACTIONS(1967), + [anon_sym_DASH_GT] = ACTIONS(1967), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, [511] = { - [sym_string_literal] = STATE(610), - [aux_sym_sized_type_specifier_repeat1] = STATE(1085), - [sym_identifier] = ACTIONS(1962), - [anon_sym_COMMA] = ACTIONS(1964), - [anon_sym_LPAREN2] = ACTIONS(1966), - [anon_sym_DASH] = ACTIONS(1970), - [anon_sym_PLUS] = ACTIONS(1970), - [anon_sym_STAR] = ACTIONS(1972), - [anon_sym_SLASH] = ACTIONS(1970), - [anon_sym_PERCENT] = ACTIONS(1970), - [anon_sym_PIPE_PIPE] = ACTIONS(1964), - [anon_sym_AMP_AMP] = ACTIONS(1964), - [anon_sym_PIPE] = ACTIONS(1970), - [anon_sym_CARET] = ACTIONS(1970), - [anon_sym_AMP] = ACTIONS(1970), - [anon_sym_EQ_EQ] = ACTIONS(1964), - [anon_sym_BANG_EQ] = ACTIONS(1964), - [anon_sym_GT] = ACTIONS(1970), - [anon_sym_GT_EQ] = ACTIONS(1964), - [anon_sym_LT_EQ] = ACTIONS(1964), - [anon_sym_LT] = ACTIONS(1970), - [anon_sym_LT_LT] = ACTIONS(1970), - [anon_sym_GT_GT] = ACTIONS(1970), - [anon_sym_SEMI] = ACTIONS(1964), - [anon_sym___extension__] = ACTIONS(1962), - [anon_sym_extern] = ACTIONS(1962), - [anon_sym___attribute__] = ACTIONS(1962), - [anon_sym___scanf] = ACTIONS(1962), - [anon_sym___printf] = ACTIONS(1962), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1978), - [anon_sym___declspec] = ACTIONS(1962), - [anon_sym___based] = ACTIONS(1962), - [anon_sym_signed] = ACTIONS(1980), - [anon_sym_unsigned] = ACTIONS(1980), - [anon_sym_long] = ACTIONS(1980), - [anon_sym_short] = ACTIONS(1980), - [anon_sym_LBRACK] = ACTIONS(1970), - [anon_sym_EQ] = ACTIONS(1982), - [anon_sym_static] = ACTIONS(1962), - [anon_sym_auto] = ACTIONS(1962), - [anon_sym_register] = ACTIONS(1962), - [anon_sym_inline] = ACTIONS(1962), - [anon_sym___inline] = ACTIONS(1962), - [anon_sym___inline__] = ACTIONS(1962), - [anon_sym___forceinline] = ACTIONS(1962), - [anon_sym_thread_local] = ACTIONS(1962), - [anon_sym___thread] = ACTIONS(1962), - [anon_sym_const] = ACTIONS(1962), - [anon_sym_constexpr] = ACTIONS(1962), - [anon_sym_volatile] = ACTIONS(1962), - [anon_sym_restrict] = ACTIONS(1962), - [anon_sym___restrict__] = ACTIONS(1962), - [anon_sym__Atomic] = ACTIONS(1962), - [anon_sym__Noreturn] = ACTIONS(1962), - [anon_sym_noreturn] = ACTIONS(1962), - [anon_sym_COLON] = ACTIONS(1994), - [anon_sym_QMARK] = ACTIONS(1964), - [anon_sym_STAR_EQ] = ACTIONS(1986), - [anon_sym_SLASH_EQ] = ACTIONS(1986), - [anon_sym_PERCENT_EQ] = ACTIONS(1986), - [anon_sym_PLUS_EQ] = ACTIONS(1986), - [anon_sym_DASH_EQ] = ACTIONS(1986), - [anon_sym_LT_LT_EQ] = ACTIONS(1986), - [anon_sym_GT_GT_EQ] = ACTIONS(1986), - [anon_sym_AMP_EQ] = ACTIONS(1986), - [anon_sym_CARET_EQ] = ACTIONS(1986), - [anon_sym_PIPE_EQ] = ACTIONS(1986), - [anon_sym_DASH_DASH] = ACTIONS(1964), - [anon_sym_PLUS_PLUS] = ACTIONS(1964), - [anon_sym_DOT] = ACTIONS(1964), - [anon_sym_DASH_GT] = ACTIONS(1964), - [anon_sym_L_DQUOTE] = ACTIONS(97), - [anon_sym_u_DQUOTE] = ACTIONS(97), - [anon_sym_U_DQUOTE] = ACTIONS(97), - [anon_sym_u8_DQUOTE] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(97), + [sym_string_literal] = STATE(567), + [aux_sym_sized_type_specifier_repeat1] = STATE(1033), + [sym_identifier] = ACTIONS(1965), + [anon_sym_COMMA] = ACTIONS(1967), + [anon_sym_LPAREN2] = ACTIONS(1969), + [anon_sym_DASH] = ACTIONS(1973), + [anon_sym_PLUS] = ACTIONS(1973), + [anon_sym_STAR] = ACTIONS(1975), + [anon_sym_SLASH] = ACTIONS(1973), + [anon_sym_PERCENT] = ACTIONS(1973), + [anon_sym_PIPE_PIPE] = ACTIONS(1967), + [anon_sym_AMP_AMP] = ACTIONS(1967), + [anon_sym_PIPE] = ACTIONS(1973), + [anon_sym_CARET] = ACTIONS(1973), + [anon_sym_AMP] = ACTIONS(1973), + [anon_sym_EQ_EQ] = ACTIONS(1967), + [anon_sym_BANG_EQ] = ACTIONS(1967), + [anon_sym_GT] = ACTIONS(1973), + [anon_sym_GT_EQ] = ACTIONS(1967), + [anon_sym_LT_EQ] = ACTIONS(1967), + [anon_sym_LT] = ACTIONS(1973), + [anon_sym_LT_LT] = ACTIONS(1973), + [anon_sym_GT_GT] = ACTIONS(1973), + [anon_sym_SEMI] = ACTIONS(1967), + [anon_sym___extension__] = ACTIONS(1965), + [anon_sym_extern] = ACTIONS(1965), + [anon_sym___attribute__] = ACTIONS(1965), + [anon_sym___scanf] = ACTIONS(1965), + [anon_sym___printf] = ACTIONS(1965), + [anon_sym___read_mostly] = ACTIONS(1965), + [anon_sym___must_hold] = ACTIONS(1965), + [anon_sym___ro_after_init] = ACTIONS(1965), + [anon_sym___init] = ACTIONS(1965), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1981), + [anon_sym___declspec] = ACTIONS(1965), + [anon_sym___based] = ACTIONS(1965), + [anon_sym_signed] = ACTIONS(1983), + [anon_sym_unsigned] = ACTIONS(1983), + [anon_sym_long] = ACTIONS(1983), + [anon_sym_short] = ACTIONS(1983), + [anon_sym_LBRACK] = ACTIONS(1973), + [anon_sym_EQ] = ACTIONS(1985), + [anon_sym_static] = ACTIONS(1965), + [anon_sym_auto] = ACTIONS(1965), + [anon_sym_register] = ACTIONS(1965), + [anon_sym_inline] = ACTIONS(1965), + [anon_sym___inline] = ACTIONS(1965), + [anon_sym___inline__] = ACTIONS(1965), + [anon_sym___forceinline] = ACTIONS(1965), + [anon_sym_thread_local] = ACTIONS(1965), + [anon_sym___thread] = ACTIONS(1965), + [anon_sym_const] = ACTIONS(1965), + [anon_sym_constexpr] = ACTIONS(1965), + [anon_sym_volatile] = ACTIONS(1965), + [anon_sym_restrict] = ACTIONS(1965), + [anon_sym___restrict__] = ACTIONS(1965), + [anon_sym__Atomic] = ACTIONS(1965), + [anon_sym__Noreturn] = ACTIONS(1965), + [anon_sym_noreturn] = ACTIONS(1965), + [anon_sym_COLON] = ACTIONS(2001), + [anon_sym_QMARK] = ACTIONS(1967), + [anon_sym_STAR_EQ] = ACTIONS(1989), + [anon_sym_SLASH_EQ] = ACTIONS(1989), + [anon_sym_PERCENT_EQ] = ACTIONS(1989), + [anon_sym_PLUS_EQ] = ACTIONS(1989), + [anon_sym_DASH_EQ] = ACTIONS(1989), + [anon_sym_LT_LT_EQ] = ACTIONS(1989), + [anon_sym_GT_GT_EQ] = ACTIONS(1989), + [anon_sym_AMP_EQ] = ACTIONS(1989), + [anon_sym_CARET_EQ] = ACTIONS(1989), + [anon_sym_PIPE_EQ] = ACTIONS(1989), + [anon_sym_DASH_DASH] = ACTIONS(1967), + [anon_sym_PLUS_PLUS] = ACTIONS(1967), + [anon_sym_DOT] = ACTIONS(1967), + [anon_sym_DASH_GT] = ACTIONS(1967), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, [512] = { - [sym_string_literal] = STATE(610), - [aux_sym_sized_type_specifier_repeat1] = STATE(1085), - [sym_identifier] = ACTIONS(1962), - [anon_sym_COMMA] = ACTIONS(1964), - [anon_sym_LPAREN2] = ACTIONS(1966), - [anon_sym_DASH] = ACTIONS(1970), - [anon_sym_PLUS] = ACTIONS(1970), - [anon_sym_STAR] = ACTIONS(1972), - [anon_sym_SLASH] = ACTIONS(1970), - [anon_sym_PERCENT] = ACTIONS(1970), - [anon_sym_PIPE_PIPE] = ACTIONS(1964), - [anon_sym_AMP_AMP] = ACTIONS(1964), - [anon_sym_PIPE] = ACTIONS(1970), - [anon_sym_CARET] = ACTIONS(1970), - [anon_sym_AMP] = ACTIONS(1970), - [anon_sym_EQ_EQ] = ACTIONS(1964), - [anon_sym_BANG_EQ] = ACTIONS(1964), - [anon_sym_GT] = ACTIONS(1970), - [anon_sym_GT_EQ] = ACTIONS(1964), - [anon_sym_LT_EQ] = ACTIONS(1964), - [anon_sym_LT] = ACTIONS(1970), - [anon_sym_LT_LT] = ACTIONS(1970), - [anon_sym_GT_GT] = ACTIONS(1970), - [anon_sym_SEMI] = ACTIONS(1964), - [anon_sym___extension__] = ACTIONS(1962), - [anon_sym_extern] = ACTIONS(1962), - [anon_sym___attribute__] = ACTIONS(1962), - [anon_sym___scanf] = ACTIONS(1962), - [anon_sym___printf] = ACTIONS(1962), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1978), - [anon_sym___declspec] = ACTIONS(1962), - [anon_sym___based] = ACTIONS(1962), - [anon_sym_signed] = ACTIONS(1980), - [anon_sym_unsigned] = ACTIONS(1980), - [anon_sym_long] = ACTIONS(1980), - [anon_sym_short] = ACTIONS(1980), - [anon_sym_LBRACK] = ACTIONS(1970), - [anon_sym_EQ] = ACTIONS(1982), - [anon_sym_static] = ACTIONS(1962), - [anon_sym_auto] = ACTIONS(1962), - [anon_sym_register] = ACTIONS(1962), - [anon_sym_inline] = ACTIONS(1962), - [anon_sym___inline] = ACTIONS(1962), - [anon_sym___inline__] = ACTIONS(1962), - [anon_sym___forceinline] = ACTIONS(1962), - [anon_sym_thread_local] = ACTIONS(1962), - [anon_sym___thread] = ACTIONS(1962), - [anon_sym_const] = ACTIONS(1962), - [anon_sym_constexpr] = ACTIONS(1962), - [anon_sym_volatile] = ACTIONS(1962), - [anon_sym_restrict] = ACTIONS(1962), - [anon_sym___restrict__] = ACTIONS(1962), - [anon_sym__Atomic] = ACTIONS(1962), - [anon_sym__Noreturn] = ACTIONS(1962), - [anon_sym_noreturn] = ACTIONS(1962), - [anon_sym_COLON] = ACTIONS(1992), - [anon_sym_QMARK] = ACTIONS(1964), - [anon_sym_STAR_EQ] = ACTIONS(1986), - [anon_sym_SLASH_EQ] = ACTIONS(1986), - [anon_sym_PERCENT_EQ] = ACTIONS(1986), - [anon_sym_PLUS_EQ] = ACTIONS(1986), - [anon_sym_DASH_EQ] = ACTIONS(1986), - [anon_sym_LT_LT_EQ] = ACTIONS(1986), - [anon_sym_GT_GT_EQ] = ACTIONS(1986), - [anon_sym_AMP_EQ] = ACTIONS(1986), - [anon_sym_CARET_EQ] = ACTIONS(1986), - [anon_sym_PIPE_EQ] = ACTIONS(1986), - [anon_sym_DASH_DASH] = ACTIONS(1964), - [anon_sym_PLUS_PLUS] = ACTIONS(1964), - [anon_sym_DOT] = ACTIONS(1964), - [anon_sym_DASH_GT] = ACTIONS(1964), - [anon_sym_L_DQUOTE] = ACTIONS(97), - [anon_sym_u_DQUOTE] = ACTIONS(97), - [anon_sym_U_DQUOTE] = ACTIONS(97), - [anon_sym_u8_DQUOTE] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(97), + [sym_string_literal] = STATE(567), + [aux_sym_sized_type_specifier_repeat1] = STATE(1033), + [sym_identifier] = ACTIONS(1965), + [anon_sym_COMMA] = ACTIONS(1967), + [anon_sym_LPAREN2] = ACTIONS(1969), + [anon_sym_DASH] = ACTIONS(1973), + [anon_sym_PLUS] = ACTIONS(1973), + [anon_sym_STAR] = ACTIONS(1975), + [anon_sym_SLASH] = ACTIONS(1973), + [anon_sym_PERCENT] = ACTIONS(1973), + [anon_sym_PIPE_PIPE] = ACTIONS(1967), + [anon_sym_AMP_AMP] = ACTIONS(1967), + [anon_sym_PIPE] = ACTIONS(1973), + [anon_sym_CARET] = ACTIONS(1973), + [anon_sym_AMP] = ACTIONS(1973), + [anon_sym_EQ_EQ] = ACTIONS(1967), + [anon_sym_BANG_EQ] = ACTIONS(1967), + [anon_sym_GT] = ACTIONS(1973), + [anon_sym_GT_EQ] = ACTIONS(1967), + [anon_sym_LT_EQ] = ACTIONS(1967), + [anon_sym_LT] = ACTIONS(1973), + [anon_sym_LT_LT] = ACTIONS(1973), + [anon_sym_GT_GT] = ACTIONS(1973), + [anon_sym_SEMI] = ACTIONS(1967), + [anon_sym___extension__] = ACTIONS(1965), + [anon_sym_extern] = ACTIONS(1965), + [anon_sym___attribute__] = ACTIONS(1965), + [anon_sym___scanf] = ACTIONS(1965), + [anon_sym___printf] = ACTIONS(1965), + [anon_sym___read_mostly] = ACTIONS(1965), + [anon_sym___must_hold] = ACTIONS(1965), + [anon_sym___ro_after_init] = ACTIONS(1965), + [anon_sym___init] = ACTIONS(1965), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1981), + [anon_sym___declspec] = ACTIONS(1965), + [anon_sym___based] = ACTIONS(1965), + [anon_sym_signed] = ACTIONS(1983), + [anon_sym_unsigned] = ACTIONS(1983), + [anon_sym_long] = ACTIONS(1983), + [anon_sym_short] = ACTIONS(1983), + [anon_sym_LBRACK] = ACTIONS(1973), + [anon_sym_EQ] = ACTIONS(1985), + [anon_sym_static] = ACTIONS(1965), + [anon_sym_auto] = ACTIONS(1965), + [anon_sym_register] = ACTIONS(1965), + [anon_sym_inline] = ACTIONS(1965), + [anon_sym___inline] = ACTIONS(1965), + [anon_sym___inline__] = ACTIONS(1965), + [anon_sym___forceinline] = ACTIONS(1965), + [anon_sym_thread_local] = ACTIONS(1965), + [anon_sym___thread] = ACTIONS(1965), + [anon_sym_const] = ACTIONS(1965), + [anon_sym_constexpr] = ACTIONS(1965), + [anon_sym_volatile] = ACTIONS(1965), + [anon_sym_restrict] = ACTIONS(1965), + [anon_sym___restrict__] = ACTIONS(1965), + [anon_sym__Atomic] = ACTIONS(1965), + [anon_sym__Noreturn] = ACTIONS(1965), + [anon_sym_noreturn] = ACTIONS(1965), + [anon_sym_COLON] = ACTIONS(2005), + [anon_sym_QMARK] = ACTIONS(1967), + [anon_sym_STAR_EQ] = ACTIONS(1989), + [anon_sym_SLASH_EQ] = ACTIONS(1989), + [anon_sym_PERCENT_EQ] = ACTIONS(1989), + [anon_sym_PLUS_EQ] = ACTIONS(1989), + [anon_sym_DASH_EQ] = ACTIONS(1989), + [anon_sym_LT_LT_EQ] = ACTIONS(1989), + [anon_sym_GT_GT_EQ] = ACTIONS(1989), + [anon_sym_AMP_EQ] = ACTIONS(1989), + [anon_sym_CARET_EQ] = ACTIONS(1989), + [anon_sym_PIPE_EQ] = ACTIONS(1989), + [anon_sym_DASH_DASH] = ACTIONS(1967), + [anon_sym_PLUS_PLUS] = ACTIONS(1967), + [anon_sym_DOT] = ACTIONS(1967), + [anon_sym_DASH_GT] = ACTIONS(1967), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, [513] = { - [sym_string_literal] = STATE(610), - [aux_sym_sized_type_specifier_repeat1] = STATE(1085), - [sym_identifier] = ACTIONS(1962), - [anon_sym_COMMA] = ACTIONS(1964), - [anon_sym_LPAREN2] = ACTIONS(1966), - [anon_sym_DASH] = ACTIONS(1970), - [anon_sym_PLUS] = ACTIONS(1970), - [anon_sym_STAR] = ACTIONS(1972), - [anon_sym_SLASH] = ACTIONS(1970), - [anon_sym_PERCENT] = ACTIONS(1970), - [anon_sym_PIPE_PIPE] = ACTIONS(1964), - [anon_sym_AMP_AMP] = ACTIONS(1964), - [anon_sym_PIPE] = ACTIONS(1970), - [anon_sym_CARET] = ACTIONS(1970), - [anon_sym_AMP] = ACTIONS(1970), - [anon_sym_EQ_EQ] = ACTIONS(1964), - [anon_sym_BANG_EQ] = ACTIONS(1964), - [anon_sym_GT] = ACTIONS(1970), - [anon_sym_GT_EQ] = ACTIONS(1964), - [anon_sym_LT_EQ] = ACTIONS(1964), - [anon_sym_LT] = ACTIONS(1970), - [anon_sym_LT_LT] = ACTIONS(1970), - [anon_sym_GT_GT] = ACTIONS(1970), - [anon_sym_SEMI] = ACTIONS(1964), - [anon_sym___extension__] = ACTIONS(1962), - [anon_sym_extern] = ACTIONS(1962), - [anon_sym___attribute__] = ACTIONS(1962), - [anon_sym___scanf] = ACTIONS(1962), - [anon_sym___printf] = ACTIONS(1962), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1978), - [anon_sym___declspec] = ACTIONS(1962), - [anon_sym___based] = ACTIONS(1962), - [anon_sym_signed] = ACTIONS(1980), - [anon_sym_unsigned] = ACTIONS(1980), - [anon_sym_long] = ACTIONS(1980), - [anon_sym_short] = ACTIONS(1980), - [anon_sym_LBRACK] = ACTIONS(1970), - [anon_sym_EQ] = ACTIONS(1982), - [anon_sym_static] = ACTIONS(1962), - [anon_sym_auto] = ACTIONS(1962), - [anon_sym_register] = ACTIONS(1962), - [anon_sym_inline] = ACTIONS(1962), - [anon_sym___inline] = ACTIONS(1962), - [anon_sym___inline__] = ACTIONS(1962), - [anon_sym___forceinline] = ACTIONS(1962), - [anon_sym_thread_local] = ACTIONS(1962), - [anon_sym___thread] = ACTIONS(1962), - [anon_sym_const] = ACTIONS(1962), - [anon_sym_constexpr] = ACTIONS(1962), - [anon_sym_volatile] = ACTIONS(1962), - [anon_sym_restrict] = ACTIONS(1962), - [anon_sym___restrict__] = ACTIONS(1962), - [anon_sym__Atomic] = ACTIONS(1962), - [anon_sym__Noreturn] = ACTIONS(1962), - [anon_sym_noreturn] = ACTIONS(1962), - [anon_sym_COLON] = ACTIONS(1996), - [anon_sym_QMARK] = ACTIONS(1964), - [anon_sym_STAR_EQ] = ACTIONS(1986), - [anon_sym_SLASH_EQ] = ACTIONS(1986), - [anon_sym_PERCENT_EQ] = ACTIONS(1986), - [anon_sym_PLUS_EQ] = ACTIONS(1986), - [anon_sym_DASH_EQ] = ACTIONS(1986), - [anon_sym_LT_LT_EQ] = ACTIONS(1986), - [anon_sym_GT_GT_EQ] = ACTIONS(1986), - [anon_sym_AMP_EQ] = ACTIONS(1986), - [anon_sym_CARET_EQ] = ACTIONS(1986), - [anon_sym_PIPE_EQ] = ACTIONS(1986), - [anon_sym_DASH_DASH] = ACTIONS(1964), - [anon_sym_PLUS_PLUS] = ACTIONS(1964), - [anon_sym_DOT] = ACTIONS(1964), - [anon_sym_DASH_GT] = ACTIONS(1964), - [anon_sym_L_DQUOTE] = ACTIONS(97), - [anon_sym_u_DQUOTE] = ACTIONS(97), - [anon_sym_U_DQUOTE] = ACTIONS(97), - [anon_sym_u8_DQUOTE] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(97), + [sym_string_literal] = STATE(567), + [aux_sym_sized_type_specifier_repeat1] = STATE(1033), + [sym_identifier] = ACTIONS(1965), + [anon_sym_COMMA] = ACTIONS(1967), + [anon_sym_LPAREN2] = ACTIONS(1969), + [anon_sym_DASH] = ACTIONS(1973), + [anon_sym_PLUS] = ACTIONS(1973), + [anon_sym_STAR] = ACTIONS(1975), + [anon_sym_SLASH] = ACTIONS(1973), + [anon_sym_PERCENT] = ACTIONS(1973), + [anon_sym_PIPE_PIPE] = ACTIONS(1967), + [anon_sym_AMP_AMP] = ACTIONS(1967), + [anon_sym_PIPE] = ACTIONS(1973), + [anon_sym_CARET] = ACTIONS(1973), + [anon_sym_AMP] = ACTIONS(1973), + [anon_sym_EQ_EQ] = ACTIONS(1967), + [anon_sym_BANG_EQ] = ACTIONS(1967), + [anon_sym_GT] = ACTIONS(1973), + [anon_sym_GT_EQ] = ACTIONS(1967), + [anon_sym_LT_EQ] = ACTIONS(1967), + [anon_sym_LT] = ACTIONS(1973), + [anon_sym_LT_LT] = ACTIONS(1973), + [anon_sym_GT_GT] = ACTIONS(1973), + [anon_sym_SEMI] = ACTIONS(1967), + [anon_sym___extension__] = ACTIONS(1965), + [anon_sym_extern] = ACTIONS(1965), + [anon_sym___attribute__] = ACTIONS(1965), + [anon_sym___scanf] = ACTIONS(1965), + [anon_sym___printf] = ACTIONS(1965), + [anon_sym___read_mostly] = ACTIONS(1965), + [anon_sym___must_hold] = ACTIONS(1965), + [anon_sym___ro_after_init] = ACTIONS(1965), + [anon_sym___init] = ACTIONS(1965), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1981), + [anon_sym___declspec] = ACTIONS(1965), + [anon_sym___based] = ACTIONS(1965), + [anon_sym_signed] = ACTIONS(1983), + [anon_sym_unsigned] = ACTIONS(1983), + [anon_sym_long] = ACTIONS(1983), + [anon_sym_short] = ACTIONS(1983), + [anon_sym_LBRACK] = ACTIONS(1973), + [anon_sym_EQ] = ACTIONS(1985), + [anon_sym_static] = ACTIONS(1965), + [anon_sym_auto] = ACTIONS(1965), + [anon_sym_register] = ACTIONS(1965), + [anon_sym_inline] = ACTIONS(1965), + [anon_sym___inline] = ACTIONS(1965), + [anon_sym___inline__] = ACTIONS(1965), + [anon_sym___forceinline] = ACTIONS(1965), + [anon_sym_thread_local] = ACTIONS(1965), + [anon_sym___thread] = ACTIONS(1965), + [anon_sym_const] = ACTIONS(1965), + [anon_sym_constexpr] = ACTIONS(1965), + [anon_sym_volatile] = ACTIONS(1965), + [anon_sym_restrict] = ACTIONS(1965), + [anon_sym___restrict__] = ACTIONS(1965), + [anon_sym__Atomic] = ACTIONS(1965), + [anon_sym__Noreturn] = ACTIONS(1965), + [anon_sym_noreturn] = ACTIONS(1965), + [anon_sym_COLON] = ACTIONS(2007), + [anon_sym_QMARK] = ACTIONS(1967), + [anon_sym_STAR_EQ] = ACTIONS(1989), + [anon_sym_SLASH_EQ] = ACTIONS(1989), + [anon_sym_PERCENT_EQ] = ACTIONS(1989), + [anon_sym_PLUS_EQ] = ACTIONS(1989), + [anon_sym_DASH_EQ] = ACTIONS(1989), + [anon_sym_LT_LT_EQ] = ACTIONS(1989), + [anon_sym_GT_GT_EQ] = ACTIONS(1989), + [anon_sym_AMP_EQ] = ACTIONS(1989), + [anon_sym_CARET_EQ] = ACTIONS(1989), + [anon_sym_PIPE_EQ] = ACTIONS(1989), + [anon_sym_DASH_DASH] = ACTIONS(1967), + [anon_sym_PLUS_PLUS] = ACTIONS(1967), + [anon_sym_DOT] = ACTIONS(1967), + [anon_sym_DASH_GT] = ACTIONS(1967), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, [514] = { - [sym_string_literal] = STATE(610), - [aux_sym_sized_type_specifier_repeat1] = STATE(1085), - [sym_identifier] = ACTIONS(1962), - [anon_sym_COMMA] = ACTIONS(1964), - [anon_sym_LPAREN2] = ACTIONS(1966), - [anon_sym_DASH] = ACTIONS(1970), - [anon_sym_PLUS] = ACTIONS(1970), - [anon_sym_STAR] = ACTIONS(1972), - [anon_sym_SLASH] = ACTIONS(1970), - [anon_sym_PERCENT] = ACTIONS(1970), - [anon_sym_PIPE_PIPE] = ACTIONS(1964), - [anon_sym_AMP_AMP] = ACTIONS(1964), - [anon_sym_PIPE] = ACTIONS(1970), - [anon_sym_CARET] = ACTIONS(1970), - [anon_sym_AMP] = ACTIONS(1970), - [anon_sym_EQ_EQ] = ACTIONS(1964), - [anon_sym_BANG_EQ] = ACTIONS(1964), - [anon_sym_GT] = ACTIONS(1970), - [anon_sym_GT_EQ] = ACTIONS(1964), - [anon_sym_LT_EQ] = ACTIONS(1964), - [anon_sym_LT] = ACTIONS(1970), - [anon_sym_LT_LT] = ACTIONS(1970), - [anon_sym_GT_GT] = ACTIONS(1970), - [anon_sym_SEMI] = ACTIONS(1964), - [anon_sym___extension__] = ACTIONS(1962), - [anon_sym_extern] = ACTIONS(1962), - [anon_sym___attribute__] = ACTIONS(1962), - [anon_sym___scanf] = ACTIONS(1962), - [anon_sym___printf] = ACTIONS(1962), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1978), - [anon_sym___declspec] = ACTIONS(1962), - [anon_sym___based] = ACTIONS(1962), - [anon_sym_signed] = ACTIONS(1980), - [anon_sym_unsigned] = ACTIONS(1980), - [anon_sym_long] = ACTIONS(1980), - [anon_sym_short] = ACTIONS(1980), - [anon_sym_LBRACK] = ACTIONS(1970), - [anon_sym_EQ] = ACTIONS(1982), - [anon_sym_static] = ACTIONS(1962), - [anon_sym_auto] = ACTIONS(1962), - [anon_sym_register] = ACTIONS(1962), - [anon_sym_inline] = ACTIONS(1962), - [anon_sym___inline] = ACTIONS(1962), - [anon_sym___inline__] = ACTIONS(1962), - [anon_sym___forceinline] = ACTIONS(1962), - [anon_sym_thread_local] = ACTIONS(1962), - [anon_sym___thread] = ACTIONS(1962), - [anon_sym_const] = ACTIONS(1962), - [anon_sym_constexpr] = ACTIONS(1962), - [anon_sym_volatile] = ACTIONS(1962), - [anon_sym_restrict] = ACTIONS(1962), - [anon_sym___restrict__] = ACTIONS(1962), - [anon_sym__Atomic] = ACTIONS(1962), - [anon_sym__Noreturn] = ACTIONS(1962), - [anon_sym_noreturn] = ACTIONS(1962), - [anon_sym_COLON] = ACTIONS(1984), - [anon_sym_QMARK] = ACTIONS(1964), - [anon_sym_STAR_EQ] = ACTIONS(1986), - [anon_sym_SLASH_EQ] = ACTIONS(1986), - [anon_sym_PERCENT_EQ] = ACTIONS(1986), - [anon_sym_PLUS_EQ] = ACTIONS(1986), - [anon_sym_DASH_EQ] = ACTIONS(1986), - [anon_sym_LT_LT_EQ] = ACTIONS(1986), - [anon_sym_GT_GT_EQ] = ACTIONS(1986), - [anon_sym_AMP_EQ] = ACTIONS(1986), - [anon_sym_CARET_EQ] = ACTIONS(1986), - [anon_sym_PIPE_EQ] = ACTIONS(1986), - [anon_sym_DASH_DASH] = ACTIONS(1964), - [anon_sym_PLUS_PLUS] = ACTIONS(1964), - [anon_sym_DOT] = ACTIONS(1964), - [anon_sym_DASH_GT] = ACTIONS(1964), - [anon_sym_L_DQUOTE] = ACTIONS(97), - [anon_sym_u_DQUOTE] = ACTIONS(97), - [anon_sym_U_DQUOTE] = ACTIONS(97), - [anon_sym_u8_DQUOTE] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(97), + [sym_string_literal] = STATE(567), + [aux_sym_sized_type_specifier_repeat1] = STATE(1033), + [sym_identifier] = ACTIONS(1965), + [anon_sym_COMMA] = ACTIONS(1967), + [anon_sym_LPAREN2] = ACTIONS(1969), + [anon_sym_DASH] = ACTIONS(1973), + [anon_sym_PLUS] = ACTIONS(1973), + [anon_sym_STAR] = ACTIONS(1975), + [anon_sym_SLASH] = ACTIONS(1973), + [anon_sym_PERCENT] = ACTIONS(1973), + [anon_sym_PIPE_PIPE] = ACTIONS(1967), + [anon_sym_AMP_AMP] = ACTIONS(1967), + [anon_sym_PIPE] = ACTIONS(1973), + [anon_sym_CARET] = ACTIONS(1973), + [anon_sym_AMP] = ACTIONS(1973), + [anon_sym_EQ_EQ] = ACTIONS(1967), + [anon_sym_BANG_EQ] = ACTIONS(1967), + [anon_sym_GT] = ACTIONS(1973), + [anon_sym_GT_EQ] = ACTIONS(1967), + [anon_sym_LT_EQ] = ACTIONS(1967), + [anon_sym_LT] = ACTIONS(1973), + [anon_sym_LT_LT] = ACTIONS(1973), + [anon_sym_GT_GT] = ACTIONS(1973), + [anon_sym_SEMI] = ACTIONS(1967), + [anon_sym___extension__] = ACTIONS(1965), + [anon_sym_extern] = ACTIONS(1965), + [anon_sym___attribute__] = ACTIONS(1965), + [anon_sym___scanf] = ACTIONS(1965), + [anon_sym___printf] = ACTIONS(1965), + [anon_sym___read_mostly] = ACTIONS(1965), + [anon_sym___must_hold] = ACTIONS(1965), + [anon_sym___ro_after_init] = ACTIONS(1965), + [anon_sym___init] = ACTIONS(1965), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1981), + [anon_sym___declspec] = ACTIONS(1965), + [anon_sym___based] = ACTIONS(1965), + [anon_sym_signed] = ACTIONS(1983), + [anon_sym_unsigned] = ACTIONS(1983), + [anon_sym_long] = ACTIONS(1983), + [anon_sym_short] = ACTIONS(1983), + [anon_sym_LBRACK] = ACTIONS(1973), + [anon_sym_EQ] = ACTIONS(1985), + [anon_sym_static] = ACTIONS(1965), + [anon_sym_auto] = ACTIONS(1965), + [anon_sym_register] = ACTIONS(1965), + [anon_sym_inline] = ACTIONS(1965), + [anon_sym___inline] = ACTIONS(1965), + [anon_sym___inline__] = ACTIONS(1965), + [anon_sym___forceinline] = ACTIONS(1965), + [anon_sym_thread_local] = ACTIONS(1965), + [anon_sym___thread] = ACTIONS(1965), + [anon_sym_const] = ACTIONS(1965), + [anon_sym_constexpr] = ACTIONS(1965), + [anon_sym_volatile] = ACTIONS(1965), + [anon_sym_restrict] = ACTIONS(1965), + [anon_sym___restrict__] = ACTIONS(1965), + [anon_sym__Atomic] = ACTIONS(1965), + [anon_sym__Noreturn] = ACTIONS(1965), + [anon_sym_noreturn] = ACTIONS(1965), + [anon_sym_COLON] = ACTIONS(1987), + [anon_sym_QMARK] = ACTIONS(1967), + [anon_sym_STAR_EQ] = ACTIONS(1989), + [anon_sym_SLASH_EQ] = ACTIONS(1989), + [anon_sym_PERCENT_EQ] = ACTIONS(1989), + [anon_sym_PLUS_EQ] = ACTIONS(1989), + [anon_sym_DASH_EQ] = ACTIONS(1989), + [anon_sym_LT_LT_EQ] = ACTIONS(1989), + [anon_sym_GT_GT_EQ] = ACTIONS(1989), + [anon_sym_AMP_EQ] = ACTIONS(1989), + [anon_sym_CARET_EQ] = ACTIONS(1989), + [anon_sym_PIPE_EQ] = ACTIONS(1989), + [anon_sym_DASH_DASH] = ACTIONS(1967), + [anon_sym_PLUS_PLUS] = ACTIONS(1967), + [anon_sym_DOT] = ACTIONS(1967), + [anon_sym_DASH_GT] = ACTIONS(1967), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, [515] = { - [sym_string_literal] = STATE(610), - [aux_sym_sized_type_specifier_repeat1] = STATE(1085), - [sym_identifier] = ACTIONS(1962), - [anon_sym_COMMA] = ACTIONS(1964), - [anon_sym_LPAREN2] = ACTIONS(1966), - [anon_sym_DASH] = ACTIONS(1970), - [anon_sym_PLUS] = ACTIONS(1970), - [anon_sym_STAR] = ACTIONS(1972), - [anon_sym_SLASH] = ACTIONS(1970), - [anon_sym_PERCENT] = ACTIONS(1970), - [anon_sym_PIPE_PIPE] = ACTIONS(1964), - [anon_sym_AMP_AMP] = ACTIONS(1964), - [anon_sym_PIPE] = ACTIONS(1970), - [anon_sym_CARET] = ACTIONS(1970), - [anon_sym_AMP] = ACTIONS(1970), - [anon_sym_EQ_EQ] = ACTIONS(1964), - [anon_sym_BANG_EQ] = ACTIONS(1964), - [anon_sym_GT] = ACTIONS(1970), - [anon_sym_GT_EQ] = ACTIONS(1964), - [anon_sym_LT_EQ] = ACTIONS(1964), - [anon_sym_LT] = ACTIONS(1970), - [anon_sym_LT_LT] = ACTIONS(1970), - [anon_sym_GT_GT] = ACTIONS(1970), - [anon_sym_SEMI] = ACTIONS(1964), - [anon_sym___extension__] = ACTIONS(1962), - [anon_sym_extern] = ACTIONS(1962), - [anon_sym___attribute__] = ACTIONS(1962), - [anon_sym___scanf] = ACTIONS(1962), - [anon_sym___printf] = ACTIONS(1962), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1978), - [anon_sym___declspec] = ACTIONS(1962), - [anon_sym___based] = ACTIONS(1962), - [anon_sym_signed] = ACTIONS(1980), - [anon_sym_unsigned] = ACTIONS(1980), - [anon_sym_long] = ACTIONS(1980), - [anon_sym_short] = ACTIONS(1980), - [anon_sym_LBRACK] = ACTIONS(1970), - [anon_sym_EQ] = ACTIONS(1982), - [anon_sym_static] = ACTIONS(1962), - [anon_sym_auto] = ACTIONS(1962), - [anon_sym_register] = ACTIONS(1962), - [anon_sym_inline] = ACTIONS(1962), - [anon_sym___inline] = ACTIONS(1962), - [anon_sym___inline__] = ACTIONS(1962), - [anon_sym___forceinline] = ACTIONS(1962), - [anon_sym_thread_local] = ACTIONS(1962), - [anon_sym___thread] = ACTIONS(1962), - [anon_sym_const] = ACTIONS(1962), - [anon_sym_constexpr] = ACTIONS(1962), - [anon_sym_volatile] = ACTIONS(1962), - [anon_sym_restrict] = ACTIONS(1962), - [anon_sym___restrict__] = ACTIONS(1962), - [anon_sym__Atomic] = ACTIONS(1962), - [anon_sym__Noreturn] = ACTIONS(1962), - [anon_sym_noreturn] = ACTIONS(1962), - [anon_sym_COLON] = ACTIONS(1988), - [anon_sym_QMARK] = ACTIONS(1964), - [anon_sym_STAR_EQ] = ACTIONS(1986), - [anon_sym_SLASH_EQ] = ACTIONS(1986), - [anon_sym_PERCENT_EQ] = ACTIONS(1986), - [anon_sym_PLUS_EQ] = ACTIONS(1986), - [anon_sym_DASH_EQ] = ACTIONS(1986), - [anon_sym_LT_LT_EQ] = ACTIONS(1986), - [anon_sym_GT_GT_EQ] = ACTIONS(1986), - [anon_sym_AMP_EQ] = ACTIONS(1986), - [anon_sym_CARET_EQ] = ACTIONS(1986), - [anon_sym_PIPE_EQ] = ACTIONS(1986), - [anon_sym_DASH_DASH] = ACTIONS(1964), - [anon_sym_PLUS_PLUS] = ACTIONS(1964), - [anon_sym_DOT] = ACTIONS(1964), - [anon_sym_DASH_GT] = ACTIONS(1964), - [anon_sym_L_DQUOTE] = ACTIONS(97), - [anon_sym_u_DQUOTE] = ACTIONS(97), - [anon_sym_U_DQUOTE] = ACTIONS(97), - [anon_sym_u8_DQUOTE] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(97), + [sym_string_literal] = STATE(567), + [aux_sym_sized_type_specifier_repeat1] = STATE(1033), + [sym_identifier] = ACTIONS(1965), + [anon_sym_COMMA] = ACTIONS(1967), + [anon_sym_LPAREN2] = ACTIONS(1969), + [anon_sym_DASH] = ACTIONS(1973), + [anon_sym_PLUS] = ACTIONS(1973), + [anon_sym_STAR] = ACTIONS(1975), + [anon_sym_SLASH] = ACTIONS(1973), + [anon_sym_PERCENT] = ACTIONS(1973), + [anon_sym_PIPE_PIPE] = ACTIONS(1967), + [anon_sym_AMP_AMP] = ACTIONS(1967), + [anon_sym_PIPE] = ACTIONS(1973), + [anon_sym_CARET] = ACTIONS(1973), + [anon_sym_AMP] = ACTIONS(1973), + [anon_sym_EQ_EQ] = ACTIONS(1967), + [anon_sym_BANG_EQ] = ACTIONS(1967), + [anon_sym_GT] = ACTIONS(1973), + [anon_sym_GT_EQ] = ACTIONS(1967), + [anon_sym_LT_EQ] = ACTIONS(1967), + [anon_sym_LT] = ACTIONS(1973), + [anon_sym_LT_LT] = ACTIONS(1973), + [anon_sym_GT_GT] = ACTIONS(1973), + [anon_sym_SEMI] = ACTIONS(1978), + [anon_sym___extension__] = ACTIONS(1965), + [anon_sym_extern] = ACTIONS(1965), + [anon_sym___attribute__] = ACTIONS(1965), + [anon_sym___scanf] = ACTIONS(1965), + [anon_sym___printf] = ACTIONS(1965), + [anon_sym___read_mostly] = ACTIONS(1965), + [anon_sym___must_hold] = ACTIONS(1965), + [anon_sym___ro_after_init] = ACTIONS(1965), + [anon_sym___init] = ACTIONS(1965), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1981), + [anon_sym___declspec] = ACTIONS(1965), + [anon_sym___based] = ACTIONS(1965), + [anon_sym_signed] = ACTIONS(1983), + [anon_sym_unsigned] = ACTIONS(1983), + [anon_sym_long] = ACTIONS(1983), + [anon_sym_short] = ACTIONS(1983), + [anon_sym_LBRACK] = ACTIONS(1973), + [anon_sym_EQ] = ACTIONS(1985), + [anon_sym_static] = ACTIONS(1965), + [anon_sym_auto] = ACTIONS(1965), + [anon_sym_register] = ACTIONS(1965), + [anon_sym_inline] = ACTIONS(1965), + [anon_sym___inline] = ACTIONS(1965), + [anon_sym___inline__] = ACTIONS(1965), + [anon_sym___forceinline] = ACTIONS(1965), + [anon_sym_thread_local] = ACTIONS(1965), + [anon_sym___thread] = ACTIONS(1965), + [anon_sym_const] = ACTIONS(1965), + [anon_sym_constexpr] = ACTIONS(1965), + [anon_sym_volatile] = ACTIONS(1965), + [anon_sym_restrict] = ACTIONS(1965), + [anon_sym___restrict__] = ACTIONS(1965), + [anon_sym__Atomic] = ACTIONS(1965), + [anon_sym__Noreturn] = ACTIONS(1965), + [anon_sym_noreturn] = ACTIONS(1965), + [anon_sym_COLON] = ACTIONS(2007), + [anon_sym_QMARK] = ACTIONS(1967), + [anon_sym_STAR_EQ] = ACTIONS(1989), + [anon_sym_SLASH_EQ] = ACTIONS(1989), + [anon_sym_PERCENT_EQ] = ACTIONS(1989), + [anon_sym_PLUS_EQ] = ACTIONS(1989), + [anon_sym_DASH_EQ] = ACTIONS(1989), + [anon_sym_LT_LT_EQ] = ACTIONS(1989), + [anon_sym_GT_GT_EQ] = ACTIONS(1989), + [anon_sym_AMP_EQ] = ACTIONS(1989), + [anon_sym_CARET_EQ] = ACTIONS(1989), + [anon_sym_PIPE_EQ] = ACTIONS(1989), + [anon_sym_DASH_DASH] = ACTIONS(1967), + [anon_sym_PLUS_PLUS] = ACTIONS(1967), + [anon_sym_DOT] = ACTIONS(1967), + [anon_sym_DASH_GT] = ACTIONS(1967), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, [516] = { - [sym_string_literal] = STATE(610), - [aux_sym_sized_type_specifier_repeat1] = STATE(1085), - [sym_identifier] = ACTIONS(1962), - [anon_sym_COMMA] = ACTIONS(1964), - [anon_sym_LPAREN2] = ACTIONS(1966), - [anon_sym_DASH] = ACTIONS(1970), - [anon_sym_PLUS] = ACTIONS(1970), - [anon_sym_STAR] = ACTIONS(1972), - [anon_sym_SLASH] = ACTIONS(1970), - [anon_sym_PERCENT] = ACTIONS(1970), - [anon_sym_PIPE_PIPE] = ACTIONS(1964), - [anon_sym_AMP_AMP] = ACTIONS(1964), - [anon_sym_PIPE] = ACTIONS(1970), - [anon_sym_CARET] = ACTIONS(1970), - [anon_sym_AMP] = ACTIONS(1970), - [anon_sym_EQ_EQ] = ACTIONS(1964), - [anon_sym_BANG_EQ] = ACTIONS(1964), - [anon_sym_GT] = ACTIONS(1970), - [anon_sym_GT_EQ] = ACTIONS(1964), - [anon_sym_LT_EQ] = ACTIONS(1964), - [anon_sym_LT] = ACTIONS(1970), - [anon_sym_LT_LT] = ACTIONS(1970), - [anon_sym_GT_GT] = ACTIONS(1970), - [anon_sym_SEMI] = ACTIONS(1964), - [anon_sym___extension__] = ACTIONS(1962), - [anon_sym_extern] = ACTIONS(1962), - [anon_sym___attribute__] = ACTIONS(1962), - [anon_sym___scanf] = ACTIONS(1962), - [anon_sym___printf] = ACTIONS(1962), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1978), - [anon_sym___declspec] = ACTIONS(1962), - [anon_sym___based] = ACTIONS(1962), - [anon_sym_signed] = ACTIONS(1980), - [anon_sym_unsigned] = ACTIONS(1980), - [anon_sym_long] = ACTIONS(1980), - [anon_sym_short] = ACTIONS(1980), - [anon_sym_LBRACK] = ACTIONS(1970), - [anon_sym_EQ] = ACTIONS(1982), - [anon_sym_static] = ACTIONS(1962), - [anon_sym_auto] = ACTIONS(1962), - [anon_sym_register] = ACTIONS(1962), - [anon_sym_inline] = ACTIONS(1962), - [anon_sym___inline] = ACTIONS(1962), - [anon_sym___inline__] = ACTIONS(1962), - [anon_sym___forceinline] = ACTIONS(1962), - [anon_sym_thread_local] = ACTIONS(1962), - [anon_sym___thread] = ACTIONS(1962), - [anon_sym_const] = ACTIONS(1962), - [anon_sym_constexpr] = ACTIONS(1962), - [anon_sym_volatile] = ACTIONS(1962), - [anon_sym_restrict] = ACTIONS(1962), - [anon_sym___restrict__] = ACTIONS(1962), - [anon_sym__Atomic] = ACTIONS(1962), - [anon_sym__Noreturn] = ACTIONS(1962), - [anon_sym_noreturn] = ACTIONS(1962), - [anon_sym_QMARK] = ACTIONS(1964), - [anon_sym_STAR_EQ] = ACTIONS(1986), - [anon_sym_SLASH_EQ] = ACTIONS(1986), - [anon_sym_PERCENT_EQ] = ACTIONS(1986), - [anon_sym_PLUS_EQ] = ACTIONS(1986), - [anon_sym_DASH_EQ] = ACTIONS(1986), - [anon_sym_LT_LT_EQ] = ACTIONS(1986), - [anon_sym_GT_GT_EQ] = ACTIONS(1986), - [anon_sym_AMP_EQ] = ACTIONS(1986), - [anon_sym_CARET_EQ] = ACTIONS(1986), - [anon_sym_PIPE_EQ] = ACTIONS(1986), - [anon_sym_DASH_DASH] = ACTIONS(1964), - [anon_sym_PLUS_PLUS] = ACTIONS(1964), - [anon_sym_DOT] = ACTIONS(1964), - [anon_sym_DASH_GT] = ACTIONS(1964), - [anon_sym_L_DQUOTE] = ACTIONS(97), - [anon_sym_u_DQUOTE] = ACTIONS(97), - [anon_sym_U_DQUOTE] = ACTIONS(97), - [anon_sym_u8_DQUOTE] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(97), + [sym_string_literal] = STATE(567), + [aux_sym_sized_type_specifier_repeat1] = STATE(1033), + [sym_identifier] = ACTIONS(1965), + [anon_sym_LPAREN2] = ACTIONS(1969), + [anon_sym_DASH] = ACTIONS(1973), + [anon_sym_PLUS] = ACTIONS(1973), + [anon_sym_STAR] = ACTIONS(1975), + [anon_sym_SLASH] = ACTIONS(1973), + [anon_sym_PERCENT] = ACTIONS(1973), + [anon_sym_PIPE_PIPE] = ACTIONS(1967), + [anon_sym_AMP_AMP] = ACTIONS(1967), + [anon_sym_PIPE] = ACTIONS(1973), + [anon_sym_CARET] = ACTIONS(1973), + [anon_sym_AMP] = ACTIONS(1973), + [anon_sym_EQ_EQ] = ACTIONS(1967), + [anon_sym_BANG_EQ] = ACTIONS(1967), + [anon_sym_GT] = ACTIONS(1973), + [anon_sym_GT_EQ] = ACTIONS(1967), + [anon_sym_LT_EQ] = ACTIONS(1967), + [anon_sym_LT] = ACTIONS(1973), + [anon_sym_LT_LT] = ACTIONS(1973), + [anon_sym_GT_GT] = ACTIONS(1973), + [anon_sym_SEMI] = ACTIONS(1978), + [anon_sym___extension__] = ACTIONS(1965), + [anon_sym_extern] = ACTIONS(1965), + [anon_sym___attribute__] = ACTIONS(1965), + [anon_sym___scanf] = ACTIONS(1965), + [anon_sym___printf] = ACTIONS(1965), + [anon_sym___read_mostly] = ACTIONS(1965), + [anon_sym___must_hold] = ACTIONS(1965), + [anon_sym___ro_after_init] = ACTIONS(1965), + [anon_sym___init] = ACTIONS(1965), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1981), + [anon_sym___declspec] = ACTIONS(1965), + [anon_sym___based] = ACTIONS(1965), + [anon_sym_signed] = ACTIONS(1983), + [anon_sym_unsigned] = ACTIONS(1983), + [anon_sym_long] = ACTIONS(1983), + [anon_sym_short] = ACTIONS(1983), + [anon_sym_LBRACK] = ACTIONS(1973), + [anon_sym_EQ] = ACTIONS(1985), + [anon_sym_static] = ACTIONS(1965), + [anon_sym_auto] = ACTIONS(1965), + [anon_sym_register] = ACTIONS(1965), + [anon_sym_inline] = ACTIONS(1965), + [anon_sym___inline] = ACTIONS(1965), + [anon_sym___inline__] = ACTIONS(1965), + [anon_sym___forceinline] = ACTIONS(1965), + [anon_sym_thread_local] = ACTIONS(1965), + [anon_sym___thread] = ACTIONS(1965), + [anon_sym_const] = ACTIONS(1965), + [anon_sym_constexpr] = ACTIONS(1965), + [anon_sym_volatile] = ACTIONS(1965), + [anon_sym_restrict] = ACTIONS(1965), + [anon_sym___restrict__] = ACTIONS(1965), + [anon_sym__Atomic] = ACTIONS(1965), + [anon_sym__Noreturn] = ACTIONS(1965), + [anon_sym_noreturn] = ACTIONS(1965), + [anon_sym_COLON] = ACTIONS(2005), + [anon_sym_QMARK] = ACTIONS(1967), + [anon_sym_STAR_EQ] = ACTIONS(1989), + [anon_sym_SLASH_EQ] = ACTIONS(1989), + [anon_sym_PERCENT_EQ] = ACTIONS(1989), + [anon_sym_PLUS_EQ] = ACTIONS(1989), + [anon_sym_DASH_EQ] = ACTIONS(1989), + [anon_sym_LT_LT_EQ] = ACTIONS(1989), + [anon_sym_GT_GT_EQ] = ACTIONS(1989), + [anon_sym_AMP_EQ] = ACTIONS(1989), + [anon_sym_CARET_EQ] = ACTIONS(1989), + [anon_sym_PIPE_EQ] = ACTIONS(1989), + [anon_sym_DASH_DASH] = ACTIONS(1967), + [anon_sym_PLUS_PLUS] = ACTIONS(1967), + [anon_sym_DOT] = ACTIONS(1967), + [anon_sym_DASH_GT] = ACTIONS(1967), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, [517] = { - [sym_string_literal] = STATE(610), - [aux_sym_sized_type_specifier_repeat1] = STATE(1085), - [sym_identifier] = ACTIONS(1962), - [anon_sym_LPAREN2] = ACTIONS(1966), - [anon_sym_DASH] = ACTIONS(1970), - [anon_sym_PLUS] = ACTIONS(1970), - [anon_sym_STAR] = ACTIONS(1972), - [anon_sym_SLASH] = ACTIONS(1970), - [anon_sym_PERCENT] = ACTIONS(1970), - [anon_sym_PIPE_PIPE] = ACTIONS(1964), - [anon_sym_AMP_AMP] = ACTIONS(1964), - [anon_sym_PIPE] = ACTIONS(1970), - [anon_sym_CARET] = ACTIONS(1970), - [anon_sym_AMP] = ACTIONS(1970), - [anon_sym_EQ_EQ] = ACTIONS(1964), - [anon_sym_BANG_EQ] = ACTIONS(1964), - [anon_sym_GT] = ACTIONS(1970), - [anon_sym_GT_EQ] = ACTIONS(1964), - [anon_sym_LT_EQ] = ACTIONS(1964), - [anon_sym_LT] = ACTIONS(1970), - [anon_sym_LT_LT] = ACTIONS(1970), - [anon_sym_GT_GT] = ACTIONS(1970), - [anon_sym_SEMI] = ACTIONS(1975), - [anon_sym___extension__] = ACTIONS(1962), - [anon_sym_extern] = ACTIONS(1962), - [anon_sym___attribute__] = ACTIONS(1962), - [anon_sym___scanf] = ACTIONS(1962), - [anon_sym___printf] = ACTIONS(1962), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1978), - [anon_sym___declspec] = ACTIONS(1962), - [anon_sym___based] = ACTIONS(1962), - [anon_sym_signed] = ACTIONS(1980), - [anon_sym_unsigned] = ACTIONS(1980), - [anon_sym_long] = ACTIONS(1980), - [anon_sym_short] = ACTIONS(1980), - [anon_sym_LBRACK] = ACTIONS(1970), - [anon_sym_EQ] = ACTIONS(1982), - [anon_sym_static] = ACTIONS(1962), - [anon_sym_auto] = ACTIONS(1962), - [anon_sym_register] = ACTIONS(1962), - [anon_sym_inline] = ACTIONS(1962), - [anon_sym___inline] = ACTIONS(1962), - [anon_sym___inline__] = ACTIONS(1962), - [anon_sym___forceinline] = ACTIONS(1962), - [anon_sym_thread_local] = ACTIONS(1962), - [anon_sym___thread] = ACTIONS(1962), - [anon_sym_const] = ACTIONS(1962), - [anon_sym_constexpr] = ACTIONS(1962), - [anon_sym_volatile] = ACTIONS(1962), - [anon_sym_restrict] = ACTIONS(1962), - [anon_sym___restrict__] = ACTIONS(1962), - [anon_sym__Atomic] = ACTIONS(1962), - [anon_sym__Noreturn] = ACTIONS(1962), - [anon_sym_noreturn] = ACTIONS(1962), - [anon_sym_COLON] = ACTIONS(1994), - [anon_sym_QMARK] = ACTIONS(1964), - [anon_sym_STAR_EQ] = ACTIONS(1986), - [anon_sym_SLASH_EQ] = ACTIONS(1986), - [anon_sym_PERCENT_EQ] = ACTIONS(1986), - [anon_sym_PLUS_EQ] = ACTIONS(1986), - [anon_sym_DASH_EQ] = ACTIONS(1986), - [anon_sym_LT_LT_EQ] = ACTIONS(1986), - [anon_sym_GT_GT_EQ] = ACTIONS(1986), - [anon_sym_AMP_EQ] = ACTIONS(1986), - [anon_sym_CARET_EQ] = ACTIONS(1986), - [anon_sym_PIPE_EQ] = ACTIONS(1986), - [anon_sym_DASH_DASH] = ACTIONS(1964), - [anon_sym_PLUS_PLUS] = ACTIONS(1964), - [anon_sym_DOT] = ACTIONS(1964), - [anon_sym_DASH_GT] = ACTIONS(1964), - [anon_sym_L_DQUOTE] = ACTIONS(97), - [anon_sym_u_DQUOTE] = ACTIONS(97), - [anon_sym_U_DQUOTE] = ACTIONS(97), - [anon_sym_u8_DQUOTE] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(97), + [sym_string_literal] = STATE(567), + [aux_sym_sized_type_specifier_repeat1] = STATE(1033), + [sym_identifier] = ACTIONS(1965), + [anon_sym_COMMA] = ACTIONS(1967), + [anon_sym_LPAREN2] = ACTIONS(1969), + [anon_sym_DASH] = ACTIONS(1973), + [anon_sym_PLUS] = ACTIONS(1973), + [anon_sym_STAR] = ACTIONS(1975), + [anon_sym_SLASH] = ACTIONS(1973), + [anon_sym_PERCENT] = ACTIONS(1973), + [anon_sym_PIPE_PIPE] = ACTIONS(1967), + [anon_sym_AMP_AMP] = ACTIONS(1967), + [anon_sym_PIPE] = ACTIONS(1973), + [anon_sym_CARET] = ACTIONS(1973), + [anon_sym_AMP] = ACTIONS(1973), + [anon_sym_EQ_EQ] = ACTIONS(1967), + [anon_sym_BANG_EQ] = ACTIONS(1967), + [anon_sym_GT] = ACTIONS(1973), + [anon_sym_GT_EQ] = ACTIONS(1967), + [anon_sym_LT_EQ] = ACTIONS(1967), + [anon_sym_LT] = ACTIONS(1973), + [anon_sym_LT_LT] = ACTIONS(1973), + [anon_sym_GT_GT] = ACTIONS(1973), + [anon_sym_SEMI] = ACTIONS(1967), + [anon_sym___extension__] = ACTIONS(1965), + [anon_sym_extern] = ACTIONS(1965), + [anon_sym___attribute__] = ACTIONS(1965), + [anon_sym___scanf] = ACTIONS(1965), + [anon_sym___printf] = ACTIONS(1965), + [anon_sym___read_mostly] = ACTIONS(1965), + [anon_sym___must_hold] = ACTIONS(1965), + [anon_sym___ro_after_init] = ACTIONS(1965), + [anon_sym___init] = ACTIONS(1965), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1981), + [anon_sym___declspec] = ACTIONS(1965), + [anon_sym___based] = ACTIONS(1965), + [anon_sym_signed] = ACTIONS(1983), + [anon_sym_unsigned] = ACTIONS(1983), + [anon_sym_long] = ACTIONS(1983), + [anon_sym_short] = ACTIONS(1983), + [anon_sym_LBRACK] = ACTIONS(1973), + [anon_sym_EQ] = ACTIONS(1985), + [anon_sym_static] = ACTIONS(1965), + [anon_sym_auto] = ACTIONS(1965), + [anon_sym_register] = ACTIONS(1965), + [anon_sym_inline] = ACTIONS(1965), + [anon_sym___inline] = ACTIONS(1965), + [anon_sym___inline__] = ACTIONS(1965), + [anon_sym___forceinline] = ACTIONS(1965), + [anon_sym_thread_local] = ACTIONS(1965), + [anon_sym___thread] = ACTIONS(1965), + [anon_sym_const] = ACTIONS(1965), + [anon_sym_constexpr] = ACTIONS(1965), + [anon_sym_volatile] = ACTIONS(1965), + [anon_sym_restrict] = ACTIONS(1965), + [anon_sym___restrict__] = ACTIONS(1965), + [anon_sym__Atomic] = ACTIONS(1965), + [anon_sym__Noreturn] = ACTIONS(1965), + [anon_sym_noreturn] = ACTIONS(1965), + [anon_sym_QMARK] = ACTIONS(1967), + [anon_sym_STAR_EQ] = ACTIONS(1989), + [anon_sym_SLASH_EQ] = ACTIONS(1989), + [anon_sym_PERCENT_EQ] = ACTIONS(1989), + [anon_sym_PLUS_EQ] = ACTIONS(1989), + [anon_sym_DASH_EQ] = ACTIONS(1989), + [anon_sym_LT_LT_EQ] = ACTIONS(1989), + [anon_sym_GT_GT_EQ] = ACTIONS(1989), + [anon_sym_AMP_EQ] = ACTIONS(1989), + [anon_sym_CARET_EQ] = ACTIONS(1989), + [anon_sym_PIPE_EQ] = ACTIONS(1989), + [anon_sym_DASH_DASH] = ACTIONS(1967), + [anon_sym_PLUS_PLUS] = ACTIONS(1967), + [anon_sym_DOT] = ACTIONS(1967), + [anon_sym_DASH_GT] = ACTIONS(1967), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, [518] = { - [sym_type_qualifier] = STATE(862), - [sym__expression] = STATE(1281), - [sym__expression_not_binary] = STATE(792), - [sym_conditional_expression] = STATE(792), - [sym_assignment_expression] = STATE(792), - [sym_pointer_expression] = STATE(1097), - [sym_unary_expression] = STATE(792), - [sym_binary_expression] = STATE(792), - [sym_update_expression] = STATE(792), - [sym_cast_expression] = STATE(792), - [sym_sizeof_expression] = STATE(792), - [sym_alignof_expression] = STATE(792), - [sym_offsetof_expression] = STATE(792), - [sym_generic_expression] = STATE(792), - [sym_subscript_expression] = STATE(1097), - [sym_call_expression] = STATE(1097), - [sym_gnu_asm_expression] = STATE(792), - [sym_field_expression] = STATE(1097), - [sym_compound_literal_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(1097), - [sym_char_literal] = STATE(792), - [sym_concatenated_string] = STATE(792), - [sym_string_literal] = STATE(675), - [sym_null] = STATE(792), - [aux_sym__type_definition_type_repeat1] = STATE(862), - [sym_identifier] = ACTIONS(1954), - [anon_sym_LPAREN2] = ACTIONS(1998), - [anon_sym_BANG] = ACTIONS(1958), - [anon_sym_TILDE] = ACTIONS(1958), - [anon_sym_DASH] = ACTIONS(1956), - [anon_sym_PLUS] = ACTIONS(1956), - [anon_sym_STAR] = ACTIONS(2000), - [anon_sym_AMP] = ACTIONS(2002), - [anon_sym___extension__] = ACTIONS(2004), - [anon_sym_RBRACK] = ACTIONS(2006), - [anon_sym_const] = ACTIONS(2004), - [anon_sym_constexpr] = ACTIONS(2004), - [anon_sym_volatile] = ACTIONS(2004), - [anon_sym_restrict] = ACTIONS(2004), - [anon_sym___restrict__] = ACTIONS(2004), - [anon_sym__Atomic] = ACTIONS(2004), - [anon_sym__Noreturn] = ACTIONS(2004), - [anon_sym_noreturn] = ACTIONS(2004), - [anon_sym_DASH_DASH] = ACTIONS(2008), - [anon_sym_PLUS_PLUS] = ACTIONS(2008), - [anon_sym_sizeof] = ACTIONS(1960), - [anon_sym___alignof__] = ACTIONS(85), - [anon_sym___alignof] = ACTIONS(85), - [anon_sym__alignof] = ACTIONS(85), - [anon_sym_alignof] = ACTIONS(85), - [anon_sym__Alignof] = ACTIONS(85), - [anon_sym_offsetof] = ACTIONS(87), - [anon_sym__Generic] = ACTIONS(89), - [anon_sym_asm] = ACTIONS(91), - [anon_sym___asm__] = ACTIONS(91), - [sym_number_literal] = ACTIONS(159), - [anon_sym_L_SQUOTE] = ACTIONS(95), - [anon_sym_u_SQUOTE] = ACTIONS(95), - [anon_sym_U_SQUOTE] = ACTIONS(95), - [anon_sym_u8_SQUOTE] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(95), - [anon_sym_L_DQUOTE] = ACTIONS(97), - [anon_sym_u_DQUOTE] = ACTIONS(97), - [anon_sym_U_DQUOTE] = ACTIONS(97), - [anon_sym_u8_DQUOTE] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(97), - [sym_true] = ACTIONS(161), - [sym_false] = ACTIONS(161), - [anon_sym_NULL] = ACTIONS(101), - [anon_sym_nullptr] = ACTIONS(101), + [sym_preproc_def] = STATE(534), + [sym_preproc_function_def] = STATE(534), + [sym_preproc_call] = STATE(534), + [sym_preproc_if_in_field_declaration_list] = STATE(534), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(534), + [sym_preproc_else_in_field_declaration_list] = STATE(2054), + [sym_preproc_elif_in_field_declaration_list] = STATE(2054), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(2054), + [sym__declaration_modifiers] = STATE(855), + [sym__declaration_specifiers] = STATE(1350), + [sym_attribute_specifier] = STATE(855), + [sym_attribute_declaration] = STATE(855), + [sym_ms_declspec_modifier] = STATE(855), + [sym_storage_class_specifier] = STATE(855), + [sym_type_qualifier] = STATE(855), + [sym__type_specifier] = STATE(974), + [sym_sized_type_specifier] = STATE(1069), + [sym_enum_specifier] = STATE(1069), + [sym_struct_specifier] = STATE(1069), + [sym_union_specifier] = STATE(1069), + [sym__field_declaration_list_item] = STATE(534), + [sym_field_declaration] = STATE(534), + [sym_macro_type_specifier] = STATE(1069), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(534), + [aux_sym__declaration_specifiers_repeat1] = STATE(855), + [aux_sym_sized_type_specifier_repeat1] = STATE(1085), + [sym_identifier] = ACTIONS(2009), + [aux_sym_preproc_def_token1] = ACTIONS(2011), + [aux_sym_preproc_if_token1] = ACTIONS(2013), + [aux_sym_preproc_if_token2] = ACTIONS(2015), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2017), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2017), + [aux_sym_preproc_else_token1] = ACTIONS(2019), + [aux_sym_preproc_elif_token1] = ACTIONS(2021), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2023), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2023), + [sym_preproc_directive] = ACTIONS(2025), + [anon_sym___extension__] = ACTIONS(51), + [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(1312), + [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), + [sym_primitive_type] = ACTIONS(53), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), [sym_comment] = ACTIONS(3), }, [519] = { - [sym_type_qualifier] = STATE(862), - [sym__expression] = STATE(1282), - [sym__expression_not_binary] = STATE(792), - [sym_conditional_expression] = STATE(792), - [sym_assignment_expression] = STATE(792), - [sym_pointer_expression] = STATE(1097), - [sym_unary_expression] = STATE(792), - [sym_binary_expression] = STATE(792), - [sym_update_expression] = STATE(792), - [sym_cast_expression] = STATE(792), - [sym_sizeof_expression] = STATE(792), - [sym_alignof_expression] = STATE(792), - [sym_offsetof_expression] = STATE(792), - [sym_generic_expression] = STATE(792), - [sym_subscript_expression] = STATE(1097), - [sym_call_expression] = STATE(1097), - [sym_gnu_asm_expression] = STATE(792), - [sym_field_expression] = STATE(1097), - [sym_compound_literal_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(1097), - [sym_char_literal] = STATE(792), - [sym_concatenated_string] = STATE(792), - [sym_string_literal] = STATE(675), - [sym_null] = STATE(792), - [aux_sym__type_definition_type_repeat1] = STATE(862), - [sym_identifier] = ACTIONS(1954), - [anon_sym_LPAREN2] = ACTIONS(1998), - [anon_sym_BANG] = ACTIONS(1958), - [anon_sym_TILDE] = ACTIONS(1958), - [anon_sym_DASH] = ACTIONS(1956), - [anon_sym_PLUS] = ACTIONS(1956), - [anon_sym_STAR] = ACTIONS(2010), - [anon_sym_AMP] = ACTIONS(2002), - [anon_sym___extension__] = ACTIONS(2004), - [anon_sym_RBRACK] = ACTIONS(2012), - [anon_sym_const] = ACTIONS(2004), - [anon_sym_constexpr] = ACTIONS(2004), - [anon_sym_volatile] = ACTIONS(2004), - [anon_sym_restrict] = ACTIONS(2004), - [anon_sym___restrict__] = ACTIONS(2004), - [anon_sym__Atomic] = ACTIONS(2004), - [anon_sym__Noreturn] = ACTIONS(2004), - [anon_sym_noreturn] = ACTIONS(2004), - [anon_sym_DASH_DASH] = ACTIONS(2008), - [anon_sym_PLUS_PLUS] = ACTIONS(2008), - [anon_sym_sizeof] = ACTIONS(1960), - [anon_sym___alignof__] = ACTIONS(85), - [anon_sym___alignof] = ACTIONS(85), - [anon_sym__alignof] = ACTIONS(85), - [anon_sym_alignof] = ACTIONS(85), - [anon_sym__Alignof] = ACTIONS(85), - [anon_sym_offsetof] = ACTIONS(87), - [anon_sym__Generic] = ACTIONS(89), - [anon_sym_asm] = ACTIONS(91), - [anon_sym___asm__] = ACTIONS(91), - [sym_number_literal] = ACTIONS(159), - [anon_sym_L_SQUOTE] = ACTIONS(95), - [anon_sym_u_SQUOTE] = ACTIONS(95), - [anon_sym_U_SQUOTE] = ACTIONS(95), - [anon_sym_u8_SQUOTE] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(95), - [anon_sym_L_DQUOTE] = ACTIONS(97), - [anon_sym_u_DQUOTE] = ACTIONS(97), - [anon_sym_U_DQUOTE] = ACTIONS(97), - [anon_sym_u8_DQUOTE] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(97), - [sym_true] = ACTIONS(161), - [sym_false] = ACTIONS(161), - [anon_sym_NULL] = ACTIONS(101), - [anon_sym_nullptr] = ACTIONS(101), + [sym_preproc_def] = STATE(534), + [sym_preproc_function_def] = STATE(534), + [sym_preproc_call] = STATE(534), + [sym_preproc_if_in_field_declaration_list] = STATE(534), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(534), + [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(855), + [sym__declaration_specifiers] = STATE(1350), + [sym_attribute_specifier] = STATE(855), + [sym_attribute_declaration] = STATE(855), + [sym_ms_declspec_modifier] = STATE(855), + [sym_storage_class_specifier] = STATE(855), + [sym_type_qualifier] = STATE(855), + [sym__type_specifier] = STATE(974), + [sym_sized_type_specifier] = STATE(1069), + [sym_enum_specifier] = STATE(1069), + [sym_struct_specifier] = STATE(1069), + [sym_union_specifier] = STATE(1069), + [sym__field_declaration_list_item] = STATE(534), + [sym_field_declaration] = STATE(534), + [sym_macro_type_specifier] = STATE(1069), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(534), + [aux_sym__declaration_specifiers_repeat1] = STATE(855), + [aux_sym_sized_type_specifier_repeat1] = STATE(1085), + [sym_identifier] = ACTIONS(2009), + [aux_sym_preproc_def_token1] = ACTIONS(2011), + [aux_sym_preproc_if_token1] = ACTIONS(2013), + [aux_sym_preproc_if_token2] = ACTIONS(2027), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2017), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2017), + [aux_sym_preproc_else_token1] = ACTIONS(2019), + [aux_sym_preproc_elif_token1] = ACTIONS(2021), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2023), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2023), + [sym_preproc_directive] = ACTIONS(2025), + [anon_sym___extension__] = ACTIONS(51), + [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(1312), + [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), + [sym_primitive_type] = ACTIONS(53), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), [sym_comment] = ACTIONS(3), }, [520] = { - [sym_type_qualifier] = STATE(862), - [sym__expression] = STATE(1292), - [sym__expression_not_binary] = STATE(792), - [sym_conditional_expression] = STATE(792), - [sym_assignment_expression] = STATE(792), - [sym_pointer_expression] = STATE(1097), - [sym_unary_expression] = STATE(792), - [sym_binary_expression] = STATE(792), - [sym_update_expression] = STATE(792), - [sym_cast_expression] = STATE(792), - [sym_sizeof_expression] = STATE(792), - [sym_alignof_expression] = STATE(792), - [sym_offsetof_expression] = STATE(792), - [sym_generic_expression] = STATE(792), - [sym_subscript_expression] = STATE(1097), - [sym_call_expression] = STATE(1097), - [sym_gnu_asm_expression] = STATE(792), - [sym_field_expression] = STATE(1097), - [sym_compound_literal_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(1097), - [sym_char_literal] = STATE(792), - [sym_concatenated_string] = STATE(792), - [sym_string_literal] = STATE(675), - [sym_null] = STATE(792), - [aux_sym__type_definition_type_repeat1] = STATE(862), - [sym_identifier] = ACTIONS(1954), - [anon_sym_LPAREN2] = ACTIONS(1998), - [anon_sym_BANG] = ACTIONS(1958), - [anon_sym_TILDE] = ACTIONS(1958), - [anon_sym_DASH] = ACTIONS(1956), - [anon_sym_PLUS] = ACTIONS(1956), - [anon_sym_STAR] = ACTIONS(2014), - [anon_sym_AMP] = ACTIONS(2002), - [anon_sym___extension__] = ACTIONS(2004), - [anon_sym_RBRACK] = ACTIONS(2016), - [anon_sym_const] = ACTIONS(2004), - [anon_sym_constexpr] = ACTIONS(2004), - [anon_sym_volatile] = ACTIONS(2004), - [anon_sym_restrict] = ACTIONS(2004), - [anon_sym___restrict__] = ACTIONS(2004), - [anon_sym__Atomic] = ACTIONS(2004), - [anon_sym__Noreturn] = ACTIONS(2004), - [anon_sym_noreturn] = ACTIONS(2004), - [anon_sym_DASH_DASH] = ACTIONS(2008), - [anon_sym_PLUS_PLUS] = ACTIONS(2008), - [anon_sym_sizeof] = ACTIONS(1960), - [anon_sym___alignof__] = ACTIONS(85), - [anon_sym___alignof] = ACTIONS(85), - [anon_sym__alignof] = ACTIONS(85), - [anon_sym_alignof] = ACTIONS(85), - [anon_sym__Alignof] = ACTIONS(85), - [anon_sym_offsetof] = ACTIONS(87), - [anon_sym__Generic] = ACTIONS(89), - [anon_sym_asm] = ACTIONS(91), - [anon_sym___asm__] = ACTIONS(91), - [sym_number_literal] = ACTIONS(159), - [anon_sym_L_SQUOTE] = ACTIONS(95), - [anon_sym_u_SQUOTE] = ACTIONS(95), - [anon_sym_U_SQUOTE] = ACTIONS(95), - [anon_sym_u8_SQUOTE] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(95), - [anon_sym_L_DQUOTE] = ACTIONS(97), - [anon_sym_u_DQUOTE] = ACTIONS(97), - [anon_sym_U_DQUOTE] = ACTIONS(97), - [anon_sym_u8_DQUOTE] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(97), - [sym_true] = ACTIONS(161), - [sym_false] = ACTIONS(161), - [anon_sym_NULL] = ACTIONS(101), - [anon_sym_nullptr] = ACTIONS(101), + [sym_preproc_def] = STATE(534), + [sym_preproc_function_def] = STATE(534), + [sym_preproc_call] = STATE(534), + [sym_preproc_if_in_field_declaration_list] = STATE(534), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(534), + [sym_preproc_else_in_field_declaration_list] = STATE(2143), + [sym_preproc_elif_in_field_declaration_list] = STATE(2143), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(2143), + [sym__declaration_modifiers] = STATE(855), + [sym__declaration_specifiers] = STATE(1350), + [sym_attribute_specifier] = STATE(855), + [sym_attribute_declaration] = STATE(855), + [sym_ms_declspec_modifier] = STATE(855), + [sym_storage_class_specifier] = STATE(855), + [sym_type_qualifier] = STATE(855), + [sym__type_specifier] = STATE(974), + [sym_sized_type_specifier] = STATE(1069), + [sym_enum_specifier] = STATE(1069), + [sym_struct_specifier] = STATE(1069), + [sym_union_specifier] = STATE(1069), + [sym__field_declaration_list_item] = STATE(534), + [sym_field_declaration] = STATE(534), + [sym_macro_type_specifier] = STATE(1069), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(534), + [aux_sym__declaration_specifiers_repeat1] = STATE(855), + [aux_sym_sized_type_specifier_repeat1] = STATE(1085), + [sym_identifier] = ACTIONS(2009), + [aux_sym_preproc_def_token1] = ACTIONS(2011), + [aux_sym_preproc_if_token1] = ACTIONS(2013), + [aux_sym_preproc_if_token2] = ACTIONS(2029), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2017), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2017), + [aux_sym_preproc_else_token1] = ACTIONS(2019), + [aux_sym_preproc_elif_token1] = ACTIONS(2021), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2023), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2023), + [sym_preproc_directive] = ACTIONS(2025), + [anon_sym___extension__] = ACTIONS(51), + [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(1312), + [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), + [sym_primitive_type] = ACTIONS(53), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), [sym_comment] = ACTIONS(3), }, [521] = { - [sym_type_qualifier] = STATE(862), - [sym__expression] = STATE(1288), - [sym__expression_not_binary] = STATE(792), - [sym_conditional_expression] = STATE(792), - [sym_assignment_expression] = STATE(792), - [sym_pointer_expression] = STATE(1097), - [sym_unary_expression] = STATE(792), - [sym_binary_expression] = STATE(792), - [sym_update_expression] = STATE(792), - [sym_cast_expression] = STATE(792), - [sym_sizeof_expression] = STATE(792), - [sym_alignof_expression] = STATE(792), - [sym_offsetof_expression] = STATE(792), - [sym_generic_expression] = STATE(792), - [sym_subscript_expression] = STATE(1097), - [sym_call_expression] = STATE(1097), - [sym_gnu_asm_expression] = STATE(792), - [sym_field_expression] = STATE(1097), - [sym_compound_literal_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(1097), - [sym_char_literal] = STATE(792), - [sym_concatenated_string] = STATE(792), - [sym_string_literal] = STATE(675), - [sym_null] = STATE(792), - [aux_sym__type_definition_type_repeat1] = STATE(862), - [sym_identifier] = ACTIONS(1954), - [anon_sym_LPAREN2] = ACTIONS(1998), - [anon_sym_BANG] = ACTIONS(1958), - [anon_sym_TILDE] = ACTIONS(1958), - [anon_sym_DASH] = ACTIONS(1956), - [anon_sym_PLUS] = ACTIONS(1956), - [anon_sym_STAR] = ACTIONS(2018), - [anon_sym_AMP] = ACTIONS(2002), - [anon_sym___extension__] = ACTIONS(2004), - [anon_sym_RBRACK] = ACTIONS(2020), - [anon_sym_const] = ACTIONS(2004), - [anon_sym_constexpr] = ACTIONS(2004), - [anon_sym_volatile] = ACTIONS(2004), - [anon_sym_restrict] = ACTIONS(2004), - [anon_sym___restrict__] = ACTIONS(2004), - [anon_sym__Atomic] = ACTIONS(2004), - [anon_sym__Noreturn] = ACTIONS(2004), - [anon_sym_noreturn] = ACTIONS(2004), - [anon_sym_DASH_DASH] = ACTIONS(2008), - [anon_sym_PLUS_PLUS] = ACTIONS(2008), - [anon_sym_sizeof] = ACTIONS(1960), - [anon_sym___alignof__] = ACTIONS(85), - [anon_sym___alignof] = ACTIONS(85), - [anon_sym__alignof] = ACTIONS(85), - [anon_sym_alignof] = ACTIONS(85), - [anon_sym__Alignof] = ACTIONS(85), - [anon_sym_offsetof] = ACTIONS(87), - [anon_sym__Generic] = ACTIONS(89), - [anon_sym_asm] = ACTIONS(91), - [anon_sym___asm__] = ACTIONS(91), - [sym_number_literal] = ACTIONS(159), - [anon_sym_L_SQUOTE] = ACTIONS(95), - [anon_sym_u_SQUOTE] = ACTIONS(95), - [anon_sym_U_SQUOTE] = ACTIONS(95), - [anon_sym_u8_SQUOTE] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(95), - [anon_sym_L_DQUOTE] = ACTIONS(97), - [anon_sym_u_DQUOTE] = ACTIONS(97), - [anon_sym_U_DQUOTE] = ACTIONS(97), - [anon_sym_u8_DQUOTE] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(97), - [sym_true] = ACTIONS(161), - [sym_false] = ACTIONS(161), - [anon_sym_NULL] = ACTIONS(101), - [anon_sym_nullptr] = ACTIONS(101), + [sym_preproc_def] = STATE(534), + [sym_preproc_function_def] = STATE(534), + [sym_preproc_call] = STATE(534), + [sym_preproc_if_in_field_declaration_list] = STATE(534), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(534), + [sym_preproc_else_in_field_declaration_list] = STATE(2298), + [sym_preproc_elif_in_field_declaration_list] = STATE(2298), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(2298), + [sym__declaration_modifiers] = STATE(855), + [sym__declaration_specifiers] = STATE(1350), + [sym_attribute_specifier] = STATE(855), + [sym_attribute_declaration] = STATE(855), + [sym_ms_declspec_modifier] = STATE(855), + [sym_storage_class_specifier] = STATE(855), + [sym_type_qualifier] = STATE(855), + [sym__type_specifier] = STATE(974), + [sym_sized_type_specifier] = STATE(1069), + [sym_enum_specifier] = STATE(1069), + [sym_struct_specifier] = STATE(1069), + [sym_union_specifier] = STATE(1069), + [sym__field_declaration_list_item] = STATE(534), + [sym_field_declaration] = STATE(534), + [sym_macro_type_specifier] = STATE(1069), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(534), + [aux_sym__declaration_specifiers_repeat1] = STATE(855), + [aux_sym_sized_type_specifier_repeat1] = STATE(1085), + [sym_identifier] = ACTIONS(2009), + [aux_sym_preproc_def_token1] = ACTIONS(2011), + [aux_sym_preproc_if_token1] = ACTIONS(2013), + [aux_sym_preproc_if_token2] = ACTIONS(2031), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2017), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2017), + [aux_sym_preproc_else_token1] = ACTIONS(2019), + [aux_sym_preproc_elif_token1] = ACTIONS(2021), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2023), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2023), + [sym_preproc_directive] = ACTIONS(2025), + [anon_sym___extension__] = ACTIONS(51), + [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(1312), + [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), + [sym_primitive_type] = ACTIONS(53), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), [sym_comment] = ACTIONS(3), }, [522] = { - [sym_type_qualifier] = STATE(862), - [sym__expression] = STATE(1293), - [sym__expression_not_binary] = STATE(792), - [sym_conditional_expression] = STATE(792), - [sym_assignment_expression] = STATE(792), - [sym_pointer_expression] = STATE(1097), - [sym_unary_expression] = STATE(792), - [sym_binary_expression] = STATE(792), - [sym_update_expression] = STATE(792), - [sym_cast_expression] = STATE(792), - [sym_sizeof_expression] = STATE(792), - [sym_alignof_expression] = STATE(792), - [sym_offsetof_expression] = STATE(792), - [sym_generic_expression] = STATE(792), - [sym_subscript_expression] = STATE(1097), - [sym_call_expression] = STATE(1097), - [sym_gnu_asm_expression] = STATE(792), - [sym_field_expression] = STATE(1097), - [sym_compound_literal_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(1097), - [sym_char_literal] = STATE(792), - [sym_concatenated_string] = STATE(792), - [sym_string_literal] = STATE(675), - [sym_null] = STATE(792), - [aux_sym__type_definition_type_repeat1] = STATE(862), - [sym_identifier] = ACTIONS(1954), - [anon_sym_LPAREN2] = ACTIONS(1998), - [anon_sym_BANG] = ACTIONS(1958), - [anon_sym_TILDE] = ACTIONS(1958), - [anon_sym_DASH] = ACTIONS(1956), - [anon_sym_PLUS] = ACTIONS(1956), - [anon_sym_STAR] = ACTIONS(2022), - [anon_sym_AMP] = ACTIONS(2002), - [anon_sym___extension__] = ACTIONS(2004), - [anon_sym_RBRACK] = ACTIONS(2024), - [anon_sym_const] = ACTIONS(2004), - [anon_sym_constexpr] = ACTIONS(2004), - [anon_sym_volatile] = ACTIONS(2004), - [anon_sym_restrict] = ACTIONS(2004), - [anon_sym___restrict__] = ACTIONS(2004), - [anon_sym__Atomic] = ACTIONS(2004), - [anon_sym__Noreturn] = ACTIONS(2004), - [anon_sym_noreturn] = ACTIONS(2004), - [anon_sym_DASH_DASH] = ACTIONS(2008), - [anon_sym_PLUS_PLUS] = ACTIONS(2008), - [anon_sym_sizeof] = ACTIONS(1960), - [anon_sym___alignof__] = ACTIONS(85), - [anon_sym___alignof] = ACTIONS(85), - [anon_sym__alignof] = ACTIONS(85), - [anon_sym_alignof] = ACTIONS(85), - [anon_sym__Alignof] = ACTIONS(85), - [anon_sym_offsetof] = ACTIONS(87), - [anon_sym__Generic] = ACTIONS(89), - [anon_sym_asm] = ACTIONS(91), - [anon_sym___asm__] = ACTIONS(91), - [sym_number_literal] = ACTIONS(159), - [anon_sym_L_SQUOTE] = ACTIONS(95), - [anon_sym_u_SQUOTE] = ACTIONS(95), - [anon_sym_U_SQUOTE] = ACTIONS(95), - [anon_sym_u8_SQUOTE] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(95), - [anon_sym_L_DQUOTE] = ACTIONS(97), - [anon_sym_u_DQUOTE] = ACTIONS(97), - [anon_sym_U_DQUOTE] = ACTIONS(97), - [anon_sym_u8_DQUOTE] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(97), - [sym_true] = ACTIONS(161), - [sym_false] = ACTIONS(161), - [anon_sym_NULL] = ACTIONS(101), - [anon_sym_nullptr] = ACTIONS(101), + [sym_preproc_def] = STATE(519), + [sym_preproc_function_def] = STATE(519), + [sym_preproc_call] = STATE(519), + [sym_preproc_if_in_field_declaration_list] = STATE(519), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(519), + [sym_preproc_else_in_field_declaration_list] = STATE(2016), + [sym_preproc_elif_in_field_declaration_list] = STATE(2016), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(2016), + [sym__declaration_modifiers] = STATE(855), + [sym__declaration_specifiers] = STATE(1350), + [sym_attribute_specifier] = STATE(855), + [sym_attribute_declaration] = STATE(855), + [sym_ms_declspec_modifier] = STATE(855), + [sym_storage_class_specifier] = STATE(855), + [sym_type_qualifier] = STATE(855), + [sym__type_specifier] = STATE(974), + [sym_sized_type_specifier] = STATE(1069), + [sym_enum_specifier] = STATE(1069), + [sym_struct_specifier] = STATE(1069), + [sym_union_specifier] = STATE(1069), + [sym__field_declaration_list_item] = STATE(519), + [sym_field_declaration] = STATE(519), + [sym_macro_type_specifier] = STATE(1069), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(519), + [aux_sym__declaration_specifiers_repeat1] = STATE(855), + [aux_sym_sized_type_specifier_repeat1] = STATE(1085), + [sym_identifier] = ACTIONS(2009), + [aux_sym_preproc_def_token1] = ACTIONS(2011), + [aux_sym_preproc_if_token1] = ACTIONS(2013), + [aux_sym_preproc_if_token2] = ACTIONS(2033), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2017), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2017), + [aux_sym_preproc_else_token1] = ACTIONS(2019), + [aux_sym_preproc_elif_token1] = ACTIONS(2021), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2023), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2023), + [sym_preproc_directive] = ACTIONS(2025), + [anon_sym___extension__] = ACTIONS(51), + [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(1312), + [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), + [sym_primitive_type] = ACTIONS(53), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), [sym_comment] = ACTIONS(3), }, [523] = { - [sym_type_qualifier] = STATE(520), - [sym__expression] = STATE(1298), - [sym__expression_not_binary] = STATE(792), - [sym_conditional_expression] = STATE(792), - [sym_assignment_expression] = STATE(792), - [sym_pointer_expression] = STATE(1097), - [sym_unary_expression] = STATE(792), - [sym_binary_expression] = STATE(792), - [sym_update_expression] = STATE(792), - [sym_cast_expression] = STATE(792), - [sym_sizeof_expression] = STATE(792), - [sym_alignof_expression] = STATE(792), - [sym_offsetof_expression] = STATE(792), - [sym_generic_expression] = STATE(792), - [sym_subscript_expression] = STATE(1097), - [sym_call_expression] = STATE(1097), - [sym_gnu_asm_expression] = STATE(792), - [sym_field_expression] = STATE(1097), - [sym_compound_literal_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(1097), - [sym_char_literal] = STATE(792), - [sym_concatenated_string] = STATE(792), - [sym_string_literal] = STATE(675), - [sym_null] = STATE(792), - [aux_sym__type_definition_type_repeat1] = STATE(520), - [sym_identifier] = ACTIONS(1954), - [anon_sym_LPAREN2] = ACTIONS(1998), - [anon_sym_BANG] = ACTIONS(1958), - [anon_sym_TILDE] = ACTIONS(1958), - [anon_sym_DASH] = ACTIONS(1956), - [anon_sym_PLUS] = ACTIONS(1956), - [anon_sym_STAR] = ACTIONS(2026), - [anon_sym_AMP] = ACTIONS(2002), - [anon_sym___extension__] = ACTIONS(2004), - [anon_sym_RBRACK] = ACTIONS(2028), - [anon_sym_const] = ACTIONS(2004), - [anon_sym_constexpr] = ACTIONS(2004), - [anon_sym_volatile] = ACTIONS(2004), - [anon_sym_restrict] = ACTIONS(2004), - [anon_sym___restrict__] = ACTIONS(2004), - [anon_sym__Atomic] = ACTIONS(2004), - [anon_sym__Noreturn] = ACTIONS(2004), - [anon_sym_noreturn] = ACTIONS(2004), - [anon_sym_DASH_DASH] = ACTIONS(2008), - [anon_sym_PLUS_PLUS] = ACTIONS(2008), - [anon_sym_sizeof] = ACTIONS(1960), - [anon_sym___alignof__] = ACTIONS(85), - [anon_sym___alignof] = ACTIONS(85), - [anon_sym__alignof] = ACTIONS(85), - [anon_sym_alignof] = ACTIONS(85), - [anon_sym__Alignof] = ACTIONS(85), - [anon_sym_offsetof] = ACTIONS(87), - [anon_sym__Generic] = ACTIONS(89), - [anon_sym_asm] = ACTIONS(91), - [anon_sym___asm__] = ACTIONS(91), - [sym_number_literal] = ACTIONS(159), - [anon_sym_L_SQUOTE] = ACTIONS(95), - [anon_sym_u_SQUOTE] = ACTIONS(95), - [anon_sym_U_SQUOTE] = ACTIONS(95), - [anon_sym_u8_SQUOTE] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(95), - [anon_sym_L_DQUOTE] = ACTIONS(97), - [anon_sym_u_DQUOTE] = ACTIONS(97), - [anon_sym_U_DQUOTE] = ACTIONS(97), - [anon_sym_u8_DQUOTE] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(97), - [sym_true] = ACTIONS(161), - [sym_false] = ACTIONS(161), - [anon_sym_NULL] = ACTIONS(101), - [anon_sym_nullptr] = ACTIONS(101), + [sym__declaration_modifiers] = STATE(855), + [sym__declaration_specifiers] = STATE(1387), + [sym_attribute_specifier] = STATE(855), + [sym_attribute_declaration] = STATE(855), + [sym_ms_declspec_modifier] = STATE(855), + [sym_ms_based_modifier] = STATE(2089), + [sym__declarator] = STATE(1663), + [sym__abstract_declarator] = STATE(1760), + [sym_parenthesized_declarator] = STATE(1616), + [sym_abstract_parenthesized_declarator] = STATE(1701), + [sym_attributed_declarator] = STATE(1616), + [sym_pointer_declarator] = STATE(1616), + [sym_abstract_pointer_declarator] = STATE(1701), + [sym_function_declarator] = STATE(1616), + [sym_abstract_function_declarator] = STATE(1701), + [sym_array_declarator] = STATE(1616), + [sym_abstract_array_declarator] = STATE(1701), + [sym_storage_class_specifier] = STATE(855), + [sym_type_qualifier] = STATE(855), + [sym__type_specifier] = STATE(974), + [sym_sized_type_specifier] = STATE(1069), + [sym_enum_specifier] = STATE(1069), + [sym_struct_specifier] = STATE(1069), + [sym_union_specifier] = STATE(1069), + [sym_variadic_parameter] = STATE(1843), + [sym_parameter_list] = STATE(1704), + [sym_parameter_declaration] = STATE(1843), + [sym_macro_type_specifier] = STATE(1069), + [aux_sym__declaration_specifiers_repeat1] = STATE(855), + [aux_sym_sized_type_specifier_repeat1] = STATE(1085), + [sym_identifier] = ACTIONS(2035), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2037), + [anon_sym_RPAREN] = ACTIONS(2039), + [anon_sym_LPAREN2] = ACTIONS(2041), + [anon_sym_STAR] = ACTIONS(2043), + [anon_sym___extension__] = ACTIONS(51), + [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(1312), + [anon_sym___declspec] = ACTIONS(41), + [anon_sym___based] = ACTIONS(2045), + [anon_sym_signed] = ACTIONS(47), + [anon_sym_unsigned] = ACTIONS(47), + [anon_sym_long] = ACTIONS(47), + [anon_sym_short] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(2047), + [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), + [sym_primitive_type] = ACTIONS(53), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), [sym_comment] = ACTIONS(3), }, [524] = { - [sym_type_qualifier] = STATE(519), - [sym__expression] = STATE(1267), - [sym__expression_not_binary] = STATE(792), - [sym_conditional_expression] = STATE(792), - [sym_assignment_expression] = STATE(792), - [sym_pointer_expression] = STATE(1097), - [sym_unary_expression] = STATE(792), - [sym_binary_expression] = STATE(792), - [sym_update_expression] = STATE(792), - [sym_cast_expression] = STATE(792), - [sym_sizeof_expression] = STATE(792), - [sym_alignof_expression] = STATE(792), - [sym_offsetof_expression] = STATE(792), - [sym_generic_expression] = STATE(792), - [sym_subscript_expression] = STATE(1097), - [sym_call_expression] = STATE(1097), - [sym_gnu_asm_expression] = STATE(792), - [sym_field_expression] = STATE(1097), - [sym_compound_literal_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(1097), - [sym_char_literal] = STATE(792), - [sym_concatenated_string] = STATE(792), - [sym_string_literal] = STATE(675), - [sym_null] = STATE(792), - [aux_sym__type_definition_type_repeat1] = STATE(519), - [sym_identifier] = ACTIONS(1954), - [anon_sym_LPAREN2] = ACTIONS(1998), - [anon_sym_BANG] = ACTIONS(1958), - [anon_sym_TILDE] = ACTIONS(1958), - [anon_sym_DASH] = ACTIONS(1956), - [anon_sym_PLUS] = ACTIONS(1956), - [anon_sym_STAR] = ACTIONS(2030), - [anon_sym_AMP] = ACTIONS(2002), - [anon_sym___extension__] = ACTIONS(2004), - [anon_sym_RBRACK] = ACTIONS(2032), - [anon_sym_const] = ACTIONS(2004), - [anon_sym_constexpr] = ACTIONS(2004), - [anon_sym_volatile] = ACTIONS(2004), - [anon_sym_restrict] = ACTIONS(2004), - [anon_sym___restrict__] = ACTIONS(2004), - [anon_sym__Atomic] = ACTIONS(2004), - [anon_sym__Noreturn] = ACTIONS(2004), - [anon_sym_noreturn] = ACTIONS(2004), - [anon_sym_DASH_DASH] = ACTIONS(2008), - [anon_sym_PLUS_PLUS] = ACTIONS(2008), - [anon_sym_sizeof] = ACTIONS(1960), - [anon_sym___alignof__] = ACTIONS(85), - [anon_sym___alignof] = ACTIONS(85), - [anon_sym__alignof] = ACTIONS(85), - [anon_sym_alignof] = ACTIONS(85), - [anon_sym__Alignof] = ACTIONS(85), - [anon_sym_offsetof] = ACTIONS(87), - [anon_sym__Generic] = ACTIONS(89), - [anon_sym_asm] = ACTIONS(91), - [anon_sym___asm__] = ACTIONS(91), - [sym_number_literal] = ACTIONS(159), - [anon_sym_L_SQUOTE] = ACTIONS(95), - [anon_sym_u_SQUOTE] = ACTIONS(95), - [anon_sym_U_SQUOTE] = ACTIONS(95), - [anon_sym_u8_SQUOTE] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(95), - [anon_sym_L_DQUOTE] = ACTIONS(97), - [anon_sym_u_DQUOTE] = ACTIONS(97), - [anon_sym_U_DQUOTE] = ACTIONS(97), - [anon_sym_u8_DQUOTE] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(97), - [sym_true] = ACTIONS(161), - [sym_false] = ACTIONS(161), - [anon_sym_NULL] = ACTIONS(101), - [anon_sym_nullptr] = ACTIONS(101), + [sym_preproc_def] = STATE(521), + [sym_preproc_function_def] = STATE(521), + [sym_preproc_call] = STATE(521), + [sym_preproc_if_in_field_declaration_list] = STATE(521), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(521), + [sym_preproc_else_in_field_declaration_list] = STATE(2290), + [sym_preproc_elif_in_field_declaration_list] = STATE(2290), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(2290), + [sym__declaration_modifiers] = STATE(855), + [sym__declaration_specifiers] = STATE(1350), + [sym_attribute_specifier] = STATE(855), + [sym_attribute_declaration] = STATE(855), + [sym_ms_declspec_modifier] = STATE(855), + [sym_storage_class_specifier] = STATE(855), + [sym_type_qualifier] = STATE(855), + [sym__type_specifier] = STATE(974), + [sym_sized_type_specifier] = STATE(1069), + [sym_enum_specifier] = STATE(1069), + [sym_struct_specifier] = STATE(1069), + [sym_union_specifier] = STATE(1069), + [sym__field_declaration_list_item] = STATE(521), + [sym_field_declaration] = STATE(521), + [sym_macro_type_specifier] = STATE(1069), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(521), + [aux_sym__declaration_specifiers_repeat1] = STATE(855), + [aux_sym_sized_type_specifier_repeat1] = STATE(1085), + [sym_identifier] = ACTIONS(2009), + [aux_sym_preproc_def_token1] = ACTIONS(2011), + [aux_sym_preproc_if_token1] = ACTIONS(2013), + [aux_sym_preproc_if_token2] = ACTIONS(2049), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2017), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2017), + [aux_sym_preproc_else_token1] = ACTIONS(2019), + [aux_sym_preproc_elif_token1] = ACTIONS(2021), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2023), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2023), + [sym_preproc_directive] = ACTIONS(2025), + [anon_sym___extension__] = ACTIONS(51), + [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(1312), + [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), + [sym_primitive_type] = ACTIONS(53), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), [sym_comment] = ACTIONS(3), }, [525] = { - [sym_type_qualifier] = STATE(518), - [sym__expression] = STATE(1280), - [sym__expression_not_binary] = STATE(792), - [sym_conditional_expression] = STATE(792), - [sym_assignment_expression] = STATE(792), - [sym_pointer_expression] = STATE(1097), - [sym_unary_expression] = STATE(792), - [sym_binary_expression] = STATE(792), - [sym_update_expression] = STATE(792), - [sym_cast_expression] = STATE(792), - [sym_sizeof_expression] = STATE(792), - [sym_alignof_expression] = STATE(792), - [sym_offsetof_expression] = STATE(792), - [sym_generic_expression] = STATE(792), - [sym_subscript_expression] = STATE(1097), - [sym_call_expression] = STATE(1097), - [sym_gnu_asm_expression] = STATE(792), - [sym_field_expression] = STATE(1097), - [sym_compound_literal_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(1097), - [sym_char_literal] = STATE(792), - [sym_concatenated_string] = STATE(792), - [sym_string_literal] = STATE(675), - [sym_null] = STATE(792), - [aux_sym__type_definition_type_repeat1] = STATE(518), - [sym_identifier] = ACTIONS(1954), - [anon_sym_LPAREN2] = ACTIONS(1998), - [anon_sym_BANG] = ACTIONS(1958), - [anon_sym_TILDE] = ACTIONS(1958), - [anon_sym_DASH] = ACTIONS(1956), - [anon_sym_PLUS] = ACTIONS(1956), - [anon_sym_STAR] = ACTIONS(2034), - [anon_sym_AMP] = ACTIONS(2002), - [anon_sym___extension__] = ACTIONS(2004), - [anon_sym_RBRACK] = ACTIONS(2036), - [anon_sym_const] = ACTIONS(2004), - [anon_sym_constexpr] = ACTIONS(2004), - [anon_sym_volatile] = ACTIONS(2004), - [anon_sym_restrict] = ACTIONS(2004), - [anon_sym___restrict__] = ACTIONS(2004), - [anon_sym__Atomic] = ACTIONS(2004), - [anon_sym__Noreturn] = ACTIONS(2004), - [anon_sym_noreturn] = ACTIONS(2004), - [anon_sym_DASH_DASH] = ACTIONS(2008), - [anon_sym_PLUS_PLUS] = ACTIONS(2008), - [anon_sym_sizeof] = ACTIONS(1960), - [anon_sym___alignof__] = ACTIONS(85), - [anon_sym___alignof] = ACTIONS(85), - [anon_sym__alignof] = ACTIONS(85), - [anon_sym_alignof] = ACTIONS(85), - [anon_sym__Alignof] = ACTIONS(85), - [anon_sym_offsetof] = ACTIONS(87), - [anon_sym__Generic] = ACTIONS(89), - [anon_sym_asm] = ACTIONS(91), - [anon_sym___asm__] = ACTIONS(91), - [sym_number_literal] = ACTIONS(159), - [anon_sym_L_SQUOTE] = ACTIONS(95), - [anon_sym_u_SQUOTE] = ACTIONS(95), - [anon_sym_U_SQUOTE] = ACTIONS(95), - [anon_sym_u8_SQUOTE] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(95), - [anon_sym_L_DQUOTE] = ACTIONS(97), - [anon_sym_u_DQUOTE] = ACTIONS(97), - [anon_sym_U_DQUOTE] = ACTIONS(97), - [anon_sym_u8_DQUOTE] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(97), - [sym_true] = ACTIONS(161), - [sym_false] = ACTIONS(161), - [anon_sym_NULL] = ACTIONS(101), - [anon_sym_nullptr] = ACTIONS(101), + [sym_preproc_def] = STATE(520), + [sym_preproc_function_def] = STATE(520), + [sym_preproc_call] = STATE(520), + [sym_preproc_if_in_field_declaration_list] = STATE(520), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(520), + [sym_preproc_else_in_field_declaration_list] = STATE(2157), + [sym_preproc_elif_in_field_declaration_list] = STATE(2157), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(2157), + [sym__declaration_modifiers] = STATE(855), + [sym__declaration_specifiers] = STATE(1350), + [sym_attribute_specifier] = STATE(855), + [sym_attribute_declaration] = STATE(855), + [sym_ms_declspec_modifier] = STATE(855), + [sym_storage_class_specifier] = STATE(855), + [sym_type_qualifier] = STATE(855), + [sym__type_specifier] = STATE(974), + [sym_sized_type_specifier] = STATE(1069), + [sym_enum_specifier] = STATE(1069), + [sym_struct_specifier] = STATE(1069), + [sym_union_specifier] = STATE(1069), + [sym__field_declaration_list_item] = STATE(520), + [sym_field_declaration] = STATE(520), + [sym_macro_type_specifier] = STATE(1069), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(520), + [aux_sym__declaration_specifiers_repeat1] = STATE(855), + [aux_sym_sized_type_specifier_repeat1] = STATE(1085), + [sym_identifier] = ACTIONS(2009), + [aux_sym_preproc_def_token1] = ACTIONS(2011), + [aux_sym_preproc_if_token1] = ACTIONS(2013), + [aux_sym_preproc_if_token2] = ACTIONS(2051), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2017), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2017), + [aux_sym_preproc_else_token1] = ACTIONS(2019), + [aux_sym_preproc_elif_token1] = ACTIONS(2021), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2023), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2023), + [sym_preproc_directive] = ACTIONS(2025), + [anon_sym___extension__] = ACTIONS(51), + [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(1312), + [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), + [sym_primitive_type] = ACTIONS(53), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), [sym_comment] = ACTIONS(3), }, [526] = { - [sym_type_qualifier] = STATE(522), - [sym__expression] = STATE(1296), - [sym__expression_not_binary] = STATE(792), - [sym_conditional_expression] = STATE(792), - [sym_assignment_expression] = STATE(792), - [sym_pointer_expression] = STATE(1097), - [sym_unary_expression] = STATE(792), - [sym_binary_expression] = STATE(792), - [sym_update_expression] = STATE(792), - [sym_cast_expression] = STATE(792), - [sym_sizeof_expression] = STATE(792), - [sym_alignof_expression] = STATE(792), - [sym_offsetof_expression] = STATE(792), - [sym_generic_expression] = STATE(792), - [sym_subscript_expression] = STATE(1097), - [sym_call_expression] = STATE(1097), - [sym_gnu_asm_expression] = STATE(792), - [sym_field_expression] = STATE(1097), - [sym_compound_literal_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(1097), - [sym_char_literal] = STATE(792), - [sym_concatenated_string] = STATE(792), - [sym_string_literal] = STATE(675), - [sym_null] = STATE(792), - [aux_sym__type_definition_type_repeat1] = STATE(522), - [sym_identifier] = ACTIONS(1954), - [anon_sym_LPAREN2] = ACTIONS(1998), - [anon_sym_BANG] = ACTIONS(1958), - [anon_sym_TILDE] = ACTIONS(1958), - [anon_sym_DASH] = ACTIONS(1956), - [anon_sym_PLUS] = ACTIONS(1956), - [anon_sym_STAR] = ACTIONS(2038), - [anon_sym_AMP] = ACTIONS(2002), - [anon_sym___extension__] = ACTIONS(2004), - [anon_sym_RBRACK] = ACTIONS(2040), - [anon_sym_const] = ACTIONS(2004), - [anon_sym_constexpr] = ACTIONS(2004), - [anon_sym_volatile] = ACTIONS(2004), - [anon_sym_restrict] = ACTIONS(2004), - [anon_sym___restrict__] = ACTIONS(2004), - [anon_sym__Atomic] = ACTIONS(2004), - [anon_sym__Noreturn] = ACTIONS(2004), - [anon_sym_noreturn] = ACTIONS(2004), - [anon_sym_DASH_DASH] = ACTIONS(2008), - [anon_sym_PLUS_PLUS] = ACTIONS(2008), - [anon_sym_sizeof] = ACTIONS(1960), - [anon_sym___alignof__] = ACTIONS(85), - [anon_sym___alignof] = ACTIONS(85), - [anon_sym__alignof] = ACTIONS(85), - [anon_sym_alignof] = ACTIONS(85), - [anon_sym__Alignof] = ACTIONS(85), - [anon_sym_offsetof] = ACTIONS(87), - [anon_sym__Generic] = ACTIONS(89), - [anon_sym_asm] = ACTIONS(91), - [anon_sym___asm__] = ACTIONS(91), - [sym_number_literal] = ACTIONS(159), - [anon_sym_L_SQUOTE] = ACTIONS(95), - [anon_sym_u_SQUOTE] = ACTIONS(95), - [anon_sym_U_SQUOTE] = ACTIONS(95), - [anon_sym_u8_SQUOTE] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(95), - [anon_sym_L_DQUOTE] = ACTIONS(97), - [anon_sym_u_DQUOTE] = ACTIONS(97), - [anon_sym_U_DQUOTE] = ACTIONS(97), - [anon_sym_u8_DQUOTE] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(97), - [sym_true] = ACTIONS(161), - [sym_false] = ACTIONS(161), - [anon_sym_NULL] = ACTIONS(101), - [anon_sym_nullptr] = ACTIONS(101), + [sym_preproc_def] = STATE(518), + [sym_preproc_function_def] = STATE(518), + [sym_preproc_call] = STATE(518), + [sym_preproc_if_in_field_declaration_list] = STATE(518), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(518), + [sym_preproc_else_in_field_declaration_list] = STATE(2059), + [sym_preproc_elif_in_field_declaration_list] = STATE(2059), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(2059), + [sym__declaration_modifiers] = STATE(855), + [sym__declaration_specifiers] = STATE(1350), + [sym_attribute_specifier] = STATE(855), + [sym_attribute_declaration] = STATE(855), + [sym_ms_declspec_modifier] = STATE(855), + [sym_storage_class_specifier] = STATE(855), + [sym_type_qualifier] = STATE(855), + [sym__type_specifier] = STATE(974), + [sym_sized_type_specifier] = STATE(1069), + [sym_enum_specifier] = STATE(1069), + [sym_struct_specifier] = STATE(1069), + [sym_union_specifier] = STATE(1069), + [sym__field_declaration_list_item] = STATE(518), + [sym_field_declaration] = STATE(518), + [sym_macro_type_specifier] = STATE(1069), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(518), + [aux_sym__declaration_specifiers_repeat1] = STATE(855), + [aux_sym_sized_type_specifier_repeat1] = STATE(1085), + [sym_identifier] = ACTIONS(2009), + [aux_sym_preproc_def_token1] = ACTIONS(2011), + [aux_sym_preproc_if_token1] = ACTIONS(2013), + [aux_sym_preproc_if_token2] = ACTIONS(2053), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2017), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2017), + [aux_sym_preproc_else_token1] = ACTIONS(2019), + [aux_sym_preproc_elif_token1] = ACTIONS(2021), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2023), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2023), + [sym_preproc_directive] = ACTIONS(2025), + [anon_sym___extension__] = ACTIONS(51), + [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(1312), + [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), + [sym_primitive_type] = ACTIONS(53), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), [sym_comment] = ACTIONS(3), }, [527] = { - [sym_type_qualifier] = STATE(521), - [sym__expression] = STATE(1294), - [sym__expression_not_binary] = STATE(792), - [sym_conditional_expression] = STATE(792), - [sym_assignment_expression] = STATE(792), - [sym_pointer_expression] = STATE(1097), - [sym_unary_expression] = STATE(792), - [sym_binary_expression] = STATE(792), - [sym_update_expression] = STATE(792), - [sym_cast_expression] = STATE(792), - [sym_sizeof_expression] = STATE(792), - [sym_alignof_expression] = STATE(792), - [sym_offsetof_expression] = STATE(792), - [sym_generic_expression] = STATE(792), - [sym_subscript_expression] = STATE(1097), - [sym_call_expression] = STATE(1097), - [sym_gnu_asm_expression] = STATE(792), - [sym_field_expression] = STATE(1097), - [sym_compound_literal_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(1097), - [sym_char_literal] = STATE(792), - [sym_concatenated_string] = STATE(792), - [sym_string_literal] = STATE(675), - [sym_null] = STATE(792), - [aux_sym__type_definition_type_repeat1] = STATE(521), - [sym_identifier] = ACTIONS(1954), - [anon_sym_LPAREN2] = ACTIONS(1998), - [anon_sym_BANG] = ACTIONS(1958), - [anon_sym_TILDE] = ACTIONS(1958), - [anon_sym_DASH] = ACTIONS(1956), - [anon_sym_PLUS] = ACTIONS(1956), - [anon_sym_STAR] = ACTIONS(2042), - [anon_sym_AMP] = ACTIONS(2002), - [anon_sym___extension__] = ACTIONS(2004), - [anon_sym_RBRACK] = ACTIONS(2044), - [anon_sym_const] = ACTIONS(2004), - [anon_sym_constexpr] = ACTIONS(2004), - [anon_sym_volatile] = ACTIONS(2004), - [anon_sym_restrict] = ACTIONS(2004), - [anon_sym___restrict__] = ACTIONS(2004), - [anon_sym__Atomic] = ACTIONS(2004), - [anon_sym__Noreturn] = ACTIONS(2004), - [anon_sym_noreturn] = ACTIONS(2004), - [anon_sym_DASH_DASH] = ACTIONS(2008), - [anon_sym_PLUS_PLUS] = ACTIONS(2008), - [anon_sym_sizeof] = ACTIONS(1960), - [anon_sym___alignof__] = ACTIONS(85), - [anon_sym___alignof] = ACTIONS(85), - [anon_sym__alignof] = ACTIONS(85), - [anon_sym_alignof] = ACTIONS(85), - [anon_sym__Alignof] = ACTIONS(85), - [anon_sym_offsetof] = ACTIONS(87), - [anon_sym__Generic] = ACTIONS(89), - [anon_sym_asm] = ACTIONS(91), - [anon_sym___asm__] = ACTIONS(91), - [sym_number_literal] = ACTIONS(159), - [anon_sym_L_SQUOTE] = ACTIONS(95), - [anon_sym_u_SQUOTE] = ACTIONS(95), - [anon_sym_U_SQUOTE] = ACTIONS(95), - [anon_sym_u8_SQUOTE] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(95), - [anon_sym_L_DQUOTE] = ACTIONS(97), - [anon_sym_u_DQUOTE] = ACTIONS(97), - [anon_sym_U_DQUOTE] = ACTIONS(97), - [anon_sym_u8_DQUOTE] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(97), - [sym_true] = ACTIONS(161), - [sym_false] = ACTIONS(161), - [anon_sym_NULL] = ACTIONS(101), - [anon_sym_nullptr] = ACTIONS(101), + [sym_preproc_def] = STATE(553), + [sym_preproc_function_def] = STATE(553), + [sym_preproc_call] = STATE(553), + [sym_preproc_if_in_field_declaration_list] = STATE(553), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(553), + [sym_preproc_else_in_field_declaration_list] = STATE(2142), + [sym_preproc_elif_in_field_declaration_list] = STATE(2142), + [sym__declaration_modifiers] = STATE(855), + [sym__declaration_specifiers] = STATE(1353), + [sym_attribute_specifier] = STATE(855), + [sym_attribute_declaration] = STATE(855), + [sym_ms_declspec_modifier] = STATE(855), + [sym_storage_class_specifier] = STATE(855), + [sym_type_qualifier] = STATE(855), + [sym__type_specifier] = STATE(974), + [sym_sized_type_specifier] = STATE(1069), + [sym_enum_specifier] = STATE(1069), + [sym_struct_specifier] = STATE(1069), + [sym_union_specifier] = STATE(1069), + [sym__field_declaration_list_item] = STATE(553), + [sym_field_declaration] = STATE(553), + [sym_macro_type_specifier] = STATE(1069), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(553), + [aux_sym__declaration_specifiers_repeat1] = STATE(855), + [aux_sym_sized_type_specifier_repeat1] = STATE(1085), + [sym_identifier] = ACTIONS(2009), + [aux_sym_preproc_def_token1] = ACTIONS(2055), + [aux_sym_preproc_if_token1] = ACTIONS(2057), + [aux_sym_preproc_if_token2] = ACTIONS(2059), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2061), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2061), + [aux_sym_preproc_else_token1] = ACTIONS(2019), + [aux_sym_preproc_elif_token1] = ACTIONS(2021), + [sym_preproc_directive] = ACTIONS(2063), + [anon_sym___extension__] = ACTIONS(51), + [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(1312), + [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), + [sym_primitive_type] = ACTIONS(53), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), [sym_comment] = ACTIONS(3), }, [528] = { - [sym_preproc_def] = STATE(547), - [sym_preproc_function_def] = STATE(547), - [sym_preproc_call] = STATE(547), - [sym_preproc_if_in_field_declaration_list] = STATE(547), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(547), - [sym_preproc_else_in_field_declaration_list] = STATE(2194), - [sym_preproc_elif_in_field_declaration_list] = STATE(2194), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(2194), - [sym__declaration_modifiers] = STATE(861), - [sym__declaration_specifiers] = STATE(1451), - [sym_attribute_specifier] = STATE(861), - [sym_attribute_declaration] = STATE(861), - [sym_ms_declspec_modifier] = STATE(861), - [sym_storage_class_specifier] = STATE(861), - [sym_type_qualifier] = STATE(861), - [sym__type_specifier] = STATE(1040), - [sym_sized_type_specifier] = STATE(1106), - [sym_enum_specifier] = STATE(1106), - [sym_struct_specifier] = STATE(1106), - [sym_union_specifier] = STATE(1106), - [sym__field_declaration_list_item] = STATE(547), - [sym_field_declaration] = STATE(547), - [sym_macro_type_specifier] = STATE(1106), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(547), - [aux_sym__declaration_specifiers_repeat1] = STATE(861), - [aux_sym_sized_type_specifier_repeat1] = STATE(1113), - [sym_identifier] = ACTIONS(2046), - [aux_sym_preproc_def_token1] = ACTIONS(2048), - [aux_sym_preproc_if_token1] = ACTIONS(2050), - [aux_sym_preproc_if_token2] = ACTIONS(2052), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2054), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2054), - [aux_sym_preproc_else_token1] = ACTIONS(2056), - [aux_sym_preproc_elif_token1] = ACTIONS(2058), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2060), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2060), - [sym_preproc_directive] = ACTIONS(2062), - [anon_sym___extension__] = ACTIONS(49), - [anon_sym_extern] = ACTIONS(47), + [sym_preproc_def] = STATE(553), + [sym_preproc_function_def] = STATE(553), + [sym_preproc_call] = STATE(553), + [sym_preproc_if_in_field_declaration_list] = STATE(553), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(553), + [sym_preproc_else_in_field_declaration_list] = STATE(2208), + [sym_preproc_elif_in_field_declaration_list] = STATE(2208), + [sym__declaration_modifiers] = STATE(855), + [sym__declaration_specifiers] = STATE(1353), + [sym_attribute_specifier] = STATE(855), + [sym_attribute_declaration] = STATE(855), + [sym_ms_declspec_modifier] = STATE(855), + [sym_storage_class_specifier] = STATE(855), + [sym_type_qualifier] = STATE(855), + [sym__type_specifier] = STATE(974), + [sym_sized_type_specifier] = STATE(1069), + [sym_enum_specifier] = STATE(1069), + [sym_struct_specifier] = STATE(1069), + [sym_union_specifier] = STATE(1069), + [sym__field_declaration_list_item] = STATE(553), + [sym_field_declaration] = STATE(553), + [sym_macro_type_specifier] = STATE(1069), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(553), + [aux_sym__declaration_specifiers_repeat1] = STATE(855), + [aux_sym_sized_type_specifier_repeat1] = STATE(1085), + [sym_identifier] = ACTIONS(2009), + [aux_sym_preproc_def_token1] = ACTIONS(2055), + [aux_sym_preproc_if_token1] = ACTIONS(2057), + [aux_sym_preproc_if_token2] = ACTIONS(2065), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2061), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2061), + [aux_sym_preproc_else_token1] = ACTIONS(2019), + [aux_sym_preproc_elif_token1] = ACTIONS(2021), + [sym_preproc_directive] = ACTIONS(2063), + [anon_sym___extension__] = ACTIONS(51), + [anon_sym_extern] = ACTIONS(49), [anon_sym___attribute__] = ACTIONS(33), [anon_sym___scanf] = ACTIONS(35), [anon_sym___printf] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1301), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [sym_primitive_type] = ACTIONS(51), - [anon_sym_enum] = ACTIONS(53), - [anon_sym_struct] = ACTIONS(55), - [anon_sym_union] = ACTIONS(57), + [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(1312), + [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), + [sym_primitive_type] = ACTIONS(53), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), [sym_comment] = ACTIONS(3), }, [529] = { - [sym_preproc_def] = STATE(547), - [sym_preproc_function_def] = STATE(547), - [sym_preproc_call] = STATE(547), - [sym_preproc_if_in_field_declaration_list] = STATE(547), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(547), - [sym_preproc_else_in_field_declaration_list] = STATE(2060), - [sym_preproc_elif_in_field_declaration_list] = STATE(2060), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(2060), - [sym__declaration_modifiers] = STATE(861), - [sym__declaration_specifiers] = STATE(1451), - [sym_attribute_specifier] = STATE(861), - [sym_attribute_declaration] = STATE(861), - [sym_ms_declspec_modifier] = STATE(861), - [sym_storage_class_specifier] = STATE(861), - [sym_type_qualifier] = STATE(861), - [sym__type_specifier] = STATE(1040), - [sym_sized_type_specifier] = STATE(1106), - [sym_enum_specifier] = STATE(1106), - [sym_struct_specifier] = STATE(1106), - [sym_union_specifier] = STATE(1106), - [sym__field_declaration_list_item] = STATE(547), - [sym_field_declaration] = STATE(547), - [sym_macro_type_specifier] = STATE(1106), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(547), - [aux_sym__declaration_specifiers_repeat1] = STATE(861), - [aux_sym_sized_type_specifier_repeat1] = STATE(1113), - [sym_identifier] = ACTIONS(2046), - [aux_sym_preproc_def_token1] = ACTIONS(2048), - [aux_sym_preproc_if_token1] = ACTIONS(2050), - [aux_sym_preproc_if_token2] = ACTIONS(2064), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2054), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2054), - [aux_sym_preproc_else_token1] = ACTIONS(2056), - [aux_sym_preproc_elif_token1] = ACTIONS(2058), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2060), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2060), - [sym_preproc_directive] = ACTIONS(2062), - [anon_sym___extension__] = ACTIONS(49), - [anon_sym_extern] = ACTIONS(47), + [sym_preproc_def] = STATE(553), + [sym_preproc_function_def] = STATE(553), + [sym_preproc_call] = STATE(553), + [sym_preproc_if_in_field_declaration_list] = STATE(553), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(553), + [sym_preproc_else_in_field_declaration_list] = STATE(2178), + [sym_preproc_elif_in_field_declaration_list] = STATE(2178), + [sym__declaration_modifiers] = STATE(855), + [sym__declaration_specifiers] = STATE(1353), + [sym_attribute_specifier] = STATE(855), + [sym_attribute_declaration] = STATE(855), + [sym_ms_declspec_modifier] = STATE(855), + [sym_storage_class_specifier] = STATE(855), + [sym_type_qualifier] = STATE(855), + [sym__type_specifier] = STATE(974), + [sym_sized_type_specifier] = STATE(1069), + [sym_enum_specifier] = STATE(1069), + [sym_struct_specifier] = STATE(1069), + [sym_union_specifier] = STATE(1069), + [sym__field_declaration_list_item] = STATE(553), + [sym_field_declaration] = STATE(553), + [sym_macro_type_specifier] = STATE(1069), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(553), + [aux_sym__declaration_specifiers_repeat1] = STATE(855), + [aux_sym_sized_type_specifier_repeat1] = STATE(1085), + [sym_identifier] = ACTIONS(2009), + [aux_sym_preproc_def_token1] = ACTIONS(2055), + [aux_sym_preproc_if_token1] = ACTIONS(2057), + [aux_sym_preproc_if_token2] = ACTIONS(2067), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2061), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2061), + [aux_sym_preproc_else_token1] = ACTIONS(2019), + [aux_sym_preproc_elif_token1] = ACTIONS(2021), + [sym_preproc_directive] = ACTIONS(2063), + [anon_sym___extension__] = ACTIONS(51), + [anon_sym_extern] = ACTIONS(49), [anon_sym___attribute__] = ACTIONS(33), [anon_sym___scanf] = ACTIONS(35), [anon_sym___printf] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1301), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [sym_primitive_type] = ACTIONS(51), - [anon_sym_enum] = ACTIONS(53), - [anon_sym_struct] = ACTIONS(55), - [anon_sym_union] = ACTIONS(57), + [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(1312), + [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), + [sym_primitive_type] = ACTIONS(53), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), [sym_comment] = ACTIONS(3), }, [530] = { - [sym_preproc_def] = STATE(528), - [sym_preproc_function_def] = STATE(528), - [sym_preproc_call] = STATE(528), - [sym_preproc_if_in_field_declaration_list] = STATE(528), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(528), - [sym_preproc_else_in_field_declaration_list] = STATE(2217), - [sym_preproc_elif_in_field_declaration_list] = STATE(2217), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(2217), - [sym__declaration_modifiers] = STATE(861), - [sym__declaration_specifiers] = STATE(1451), - [sym_attribute_specifier] = STATE(861), - [sym_attribute_declaration] = STATE(861), - [sym_ms_declspec_modifier] = STATE(861), - [sym_storage_class_specifier] = STATE(861), - [sym_type_qualifier] = STATE(861), - [sym__type_specifier] = STATE(1040), - [sym_sized_type_specifier] = STATE(1106), - [sym_enum_specifier] = STATE(1106), - [sym_struct_specifier] = STATE(1106), - [sym_union_specifier] = STATE(1106), - [sym__field_declaration_list_item] = STATE(528), - [sym_field_declaration] = STATE(528), - [sym_macro_type_specifier] = STATE(1106), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(528), - [aux_sym__declaration_specifiers_repeat1] = STATE(861), - [aux_sym_sized_type_specifier_repeat1] = STATE(1113), - [sym_identifier] = ACTIONS(2046), - [aux_sym_preproc_def_token1] = ACTIONS(2048), - [aux_sym_preproc_if_token1] = ACTIONS(2050), - [aux_sym_preproc_if_token2] = ACTIONS(2066), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2054), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2054), - [aux_sym_preproc_else_token1] = ACTIONS(2056), - [aux_sym_preproc_elif_token1] = ACTIONS(2058), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2060), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2060), - [sym_preproc_directive] = ACTIONS(2062), - [anon_sym___extension__] = ACTIONS(49), - [anon_sym_extern] = ACTIONS(47), + [sym_preproc_def] = STATE(527), + [sym_preproc_function_def] = STATE(527), + [sym_preproc_call] = STATE(527), + [sym_preproc_if_in_field_declaration_list] = STATE(527), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(527), + [sym_preproc_else_in_field_declaration_list] = STATE(2149), + [sym_preproc_elif_in_field_declaration_list] = STATE(2149), + [sym__declaration_modifiers] = STATE(855), + [sym__declaration_specifiers] = STATE(1353), + [sym_attribute_specifier] = STATE(855), + [sym_attribute_declaration] = STATE(855), + [sym_ms_declspec_modifier] = STATE(855), + [sym_storage_class_specifier] = STATE(855), + [sym_type_qualifier] = STATE(855), + [sym__type_specifier] = STATE(974), + [sym_sized_type_specifier] = STATE(1069), + [sym_enum_specifier] = STATE(1069), + [sym_struct_specifier] = STATE(1069), + [sym_union_specifier] = STATE(1069), + [sym__field_declaration_list_item] = STATE(527), + [sym_field_declaration] = STATE(527), + [sym_macro_type_specifier] = STATE(1069), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(527), + [aux_sym__declaration_specifiers_repeat1] = STATE(855), + [aux_sym_sized_type_specifier_repeat1] = STATE(1085), + [sym_identifier] = ACTIONS(2009), + [aux_sym_preproc_def_token1] = ACTIONS(2055), + [aux_sym_preproc_if_token1] = ACTIONS(2057), + [aux_sym_preproc_if_token2] = ACTIONS(2069), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2061), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2061), + [aux_sym_preproc_else_token1] = ACTIONS(2019), + [aux_sym_preproc_elif_token1] = ACTIONS(2021), + [sym_preproc_directive] = ACTIONS(2063), + [anon_sym___extension__] = ACTIONS(51), + [anon_sym_extern] = ACTIONS(49), [anon_sym___attribute__] = ACTIONS(33), [anon_sym___scanf] = ACTIONS(35), [anon_sym___printf] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1301), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [sym_primitive_type] = ACTIONS(51), - [anon_sym_enum] = ACTIONS(53), - [anon_sym_struct] = ACTIONS(55), - [anon_sym_union] = ACTIONS(57), + [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(1312), + [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), + [sym_primitive_type] = ACTIONS(53), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), [sym_comment] = ACTIONS(3), }, [531] = { - [sym_preproc_def] = STATE(547), - [sym_preproc_function_def] = STATE(547), - [sym_preproc_call] = STATE(547), - [sym_preproc_if_in_field_declaration_list] = STATE(547), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(547), - [sym_preproc_else_in_field_declaration_list] = STATE(1986), - [sym_preproc_elif_in_field_declaration_list] = STATE(1986), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(1986), - [sym__declaration_modifiers] = STATE(861), - [sym__declaration_specifiers] = STATE(1451), - [sym_attribute_specifier] = STATE(861), - [sym_attribute_declaration] = STATE(861), - [sym_ms_declspec_modifier] = STATE(861), - [sym_storage_class_specifier] = STATE(861), - [sym_type_qualifier] = STATE(861), - [sym__type_specifier] = STATE(1040), - [sym_sized_type_specifier] = STATE(1106), - [sym_enum_specifier] = STATE(1106), - [sym_struct_specifier] = STATE(1106), - [sym_union_specifier] = STATE(1106), - [sym__field_declaration_list_item] = STATE(547), - [sym_field_declaration] = STATE(547), - [sym_macro_type_specifier] = STATE(1106), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(547), - [aux_sym__declaration_specifiers_repeat1] = STATE(861), - [aux_sym_sized_type_specifier_repeat1] = STATE(1113), - [sym_identifier] = ACTIONS(2046), - [aux_sym_preproc_def_token1] = ACTIONS(2048), - [aux_sym_preproc_if_token1] = ACTIONS(2050), - [aux_sym_preproc_if_token2] = ACTIONS(2068), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2054), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2054), - [aux_sym_preproc_else_token1] = ACTIONS(2056), - [aux_sym_preproc_elif_token1] = ACTIONS(2058), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2060), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2060), - [sym_preproc_directive] = ACTIONS(2062), - [anon_sym___extension__] = ACTIONS(49), - [anon_sym_extern] = ACTIONS(47), + [sym_preproc_def] = STATE(536), + [sym_preproc_function_def] = STATE(536), + [sym_preproc_call] = STATE(536), + [sym_preproc_if_in_field_declaration_list] = STATE(536), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(536), + [sym_preproc_else_in_field_declaration_list] = STATE(2212), + [sym_preproc_elif_in_field_declaration_list] = STATE(2212), + [sym__declaration_modifiers] = STATE(855), + [sym__declaration_specifiers] = STATE(1353), + [sym_attribute_specifier] = STATE(855), + [sym_attribute_declaration] = STATE(855), + [sym_ms_declspec_modifier] = STATE(855), + [sym_storage_class_specifier] = STATE(855), + [sym_type_qualifier] = STATE(855), + [sym__type_specifier] = STATE(974), + [sym_sized_type_specifier] = STATE(1069), + [sym_enum_specifier] = STATE(1069), + [sym_struct_specifier] = STATE(1069), + [sym_union_specifier] = STATE(1069), + [sym__field_declaration_list_item] = STATE(536), + [sym_field_declaration] = STATE(536), + [sym_macro_type_specifier] = STATE(1069), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(536), + [aux_sym__declaration_specifiers_repeat1] = STATE(855), + [aux_sym_sized_type_specifier_repeat1] = STATE(1085), + [sym_identifier] = ACTIONS(2009), + [aux_sym_preproc_def_token1] = ACTIONS(2055), + [aux_sym_preproc_if_token1] = ACTIONS(2057), + [aux_sym_preproc_if_token2] = ACTIONS(2071), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2061), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2061), + [aux_sym_preproc_else_token1] = ACTIONS(2019), + [aux_sym_preproc_elif_token1] = ACTIONS(2021), + [sym_preproc_directive] = ACTIONS(2063), + [anon_sym___extension__] = ACTIONS(51), + [anon_sym_extern] = ACTIONS(49), [anon_sym___attribute__] = ACTIONS(33), [anon_sym___scanf] = ACTIONS(35), [anon_sym___printf] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1301), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [sym_primitive_type] = ACTIONS(51), - [anon_sym_enum] = ACTIONS(53), - [anon_sym_struct] = ACTIONS(55), - [anon_sym_union] = ACTIONS(57), + [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(1312), + [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), + [sym_primitive_type] = ACTIONS(53), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), [sym_comment] = ACTIONS(3), }, [532] = { - [sym__expression] = STATE(1194), - [sym__expression_not_binary] = STATE(792), - [sym_conditional_expression] = STATE(792), - [sym_assignment_expression] = STATE(792), - [sym_pointer_expression] = STATE(901), - [sym_unary_expression] = STATE(792), - [sym_binary_expression] = STATE(792), - [sym_update_expression] = STATE(792), - [sym_cast_expression] = STATE(792), - [sym_sizeof_expression] = STATE(792), - [sym_alignof_expression] = STATE(792), - [sym_offsetof_expression] = STATE(792), - [sym_generic_expression] = STATE(792), - [sym_subscript_expression] = STATE(901), - [sym_call_expression] = STATE(901), - [sym_gnu_asm_expression] = STATE(792), - [sym_field_expression] = STATE(901), - [sym_compound_literal_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(901), - [sym_initializer_list] = STATE(1754), - [sym_initializer_pair] = STATE(1754), - [sym_subscript_designator] = STATE(1614), - [sym_subscript_range_designator] = STATE(1614), - [sym_field_designator] = STATE(1614), - [sym_char_literal] = STATE(792), - [sym_concatenated_string] = STATE(792), - [sym_string_literal] = STATE(675), - [sym_null] = STATE(792), - [aux_sym_initializer_pair_repeat1] = STATE(1614), - [sym_identifier] = ACTIONS(2070), - [anon_sym_COMMA] = ACTIONS(2072), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = 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(1535), - [anon_sym_RBRACE] = ACTIONS(2074), - [anon_sym_LBRACK] = ACTIONS(2076), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(83), - [anon_sym___alignof__] = ACTIONS(85), - [anon_sym___alignof] = ACTIONS(85), - [anon_sym__alignof] = ACTIONS(85), - [anon_sym_alignof] = ACTIONS(85), - [anon_sym__Alignof] = ACTIONS(85), - [anon_sym_offsetof] = ACTIONS(87), - [anon_sym__Generic] = ACTIONS(89), - [anon_sym_asm] = ACTIONS(91), - [anon_sym___asm__] = ACTIONS(91), - [anon_sym_DOT] = ACTIONS(2078), - [sym_number_literal] = ACTIONS(159), - [anon_sym_L_SQUOTE] = ACTIONS(95), - [anon_sym_u_SQUOTE] = ACTIONS(95), - [anon_sym_U_SQUOTE] = ACTIONS(95), - [anon_sym_u8_SQUOTE] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(95), - [anon_sym_L_DQUOTE] = ACTIONS(97), - [anon_sym_u_DQUOTE] = ACTIONS(97), - [anon_sym_U_DQUOTE] = ACTIONS(97), - [anon_sym_u8_DQUOTE] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(97), - [sym_true] = ACTIONS(161), - [sym_false] = ACTIONS(161), - [anon_sym_NULL] = ACTIONS(101), - [anon_sym_nullptr] = ACTIONS(101), + [sym_type_qualifier] = STATE(894), + [sym__expression] = STATE(1290), + [sym__expression_not_binary] = STATE(809), + [sym_conditional_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_pointer_expression] = STATE(1154), + [sym_unary_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_update_expression] = STATE(809), + [sym_cast_expression] = STATE(809), + [sym_sizeof_expression] = STATE(809), + [sym_alignof_expression] = STATE(809), + [sym_offsetof_expression] = STATE(809), + [sym_generic_expression] = STATE(809), + [sym_subscript_expression] = STATE(1154), + [sym_call_expression] = STATE(1154), + [sym_gnu_asm_expression] = STATE(809), + [sym_field_expression] = STATE(1154), + [sym_compound_literal_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(1154), + [sym_char_literal] = STATE(809), + [sym_concatenated_string] = STATE(809), + [sym_string_literal] = STATE(573), + [sym_null] = STATE(809), + [aux_sym__type_definition_type_repeat1] = STATE(894), + [sym_identifier] = ACTIONS(1993), + [anon_sym_LPAREN2] = ACTIONS(2073), + [anon_sym_BANG] = ACTIONS(1997), + [anon_sym_TILDE] = ACTIONS(1997), + [anon_sym_DASH] = ACTIONS(1995), + [anon_sym_PLUS] = ACTIONS(1995), + [anon_sym_STAR] = ACTIONS(2075), + [anon_sym_AMP] = ACTIONS(2077), + [anon_sym___extension__] = ACTIONS(2079), + [anon_sym_RBRACK] = ACTIONS(2081), + [anon_sym_const] = ACTIONS(2079), + [anon_sym_constexpr] = ACTIONS(2079), + [anon_sym_volatile] = ACTIONS(2079), + [anon_sym_restrict] = ACTIONS(2079), + [anon_sym___restrict__] = ACTIONS(2079), + [anon_sym__Atomic] = ACTIONS(2079), + [anon_sym__Noreturn] = ACTIONS(2079), + [anon_sym_noreturn] = ACTIONS(2079), + [anon_sym_DASH_DASH] = ACTIONS(2083), + [anon_sym_PLUS_PLUS] = ACTIONS(2083), + [anon_sym_sizeof] = ACTIONS(1999), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [sym_number_literal] = ACTIONS(161), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(163), + [sym_false] = ACTIONS(163), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, [533] = { - [sym_preproc_def] = STATE(547), - [sym_preproc_function_def] = STATE(547), - [sym_preproc_call] = STATE(547), - [sym_preproc_if_in_field_declaration_list] = STATE(547), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(547), - [sym_preproc_else_in_field_declaration_list] = STATE(2017), - [sym_preproc_elif_in_field_declaration_list] = STATE(2017), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(2017), - [sym__declaration_modifiers] = STATE(861), - [sym__declaration_specifiers] = STATE(1451), - [sym_attribute_specifier] = STATE(861), - [sym_attribute_declaration] = STATE(861), - [sym_ms_declspec_modifier] = STATE(861), - [sym_storage_class_specifier] = STATE(861), - [sym_type_qualifier] = STATE(861), - [sym__type_specifier] = STATE(1040), - [sym_sized_type_specifier] = STATE(1106), - [sym_enum_specifier] = STATE(1106), - [sym_struct_specifier] = STATE(1106), - [sym_union_specifier] = STATE(1106), - [sym__field_declaration_list_item] = STATE(547), - [sym_field_declaration] = STATE(547), - [sym_macro_type_specifier] = STATE(1106), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(547), - [aux_sym__declaration_specifiers_repeat1] = STATE(861), - [aux_sym_sized_type_specifier_repeat1] = STATE(1113), - [sym_identifier] = ACTIONS(2046), - [aux_sym_preproc_def_token1] = ACTIONS(2048), - [aux_sym_preproc_if_token1] = ACTIONS(2050), - [aux_sym_preproc_if_token2] = ACTIONS(2080), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2054), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2054), - [aux_sym_preproc_else_token1] = ACTIONS(2056), - [aux_sym_preproc_elif_token1] = ACTIONS(2058), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2060), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2060), - [sym_preproc_directive] = ACTIONS(2062), - [anon_sym___extension__] = ACTIONS(49), - [anon_sym_extern] = ACTIONS(47), + [sym_preproc_def] = STATE(553), + [sym_preproc_function_def] = STATE(553), + [sym_preproc_call] = STATE(553), + [sym_preproc_if_in_field_declaration_list] = STATE(553), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(553), + [sym_preproc_else_in_field_declaration_list] = STATE(2311), + [sym_preproc_elif_in_field_declaration_list] = STATE(2311), + [sym__declaration_modifiers] = STATE(855), + [sym__declaration_specifiers] = STATE(1353), + [sym_attribute_specifier] = STATE(855), + [sym_attribute_declaration] = STATE(855), + [sym_ms_declspec_modifier] = STATE(855), + [sym_storage_class_specifier] = STATE(855), + [sym_type_qualifier] = STATE(855), + [sym__type_specifier] = STATE(974), + [sym_sized_type_specifier] = STATE(1069), + [sym_enum_specifier] = STATE(1069), + [sym_struct_specifier] = STATE(1069), + [sym_union_specifier] = STATE(1069), + [sym__field_declaration_list_item] = STATE(553), + [sym_field_declaration] = STATE(553), + [sym_macro_type_specifier] = STATE(1069), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(553), + [aux_sym__declaration_specifiers_repeat1] = STATE(855), + [aux_sym_sized_type_specifier_repeat1] = STATE(1085), + [sym_identifier] = ACTIONS(2009), + [aux_sym_preproc_def_token1] = ACTIONS(2055), + [aux_sym_preproc_if_token1] = ACTIONS(2057), + [aux_sym_preproc_if_token2] = ACTIONS(2085), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2061), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2061), + [aux_sym_preproc_else_token1] = ACTIONS(2019), + [aux_sym_preproc_elif_token1] = ACTIONS(2021), + [sym_preproc_directive] = ACTIONS(2063), + [anon_sym___extension__] = ACTIONS(51), + [anon_sym_extern] = ACTIONS(49), [anon_sym___attribute__] = ACTIONS(33), [anon_sym___scanf] = ACTIONS(35), [anon_sym___printf] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1301), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [sym_primitive_type] = ACTIONS(51), - [anon_sym_enum] = ACTIONS(53), - [anon_sym_struct] = ACTIONS(55), - [anon_sym_union] = ACTIONS(57), + [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(1312), + [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), + [sym_primitive_type] = ACTIONS(53), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), [sym_comment] = ACTIONS(3), }, [534] = { - [sym__declaration_modifiers] = STATE(861), - [sym__declaration_specifiers] = STATE(1344), - [sym_attribute_specifier] = STATE(861), - [sym_attribute_declaration] = STATE(861), - [sym_ms_declspec_modifier] = STATE(861), - [sym_ms_based_modifier] = STATE(2118), - [sym__declarator] = STATE(1618), - [sym__abstract_declarator] = STATE(1723), - [sym_parenthesized_declarator] = STATE(1548), - [sym_abstract_parenthesized_declarator] = STATE(1701), - [sym_attributed_declarator] = STATE(1548), - [sym_pointer_declarator] = STATE(1548), - [sym_abstract_pointer_declarator] = STATE(1701), - [sym_function_declarator] = STATE(1548), - [sym_abstract_function_declarator] = STATE(1701), - [sym_array_declarator] = STATE(1548), - [sym_abstract_array_declarator] = STATE(1701), - [sym_storage_class_specifier] = STATE(861), - [sym_type_qualifier] = STATE(861), - [sym__type_specifier] = STATE(1040), - [sym_sized_type_specifier] = STATE(1106), - [sym_enum_specifier] = STATE(1106), - [sym_struct_specifier] = STATE(1106), - [sym_union_specifier] = STATE(1106), - [sym_variadic_parameter] = STATE(1826), - [sym_parameter_list] = STATE(1698), - [sym_parameter_declaration] = STATE(1826), - [sym_macro_type_specifier] = STATE(1106), - [aux_sym__declaration_specifiers_repeat1] = STATE(861), - [aux_sym_sized_type_specifier_repeat1] = STATE(1113), - [sym_identifier] = ACTIONS(2082), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2084), - [anon_sym_RPAREN] = ACTIONS(2086), - [anon_sym_LPAREN2] = ACTIONS(2088), - [anon_sym_STAR] = ACTIONS(2090), - [anon_sym___extension__] = ACTIONS(49), - [anon_sym_extern] = ACTIONS(47), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym___scanf] = ACTIONS(35), - [anon_sym___printf] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1301), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym___based] = ACTIONS(2092), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(2094), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [sym_primitive_type] = ACTIONS(51), - [anon_sym_enum] = ACTIONS(53), - [anon_sym_struct] = ACTIONS(55), - [anon_sym_union] = ACTIONS(57), + [sym_preproc_def] = STATE(534), + [sym_preproc_function_def] = STATE(534), + [sym_preproc_call] = STATE(534), + [sym_preproc_if_in_field_declaration_list] = STATE(534), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(534), + [sym__declaration_modifiers] = STATE(855), + [sym__declaration_specifiers] = STATE(1350), + [sym_attribute_specifier] = STATE(855), + [sym_attribute_declaration] = STATE(855), + [sym_ms_declspec_modifier] = STATE(855), + [sym_storage_class_specifier] = STATE(855), + [sym_type_qualifier] = STATE(855), + [sym__type_specifier] = STATE(974), + [sym_sized_type_specifier] = STATE(1069), + [sym_enum_specifier] = STATE(1069), + [sym_struct_specifier] = STATE(1069), + [sym_union_specifier] = STATE(1069), + [sym__field_declaration_list_item] = STATE(534), + [sym_field_declaration] = STATE(534), + [sym_macro_type_specifier] = STATE(1069), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(534), + [aux_sym__declaration_specifiers_repeat1] = STATE(855), + [aux_sym_sized_type_specifier_repeat1] = STATE(1085), + [sym_identifier] = ACTIONS(2087), + [aux_sym_preproc_def_token1] = ACTIONS(2090), + [aux_sym_preproc_if_token1] = ACTIONS(2093), + [aux_sym_preproc_if_token2] = ACTIONS(2096), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2098), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2098), + [aux_sym_preproc_else_token1] = ACTIONS(2096), + [aux_sym_preproc_elif_token1] = ACTIONS(2096), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2096), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2096), + [sym_preproc_directive] = ACTIONS(2101), + [anon_sym___extension__] = ACTIONS(2104), + [anon_sym_extern] = ACTIONS(2107), + [anon_sym___attribute__] = ACTIONS(2110), + [anon_sym___scanf] = ACTIONS(2113), + [anon_sym___printf] = ACTIONS(2113), + [anon_sym___read_mostly] = ACTIONS(2116), + [anon_sym___must_hold] = ACTIONS(2110), + [anon_sym___ro_after_init] = ACTIONS(2116), + [anon_sym___init] = ACTIONS(2116), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2119), + [anon_sym___declspec] = ACTIONS(2122), + [anon_sym_signed] = ACTIONS(2125), + [anon_sym_unsigned] = ACTIONS(2125), + [anon_sym_long] = ACTIONS(2125), + [anon_sym_short] = ACTIONS(2125), + [anon_sym_static] = ACTIONS(2107), + [anon_sym_auto] = ACTIONS(2107), + [anon_sym_register] = ACTIONS(2107), + [anon_sym_inline] = ACTIONS(2107), + [anon_sym___inline] = ACTIONS(2107), + [anon_sym___inline__] = ACTIONS(2107), + [anon_sym___forceinline] = ACTIONS(2107), + [anon_sym_thread_local] = ACTIONS(2107), + [anon_sym___thread] = ACTIONS(2107), + [anon_sym_const] = ACTIONS(2104), + [anon_sym_constexpr] = ACTIONS(2104), + [anon_sym_volatile] = ACTIONS(2104), + [anon_sym_restrict] = ACTIONS(2104), + [anon_sym___restrict__] = ACTIONS(2104), + [anon_sym__Atomic] = ACTIONS(2104), + [anon_sym__Noreturn] = ACTIONS(2104), + [anon_sym_noreturn] = ACTIONS(2104), + [sym_primitive_type] = ACTIONS(2128), + [anon_sym_enum] = ACTIONS(2131), + [anon_sym_struct] = ACTIONS(2134), + [anon_sym_union] = ACTIONS(2137), [sym_comment] = ACTIONS(3), }, [535] = { - [sym_preproc_def] = STATE(531), - [sym_preproc_function_def] = STATE(531), - [sym_preproc_call] = STATE(531), - [sym_preproc_if_in_field_declaration_list] = STATE(531), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(531), - [sym_preproc_else_in_field_declaration_list] = STATE(1990), - [sym_preproc_elif_in_field_declaration_list] = STATE(1990), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(1990), - [sym__declaration_modifiers] = STATE(861), - [sym__declaration_specifiers] = STATE(1451), - [sym_attribute_specifier] = STATE(861), - [sym_attribute_declaration] = STATE(861), - [sym_ms_declspec_modifier] = STATE(861), - [sym_storage_class_specifier] = STATE(861), - [sym_type_qualifier] = STATE(861), - [sym__type_specifier] = STATE(1040), - [sym_sized_type_specifier] = STATE(1106), - [sym_enum_specifier] = STATE(1106), - [sym_struct_specifier] = STATE(1106), - [sym_union_specifier] = STATE(1106), - [sym__field_declaration_list_item] = STATE(531), - [sym_field_declaration] = STATE(531), - [sym_macro_type_specifier] = STATE(1106), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(531), - [aux_sym__declaration_specifiers_repeat1] = STATE(861), - [aux_sym_sized_type_specifier_repeat1] = STATE(1113), - [sym_identifier] = ACTIONS(2046), - [aux_sym_preproc_def_token1] = ACTIONS(2048), - [aux_sym_preproc_if_token1] = ACTIONS(2050), - [aux_sym_preproc_if_token2] = ACTIONS(2096), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2054), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2054), - [aux_sym_preproc_else_token1] = ACTIONS(2056), - [aux_sym_preproc_elif_token1] = ACTIONS(2058), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2060), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2060), - [sym_preproc_directive] = ACTIONS(2062), - [anon_sym___extension__] = ACTIONS(49), - [anon_sym_extern] = ACTIONS(47), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym___scanf] = ACTIONS(35), - [anon_sym___printf] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1301), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [sym_primitive_type] = ACTIONS(51), - [anon_sym_enum] = ACTIONS(53), - [anon_sym_struct] = ACTIONS(55), - [anon_sym_union] = ACTIONS(57), + [sym_type_qualifier] = STATE(894), + [sym__expression] = STATE(1296), + [sym__expression_not_binary] = STATE(809), + [sym_conditional_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_pointer_expression] = STATE(1154), + [sym_unary_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_update_expression] = STATE(809), + [sym_cast_expression] = STATE(809), + [sym_sizeof_expression] = STATE(809), + [sym_alignof_expression] = STATE(809), + [sym_offsetof_expression] = STATE(809), + [sym_generic_expression] = STATE(809), + [sym_subscript_expression] = STATE(1154), + [sym_call_expression] = STATE(1154), + [sym_gnu_asm_expression] = STATE(809), + [sym_field_expression] = STATE(1154), + [sym_compound_literal_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(1154), + [sym_char_literal] = STATE(809), + [sym_concatenated_string] = STATE(809), + [sym_string_literal] = STATE(573), + [sym_null] = STATE(809), + [aux_sym__type_definition_type_repeat1] = STATE(894), + [sym_identifier] = ACTIONS(1993), + [anon_sym_LPAREN2] = ACTIONS(2073), + [anon_sym_BANG] = ACTIONS(1997), + [anon_sym_TILDE] = ACTIONS(1997), + [anon_sym_DASH] = ACTIONS(1995), + [anon_sym_PLUS] = ACTIONS(1995), + [anon_sym_STAR] = ACTIONS(2140), + [anon_sym_AMP] = ACTIONS(2077), + [anon_sym___extension__] = ACTIONS(2079), + [anon_sym_RBRACK] = ACTIONS(2142), + [anon_sym_const] = ACTIONS(2079), + [anon_sym_constexpr] = ACTIONS(2079), + [anon_sym_volatile] = ACTIONS(2079), + [anon_sym_restrict] = ACTIONS(2079), + [anon_sym___restrict__] = ACTIONS(2079), + [anon_sym__Atomic] = ACTIONS(2079), + [anon_sym__Noreturn] = ACTIONS(2079), + [anon_sym_noreturn] = ACTIONS(2079), + [anon_sym_DASH_DASH] = ACTIONS(2083), + [anon_sym_PLUS_PLUS] = ACTIONS(2083), + [anon_sym_sizeof] = ACTIONS(1999), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [sym_number_literal] = ACTIONS(161), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(163), + [sym_false] = ACTIONS(163), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, [536] = { - [sym_preproc_def] = STATE(529), - [sym_preproc_function_def] = STATE(529), - [sym_preproc_call] = STATE(529), - [sym_preproc_if_in_field_declaration_list] = STATE(529), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(529), - [sym_preproc_else_in_field_declaration_list] = STATE(2065), - [sym_preproc_elif_in_field_declaration_list] = STATE(2065), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(2065), - [sym__declaration_modifiers] = STATE(861), - [sym__declaration_specifiers] = STATE(1451), - [sym_attribute_specifier] = STATE(861), - [sym_attribute_declaration] = STATE(861), - [sym_ms_declspec_modifier] = STATE(861), - [sym_storage_class_specifier] = STATE(861), - [sym_type_qualifier] = STATE(861), - [sym__type_specifier] = STATE(1040), - [sym_sized_type_specifier] = STATE(1106), - [sym_enum_specifier] = STATE(1106), - [sym_struct_specifier] = STATE(1106), - [sym_union_specifier] = STATE(1106), - [sym__field_declaration_list_item] = STATE(529), - [sym_field_declaration] = STATE(529), - [sym_macro_type_specifier] = STATE(1106), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(529), - [aux_sym__declaration_specifiers_repeat1] = STATE(861), - [aux_sym_sized_type_specifier_repeat1] = STATE(1113), - [sym_identifier] = ACTIONS(2046), - [aux_sym_preproc_def_token1] = ACTIONS(2048), - [aux_sym_preproc_if_token1] = ACTIONS(2050), - [aux_sym_preproc_if_token2] = ACTIONS(2098), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2054), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2054), - [aux_sym_preproc_else_token1] = ACTIONS(2056), - [aux_sym_preproc_elif_token1] = ACTIONS(2058), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2060), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2060), - [sym_preproc_directive] = ACTIONS(2062), - [anon_sym___extension__] = ACTIONS(49), - [anon_sym_extern] = ACTIONS(47), + [sym_preproc_def] = STATE(553), + [sym_preproc_function_def] = STATE(553), + [sym_preproc_call] = STATE(553), + [sym_preproc_if_in_field_declaration_list] = STATE(553), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(553), + [sym_preproc_else_in_field_declaration_list] = STATE(2269), + [sym_preproc_elif_in_field_declaration_list] = STATE(2269), + [sym__declaration_modifiers] = STATE(855), + [sym__declaration_specifiers] = STATE(1353), + [sym_attribute_specifier] = STATE(855), + [sym_attribute_declaration] = STATE(855), + [sym_ms_declspec_modifier] = STATE(855), + [sym_storage_class_specifier] = STATE(855), + [sym_type_qualifier] = STATE(855), + [sym__type_specifier] = STATE(974), + [sym_sized_type_specifier] = STATE(1069), + [sym_enum_specifier] = STATE(1069), + [sym_struct_specifier] = STATE(1069), + [sym_union_specifier] = STATE(1069), + [sym__field_declaration_list_item] = STATE(553), + [sym_field_declaration] = STATE(553), + [sym_macro_type_specifier] = STATE(1069), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(553), + [aux_sym__declaration_specifiers_repeat1] = STATE(855), + [aux_sym_sized_type_specifier_repeat1] = STATE(1085), + [sym_identifier] = ACTIONS(2009), + [aux_sym_preproc_def_token1] = ACTIONS(2055), + [aux_sym_preproc_if_token1] = ACTIONS(2057), + [aux_sym_preproc_if_token2] = ACTIONS(2144), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2061), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2061), + [aux_sym_preproc_else_token1] = ACTIONS(2019), + [aux_sym_preproc_elif_token1] = ACTIONS(2021), + [sym_preproc_directive] = ACTIONS(2063), + [anon_sym___extension__] = ACTIONS(51), + [anon_sym_extern] = ACTIONS(49), [anon_sym___attribute__] = ACTIONS(33), [anon_sym___scanf] = ACTIONS(35), [anon_sym___printf] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1301), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [sym_primitive_type] = ACTIONS(51), - [anon_sym_enum] = ACTIONS(53), - [anon_sym_struct] = ACTIONS(55), - [anon_sym_union] = ACTIONS(57), + [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(1312), + [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), + [sym_primitive_type] = ACTIONS(53), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), [sym_comment] = ACTIONS(3), }, [537] = { @@ -73757,104 +75878,981 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(533), [sym_preproc_if_in_field_declaration_list] = STATE(533), [sym_preproc_ifdef_in_field_declaration_list] = STATE(533), - [sym_preproc_else_in_field_declaration_list] = STATE(2020), - [sym_preproc_elif_in_field_declaration_list] = STATE(2020), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(2020), - [sym__declaration_modifiers] = STATE(861), - [sym__declaration_specifiers] = STATE(1451), - [sym_attribute_specifier] = STATE(861), - [sym_attribute_declaration] = STATE(861), - [sym_ms_declspec_modifier] = STATE(861), - [sym_storage_class_specifier] = STATE(861), - [sym_type_qualifier] = STATE(861), - [sym__type_specifier] = STATE(1040), - [sym_sized_type_specifier] = STATE(1106), - [sym_enum_specifier] = STATE(1106), - [sym_struct_specifier] = STATE(1106), - [sym_union_specifier] = STATE(1106), + [sym_preproc_else_in_field_declaration_list] = STATE(2209), + [sym_preproc_elif_in_field_declaration_list] = STATE(2209), + [sym__declaration_modifiers] = STATE(855), + [sym__declaration_specifiers] = STATE(1353), + [sym_attribute_specifier] = STATE(855), + [sym_attribute_declaration] = STATE(855), + [sym_ms_declspec_modifier] = STATE(855), + [sym_storage_class_specifier] = STATE(855), + [sym_type_qualifier] = STATE(855), + [sym__type_specifier] = STATE(974), + [sym_sized_type_specifier] = STATE(1069), + [sym_enum_specifier] = STATE(1069), + [sym_struct_specifier] = STATE(1069), + [sym_union_specifier] = STATE(1069), [sym__field_declaration_list_item] = STATE(533), [sym_field_declaration] = STATE(533), - [sym_macro_type_specifier] = STATE(1106), + [sym_macro_type_specifier] = STATE(1069), [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(533), - [aux_sym__declaration_specifiers_repeat1] = STATE(861), - [aux_sym_sized_type_specifier_repeat1] = STATE(1113), - [sym_identifier] = ACTIONS(2046), - [aux_sym_preproc_def_token1] = ACTIONS(2048), - [aux_sym_preproc_if_token1] = ACTIONS(2050), - [aux_sym_preproc_if_token2] = ACTIONS(2100), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2054), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2054), - [aux_sym_preproc_else_token1] = ACTIONS(2056), - [aux_sym_preproc_elif_token1] = ACTIONS(2058), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2060), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2060), - [sym_preproc_directive] = ACTIONS(2062), - [anon_sym___extension__] = ACTIONS(49), - [anon_sym_extern] = ACTIONS(47), + [aux_sym__declaration_specifiers_repeat1] = STATE(855), + [aux_sym_sized_type_specifier_repeat1] = STATE(1085), + [sym_identifier] = ACTIONS(2009), + [aux_sym_preproc_def_token1] = ACTIONS(2055), + [aux_sym_preproc_if_token1] = ACTIONS(2057), + [aux_sym_preproc_if_token2] = ACTIONS(2146), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2061), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2061), + [aux_sym_preproc_else_token1] = ACTIONS(2019), + [aux_sym_preproc_elif_token1] = ACTIONS(2021), + [sym_preproc_directive] = ACTIONS(2063), + [anon_sym___extension__] = ACTIONS(51), + [anon_sym_extern] = ACTIONS(49), [anon_sym___attribute__] = ACTIONS(33), [anon_sym___scanf] = ACTIONS(35), [anon_sym___printf] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1301), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [sym_primitive_type] = ACTIONS(51), - [anon_sym_enum] = ACTIONS(53), - [anon_sym_struct] = ACTIONS(55), - [anon_sym_union] = ACTIONS(57), + [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(1312), + [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), + [sym_primitive_type] = ACTIONS(53), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), [sym_comment] = ACTIONS(3), }, [538] = { - [sym__expression] = STATE(1201), - [sym__expression_not_binary] = STATE(792), - [sym_conditional_expression] = STATE(792), - [sym_assignment_expression] = STATE(792), - [sym_pointer_expression] = STATE(901), - [sym_unary_expression] = STATE(792), - [sym_binary_expression] = STATE(792), - [sym_update_expression] = STATE(792), - [sym_cast_expression] = STATE(792), - [sym_sizeof_expression] = STATE(792), - [sym_alignof_expression] = STATE(792), - [sym_offsetof_expression] = STATE(792), - [sym_generic_expression] = STATE(792), - [sym_subscript_expression] = STATE(901), - [sym_call_expression] = STATE(901), - [sym_gnu_asm_expression] = STATE(792), - [sym_field_expression] = STATE(901), - [sym_compound_literal_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(901), - [sym_initializer_list] = STATE(1834), - [sym_initializer_pair] = STATE(1834), - [sym_subscript_designator] = STATE(1614), - [sym_subscript_range_designator] = STATE(1614), - [sym_field_designator] = STATE(1614), - [sym_char_literal] = STATE(792), - [sym_concatenated_string] = STATE(792), - [sym_string_literal] = STATE(675), - [sym_null] = STATE(792), - [aux_sym_initializer_pair_repeat1] = STATE(1614), - [sym_identifier] = ACTIONS(2070), - [anon_sym_COMMA] = ACTIONS(2102), + [sym_type_qualifier] = STATE(894), + [sym__expression] = STATE(1311), + [sym__expression_not_binary] = STATE(809), + [sym_conditional_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_pointer_expression] = STATE(1154), + [sym_unary_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_update_expression] = STATE(809), + [sym_cast_expression] = STATE(809), + [sym_sizeof_expression] = STATE(809), + [sym_alignof_expression] = STATE(809), + [sym_offsetof_expression] = STATE(809), + [sym_generic_expression] = STATE(809), + [sym_subscript_expression] = STATE(1154), + [sym_call_expression] = STATE(1154), + [sym_gnu_asm_expression] = STATE(809), + [sym_field_expression] = STATE(1154), + [sym_compound_literal_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(1154), + [sym_char_literal] = STATE(809), + [sym_concatenated_string] = STATE(809), + [sym_string_literal] = STATE(573), + [sym_null] = STATE(809), + [aux_sym__type_definition_type_repeat1] = STATE(894), + [sym_identifier] = ACTIONS(1993), + [anon_sym_LPAREN2] = ACTIONS(2073), + [anon_sym_BANG] = ACTIONS(1997), + [anon_sym_TILDE] = ACTIONS(1997), + [anon_sym_DASH] = ACTIONS(1995), + [anon_sym_PLUS] = ACTIONS(1995), + [anon_sym_STAR] = ACTIONS(2148), + [anon_sym_AMP] = ACTIONS(2077), + [anon_sym___extension__] = ACTIONS(2079), + [anon_sym_RBRACK] = ACTIONS(2150), + [anon_sym_const] = ACTIONS(2079), + [anon_sym_constexpr] = ACTIONS(2079), + [anon_sym_volatile] = ACTIONS(2079), + [anon_sym_restrict] = ACTIONS(2079), + [anon_sym___restrict__] = ACTIONS(2079), + [anon_sym__Atomic] = ACTIONS(2079), + [anon_sym__Noreturn] = ACTIONS(2079), + [anon_sym_noreturn] = ACTIONS(2079), + [anon_sym_DASH_DASH] = ACTIONS(2083), + [anon_sym_PLUS_PLUS] = ACTIONS(2083), + [anon_sym_sizeof] = ACTIONS(1999), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [sym_number_literal] = ACTIONS(161), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(163), + [sym_false] = ACTIONS(163), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + }, + [539] = { + [sym_type_qualifier] = STATE(535), + [sym__expression] = STATE(1302), + [sym__expression_not_binary] = STATE(809), + [sym_conditional_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_pointer_expression] = STATE(1154), + [sym_unary_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_update_expression] = STATE(809), + [sym_cast_expression] = STATE(809), + [sym_sizeof_expression] = STATE(809), + [sym_alignof_expression] = STATE(809), + [sym_offsetof_expression] = STATE(809), + [sym_generic_expression] = STATE(809), + [sym_subscript_expression] = STATE(1154), + [sym_call_expression] = STATE(1154), + [sym_gnu_asm_expression] = STATE(809), + [sym_field_expression] = STATE(1154), + [sym_compound_literal_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(1154), + [sym_char_literal] = STATE(809), + [sym_concatenated_string] = STATE(809), + [sym_string_literal] = STATE(573), + [sym_null] = STATE(809), + [aux_sym__type_definition_type_repeat1] = STATE(535), + [sym_identifier] = ACTIONS(1993), + [anon_sym_LPAREN2] = ACTIONS(2073), + [anon_sym_BANG] = ACTIONS(1997), + [anon_sym_TILDE] = ACTIONS(1997), + [anon_sym_DASH] = ACTIONS(1995), + [anon_sym_PLUS] = ACTIONS(1995), + [anon_sym_STAR] = ACTIONS(2152), + [anon_sym_AMP] = ACTIONS(2077), + [anon_sym___extension__] = ACTIONS(2079), + [anon_sym_RBRACK] = ACTIONS(2154), + [anon_sym_const] = ACTIONS(2079), + [anon_sym_constexpr] = ACTIONS(2079), + [anon_sym_volatile] = ACTIONS(2079), + [anon_sym_restrict] = ACTIONS(2079), + [anon_sym___restrict__] = ACTIONS(2079), + [anon_sym__Atomic] = ACTIONS(2079), + [anon_sym__Noreturn] = ACTIONS(2079), + [anon_sym_noreturn] = ACTIONS(2079), + [anon_sym_DASH_DASH] = ACTIONS(2083), + [anon_sym_PLUS_PLUS] = ACTIONS(2083), + [anon_sym_sizeof] = ACTIONS(1999), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [sym_number_literal] = ACTIONS(161), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(163), + [sym_false] = ACTIONS(163), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + }, + [540] = { + [sym_preproc_def] = STATE(542), + [sym_preproc_function_def] = STATE(542), + [sym_preproc_call] = STATE(542), + [sym_preproc_if_in_field_declaration_list] = STATE(542), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(542), + [sym_preproc_else_in_field_declaration_list] = STATE(2055), + [sym_preproc_elif_in_field_declaration_list] = STATE(2055), + [sym__declaration_modifiers] = STATE(855), + [sym__declaration_specifiers] = STATE(1353), + [sym_attribute_specifier] = STATE(855), + [sym_attribute_declaration] = STATE(855), + [sym_ms_declspec_modifier] = STATE(855), + [sym_storage_class_specifier] = STATE(855), + [sym_type_qualifier] = STATE(855), + [sym__type_specifier] = STATE(974), + [sym_sized_type_specifier] = STATE(1069), + [sym_enum_specifier] = STATE(1069), + [sym_struct_specifier] = STATE(1069), + [sym_union_specifier] = STATE(1069), + [sym__field_declaration_list_item] = STATE(542), + [sym_field_declaration] = STATE(542), + [sym_macro_type_specifier] = STATE(1069), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(542), + [aux_sym__declaration_specifiers_repeat1] = STATE(855), + [aux_sym_sized_type_specifier_repeat1] = STATE(1085), + [sym_identifier] = ACTIONS(2009), + [aux_sym_preproc_def_token1] = ACTIONS(2055), + [aux_sym_preproc_if_token1] = ACTIONS(2057), + [aux_sym_preproc_if_token2] = ACTIONS(2156), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2061), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2061), + [aux_sym_preproc_else_token1] = ACTIONS(2019), + [aux_sym_preproc_elif_token1] = ACTIONS(2021), + [sym_preproc_directive] = ACTIONS(2063), + [anon_sym___extension__] = ACTIONS(51), + [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(1312), + [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), + [sym_primitive_type] = ACTIONS(53), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + }, + [541] = { + [sym_type_qualifier] = STATE(894), + [sym__expression] = STATE(1307), + [sym__expression_not_binary] = STATE(809), + [sym_conditional_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_pointer_expression] = STATE(1154), + [sym_unary_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_update_expression] = STATE(809), + [sym_cast_expression] = STATE(809), + [sym_sizeof_expression] = STATE(809), + [sym_alignof_expression] = STATE(809), + [sym_offsetof_expression] = STATE(809), + [sym_generic_expression] = STATE(809), + [sym_subscript_expression] = STATE(1154), + [sym_call_expression] = STATE(1154), + [sym_gnu_asm_expression] = STATE(809), + [sym_field_expression] = STATE(1154), + [sym_compound_literal_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(1154), + [sym_char_literal] = STATE(809), + [sym_concatenated_string] = STATE(809), + [sym_string_literal] = STATE(573), + [sym_null] = STATE(809), + [aux_sym__type_definition_type_repeat1] = STATE(894), + [sym_identifier] = ACTIONS(1993), + [anon_sym_LPAREN2] = ACTIONS(2073), + [anon_sym_BANG] = ACTIONS(1997), + [anon_sym_TILDE] = ACTIONS(1997), + [anon_sym_DASH] = ACTIONS(1995), + [anon_sym_PLUS] = ACTIONS(1995), + [anon_sym_STAR] = ACTIONS(2158), + [anon_sym_AMP] = ACTIONS(2077), + [anon_sym___extension__] = ACTIONS(2079), + [anon_sym_RBRACK] = ACTIONS(2160), + [anon_sym_const] = ACTIONS(2079), + [anon_sym_constexpr] = ACTIONS(2079), + [anon_sym_volatile] = ACTIONS(2079), + [anon_sym_restrict] = ACTIONS(2079), + [anon_sym___restrict__] = ACTIONS(2079), + [anon_sym__Atomic] = ACTIONS(2079), + [anon_sym__Noreturn] = ACTIONS(2079), + [anon_sym_noreturn] = ACTIONS(2079), + [anon_sym_DASH_DASH] = ACTIONS(2083), + [anon_sym_PLUS_PLUS] = ACTIONS(2083), + [anon_sym_sizeof] = ACTIONS(1999), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [sym_number_literal] = ACTIONS(161), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(163), + [sym_false] = ACTIONS(163), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + }, + [542] = { + [sym_preproc_def] = STATE(553), + [sym_preproc_function_def] = STATE(553), + [sym_preproc_call] = STATE(553), + [sym_preproc_if_in_field_declaration_list] = STATE(553), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(553), + [sym_preproc_else_in_field_declaration_list] = STATE(1985), + [sym_preproc_elif_in_field_declaration_list] = STATE(1985), + [sym__declaration_modifiers] = STATE(855), + [sym__declaration_specifiers] = STATE(1353), + [sym_attribute_specifier] = STATE(855), + [sym_attribute_declaration] = STATE(855), + [sym_ms_declspec_modifier] = STATE(855), + [sym_storage_class_specifier] = STATE(855), + [sym_type_qualifier] = STATE(855), + [sym__type_specifier] = STATE(974), + [sym_sized_type_specifier] = STATE(1069), + [sym_enum_specifier] = STATE(1069), + [sym_struct_specifier] = STATE(1069), + [sym_union_specifier] = STATE(1069), + [sym__field_declaration_list_item] = STATE(553), + [sym_field_declaration] = STATE(553), + [sym_macro_type_specifier] = STATE(1069), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(553), + [aux_sym__declaration_specifiers_repeat1] = STATE(855), + [aux_sym_sized_type_specifier_repeat1] = STATE(1085), + [sym_identifier] = ACTIONS(2009), + [aux_sym_preproc_def_token1] = ACTIONS(2055), + [aux_sym_preproc_if_token1] = ACTIONS(2057), + [aux_sym_preproc_if_token2] = ACTIONS(2162), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2061), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2061), + [aux_sym_preproc_else_token1] = ACTIONS(2019), + [aux_sym_preproc_elif_token1] = ACTIONS(2021), + [sym_preproc_directive] = ACTIONS(2063), + [anon_sym___extension__] = ACTIONS(51), + [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(1312), + [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), + [sym_primitive_type] = ACTIONS(53), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + }, + [543] = { + [sym_type_qualifier] = STATE(532), + [sym__expression] = STATE(1300), + [sym__expression_not_binary] = STATE(809), + [sym_conditional_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_pointer_expression] = STATE(1154), + [sym_unary_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_update_expression] = STATE(809), + [sym_cast_expression] = STATE(809), + [sym_sizeof_expression] = STATE(809), + [sym_alignof_expression] = STATE(809), + [sym_offsetof_expression] = STATE(809), + [sym_generic_expression] = STATE(809), + [sym_subscript_expression] = STATE(1154), + [sym_call_expression] = STATE(1154), + [sym_gnu_asm_expression] = STATE(809), + [sym_field_expression] = STATE(1154), + [sym_compound_literal_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(1154), + [sym_char_literal] = STATE(809), + [sym_concatenated_string] = STATE(809), + [sym_string_literal] = STATE(573), + [sym_null] = STATE(809), + [aux_sym__type_definition_type_repeat1] = STATE(532), + [sym_identifier] = ACTIONS(1993), + [anon_sym_LPAREN2] = ACTIONS(2073), + [anon_sym_BANG] = ACTIONS(1997), + [anon_sym_TILDE] = ACTIONS(1997), + [anon_sym_DASH] = ACTIONS(1995), + [anon_sym_PLUS] = ACTIONS(1995), + [anon_sym_STAR] = ACTIONS(2164), + [anon_sym_AMP] = ACTIONS(2077), + [anon_sym___extension__] = ACTIONS(2079), + [anon_sym_RBRACK] = ACTIONS(2166), + [anon_sym_const] = ACTIONS(2079), + [anon_sym_constexpr] = ACTIONS(2079), + [anon_sym_volatile] = ACTIONS(2079), + [anon_sym_restrict] = ACTIONS(2079), + [anon_sym___restrict__] = ACTIONS(2079), + [anon_sym__Atomic] = ACTIONS(2079), + [anon_sym__Noreturn] = ACTIONS(2079), + [anon_sym_noreturn] = ACTIONS(2079), + [anon_sym_DASH_DASH] = ACTIONS(2083), + [anon_sym_PLUS_PLUS] = ACTIONS(2083), + [anon_sym_sizeof] = ACTIONS(1999), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [sym_number_literal] = ACTIONS(161), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(163), + [sym_false] = ACTIONS(163), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + }, + [544] = { + [sym_type_qualifier] = STATE(538), + [sym__expression] = STATE(1305), + [sym__expression_not_binary] = STATE(809), + [sym_conditional_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_pointer_expression] = STATE(1154), + [sym_unary_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_update_expression] = STATE(809), + [sym_cast_expression] = STATE(809), + [sym_sizeof_expression] = STATE(809), + [sym_alignof_expression] = STATE(809), + [sym_offsetof_expression] = STATE(809), + [sym_generic_expression] = STATE(809), + [sym_subscript_expression] = STATE(1154), + [sym_call_expression] = STATE(1154), + [sym_gnu_asm_expression] = STATE(809), + [sym_field_expression] = STATE(1154), + [sym_compound_literal_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(1154), + [sym_char_literal] = STATE(809), + [sym_concatenated_string] = STATE(809), + [sym_string_literal] = STATE(573), + [sym_null] = STATE(809), + [aux_sym__type_definition_type_repeat1] = STATE(538), + [sym_identifier] = ACTIONS(1993), + [anon_sym_LPAREN2] = ACTIONS(2073), + [anon_sym_BANG] = ACTIONS(1997), + [anon_sym_TILDE] = ACTIONS(1997), + [anon_sym_DASH] = ACTIONS(1995), + [anon_sym_PLUS] = ACTIONS(1995), + [anon_sym_STAR] = ACTIONS(2168), + [anon_sym_AMP] = ACTIONS(2077), + [anon_sym___extension__] = ACTIONS(2079), + [anon_sym_RBRACK] = ACTIONS(2170), + [anon_sym_const] = ACTIONS(2079), + [anon_sym_constexpr] = ACTIONS(2079), + [anon_sym_volatile] = ACTIONS(2079), + [anon_sym_restrict] = ACTIONS(2079), + [anon_sym___restrict__] = ACTIONS(2079), + [anon_sym__Atomic] = ACTIONS(2079), + [anon_sym__Noreturn] = ACTIONS(2079), + [anon_sym_noreturn] = ACTIONS(2079), + [anon_sym_DASH_DASH] = ACTIONS(2083), + [anon_sym_PLUS_PLUS] = ACTIONS(2083), + [anon_sym_sizeof] = ACTIONS(1999), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [sym_number_literal] = ACTIONS(161), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(163), + [sym_false] = ACTIONS(163), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + }, + [545] = { + [sym_type_qualifier] = STATE(548), + [sym__expression] = STATE(1314), + [sym__expression_not_binary] = STATE(809), + [sym_conditional_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_pointer_expression] = STATE(1154), + [sym_unary_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_update_expression] = STATE(809), + [sym_cast_expression] = STATE(809), + [sym_sizeof_expression] = STATE(809), + [sym_alignof_expression] = STATE(809), + [sym_offsetof_expression] = STATE(809), + [sym_generic_expression] = STATE(809), + [sym_subscript_expression] = STATE(1154), + [sym_call_expression] = STATE(1154), + [sym_gnu_asm_expression] = STATE(809), + [sym_field_expression] = STATE(1154), + [sym_compound_literal_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(1154), + [sym_char_literal] = STATE(809), + [sym_concatenated_string] = STATE(809), + [sym_string_literal] = STATE(573), + [sym_null] = STATE(809), + [aux_sym__type_definition_type_repeat1] = STATE(548), + [sym_identifier] = ACTIONS(1993), + [anon_sym_LPAREN2] = ACTIONS(2073), + [anon_sym_BANG] = ACTIONS(1997), + [anon_sym_TILDE] = ACTIONS(1997), + [anon_sym_DASH] = ACTIONS(1995), + [anon_sym_PLUS] = ACTIONS(1995), + [anon_sym_STAR] = ACTIONS(2172), + [anon_sym_AMP] = ACTIONS(2077), + [anon_sym___extension__] = ACTIONS(2079), + [anon_sym_RBRACK] = ACTIONS(2174), + [anon_sym_const] = ACTIONS(2079), + [anon_sym_constexpr] = ACTIONS(2079), + [anon_sym_volatile] = ACTIONS(2079), + [anon_sym_restrict] = ACTIONS(2079), + [anon_sym___restrict__] = ACTIONS(2079), + [anon_sym__Atomic] = ACTIONS(2079), + [anon_sym__Noreturn] = ACTIONS(2079), + [anon_sym_noreturn] = ACTIONS(2079), + [anon_sym_DASH_DASH] = ACTIONS(2083), + [anon_sym_PLUS_PLUS] = ACTIONS(2083), + [anon_sym_sizeof] = ACTIONS(1999), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [sym_number_literal] = ACTIONS(161), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(163), + [sym_false] = ACTIONS(163), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + }, + [546] = { + [sym_preproc_def] = STATE(528), + [sym_preproc_function_def] = STATE(528), + [sym_preproc_call] = STATE(528), + [sym_preproc_if_in_field_declaration_list] = STATE(528), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(528), + [sym_preproc_else_in_field_declaration_list] = STATE(2113), + [sym_preproc_elif_in_field_declaration_list] = STATE(2113), + [sym__declaration_modifiers] = STATE(855), + [sym__declaration_specifiers] = STATE(1353), + [sym_attribute_specifier] = STATE(855), + [sym_attribute_declaration] = STATE(855), + [sym_ms_declspec_modifier] = STATE(855), + [sym_storage_class_specifier] = STATE(855), + [sym_type_qualifier] = STATE(855), + [sym__type_specifier] = STATE(974), + [sym_sized_type_specifier] = STATE(1069), + [sym_enum_specifier] = STATE(1069), + [sym_struct_specifier] = STATE(1069), + [sym_union_specifier] = STATE(1069), + [sym__field_declaration_list_item] = STATE(528), + [sym_field_declaration] = STATE(528), + [sym_macro_type_specifier] = STATE(1069), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(528), + [aux_sym__declaration_specifiers_repeat1] = STATE(855), + [aux_sym_sized_type_specifier_repeat1] = STATE(1085), + [sym_identifier] = ACTIONS(2009), + [aux_sym_preproc_def_token1] = ACTIONS(2055), + [aux_sym_preproc_if_token1] = ACTIONS(2057), + [aux_sym_preproc_if_token2] = ACTIONS(2176), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2061), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2061), + [aux_sym_preproc_else_token1] = ACTIONS(2019), + [aux_sym_preproc_elif_token1] = ACTIONS(2021), + [sym_preproc_directive] = ACTIONS(2063), + [anon_sym___extension__] = ACTIONS(51), + [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(1312), + [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), + [sym_primitive_type] = ACTIONS(53), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + }, + [547] = { + [sym_preproc_def] = STATE(529), + [sym_preproc_function_def] = STATE(529), + [sym_preproc_call] = STATE(529), + [sym_preproc_if_in_field_declaration_list] = STATE(529), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(529), + [sym_preproc_else_in_field_declaration_list] = STATE(2294), + [sym_preproc_elif_in_field_declaration_list] = STATE(2294), + [sym__declaration_modifiers] = STATE(855), + [sym__declaration_specifiers] = STATE(1353), + [sym_attribute_specifier] = STATE(855), + [sym_attribute_declaration] = STATE(855), + [sym_ms_declspec_modifier] = STATE(855), + [sym_storage_class_specifier] = STATE(855), + [sym_type_qualifier] = STATE(855), + [sym__type_specifier] = STATE(974), + [sym_sized_type_specifier] = STATE(1069), + [sym_enum_specifier] = STATE(1069), + [sym_struct_specifier] = STATE(1069), + [sym_union_specifier] = STATE(1069), + [sym__field_declaration_list_item] = STATE(529), + [sym_field_declaration] = STATE(529), + [sym_macro_type_specifier] = STATE(1069), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(529), + [aux_sym__declaration_specifiers_repeat1] = STATE(855), + [aux_sym_sized_type_specifier_repeat1] = STATE(1085), + [sym_identifier] = ACTIONS(2009), + [aux_sym_preproc_def_token1] = ACTIONS(2055), + [aux_sym_preproc_if_token1] = ACTIONS(2057), + [aux_sym_preproc_if_token2] = ACTIONS(2178), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2061), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2061), + [aux_sym_preproc_else_token1] = ACTIONS(2019), + [aux_sym_preproc_elif_token1] = ACTIONS(2021), + [sym_preproc_directive] = ACTIONS(2063), + [anon_sym___extension__] = ACTIONS(51), + [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(1312), + [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), + [sym_primitive_type] = ACTIONS(53), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + }, + [548] = { + [sym_type_qualifier] = STATE(894), + [sym__expression] = STATE(1323), + [sym__expression_not_binary] = STATE(809), + [sym_conditional_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_pointer_expression] = STATE(1154), + [sym_unary_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_update_expression] = STATE(809), + [sym_cast_expression] = STATE(809), + [sym_sizeof_expression] = STATE(809), + [sym_alignof_expression] = STATE(809), + [sym_offsetof_expression] = STATE(809), + [sym_generic_expression] = STATE(809), + [sym_subscript_expression] = STATE(1154), + [sym_call_expression] = STATE(1154), + [sym_gnu_asm_expression] = STATE(809), + [sym_field_expression] = STATE(1154), + [sym_compound_literal_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(1154), + [sym_char_literal] = STATE(809), + [sym_concatenated_string] = STATE(809), + [sym_string_literal] = STATE(573), + [sym_null] = STATE(809), + [aux_sym__type_definition_type_repeat1] = STATE(894), + [sym_identifier] = ACTIONS(1993), + [anon_sym_LPAREN2] = ACTIONS(2073), + [anon_sym_BANG] = ACTIONS(1997), + [anon_sym_TILDE] = ACTIONS(1997), + [anon_sym_DASH] = ACTIONS(1995), + [anon_sym_PLUS] = ACTIONS(1995), + [anon_sym_STAR] = ACTIONS(2180), + [anon_sym_AMP] = ACTIONS(2077), + [anon_sym___extension__] = ACTIONS(2079), + [anon_sym_RBRACK] = ACTIONS(2182), + [anon_sym_const] = ACTIONS(2079), + [anon_sym_constexpr] = ACTIONS(2079), + [anon_sym_volatile] = ACTIONS(2079), + [anon_sym_restrict] = ACTIONS(2079), + [anon_sym___restrict__] = ACTIONS(2079), + [anon_sym__Atomic] = ACTIONS(2079), + [anon_sym__Noreturn] = ACTIONS(2079), + [anon_sym_noreturn] = ACTIONS(2079), + [anon_sym_DASH_DASH] = ACTIONS(2083), + [anon_sym_PLUS_PLUS] = ACTIONS(2083), + [anon_sym_sizeof] = ACTIONS(1999), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [sym_number_literal] = ACTIONS(161), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(163), + [sym_false] = ACTIONS(163), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + }, + [549] = { + [sym_type_qualifier] = STATE(541), + [sym__expression] = STATE(1316), + [sym__expression_not_binary] = STATE(809), + [sym_conditional_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_pointer_expression] = STATE(1154), + [sym_unary_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_update_expression] = STATE(809), + [sym_cast_expression] = STATE(809), + [sym_sizeof_expression] = STATE(809), + [sym_alignof_expression] = STATE(809), + [sym_offsetof_expression] = STATE(809), + [sym_generic_expression] = STATE(809), + [sym_subscript_expression] = STATE(1154), + [sym_call_expression] = STATE(1154), + [sym_gnu_asm_expression] = STATE(809), + [sym_field_expression] = STATE(1154), + [sym_compound_literal_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(1154), + [sym_char_literal] = STATE(809), + [sym_concatenated_string] = STATE(809), + [sym_string_literal] = STATE(573), + [sym_null] = STATE(809), + [aux_sym__type_definition_type_repeat1] = STATE(541), + [sym_identifier] = ACTIONS(1993), + [anon_sym_LPAREN2] = ACTIONS(2073), + [anon_sym_BANG] = ACTIONS(1997), + [anon_sym_TILDE] = ACTIONS(1997), + [anon_sym_DASH] = ACTIONS(1995), + [anon_sym_PLUS] = ACTIONS(1995), + [anon_sym_STAR] = ACTIONS(2184), + [anon_sym_AMP] = ACTIONS(2077), + [anon_sym___extension__] = ACTIONS(2079), + [anon_sym_RBRACK] = ACTIONS(2186), + [anon_sym_const] = ACTIONS(2079), + [anon_sym_constexpr] = ACTIONS(2079), + [anon_sym_volatile] = ACTIONS(2079), + [anon_sym_restrict] = ACTIONS(2079), + [anon_sym___restrict__] = ACTIONS(2079), + [anon_sym__Atomic] = ACTIONS(2079), + [anon_sym__Noreturn] = ACTIONS(2079), + [anon_sym_noreturn] = ACTIONS(2079), + [anon_sym_DASH_DASH] = ACTIONS(2083), + [anon_sym_PLUS_PLUS] = ACTIONS(2083), + [anon_sym_sizeof] = ACTIONS(1999), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [sym_number_literal] = ACTIONS(161), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(163), + [sym_false] = ACTIONS(163), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + }, + [550] = { + [sym__expression] = STATE(1226), + [sym__expression_not_binary] = STATE(809), + [sym_conditional_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_pointer_expression] = STATE(877), + [sym_unary_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_update_expression] = STATE(809), + [sym_cast_expression] = STATE(809), + [sym_sizeof_expression] = STATE(809), + [sym_alignof_expression] = STATE(809), + [sym_offsetof_expression] = STATE(809), + [sym_generic_expression] = STATE(809), + [sym_subscript_expression] = STATE(877), + [sym_call_expression] = STATE(877), + [sym_gnu_asm_expression] = STATE(809), + [sym_field_expression] = STATE(877), + [sym_compound_literal_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(877), + [sym_initializer_list] = STATE(1851), + [sym_initializer_pair] = STATE(1851), + [sym_subscript_designator] = STATE(1666), + [sym_subscript_range_designator] = STATE(1666), + [sym_field_designator] = STATE(1666), + [sym_char_literal] = STATE(809), + [sym_concatenated_string] = STATE(809), + [sym_string_literal] = STATE(573), + [sym_null] = STATE(809), + [aux_sym_initializer_pair_repeat1] = STATE(1666), + [sym_identifier] = ACTIONS(2188), + [anon_sym_COMMA] = ACTIONS(2190), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -73862,70 +76860,71 @@ 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(1535), - [anon_sym_RBRACE] = ACTIONS(2104), - [anon_sym_LBRACK] = ACTIONS(2076), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(83), - [anon_sym___alignof__] = ACTIONS(85), - [anon_sym___alignof] = ACTIONS(85), - [anon_sym__alignof] = ACTIONS(85), - [anon_sym_alignof] = ACTIONS(85), - [anon_sym__Alignof] = ACTIONS(85), - [anon_sym_offsetof] = ACTIONS(87), - [anon_sym__Generic] = ACTIONS(89), - [anon_sym_asm] = ACTIONS(91), - [anon_sym___asm__] = ACTIONS(91), - [anon_sym_DOT] = ACTIONS(2078), - [sym_number_literal] = ACTIONS(159), - [anon_sym_L_SQUOTE] = ACTIONS(95), - [anon_sym_u_SQUOTE] = ACTIONS(95), - [anon_sym_U_SQUOTE] = ACTIONS(95), - [anon_sym_u8_SQUOTE] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(95), - [anon_sym_L_DQUOTE] = ACTIONS(97), - [anon_sym_u_DQUOTE] = ACTIONS(97), - [anon_sym_U_DQUOTE] = ACTIONS(97), - [anon_sym_u8_DQUOTE] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(97), - [sym_true] = ACTIONS(161), - [sym_false] = ACTIONS(161), - [anon_sym_NULL] = ACTIONS(101), - [anon_sym_nullptr] = ACTIONS(101), + [anon_sym_LBRACE] = ACTIONS(1546), + [anon_sym_RBRACE] = ACTIONS(2192), + [anon_sym_LBRACK] = ACTIONS(2194), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [anon_sym_DOT] = ACTIONS(2196), + [sym_number_literal] = ACTIONS(161), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(163), + [sym_false] = ACTIONS(163), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [539] = { - [sym__expression] = STATE(1254), - [sym__expression_not_binary] = STATE(792), - [sym_conditional_expression] = STATE(792), - [sym_assignment_expression] = STATE(792), - [sym_pointer_expression] = STATE(901), - [sym_unary_expression] = STATE(792), - [sym_binary_expression] = STATE(792), - [sym_update_expression] = STATE(792), - [sym_cast_expression] = STATE(792), - [sym_sizeof_expression] = STATE(792), - [sym_alignof_expression] = STATE(792), - [sym_offsetof_expression] = STATE(792), - [sym_generic_expression] = STATE(792), - [sym_subscript_expression] = STATE(901), - [sym_call_expression] = STATE(901), - [sym_gnu_asm_expression] = STATE(792), - [sym_field_expression] = STATE(901), - [sym_compound_literal_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(901), - [sym_initializer_list] = STATE(1885), - [sym_initializer_pair] = STATE(1885), - [sym_subscript_designator] = STATE(1614), - [sym_subscript_range_designator] = STATE(1614), - [sym_field_designator] = STATE(1614), - [sym_char_literal] = STATE(792), - [sym_concatenated_string] = STATE(792), - [sym_string_literal] = STATE(675), - [sym_null] = STATE(792), - [aux_sym_initializer_pair_repeat1] = STATE(1614), - [sym_identifier] = ACTIONS(2070), + [551] = { + [sym__expression] = STATE(1224), + [sym__expression_not_binary] = STATE(809), + [sym_conditional_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_pointer_expression] = STATE(877), + [sym_unary_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_update_expression] = STATE(809), + [sym_cast_expression] = STATE(809), + [sym_sizeof_expression] = STATE(809), + [sym_alignof_expression] = STATE(809), + [sym_offsetof_expression] = STATE(809), + [sym_generic_expression] = STATE(809), + [sym_subscript_expression] = STATE(877), + [sym_call_expression] = STATE(877), + [sym_gnu_asm_expression] = STATE(809), + [sym_field_expression] = STATE(877), + [sym_compound_literal_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(877), + [sym_initializer_list] = STATE(1864), + [sym_initializer_pair] = STATE(1864), + [sym_subscript_designator] = STATE(1666), + [sym_subscript_range_designator] = STATE(1666), + [sym_field_designator] = STATE(1666), + [sym_char_literal] = STATE(809), + [sym_concatenated_string] = STATE(809), + [sym_string_literal] = STATE(573), + [sym_null] = STATE(809), + [aux_sym_initializer_pair_repeat1] = STATE(1666), + [sym_identifier] = ACTIONS(2188), + [anon_sym_COMMA] = ACTIONS(2198), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -73933,70 +76932,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(1535), - [anon_sym_RBRACE] = ACTIONS(2106), - [anon_sym_LBRACK] = ACTIONS(2076), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(83), - [anon_sym___alignof__] = ACTIONS(85), - [anon_sym___alignof] = ACTIONS(85), - [anon_sym__alignof] = ACTIONS(85), - [anon_sym_alignof] = ACTIONS(85), - [anon_sym__Alignof] = ACTIONS(85), - [anon_sym_offsetof] = ACTIONS(87), - [anon_sym__Generic] = ACTIONS(89), - [anon_sym_asm] = ACTIONS(91), - [anon_sym___asm__] = ACTIONS(91), - [anon_sym_DOT] = ACTIONS(2078), - [sym_number_literal] = ACTIONS(159), - [anon_sym_L_SQUOTE] = ACTIONS(95), - [anon_sym_u_SQUOTE] = ACTIONS(95), - [anon_sym_U_SQUOTE] = ACTIONS(95), - [anon_sym_u8_SQUOTE] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(95), - [anon_sym_L_DQUOTE] = ACTIONS(97), - [anon_sym_u_DQUOTE] = ACTIONS(97), - [anon_sym_U_DQUOTE] = ACTIONS(97), - [anon_sym_u8_DQUOTE] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(97), - [sym_true] = ACTIONS(161), - [sym_false] = ACTIONS(161), - [anon_sym_NULL] = ACTIONS(101), - [anon_sym_nullptr] = ACTIONS(101), + [anon_sym_LBRACE] = ACTIONS(1546), + [anon_sym_RBRACE] = ACTIONS(2200), + [anon_sym_LBRACK] = ACTIONS(2194), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [anon_sym_DOT] = ACTIONS(2196), + [sym_number_literal] = ACTIONS(161), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(163), + [sym_false] = ACTIONS(163), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [540] = { - [sym__expression] = STATE(1254), - [sym__expression_not_binary] = STATE(792), - [sym_conditional_expression] = STATE(792), - [sym_assignment_expression] = STATE(792), - [sym_pointer_expression] = STATE(901), - [sym_unary_expression] = STATE(792), - [sym_binary_expression] = STATE(792), - [sym_update_expression] = STATE(792), - [sym_cast_expression] = STATE(792), - [sym_sizeof_expression] = STATE(792), - [sym_alignof_expression] = STATE(792), - [sym_offsetof_expression] = STATE(792), - [sym_generic_expression] = STATE(792), - [sym_subscript_expression] = STATE(901), - [sym_call_expression] = STATE(901), - [sym_gnu_asm_expression] = STATE(792), - [sym_field_expression] = STATE(901), - [sym_compound_literal_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(901), - [sym_initializer_list] = STATE(1885), - [sym_initializer_pair] = STATE(1885), - [sym_subscript_designator] = STATE(1614), - [sym_subscript_range_designator] = STATE(1614), - [sym_field_designator] = STATE(1614), - [sym_char_literal] = STATE(792), - [sym_concatenated_string] = STATE(792), - [sym_string_literal] = STATE(675), - [sym_null] = STATE(792), - [aux_sym_initializer_pair_repeat1] = STATE(1614), - [sym_identifier] = ACTIONS(2070), + [552] = { + [sym__expression] = STATE(1227), + [sym__expression_not_binary] = STATE(809), + [sym_conditional_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_pointer_expression] = STATE(877), + [sym_unary_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_update_expression] = STATE(809), + [sym_cast_expression] = STATE(809), + [sym_sizeof_expression] = STATE(809), + [sym_alignof_expression] = STATE(809), + [sym_offsetof_expression] = STATE(809), + [sym_generic_expression] = STATE(809), + [sym_subscript_expression] = STATE(877), + [sym_call_expression] = STATE(877), + [sym_gnu_asm_expression] = STATE(809), + [sym_field_expression] = STATE(877), + [sym_compound_literal_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(877), + [sym_initializer_list] = STATE(1875), + [sym_initializer_pair] = STATE(1875), + [sym_subscript_designator] = STATE(1666), + [sym_subscript_range_designator] = STATE(1666), + [sym_field_designator] = STATE(1666), + [sym_char_literal] = STATE(809), + [sym_concatenated_string] = STATE(809), + [sym_string_literal] = STATE(573), + [sym_null] = STATE(809), + [aux_sym_initializer_pair_repeat1] = STATE(1666), + [sym_identifier] = ACTIONS(2188), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -74004,70 +77003,141 @@ 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(1535), - [anon_sym_RBRACE] = ACTIONS(2108), - [anon_sym_LBRACK] = ACTIONS(2076), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(83), - [anon_sym___alignof__] = ACTIONS(85), - [anon_sym___alignof] = ACTIONS(85), - [anon_sym__alignof] = ACTIONS(85), - [anon_sym_alignof] = ACTIONS(85), - [anon_sym__Alignof] = ACTIONS(85), - [anon_sym_offsetof] = ACTIONS(87), - [anon_sym__Generic] = ACTIONS(89), - [anon_sym_asm] = ACTIONS(91), - [anon_sym___asm__] = ACTIONS(91), - [anon_sym_DOT] = ACTIONS(2078), - [sym_number_literal] = ACTIONS(159), - [anon_sym_L_SQUOTE] = ACTIONS(95), - [anon_sym_u_SQUOTE] = ACTIONS(95), - [anon_sym_U_SQUOTE] = ACTIONS(95), - [anon_sym_u8_SQUOTE] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(95), - [anon_sym_L_DQUOTE] = ACTIONS(97), - [anon_sym_u_DQUOTE] = ACTIONS(97), - [anon_sym_U_DQUOTE] = ACTIONS(97), - [anon_sym_u8_DQUOTE] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(97), - [sym_true] = ACTIONS(161), - [sym_false] = ACTIONS(161), - [anon_sym_NULL] = ACTIONS(101), - [anon_sym_nullptr] = ACTIONS(101), + [anon_sym_LBRACE] = ACTIONS(1546), + [anon_sym_RBRACE] = ACTIONS(2202), + [anon_sym_LBRACK] = ACTIONS(2194), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [anon_sym_DOT] = ACTIONS(2196), + [sym_number_literal] = ACTIONS(161), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(163), + [sym_false] = ACTIONS(163), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [541] = { - [sym__expression] = STATE(1254), - [sym__expression_not_binary] = STATE(792), - [sym_conditional_expression] = STATE(792), - [sym_assignment_expression] = STATE(792), - [sym_pointer_expression] = STATE(901), - [sym_unary_expression] = STATE(792), - [sym_binary_expression] = STATE(792), - [sym_update_expression] = STATE(792), - [sym_cast_expression] = STATE(792), - [sym_sizeof_expression] = STATE(792), - [sym_alignof_expression] = STATE(792), - [sym_offsetof_expression] = STATE(792), - [sym_generic_expression] = STATE(792), - [sym_subscript_expression] = STATE(901), - [sym_call_expression] = STATE(901), - [sym_gnu_asm_expression] = STATE(792), - [sym_field_expression] = STATE(901), - [sym_compound_literal_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(901), - [sym_initializer_list] = STATE(1885), - [sym_initializer_pair] = STATE(1885), - [sym_subscript_designator] = STATE(1614), - [sym_subscript_range_designator] = STATE(1614), - [sym_field_designator] = STATE(1614), - [sym_char_literal] = STATE(792), - [sym_concatenated_string] = STATE(792), - [sym_string_literal] = STATE(675), - [sym_null] = STATE(792), - [aux_sym_initializer_pair_repeat1] = STATE(1614), - [sym_identifier] = ACTIONS(2070), + [553] = { + [sym_preproc_def] = STATE(553), + [sym_preproc_function_def] = STATE(553), + [sym_preproc_call] = STATE(553), + [sym_preproc_if_in_field_declaration_list] = STATE(553), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(553), + [sym__declaration_modifiers] = STATE(855), + [sym__declaration_specifiers] = STATE(1353), + [sym_attribute_specifier] = STATE(855), + [sym_attribute_declaration] = STATE(855), + [sym_ms_declspec_modifier] = STATE(855), + [sym_storage_class_specifier] = STATE(855), + [sym_type_qualifier] = STATE(855), + [sym__type_specifier] = STATE(974), + [sym_sized_type_specifier] = STATE(1069), + [sym_enum_specifier] = STATE(1069), + [sym_struct_specifier] = STATE(1069), + [sym_union_specifier] = STATE(1069), + [sym__field_declaration_list_item] = STATE(553), + [sym_field_declaration] = STATE(553), + [sym_macro_type_specifier] = STATE(1069), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(553), + [aux_sym__declaration_specifiers_repeat1] = STATE(855), + [aux_sym_sized_type_specifier_repeat1] = STATE(1085), + [sym_identifier] = ACTIONS(2087), + [aux_sym_preproc_def_token1] = ACTIONS(2204), + [aux_sym_preproc_if_token1] = ACTIONS(2207), + [aux_sym_preproc_if_token2] = ACTIONS(2096), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2210), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2210), + [aux_sym_preproc_else_token1] = ACTIONS(2096), + [aux_sym_preproc_elif_token1] = ACTIONS(2096), + [sym_preproc_directive] = ACTIONS(2213), + [anon_sym___extension__] = ACTIONS(2104), + [anon_sym_extern] = ACTIONS(2107), + [anon_sym___attribute__] = ACTIONS(2110), + [anon_sym___scanf] = ACTIONS(2113), + [anon_sym___printf] = ACTIONS(2113), + [anon_sym___read_mostly] = ACTIONS(2116), + [anon_sym___must_hold] = ACTIONS(2110), + [anon_sym___ro_after_init] = ACTIONS(2116), + [anon_sym___init] = ACTIONS(2116), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2119), + [anon_sym___declspec] = ACTIONS(2122), + [anon_sym_signed] = ACTIONS(2125), + [anon_sym_unsigned] = ACTIONS(2125), + [anon_sym_long] = ACTIONS(2125), + [anon_sym_short] = ACTIONS(2125), + [anon_sym_static] = ACTIONS(2107), + [anon_sym_auto] = ACTIONS(2107), + [anon_sym_register] = ACTIONS(2107), + [anon_sym_inline] = ACTIONS(2107), + [anon_sym___inline] = ACTIONS(2107), + [anon_sym___inline__] = ACTIONS(2107), + [anon_sym___forceinline] = ACTIONS(2107), + [anon_sym_thread_local] = ACTIONS(2107), + [anon_sym___thread] = ACTIONS(2107), + [anon_sym_const] = ACTIONS(2104), + [anon_sym_constexpr] = ACTIONS(2104), + [anon_sym_volatile] = ACTIONS(2104), + [anon_sym_restrict] = ACTIONS(2104), + [anon_sym___restrict__] = ACTIONS(2104), + [anon_sym__Atomic] = ACTIONS(2104), + [anon_sym__Noreturn] = ACTIONS(2104), + [anon_sym_noreturn] = ACTIONS(2104), + [sym_primitive_type] = ACTIONS(2128), + [anon_sym_enum] = ACTIONS(2131), + [anon_sym_struct] = ACTIONS(2134), + [anon_sym_union] = ACTIONS(2137), + [sym_comment] = ACTIONS(3), + }, + [554] = { + [sym__expression] = STATE(1227), + [sym__expression_not_binary] = STATE(809), + [sym_conditional_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_pointer_expression] = STATE(877), + [sym_unary_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_update_expression] = STATE(809), + [sym_cast_expression] = STATE(809), + [sym_sizeof_expression] = STATE(809), + [sym_alignof_expression] = STATE(809), + [sym_offsetof_expression] = STATE(809), + [sym_generic_expression] = STATE(809), + [sym_subscript_expression] = STATE(877), + [sym_call_expression] = STATE(877), + [sym_gnu_asm_expression] = STATE(809), + [sym_field_expression] = STATE(877), + [sym_compound_literal_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(877), + [sym_initializer_list] = STATE(1875), + [sym_initializer_pair] = STATE(1875), + [sym_subscript_designator] = STATE(1666), + [sym_subscript_range_designator] = STATE(1666), + [sym_field_designator] = STATE(1666), + [sym_char_literal] = STATE(809), + [sym_concatenated_string] = STATE(809), + [sym_string_literal] = STATE(573), + [sym_null] = STATE(809), + [aux_sym_initializer_pair_repeat1] = STATE(1666), + [sym_identifier] = ACTIONS(2188), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -74075,70 +77145,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(1535), - [anon_sym_RBRACE] = ACTIONS(2110), - [anon_sym_LBRACK] = ACTIONS(2076), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(83), - [anon_sym___alignof__] = ACTIONS(85), - [anon_sym___alignof] = ACTIONS(85), - [anon_sym__alignof] = ACTIONS(85), - [anon_sym_alignof] = ACTIONS(85), - [anon_sym__Alignof] = ACTIONS(85), - [anon_sym_offsetof] = ACTIONS(87), - [anon_sym__Generic] = ACTIONS(89), - [anon_sym_asm] = ACTIONS(91), - [anon_sym___asm__] = ACTIONS(91), - [anon_sym_DOT] = ACTIONS(2078), - [sym_number_literal] = ACTIONS(159), - [anon_sym_L_SQUOTE] = ACTIONS(95), - [anon_sym_u_SQUOTE] = ACTIONS(95), - [anon_sym_U_SQUOTE] = ACTIONS(95), - [anon_sym_u8_SQUOTE] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(95), - [anon_sym_L_DQUOTE] = ACTIONS(97), - [anon_sym_u_DQUOTE] = ACTIONS(97), - [anon_sym_U_DQUOTE] = ACTIONS(97), - [anon_sym_u8_DQUOTE] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(97), - [sym_true] = ACTIONS(161), - [sym_false] = ACTIONS(161), - [anon_sym_NULL] = ACTIONS(101), - [anon_sym_nullptr] = ACTIONS(101), + [anon_sym_LBRACE] = ACTIONS(1546), + [anon_sym_RBRACE] = ACTIONS(2216), + [anon_sym_LBRACK] = ACTIONS(2194), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [anon_sym_DOT] = ACTIONS(2196), + [sym_number_literal] = ACTIONS(161), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(163), + [sym_false] = ACTIONS(163), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [542] = { - [sym__expression] = STATE(1254), - [sym__expression_not_binary] = STATE(792), - [sym_conditional_expression] = STATE(792), - [sym_assignment_expression] = STATE(792), - [sym_pointer_expression] = STATE(901), - [sym_unary_expression] = STATE(792), - [sym_binary_expression] = STATE(792), - [sym_update_expression] = STATE(792), - [sym_cast_expression] = STATE(792), - [sym_sizeof_expression] = STATE(792), - [sym_alignof_expression] = STATE(792), - [sym_offsetof_expression] = STATE(792), - [sym_generic_expression] = STATE(792), - [sym_subscript_expression] = STATE(901), - [sym_call_expression] = STATE(901), - [sym_gnu_asm_expression] = STATE(792), - [sym_field_expression] = STATE(901), - [sym_compound_literal_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(901), - [sym_initializer_list] = STATE(1885), - [sym_initializer_pair] = STATE(1885), - [sym_subscript_designator] = STATE(1614), - [sym_subscript_range_designator] = STATE(1614), - [sym_field_designator] = STATE(1614), - [sym_char_literal] = STATE(792), - [sym_concatenated_string] = STATE(792), - [sym_string_literal] = STATE(675), - [sym_null] = STATE(792), - [aux_sym_initializer_pair_repeat1] = STATE(1614), - [sym_identifier] = ACTIONS(2070), + [555] = { + [sym__expression] = STATE(1227), + [sym__expression_not_binary] = STATE(809), + [sym_conditional_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_pointer_expression] = STATE(877), + [sym_unary_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_update_expression] = STATE(809), + [sym_cast_expression] = STATE(809), + [sym_sizeof_expression] = STATE(809), + [sym_alignof_expression] = STATE(809), + [sym_offsetof_expression] = STATE(809), + [sym_generic_expression] = STATE(809), + [sym_subscript_expression] = STATE(877), + [sym_call_expression] = STATE(877), + [sym_gnu_asm_expression] = STATE(809), + [sym_field_expression] = STATE(877), + [sym_compound_literal_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(877), + [sym_initializer_list] = STATE(1875), + [sym_initializer_pair] = STATE(1875), + [sym_subscript_designator] = STATE(1666), + [sym_subscript_range_designator] = STATE(1666), + [sym_field_designator] = STATE(1666), + [sym_char_literal] = STATE(809), + [sym_concatenated_string] = STATE(809), + [sym_string_literal] = STATE(573), + [sym_null] = STATE(809), + [aux_sym_initializer_pair_repeat1] = STATE(1666), + [sym_identifier] = ACTIONS(2188), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -74146,70 +77216,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(1535), - [anon_sym_RBRACE] = ACTIONS(2112), - [anon_sym_LBRACK] = ACTIONS(2076), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(83), - [anon_sym___alignof__] = ACTIONS(85), - [anon_sym___alignof] = ACTIONS(85), - [anon_sym__alignof] = ACTIONS(85), - [anon_sym_alignof] = ACTIONS(85), - [anon_sym__Alignof] = ACTIONS(85), - [anon_sym_offsetof] = ACTIONS(87), - [anon_sym__Generic] = ACTIONS(89), - [anon_sym_asm] = ACTIONS(91), - [anon_sym___asm__] = ACTIONS(91), - [anon_sym_DOT] = ACTIONS(2078), - [sym_number_literal] = ACTIONS(159), - [anon_sym_L_SQUOTE] = ACTIONS(95), - [anon_sym_u_SQUOTE] = ACTIONS(95), - [anon_sym_U_SQUOTE] = ACTIONS(95), - [anon_sym_u8_SQUOTE] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(95), - [anon_sym_L_DQUOTE] = ACTIONS(97), - [anon_sym_u_DQUOTE] = ACTIONS(97), - [anon_sym_U_DQUOTE] = ACTIONS(97), - [anon_sym_u8_DQUOTE] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(97), - [sym_true] = ACTIONS(161), - [sym_false] = ACTIONS(161), - [anon_sym_NULL] = ACTIONS(101), - [anon_sym_nullptr] = ACTIONS(101), + [anon_sym_LBRACE] = ACTIONS(1546), + [anon_sym_RBRACE] = ACTIONS(2218), + [anon_sym_LBRACK] = ACTIONS(2194), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [anon_sym_DOT] = ACTIONS(2196), + [sym_number_literal] = ACTIONS(161), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(163), + [sym_false] = ACTIONS(163), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [543] = { - [sym__expression] = STATE(1254), - [sym__expression_not_binary] = STATE(792), - [sym_conditional_expression] = STATE(792), - [sym_assignment_expression] = STATE(792), - [sym_pointer_expression] = STATE(901), - [sym_unary_expression] = STATE(792), - [sym_binary_expression] = STATE(792), - [sym_update_expression] = STATE(792), - [sym_cast_expression] = STATE(792), - [sym_sizeof_expression] = STATE(792), - [sym_alignof_expression] = STATE(792), - [sym_offsetof_expression] = STATE(792), - [sym_generic_expression] = STATE(792), - [sym_subscript_expression] = STATE(901), - [sym_call_expression] = STATE(901), - [sym_gnu_asm_expression] = STATE(792), - [sym_field_expression] = STATE(901), - [sym_compound_literal_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(901), - [sym_initializer_list] = STATE(1885), - [sym_initializer_pair] = STATE(1885), - [sym_subscript_designator] = STATE(1614), - [sym_subscript_range_designator] = STATE(1614), - [sym_field_designator] = STATE(1614), - [sym_char_literal] = STATE(792), - [sym_concatenated_string] = STATE(792), - [sym_string_literal] = STATE(675), - [sym_null] = STATE(792), - [aux_sym_initializer_pair_repeat1] = STATE(1614), - [sym_identifier] = ACTIONS(2070), + [556] = { + [sym__expression] = STATE(1227), + [sym__expression_not_binary] = STATE(809), + [sym_conditional_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_pointer_expression] = STATE(877), + [sym_unary_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_update_expression] = STATE(809), + [sym_cast_expression] = STATE(809), + [sym_sizeof_expression] = STATE(809), + [sym_alignof_expression] = STATE(809), + [sym_offsetof_expression] = STATE(809), + [sym_generic_expression] = STATE(809), + [sym_subscript_expression] = STATE(877), + [sym_call_expression] = STATE(877), + [sym_gnu_asm_expression] = STATE(809), + [sym_field_expression] = STATE(877), + [sym_compound_literal_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(877), + [sym_initializer_list] = STATE(1875), + [sym_initializer_pair] = STATE(1875), + [sym_subscript_designator] = STATE(1666), + [sym_subscript_range_designator] = STATE(1666), + [sym_field_designator] = STATE(1666), + [sym_char_literal] = STATE(809), + [sym_concatenated_string] = STATE(809), + [sym_string_literal] = STATE(573), + [sym_null] = STATE(809), + [aux_sym_initializer_pair_repeat1] = STATE(1666), + [sym_identifier] = ACTIONS(2188), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -74217,1056 +77287,867 @@ 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(1535), - [anon_sym_LBRACK] = ACTIONS(2076), - [anon_sym_DASH_DASH] = ACTIONS(81), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_sizeof] = ACTIONS(83), - [anon_sym___alignof__] = ACTIONS(85), - [anon_sym___alignof] = ACTIONS(85), - [anon_sym__alignof] = ACTIONS(85), - [anon_sym_alignof] = ACTIONS(85), - [anon_sym__Alignof] = ACTIONS(85), - [anon_sym_offsetof] = ACTIONS(87), - [anon_sym__Generic] = ACTIONS(89), - [anon_sym_asm] = ACTIONS(91), - [anon_sym___asm__] = ACTIONS(91), - [anon_sym_DOT] = ACTIONS(2078), - [sym_number_literal] = ACTIONS(159), - [anon_sym_L_SQUOTE] = ACTIONS(95), - [anon_sym_u_SQUOTE] = ACTIONS(95), - [anon_sym_U_SQUOTE] = ACTIONS(95), - [anon_sym_u8_SQUOTE] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(95), - [anon_sym_L_DQUOTE] = ACTIONS(97), - [anon_sym_u_DQUOTE] = ACTIONS(97), - [anon_sym_U_DQUOTE] = ACTIONS(97), - [anon_sym_u8_DQUOTE] = ACTIONS(97), - [anon_sym_DQUOTE] = ACTIONS(97), - [sym_true] = ACTIONS(161), - [sym_false] = ACTIONS(161), - [anon_sym_NULL] = ACTIONS(101), - [anon_sym_nullptr] = ACTIONS(101), - [sym_comment] = ACTIONS(3), - }, - [544] = { - [sym_preproc_def] = STATE(546), - [sym_preproc_function_def] = STATE(546), - [sym_preproc_call] = STATE(546), - [sym_preproc_if_in_field_declaration_list] = STATE(546), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(546), - [sym_preproc_else_in_field_declaration_list] = STATE(2018), - [sym_preproc_elif_in_field_declaration_list] = STATE(2018), - [sym__declaration_modifiers] = STATE(861), - [sym__declaration_specifiers] = STATE(1452), - [sym_attribute_specifier] = STATE(861), - [sym_attribute_declaration] = STATE(861), - [sym_ms_declspec_modifier] = STATE(861), - [sym_storage_class_specifier] = STATE(861), - [sym_type_qualifier] = STATE(861), - [sym__type_specifier] = STATE(1040), - [sym_sized_type_specifier] = STATE(1106), - [sym_enum_specifier] = STATE(1106), - [sym_struct_specifier] = STATE(1106), - [sym_union_specifier] = STATE(1106), - [sym__field_declaration_list_item] = STATE(546), - [sym_field_declaration] = STATE(546), - [sym_macro_type_specifier] = STATE(1106), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(546), - [aux_sym__declaration_specifiers_repeat1] = STATE(861), - [aux_sym_sized_type_specifier_repeat1] = STATE(1113), - [sym_identifier] = ACTIONS(2046), - [aux_sym_preproc_def_token1] = ACTIONS(2114), - [aux_sym_preproc_if_token1] = ACTIONS(2116), - [aux_sym_preproc_if_token2] = ACTIONS(2118), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2120), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2120), - [aux_sym_preproc_else_token1] = ACTIONS(2056), - [aux_sym_preproc_elif_token1] = ACTIONS(2058), - [sym_preproc_directive] = ACTIONS(2122), - [anon_sym___extension__] = ACTIONS(49), - [anon_sym_extern] = ACTIONS(47), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym___scanf] = ACTIONS(35), - [anon_sym___printf] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1301), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [sym_primitive_type] = ACTIONS(51), - [anon_sym_enum] = ACTIONS(53), - [anon_sym_struct] = ACTIONS(55), - [anon_sym_union] = ACTIONS(57), - [sym_comment] = ACTIONS(3), - }, - [545] = { - [sym_preproc_def] = STATE(550), - [sym_preproc_function_def] = STATE(550), - [sym_preproc_call] = STATE(550), - [sym_preproc_if_in_field_declaration_list] = STATE(550), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(550), - [sym_preproc_else_in_field_declaration_list] = STATE(2061), - [sym_preproc_elif_in_field_declaration_list] = STATE(2061), - [sym__declaration_modifiers] = STATE(861), - [sym__declaration_specifiers] = STATE(1452), - [sym_attribute_specifier] = STATE(861), - [sym_attribute_declaration] = STATE(861), - [sym_ms_declspec_modifier] = STATE(861), - [sym_storage_class_specifier] = STATE(861), - [sym_type_qualifier] = STATE(861), - [sym__type_specifier] = STATE(1040), - [sym_sized_type_specifier] = STATE(1106), - [sym_enum_specifier] = STATE(1106), - [sym_struct_specifier] = STATE(1106), - [sym_union_specifier] = STATE(1106), - [sym__field_declaration_list_item] = STATE(550), - [sym_field_declaration] = STATE(550), - [sym_macro_type_specifier] = STATE(1106), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(550), - [aux_sym__declaration_specifiers_repeat1] = STATE(861), - [aux_sym_sized_type_specifier_repeat1] = STATE(1113), - [sym_identifier] = ACTIONS(2046), - [aux_sym_preproc_def_token1] = ACTIONS(2114), - [aux_sym_preproc_if_token1] = ACTIONS(2116), - [aux_sym_preproc_if_token2] = ACTIONS(2124), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2120), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2120), - [aux_sym_preproc_else_token1] = ACTIONS(2056), - [aux_sym_preproc_elif_token1] = ACTIONS(2058), - [sym_preproc_directive] = ACTIONS(2122), - [anon_sym___extension__] = ACTIONS(49), - [anon_sym_extern] = ACTIONS(47), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym___scanf] = ACTIONS(35), - [anon_sym___printf] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1301), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [sym_primitive_type] = ACTIONS(51), - [anon_sym_enum] = ACTIONS(53), - [anon_sym_struct] = ACTIONS(55), - [anon_sym_union] = ACTIONS(57), - [sym_comment] = ACTIONS(3), - }, - [546] = { - [sym_preproc_def] = STATE(557), - [sym_preproc_function_def] = STATE(557), - [sym_preproc_call] = STATE(557), - [sym_preproc_if_in_field_declaration_list] = STATE(557), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(557), - [sym_preproc_else_in_field_declaration_list] = STATE(2016), - [sym_preproc_elif_in_field_declaration_list] = STATE(2016), - [sym__declaration_modifiers] = STATE(861), - [sym__declaration_specifiers] = STATE(1452), - [sym_attribute_specifier] = STATE(861), - [sym_attribute_declaration] = STATE(861), - [sym_ms_declspec_modifier] = STATE(861), - [sym_storage_class_specifier] = STATE(861), - [sym_type_qualifier] = STATE(861), - [sym__type_specifier] = STATE(1040), - [sym_sized_type_specifier] = STATE(1106), - [sym_enum_specifier] = STATE(1106), - [sym_struct_specifier] = STATE(1106), - [sym_union_specifier] = STATE(1106), - [sym__field_declaration_list_item] = STATE(557), - [sym_field_declaration] = STATE(557), - [sym_macro_type_specifier] = STATE(1106), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(557), - [aux_sym__declaration_specifiers_repeat1] = STATE(861), - [aux_sym_sized_type_specifier_repeat1] = STATE(1113), - [sym_identifier] = ACTIONS(2046), - [aux_sym_preproc_def_token1] = ACTIONS(2114), - [aux_sym_preproc_if_token1] = ACTIONS(2116), - [aux_sym_preproc_if_token2] = ACTIONS(2126), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2120), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2120), - [aux_sym_preproc_else_token1] = ACTIONS(2056), - [aux_sym_preproc_elif_token1] = ACTIONS(2058), - [sym_preproc_directive] = ACTIONS(2122), - [anon_sym___extension__] = ACTIONS(49), - [anon_sym_extern] = ACTIONS(47), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym___scanf] = ACTIONS(35), - [anon_sym___printf] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1301), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [sym_primitive_type] = ACTIONS(51), - [anon_sym_enum] = ACTIONS(53), - [anon_sym_struct] = ACTIONS(55), - [anon_sym_union] = ACTIONS(57), - [sym_comment] = ACTIONS(3), - }, - [547] = { - [sym_preproc_def] = STATE(547), - [sym_preproc_function_def] = STATE(547), - [sym_preproc_call] = STATE(547), - [sym_preproc_if_in_field_declaration_list] = STATE(547), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(547), - [sym__declaration_modifiers] = STATE(861), - [sym__declaration_specifiers] = STATE(1451), - [sym_attribute_specifier] = STATE(861), - [sym_attribute_declaration] = STATE(861), - [sym_ms_declspec_modifier] = STATE(861), - [sym_storage_class_specifier] = STATE(861), - [sym_type_qualifier] = STATE(861), - [sym__type_specifier] = STATE(1040), - [sym_sized_type_specifier] = STATE(1106), - [sym_enum_specifier] = STATE(1106), - [sym_struct_specifier] = STATE(1106), - [sym_union_specifier] = STATE(1106), - [sym__field_declaration_list_item] = STATE(547), - [sym_field_declaration] = STATE(547), - [sym_macro_type_specifier] = STATE(1106), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(547), - [aux_sym__declaration_specifiers_repeat1] = STATE(861), - [aux_sym_sized_type_specifier_repeat1] = STATE(1113), - [sym_identifier] = ACTIONS(2128), - [aux_sym_preproc_def_token1] = ACTIONS(2131), - [aux_sym_preproc_if_token1] = ACTIONS(2134), - [aux_sym_preproc_if_token2] = ACTIONS(2137), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2139), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2139), - [aux_sym_preproc_else_token1] = ACTIONS(2137), - [aux_sym_preproc_elif_token1] = ACTIONS(2137), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2137), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2137), - [sym_preproc_directive] = ACTIONS(2142), - [anon_sym___extension__] = ACTIONS(2145), - [anon_sym_extern] = ACTIONS(2148), - [anon_sym___attribute__] = ACTIONS(2151), - [anon_sym___scanf] = ACTIONS(2154), - [anon_sym___printf] = ACTIONS(2154), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2157), - [anon_sym___declspec] = ACTIONS(2160), - [anon_sym_signed] = ACTIONS(2163), - [anon_sym_unsigned] = ACTIONS(2163), - [anon_sym_long] = ACTIONS(2163), - [anon_sym_short] = ACTIONS(2163), - [anon_sym_static] = ACTIONS(2148), - [anon_sym_auto] = ACTIONS(2148), - [anon_sym_register] = ACTIONS(2148), - [anon_sym_inline] = ACTIONS(2148), - [anon_sym___inline] = ACTIONS(2148), - [anon_sym___inline__] = ACTIONS(2148), - [anon_sym___forceinline] = ACTIONS(2148), - [anon_sym_thread_local] = ACTIONS(2148), - [anon_sym___thread] = ACTIONS(2148), - [anon_sym_const] = ACTIONS(2145), - [anon_sym_constexpr] = ACTIONS(2145), - [anon_sym_volatile] = ACTIONS(2145), - [anon_sym_restrict] = ACTIONS(2145), - [anon_sym___restrict__] = ACTIONS(2145), - [anon_sym__Atomic] = ACTIONS(2145), - [anon_sym__Noreturn] = ACTIONS(2145), - [anon_sym_noreturn] = ACTIONS(2145), - [sym_primitive_type] = ACTIONS(2166), - [anon_sym_enum] = ACTIONS(2169), - [anon_sym_struct] = ACTIONS(2172), - [anon_sym_union] = ACTIONS(2175), - [sym_comment] = ACTIONS(3), - }, - [548] = { - [sym_preproc_def] = STATE(557), - [sym_preproc_function_def] = STATE(557), - [sym_preproc_call] = STATE(557), - [sym_preproc_if_in_field_declaration_list] = STATE(557), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(557), - [sym_preproc_else_in_field_declaration_list] = STATE(2175), - [sym_preproc_elif_in_field_declaration_list] = STATE(2175), - [sym__declaration_modifiers] = STATE(861), - [sym__declaration_specifiers] = STATE(1452), - [sym_attribute_specifier] = STATE(861), - [sym_attribute_declaration] = STATE(861), - [sym_ms_declspec_modifier] = STATE(861), - [sym_storage_class_specifier] = STATE(861), - [sym_type_qualifier] = STATE(861), - [sym__type_specifier] = STATE(1040), - [sym_sized_type_specifier] = STATE(1106), - [sym_enum_specifier] = STATE(1106), - [sym_struct_specifier] = STATE(1106), - [sym_union_specifier] = STATE(1106), - [sym__field_declaration_list_item] = STATE(557), - [sym_field_declaration] = STATE(557), - [sym_macro_type_specifier] = STATE(1106), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(557), - [aux_sym__declaration_specifiers_repeat1] = STATE(861), - [aux_sym_sized_type_specifier_repeat1] = STATE(1113), - [sym_identifier] = ACTIONS(2046), - [aux_sym_preproc_def_token1] = ACTIONS(2114), - [aux_sym_preproc_if_token1] = ACTIONS(2116), - [aux_sym_preproc_if_token2] = ACTIONS(2178), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2120), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2120), - [aux_sym_preproc_else_token1] = ACTIONS(2056), - [aux_sym_preproc_elif_token1] = ACTIONS(2058), - [sym_preproc_directive] = ACTIONS(2122), - [anon_sym___extension__] = ACTIONS(49), - [anon_sym_extern] = ACTIONS(47), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym___scanf] = ACTIONS(35), - [anon_sym___printf] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1301), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [sym_primitive_type] = ACTIONS(51), - [anon_sym_enum] = ACTIONS(53), - [anon_sym_struct] = ACTIONS(55), - [anon_sym_union] = ACTIONS(57), - [sym_comment] = ACTIONS(3), - }, - [549] = { - [sym_preproc_def] = STATE(557), - [sym_preproc_function_def] = STATE(557), - [sym_preproc_call] = STATE(557), - [sym_preproc_if_in_field_declaration_list] = STATE(557), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(557), - [sym_preproc_else_in_field_declaration_list] = STATE(2154), - [sym_preproc_elif_in_field_declaration_list] = STATE(2154), - [sym__declaration_modifiers] = STATE(861), - [sym__declaration_specifiers] = STATE(1452), - [sym_attribute_specifier] = STATE(861), - [sym_attribute_declaration] = STATE(861), - [sym_ms_declspec_modifier] = STATE(861), - [sym_storage_class_specifier] = STATE(861), - [sym_type_qualifier] = STATE(861), - [sym__type_specifier] = STATE(1040), - [sym_sized_type_specifier] = STATE(1106), - [sym_enum_specifier] = STATE(1106), - [sym_struct_specifier] = STATE(1106), - [sym_union_specifier] = STATE(1106), - [sym__field_declaration_list_item] = STATE(557), - [sym_field_declaration] = STATE(557), - [sym_macro_type_specifier] = STATE(1106), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(557), - [aux_sym__declaration_specifiers_repeat1] = STATE(861), - [aux_sym_sized_type_specifier_repeat1] = STATE(1113), - [sym_identifier] = ACTIONS(2046), - [aux_sym_preproc_def_token1] = ACTIONS(2114), - [aux_sym_preproc_if_token1] = ACTIONS(2116), - [aux_sym_preproc_if_token2] = ACTIONS(2180), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2120), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2120), - [aux_sym_preproc_else_token1] = ACTIONS(2056), - [aux_sym_preproc_elif_token1] = ACTIONS(2058), - [sym_preproc_directive] = ACTIONS(2122), - [anon_sym___extension__] = ACTIONS(49), - [anon_sym_extern] = ACTIONS(47), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym___scanf] = ACTIONS(35), - [anon_sym___printf] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1301), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [sym_primitive_type] = ACTIONS(51), - [anon_sym_enum] = ACTIONS(53), - [anon_sym_struct] = ACTIONS(55), - [anon_sym_union] = ACTIONS(57), - [sym_comment] = ACTIONS(3), - }, - [550] = { - [sym_preproc_def] = STATE(557), - [sym_preproc_function_def] = STATE(557), - [sym_preproc_call] = STATE(557), - [sym_preproc_if_in_field_declaration_list] = STATE(557), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(557), - [sym_preproc_else_in_field_declaration_list] = STATE(2059), - [sym_preproc_elif_in_field_declaration_list] = STATE(2059), - [sym__declaration_modifiers] = STATE(861), - [sym__declaration_specifiers] = STATE(1452), - [sym_attribute_specifier] = STATE(861), - [sym_attribute_declaration] = STATE(861), - [sym_ms_declspec_modifier] = STATE(861), - [sym_storage_class_specifier] = STATE(861), - [sym_type_qualifier] = STATE(861), - [sym__type_specifier] = STATE(1040), - [sym_sized_type_specifier] = STATE(1106), - [sym_enum_specifier] = STATE(1106), - [sym_struct_specifier] = STATE(1106), - [sym_union_specifier] = STATE(1106), - [sym__field_declaration_list_item] = STATE(557), - [sym_field_declaration] = STATE(557), - [sym_macro_type_specifier] = STATE(1106), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(557), - [aux_sym__declaration_specifiers_repeat1] = STATE(861), - [aux_sym_sized_type_specifier_repeat1] = STATE(1113), - [sym_identifier] = ACTIONS(2046), - [aux_sym_preproc_def_token1] = ACTIONS(2114), - [aux_sym_preproc_if_token1] = ACTIONS(2116), - [aux_sym_preproc_if_token2] = ACTIONS(2182), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2120), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2120), - [aux_sym_preproc_else_token1] = ACTIONS(2056), - [aux_sym_preproc_elif_token1] = ACTIONS(2058), - [sym_preproc_directive] = ACTIONS(2122), - [anon_sym___extension__] = ACTIONS(49), - [anon_sym_extern] = ACTIONS(47), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym___scanf] = ACTIONS(35), - [anon_sym___printf] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1301), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [sym_primitive_type] = ACTIONS(51), - [anon_sym_enum] = ACTIONS(53), - [anon_sym_struct] = ACTIONS(55), - [anon_sym_union] = ACTIONS(57), - [sym_comment] = ACTIONS(3), - }, - [551] = { - [sym_preproc_def] = STATE(554), - [sym_preproc_function_def] = STATE(554), - [sym_preproc_call] = STATE(554), - [sym_preproc_if_in_field_declaration_list] = STATE(554), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(554), - [sym_preproc_else_in_field_declaration_list] = STATE(2174), - [sym_preproc_elif_in_field_declaration_list] = STATE(2174), - [sym__declaration_modifiers] = STATE(861), - [sym__declaration_specifiers] = STATE(1452), - [sym_attribute_specifier] = STATE(861), - [sym_attribute_declaration] = STATE(861), - [sym_ms_declspec_modifier] = STATE(861), - [sym_storage_class_specifier] = STATE(861), - [sym_type_qualifier] = STATE(861), - [sym__type_specifier] = STATE(1040), - [sym_sized_type_specifier] = STATE(1106), - [sym_enum_specifier] = STATE(1106), - [sym_struct_specifier] = STATE(1106), - [sym_union_specifier] = STATE(1106), - [sym__field_declaration_list_item] = STATE(554), - [sym_field_declaration] = STATE(554), - [sym_macro_type_specifier] = STATE(1106), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(554), - [aux_sym__declaration_specifiers_repeat1] = STATE(861), - [aux_sym_sized_type_specifier_repeat1] = STATE(1113), - [sym_identifier] = ACTIONS(2046), - [aux_sym_preproc_def_token1] = ACTIONS(2114), - [aux_sym_preproc_if_token1] = ACTIONS(2116), - [aux_sym_preproc_if_token2] = ACTIONS(2184), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2120), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2120), - [aux_sym_preproc_else_token1] = ACTIONS(2056), - [aux_sym_preproc_elif_token1] = ACTIONS(2058), - [sym_preproc_directive] = ACTIONS(2122), - [anon_sym___extension__] = ACTIONS(49), - [anon_sym_extern] = ACTIONS(47), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym___scanf] = ACTIONS(35), - [anon_sym___printf] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1301), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [sym_primitive_type] = ACTIONS(51), - [anon_sym_enum] = ACTIONS(53), - [anon_sym_struct] = ACTIONS(55), - [anon_sym_union] = ACTIONS(57), + [anon_sym_LBRACE] = ACTIONS(1546), + [anon_sym_RBRACE] = ACTIONS(2220), + [anon_sym_LBRACK] = ACTIONS(2194), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [anon_sym_DOT] = ACTIONS(2196), + [sym_number_literal] = ACTIONS(161), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(163), + [sym_false] = ACTIONS(163), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), [sym_comment] = ACTIONS(3), }, - [552] = { - [sym_preproc_def] = STATE(548), - [sym_preproc_function_def] = STATE(548), - [sym_preproc_call] = STATE(548), - [sym_preproc_if_in_field_declaration_list] = STATE(548), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(548), - [sym_preproc_else_in_field_declaration_list] = STATE(2195), - [sym_preproc_elif_in_field_declaration_list] = STATE(2195), - [sym__declaration_modifiers] = STATE(861), - [sym__declaration_specifiers] = STATE(1452), - [sym_attribute_specifier] = STATE(861), - [sym_attribute_declaration] = STATE(861), - [sym_ms_declspec_modifier] = STATE(861), - [sym_storage_class_specifier] = STATE(861), - [sym_type_qualifier] = STATE(861), - [sym__type_specifier] = STATE(1040), - [sym_sized_type_specifier] = STATE(1106), - [sym_enum_specifier] = STATE(1106), - [sym_struct_specifier] = STATE(1106), - [sym_union_specifier] = STATE(1106), - [sym__field_declaration_list_item] = STATE(548), - [sym_field_declaration] = STATE(548), - [sym_macro_type_specifier] = STATE(1106), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(548), - [aux_sym__declaration_specifiers_repeat1] = STATE(861), - [aux_sym_sized_type_specifier_repeat1] = STATE(1113), - [sym_identifier] = ACTIONS(2046), - [aux_sym_preproc_def_token1] = ACTIONS(2114), - [aux_sym_preproc_if_token1] = ACTIONS(2116), - [aux_sym_preproc_if_token2] = ACTIONS(2186), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2120), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2120), - [aux_sym_preproc_else_token1] = ACTIONS(2056), - [aux_sym_preproc_elif_token1] = ACTIONS(2058), - [sym_preproc_directive] = ACTIONS(2122), - [anon_sym___extension__] = ACTIONS(49), - [anon_sym_extern] = ACTIONS(47), + [557] = { + [sym__expression] = STATE(1227), + [sym__expression_not_binary] = STATE(809), + [sym_conditional_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_pointer_expression] = STATE(877), + [sym_unary_expression] = STATE(809), + [sym_binary_expression] = STATE(809), + [sym_update_expression] = STATE(809), + [sym_cast_expression] = STATE(809), + [sym_sizeof_expression] = STATE(809), + [sym_alignof_expression] = STATE(809), + [sym_offsetof_expression] = STATE(809), + [sym_generic_expression] = STATE(809), + [sym_subscript_expression] = STATE(877), + [sym_call_expression] = STATE(877), + [sym_gnu_asm_expression] = STATE(809), + [sym_field_expression] = STATE(877), + [sym_compound_literal_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(877), + [sym_initializer_list] = STATE(1875), + [sym_initializer_pair] = STATE(1875), + [sym_subscript_designator] = STATE(1666), + [sym_subscript_range_designator] = STATE(1666), + [sym_field_designator] = STATE(1666), + [sym_char_literal] = STATE(809), + [sym_concatenated_string] = STATE(809), + [sym_string_literal] = STATE(573), + [sym_null] = STATE(809), + [aux_sym_initializer_pair_repeat1] = STATE(1666), + [sym_identifier] = ACTIONS(2188), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = 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(1546), + [anon_sym_LBRACK] = ACTIONS(2194), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [anon_sym___alignof__] = ACTIONS(87), + [anon_sym___alignof] = ACTIONS(87), + [anon_sym__alignof] = ACTIONS(87), + [anon_sym_alignof] = ACTIONS(87), + [anon_sym__Alignof] = ACTIONS(87), + [anon_sym_offsetof] = ACTIONS(89), + [anon_sym__Generic] = ACTIONS(91), + [anon_sym_asm] = ACTIONS(93), + [anon_sym___asm__] = ACTIONS(93), + [anon_sym_DOT] = ACTIONS(2196), + [sym_number_literal] = ACTIONS(161), + [anon_sym_L_SQUOTE] = ACTIONS(97), + [anon_sym_u_SQUOTE] = ACTIONS(97), + [anon_sym_U_SQUOTE] = ACTIONS(97), + [anon_sym_u8_SQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(97), + [anon_sym_L_DQUOTE] = ACTIONS(99), + [anon_sym_u_DQUOTE] = ACTIONS(99), + [anon_sym_U_DQUOTE] = ACTIONS(99), + [anon_sym_u8_DQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(163), + [sym_false] = ACTIONS(163), + [anon_sym_NULL] = ACTIONS(103), + [anon_sym_nullptr] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + }, + [558] = { + [sym_preproc_def] = STATE(563), + [sym_preproc_function_def] = STATE(563), + [sym_preproc_call] = STATE(563), + [sym_preproc_if_in_field_declaration_list] = STATE(563), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(563), + [sym__declaration_modifiers] = STATE(855), + [sym__declaration_specifiers] = STATE(1352), + [sym_attribute_specifier] = STATE(855), + [sym_attribute_declaration] = STATE(855), + [sym_ms_declspec_modifier] = STATE(855), + [sym_storage_class_specifier] = STATE(855), + [sym_type_qualifier] = STATE(855), + [sym__type_specifier] = STATE(974), + [sym_sized_type_specifier] = STATE(1069), + [sym_enum_specifier] = STATE(1069), + [sym_struct_specifier] = STATE(1069), + [sym_union_specifier] = STATE(1069), + [sym__field_declaration_list_item] = STATE(563), + [sym_field_declaration] = STATE(563), + [sym_macro_type_specifier] = STATE(1069), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(563), + [aux_sym__declaration_specifiers_repeat1] = STATE(855), + [aux_sym_sized_type_specifier_repeat1] = STATE(1085), + [sym_identifier] = ACTIONS(2009), + [aux_sym_preproc_def_token1] = ACTIONS(2222), + [aux_sym_preproc_if_token1] = ACTIONS(2224), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2226), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2226), + [sym_preproc_directive] = ACTIONS(2228), + [anon_sym___extension__] = ACTIONS(51), + [anon_sym_extern] = ACTIONS(49), [anon_sym___attribute__] = ACTIONS(33), [anon_sym___scanf] = ACTIONS(35), [anon_sym___printf] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1301), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [sym_primitive_type] = ACTIONS(51), - [anon_sym_enum] = ACTIONS(53), - [anon_sym_struct] = ACTIONS(55), - [anon_sym_union] = ACTIONS(57), - [sym_comment] = ACTIONS(3), - }, - [553] = { - [sym_preproc_def] = STATE(557), - [sym_preproc_function_def] = STATE(557), - [sym_preproc_call] = STATE(557), - [sym_preproc_if_in_field_declaration_list] = STATE(557), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(557), - [sym_preproc_else_in_field_declaration_list] = STATE(1985), - [sym_preproc_elif_in_field_declaration_list] = STATE(1985), - [sym__declaration_modifiers] = STATE(861), - [sym__declaration_specifiers] = STATE(1452), - [sym_attribute_specifier] = STATE(861), - [sym_attribute_declaration] = STATE(861), - [sym_ms_declspec_modifier] = STATE(861), - [sym_storage_class_specifier] = STATE(861), - [sym_type_qualifier] = STATE(861), - [sym__type_specifier] = STATE(1040), - [sym_sized_type_specifier] = STATE(1106), - [sym_enum_specifier] = STATE(1106), - [sym_struct_specifier] = STATE(1106), - [sym_union_specifier] = STATE(1106), - [sym__field_declaration_list_item] = STATE(557), - [sym_field_declaration] = STATE(557), - [sym_macro_type_specifier] = STATE(1106), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(557), - [aux_sym__declaration_specifiers_repeat1] = STATE(861), - [aux_sym_sized_type_specifier_repeat1] = STATE(1113), - [sym_identifier] = ACTIONS(2046), - [aux_sym_preproc_def_token1] = ACTIONS(2114), - [aux_sym_preproc_if_token1] = ACTIONS(2116), - [aux_sym_preproc_if_token2] = ACTIONS(2188), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2120), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2120), - [aux_sym_preproc_else_token1] = ACTIONS(2056), - [aux_sym_preproc_elif_token1] = ACTIONS(2058), - [sym_preproc_directive] = ACTIONS(2122), - [anon_sym___extension__] = ACTIONS(49), - [anon_sym_extern] = ACTIONS(47), + [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(1312), + [anon_sym___declspec] = ACTIONS(41), + [anon_sym_RBRACE] = ACTIONS(2230), + [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), + [sym_primitive_type] = ACTIONS(53), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + }, + [559] = { + [sym_preproc_def] = STATE(562), + [sym_preproc_function_def] = STATE(562), + [sym_preproc_call] = STATE(562), + [sym_preproc_if_in_field_declaration_list] = STATE(562), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(562), + [sym__declaration_modifiers] = STATE(855), + [sym__declaration_specifiers] = STATE(1356), + [sym_attribute_specifier] = STATE(855), + [sym_attribute_declaration] = STATE(855), + [sym_ms_declspec_modifier] = STATE(855), + [sym_storage_class_specifier] = STATE(855), + [sym_type_qualifier] = STATE(855), + [sym__type_specifier] = STATE(974), + [sym_sized_type_specifier] = STATE(1069), + [sym_enum_specifier] = STATE(1069), + [sym_struct_specifier] = STATE(1069), + [sym_union_specifier] = STATE(1069), + [sym__field_declaration_list_item] = STATE(562), + [sym_field_declaration] = STATE(562), + [sym_macro_type_specifier] = STATE(1069), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(562), + [aux_sym__declaration_specifiers_repeat1] = STATE(855), + [aux_sym_sized_type_specifier_repeat1] = STATE(1085), + [sym_identifier] = ACTIONS(2009), + [aux_sym_preproc_def_token1] = ACTIONS(2232), + [aux_sym_preproc_if_token1] = ACTIONS(2234), + [aux_sym_preproc_if_token2] = ACTIONS(2236), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2238), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2238), + [sym_preproc_directive] = ACTIONS(2240), + [anon_sym___extension__] = ACTIONS(51), + [anon_sym_extern] = ACTIONS(49), [anon_sym___attribute__] = ACTIONS(33), [anon_sym___scanf] = ACTIONS(35), [anon_sym___printf] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1301), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [sym_primitive_type] = ACTIONS(51), - [anon_sym_enum] = ACTIONS(53), - [anon_sym_struct] = ACTIONS(55), - [anon_sym_union] = ACTIONS(57), - [sym_comment] = ACTIONS(3), - }, - [554] = { - [sym_preproc_def] = STATE(557), - [sym_preproc_function_def] = STATE(557), - [sym_preproc_call] = STATE(557), - [sym_preproc_if_in_field_declaration_list] = STATE(557), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(557), - [sym_preproc_else_in_field_declaration_list] = STATE(2161), - [sym_preproc_elif_in_field_declaration_list] = STATE(2161), - [sym__declaration_modifiers] = STATE(861), - [sym__declaration_specifiers] = STATE(1452), - [sym_attribute_specifier] = STATE(861), - [sym_attribute_declaration] = STATE(861), - [sym_ms_declspec_modifier] = STATE(861), - [sym_storage_class_specifier] = STATE(861), - [sym_type_qualifier] = STATE(861), - [sym__type_specifier] = STATE(1040), - [sym_sized_type_specifier] = STATE(1106), - [sym_enum_specifier] = STATE(1106), - [sym_struct_specifier] = STATE(1106), - [sym_union_specifier] = STATE(1106), - [sym__field_declaration_list_item] = STATE(557), - [sym_field_declaration] = STATE(557), - [sym_macro_type_specifier] = STATE(1106), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(557), - [aux_sym__declaration_specifiers_repeat1] = STATE(861), - [aux_sym_sized_type_specifier_repeat1] = STATE(1113), - [sym_identifier] = ACTIONS(2046), - [aux_sym_preproc_def_token1] = ACTIONS(2114), - [aux_sym_preproc_if_token1] = ACTIONS(2116), - [aux_sym_preproc_if_token2] = ACTIONS(2190), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2120), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2120), - [aux_sym_preproc_else_token1] = ACTIONS(2056), - [aux_sym_preproc_elif_token1] = ACTIONS(2058), - [sym_preproc_directive] = ACTIONS(2122), - [anon_sym___extension__] = ACTIONS(49), - [anon_sym_extern] = ACTIONS(47), + [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(1312), + [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), + [sym_primitive_type] = ACTIONS(53), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + }, + [560] = { + [sym_preproc_def] = STATE(560), + [sym_preproc_function_def] = STATE(560), + [sym_preproc_call] = STATE(560), + [sym_preproc_if_in_field_declaration_list] = STATE(560), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(560), + [sym__declaration_modifiers] = STATE(855), + [sym__declaration_specifiers] = STATE(1352), + [sym_attribute_specifier] = STATE(855), + [sym_attribute_declaration] = STATE(855), + [sym_ms_declspec_modifier] = STATE(855), + [sym_storage_class_specifier] = STATE(855), + [sym_type_qualifier] = STATE(855), + [sym__type_specifier] = STATE(974), + [sym_sized_type_specifier] = STATE(1069), + [sym_enum_specifier] = STATE(1069), + [sym_struct_specifier] = STATE(1069), + [sym_union_specifier] = STATE(1069), + [sym__field_declaration_list_item] = STATE(560), + [sym_field_declaration] = STATE(560), + [sym_macro_type_specifier] = STATE(1069), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(560), + [aux_sym__declaration_specifiers_repeat1] = STATE(855), + [aux_sym_sized_type_specifier_repeat1] = STATE(1085), + [sym_identifier] = ACTIONS(2087), + [aux_sym_preproc_def_token1] = ACTIONS(2242), + [aux_sym_preproc_if_token1] = ACTIONS(2245), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2248), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2248), + [sym_preproc_directive] = ACTIONS(2251), + [anon_sym___extension__] = ACTIONS(2104), + [anon_sym_extern] = ACTIONS(2107), + [anon_sym___attribute__] = ACTIONS(2110), + [anon_sym___scanf] = ACTIONS(2113), + [anon_sym___printf] = ACTIONS(2113), + [anon_sym___read_mostly] = ACTIONS(2116), + [anon_sym___must_hold] = ACTIONS(2110), + [anon_sym___ro_after_init] = ACTIONS(2116), + [anon_sym___init] = ACTIONS(2116), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2119), + [anon_sym___declspec] = ACTIONS(2122), + [anon_sym_RBRACE] = ACTIONS(2254), + [anon_sym_signed] = ACTIONS(2125), + [anon_sym_unsigned] = ACTIONS(2125), + [anon_sym_long] = ACTIONS(2125), + [anon_sym_short] = ACTIONS(2125), + [anon_sym_static] = ACTIONS(2107), + [anon_sym_auto] = ACTIONS(2107), + [anon_sym_register] = ACTIONS(2107), + [anon_sym_inline] = ACTIONS(2107), + [anon_sym___inline] = ACTIONS(2107), + [anon_sym___inline__] = ACTIONS(2107), + [anon_sym___forceinline] = ACTIONS(2107), + [anon_sym_thread_local] = ACTIONS(2107), + [anon_sym___thread] = ACTIONS(2107), + [anon_sym_const] = ACTIONS(2104), + [anon_sym_constexpr] = ACTIONS(2104), + [anon_sym_volatile] = ACTIONS(2104), + [anon_sym_restrict] = ACTIONS(2104), + [anon_sym___restrict__] = ACTIONS(2104), + [anon_sym__Atomic] = ACTIONS(2104), + [anon_sym__Noreturn] = ACTIONS(2104), + [anon_sym_noreturn] = ACTIONS(2104), + [sym_primitive_type] = ACTIONS(2128), + [anon_sym_enum] = ACTIONS(2131), + [anon_sym_struct] = ACTIONS(2134), + [anon_sym_union] = ACTIONS(2137), + [sym_comment] = ACTIONS(3), + }, + [561] = { + [sym_preproc_def] = STATE(561), + [sym_preproc_function_def] = STATE(561), + [sym_preproc_call] = STATE(561), + [sym_preproc_if_in_field_declaration_list] = STATE(561), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(561), + [sym__declaration_modifiers] = STATE(855), + [sym__declaration_specifiers] = STATE(1356), + [sym_attribute_specifier] = STATE(855), + [sym_attribute_declaration] = STATE(855), + [sym_ms_declspec_modifier] = STATE(855), + [sym_storage_class_specifier] = STATE(855), + [sym_type_qualifier] = STATE(855), + [sym__type_specifier] = STATE(974), + [sym_sized_type_specifier] = STATE(1069), + [sym_enum_specifier] = STATE(1069), + [sym_struct_specifier] = STATE(1069), + [sym_union_specifier] = STATE(1069), + [sym__field_declaration_list_item] = STATE(561), + [sym_field_declaration] = STATE(561), + [sym_macro_type_specifier] = STATE(1069), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(561), + [aux_sym__declaration_specifiers_repeat1] = STATE(855), + [aux_sym_sized_type_specifier_repeat1] = STATE(1085), + [sym_identifier] = ACTIONS(2087), + [aux_sym_preproc_def_token1] = ACTIONS(2256), + [aux_sym_preproc_if_token1] = ACTIONS(2259), + [aux_sym_preproc_if_token2] = ACTIONS(2096), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2262), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2262), + [sym_preproc_directive] = ACTIONS(2265), + [anon_sym___extension__] = ACTIONS(2104), + [anon_sym_extern] = ACTIONS(2107), + [anon_sym___attribute__] = ACTIONS(2110), + [anon_sym___scanf] = ACTIONS(2113), + [anon_sym___printf] = ACTIONS(2113), + [anon_sym___read_mostly] = ACTIONS(2116), + [anon_sym___must_hold] = ACTIONS(2110), + [anon_sym___ro_after_init] = ACTIONS(2116), + [anon_sym___init] = ACTIONS(2116), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2119), + [anon_sym___declspec] = ACTIONS(2122), + [anon_sym_signed] = ACTIONS(2125), + [anon_sym_unsigned] = ACTIONS(2125), + [anon_sym_long] = ACTIONS(2125), + [anon_sym_short] = ACTIONS(2125), + [anon_sym_static] = ACTIONS(2107), + [anon_sym_auto] = ACTIONS(2107), + [anon_sym_register] = ACTIONS(2107), + [anon_sym_inline] = ACTIONS(2107), + [anon_sym___inline] = ACTIONS(2107), + [anon_sym___inline__] = ACTIONS(2107), + [anon_sym___forceinline] = ACTIONS(2107), + [anon_sym_thread_local] = ACTIONS(2107), + [anon_sym___thread] = ACTIONS(2107), + [anon_sym_const] = ACTIONS(2104), + [anon_sym_constexpr] = ACTIONS(2104), + [anon_sym_volatile] = ACTIONS(2104), + [anon_sym_restrict] = ACTIONS(2104), + [anon_sym___restrict__] = ACTIONS(2104), + [anon_sym__Atomic] = ACTIONS(2104), + [anon_sym__Noreturn] = ACTIONS(2104), + [anon_sym_noreturn] = ACTIONS(2104), + [sym_primitive_type] = ACTIONS(2128), + [anon_sym_enum] = ACTIONS(2131), + [anon_sym_struct] = ACTIONS(2134), + [anon_sym_union] = ACTIONS(2137), + [sym_comment] = ACTIONS(3), + }, + [562] = { + [sym_preproc_def] = STATE(561), + [sym_preproc_function_def] = STATE(561), + [sym_preproc_call] = STATE(561), + [sym_preproc_if_in_field_declaration_list] = STATE(561), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(561), + [sym__declaration_modifiers] = STATE(855), + [sym__declaration_specifiers] = STATE(1356), + [sym_attribute_specifier] = STATE(855), + [sym_attribute_declaration] = STATE(855), + [sym_ms_declspec_modifier] = STATE(855), + [sym_storage_class_specifier] = STATE(855), + [sym_type_qualifier] = STATE(855), + [sym__type_specifier] = STATE(974), + [sym_sized_type_specifier] = STATE(1069), + [sym_enum_specifier] = STATE(1069), + [sym_struct_specifier] = STATE(1069), + [sym_union_specifier] = STATE(1069), + [sym__field_declaration_list_item] = STATE(561), + [sym_field_declaration] = STATE(561), + [sym_macro_type_specifier] = STATE(1069), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(561), + [aux_sym__declaration_specifiers_repeat1] = STATE(855), + [aux_sym_sized_type_specifier_repeat1] = STATE(1085), + [sym_identifier] = ACTIONS(2009), + [aux_sym_preproc_def_token1] = ACTIONS(2232), + [aux_sym_preproc_if_token1] = ACTIONS(2234), + [aux_sym_preproc_if_token2] = ACTIONS(2268), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2238), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2238), + [sym_preproc_directive] = ACTIONS(2240), + [anon_sym___extension__] = ACTIONS(51), + [anon_sym_extern] = ACTIONS(49), [anon_sym___attribute__] = ACTIONS(33), [anon_sym___scanf] = ACTIONS(35), [anon_sym___printf] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1301), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [sym_primitive_type] = ACTIONS(51), - [anon_sym_enum] = ACTIONS(53), - [anon_sym_struct] = ACTIONS(55), - [anon_sym_union] = ACTIONS(57), - [sym_comment] = ACTIONS(3), - }, - [555] = { - [sym_preproc_def] = STATE(553), - [sym_preproc_function_def] = STATE(553), - [sym_preproc_call] = STATE(553), - [sym_preproc_if_in_field_declaration_list] = STATE(553), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(553), - [sym_preproc_else_in_field_declaration_list] = STATE(1987), - [sym_preproc_elif_in_field_declaration_list] = STATE(1987), - [sym__declaration_modifiers] = STATE(861), - [sym__declaration_specifiers] = STATE(1452), - [sym_attribute_specifier] = STATE(861), - [sym_attribute_declaration] = STATE(861), - [sym_ms_declspec_modifier] = STATE(861), - [sym_storage_class_specifier] = STATE(861), - [sym_type_qualifier] = STATE(861), - [sym__type_specifier] = STATE(1040), - [sym_sized_type_specifier] = STATE(1106), - [sym_enum_specifier] = STATE(1106), - [sym_struct_specifier] = STATE(1106), - [sym_union_specifier] = STATE(1106), - [sym__field_declaration_list_item] = STATE(553), - [sym_field_declaration] = STATE(553), - [sym_macro_type_specifier] = STATE(1106), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(553), - [aux_sym__declaration_specifiers_repeat1] = STATE(861), - [aux_sym_sized_type_specifier_repeat1] = STATE(1113), - [sym_identifier] = ACTIONS(2046), - [aux_sym_preproc_def_token1] = ACTIONS(2114), - [aux_sym_preproc_if_token1] = ACTIONS(2116), - [aux_sym_preproc_if_token2] = ACTIONS(2192), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2120), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2120), - [aux_sym_preproc_else_token1] = ACTIONS(2056), - [aux_sym_preproc_elif_token1] = ACTIONS(2058), - [sym_preproc_directive] = ACTIONS(2122), - [anon_sym___extension__] = ACTIONS(49), - [anon_sym_extern] = ACTIONS(47), + [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(1312), + [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), + [sym_primitive_type] = ACTIONS(53), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + }, + [563] = { + [sym_preproc_def] = STATE(560), + [sym_preproc_function_def] = STATE(560), + [sym_preproc_call] = STATE(560), + [sym_preproc_if_in_field_declaration_list] = STATE(560), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(560), + [sym__declaration_modifiers] = STATE(855), + [sym__declaration_specifiers] = STATE(1352), + [sym_attribute_specifier] = STATE(855), + [sym_attribute_declaration] = STATE(855), + [sym_ms_declspec_modifier] = STATE(855), + [sym_storage_class_specifier] = STATE(855), + [sym_type_qualifier] = STATE(855), + [sym__type_specifier] = STATE(974), + [sym_sized_type_specifier] = STATE(1069), + [sym_enum_specifier] = STATE(1069), + [sym_struct_specifier] = STATE(1069), + [sym_union_specifier] = STATE(1069), + [sym__field_declaration_list_item] = STATE(560), + [sym_field_declaration] = STATE(560), + [sym_macro_type_specifier] = STATE(1069), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(560), + [aux_sym__declaration_specifiers_repeat1] = STATE(855), + [aux_sym_sized_type_specifier_repeat1] = STATE(1085), + [sym_identifier] = ACTIONS(2009), + [aux_sym_preproc_def_token1] = ACTIONS(2222), + [aux_sym_preproc_if_token1] = ACTIONS(2224), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2226), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2226), + [sym_preproc_directive] = ACTIONS(2228), + [anon_sym___extension__] = ACTIONS(51), + [anon_sym_extern] = ACTIONS(49), [anon_sym___attribute__] = ACTIONS(33), [anon_sym___scanf] = ACTIONS(35), [anon_sym___printf] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1301), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [sym_primitive_type] = ACTIONS(51), - [anon_sym_enum] = ACTIONS(53), - [anon_sym_struct] = ACTIONS(55), - [anon_sym_union] = ACTIONS(57), - [sym_comment] = ACTIONS(3), - }, - [556] = { - [sym_preproc_def] = STATE(549), - [sym_preproc_function_def] = STATE(549), - [sym_preproc_call] = STATE(549), - [sym_preproc_if_in_field_declaration_list] = STATE(549), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(549), - [sym_preproc_else_in_field_declaration_list] = STATE(2162), - [sym_preproc_elif_in_field_declaration_list] = STATE(2162), - [sym__declaration_modifiers] = STATE(861), - [sym__declaration_specifiers] = STATE(1452), - [sym_attribute_specifier] = STATE(861), - [sym_attribute_declaration] = STATE(861), - [sym_ms_declspec_modifier] = STATE(861), - [sym_storage_class_specifier] = STATE(861), - [sym_type_qualifier] = STATE(861), - [sym__type_specifier] = STATE(1040), - [sym_sized_type_specifier] = STATE(1106), - [sym_enum_specifier] = STATE(1106), - [sym_struct_specifier] = STATE(1106), - [sym_union_specifier] = STATE(1106), - [sym__field_declaration_list_item] = STATE(549), - [sym_field_declaration] = STATE(549), - [sym_macro_type_specifier] = STATE(1106), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(549), - [aux_sym__declaration_specifiers_repeat1] = STATE(861), - [aux_sym_sized_type_specifier_repeat1] = STATE(1113), - [sym_identifier] = ACTIONS(2046), - [aux_sym_preproc_def_token1] = ACTIONS(2114), - [aux_sym_preproc_if_token1] = ACTIONS(2116), - [aux_sym_preproc_if_token2] = ACTIONS(2194), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2120), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2120), - [aux_sym_preproc_else_token1] = ACTIONS(2056), - [aux_sym_preproc_elif_token1] = ACTIONS(2058), - [sym_preproc_directive] = ACTIONS(2122), - [anon_sym___extension__] = ACTIONS(49), - [anon_sym_extern] = ACTIONS(47), + [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(1312), + [anon_sym___declspec] = ACTIONS(41), + [anon_sym_RBRACE] = ACTIONS(2270), + [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), + [sym_primitive_type] = ACTIONS(53), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + }, + [564] = { + [sym__declaration_modifiers] = STATE(855), + [sym__declaration_specifiers] = STATE(1387), + [sym_attribute_specifier] = STATE(855), + [sym_attribute_declaration] = STATE(855), + [sym_ms_declspec_modifier] = STATE(855), + [sym__abstract_declarator] = STATE(1760), + [sym_abstract_parenthesized_declarator] = STATE(1701), + [sym_abstract_pointer_declarator] = STATE(1701), + [sym_abstract_function_declarator] = STATE(1701), + [sym_abstract_array_declarator] = STATE(1701), + [sym_storage_class_specifier] = STATE(855), + [sym_type_qualifier] = STATE(855), + [sym__type_specifier] = STATE(974), + [sym_sized_type_specifier] = STATE(1069), + [sym_enum_specifier] = STATE(1069), + [sym_struct_specifier] = STATE(1069), + [sym_union_specifier] = STATE(1069), + [sym_variadic_parameter] = STATE(1843), + [sym_parameter_list] = STATE(1704), + [sym_parameter_declaration] = STATE(1843), + [sym_macro_type_specifier] = STATE(1069), + [aux_sym__declaration_specifiers_repeat1] = STATE(855), + [aux_sym_sized_type_specifier_repeat1] = STATE(1085), + [sym_identifier] = ACTIONS(2009), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2037), + [anon_sym_RPAREN] = ACTIONS(2039), + [anon_sym_LPAREN2] = ACTIONS(2272), + [anon_sym_STAR] = ACTIONS(2274), + [anon_sym___extension__] = ACTIONS(51), + [anon_sym_extern] = ACTIONS(49), [anon_sym___attribute__] = ACTIONS(33), [anon_sym___scanf] = ACTIONS(35), [anon_sym___printf] = ACTIONS(35), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1301), - [anon_sym___declspec] = ACTIONS(39), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_static] = ACTIONS(47), - [anon_sym_auto] = ACTIONS(47), - [anon_sym_register] = ACTIONS(47), - [anon_sym_inline] = ACTIONS(47), - [anon_sym___inline] = ACTIONS(47), - [anon_sym___inline__] = ACTIONS(47), - [anon_sym___forceinline] = ACTIONS(47), - [anon_sym_thread_local] = ACTIONS(47), - [anon_sym___thread] = ACTIONS(47), - [anon_sym_const] = ACTIONS(49), - [anon_sym_constexpr] = ACTIONS(49), - [anon_sym_volatile] = ACTIONS(49), - [anon_sym_restrict] = ACTIONS(49), - [anon_sym___restrict__] = ACTIONS(49), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym__Noreturn] = ACTIONS(49), - [anon_sym_noreturn] = ACTIONS(49), - [sym_primitive_type] = ACTIONS(51), - [anon_sym_enum] = ACTIONS(53), - [anon_sym_struct] = ACTIONS(55), - [anon_sym_union] = ACTIONS(57), - [sym_comment] = ACTIONS(3), - }, - [557] = { - [sym_preproc_def] = STATE(557), - [sym_preproc_function_def] = STATE(557), - [sym_preproc_call] = STATE(557), - [sym_preproc_if_in_field_declaration_list] = STATE(557), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(557), - [sym__declaration_modifiers] = STATE(861), - [sym__declaration_specifiers] = STATE(1452), - [sym_attribute_specifier] = STATE(861), - [sym_attribute_declaration] = STATE(861), - [sym_ms_declspec_modifier] = STATE(861), - [sym_storage_class_specifier] = STATE(861), - [sym_type_qualifier] = STATE(861), - [sym__type_specifier] = STATE(1040), - [sym_sized_type_specifier] = STATE(1106), - [sym_enum_specifier] = STATE(1106), - [sym_struct_specifier] = STATE(1106), - [sym_union_specifier] = STATE(1106), - [sym__field_declaration_list_item] = STATE(557), - [sym_field_declaration] = STATE(557), - [sym_macro_type_specifier] = STATE(1106), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(557), - [aux_sym__declaration_specifiers_repeat1] = STATE(861), - [aux_sym_sized_type_specifier_repeat1] = STATE(1113), - [sym_identifier] = ACTIONS(2128), - [aux_sym_preproc_def_token1] = ACTIONS(2196), - [aux_sym_preproc_if_token1] = ACTIONS(2199), - [aux_sym_preproc_if_token2] = ACTIONS(2137), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2202), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2202), - [aux_sym_preproc_else_token1] = ACTIONS(2137), - [aux_sym_preproc_elif_token1] = ACTIONS(2137), - [sym_preproc_directive] = ACTIONS(2205), - [anon_sym___extension__] = ACTIONS(2145), - [anon_sym_extern] = ACTIONS(2148), - [anon_sym___attribute__] = ACTIONS(2151), - [anon_sym___scanf] = ACTIONS(2154), - [anon_sym___printf] = ACTIONS(2154), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2157), - [anon_sym___declspec] = ACTIONS(2160), - [anon_sym_signed] = ACTIONS(2163), - [anon_sym_unsigned] = ACTIONS(2163), - [anon_sym_long] = ACTIONS(2163), - [anon_sym_short] = ACTIONS(2163), - [anon_sym_static] = ACTIONS(2148), - [anon_sym_auto] = ACTIONS(2148), - [anon_sym_register] = ACTIONS(2148), - [anon_sym_inline] = ACTIONS(2148), - [anon_sym___inline] = ACTIONS(2148), - [anon_sym___inline__] = ACTIONS(2148), - [anon_sym___forceinline] = ACTIONS(2148), - [anon_sym_thread_local] = ACTIONS(2148), - [anon_sym___thread] = ACTIONS(2148), - [anon_sym_const] = ACTIONS(2145), - [anon_sym_constexpr] = ACTIONS(2145), - [anon_sym_volatile] = ACTIONS(2145), - [anon_sym_restrict] = ACTIONS(2145), - [anon_sym___restrict__] = ACTIONS(2145), - [anon_sym__Atomic] = ACTIONS(2145), - [anon_sym__Noreturn] = ACTIONS(2145), - [anon_sym_noreturn] = ACTIONS(2145), - [sym_primitive_type] = ACTIONS(2166), - [anon_sym_enum] = ACTIONS(2169), - [anon_sym_struct] = ACTIONS(2172), - [anon_sym_union] = ACTIONS(2175), + [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(1312), + [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_LBRACK] = ACTIONS(2047), + [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), + [sym_primitive_type] = ACTIONS(53), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), [sym_comment] = ACTIONS(3), }, }; static const uint16_t ts_small_parse_table[] = { - [0] = 24, + [0] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(39), 1, - anon_sym___declspec, - ACTIONS(51), 1, - sym_primitive_type, - ACTIONS(53), 1, - anon_sym_enum, - ACTIONS(55), 1, - anon_sym_struct, - ACTIONS(57), 1, - anon_sym_union, - ACTIONS(1301), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2046), 1, + ACTIONS(2276), 1, sym_identifier, - ACTIONS(2208), 1, - aux_sym_preproc_def_token1, - ACTIONS(2210), 1, - aux_sym_preproc_if_token1, - ACTIONS(2214), 1, - sym_preproc_directive, - ACTIONS(2216), 1, - anon_sym_RBRACE, - STATE(1040), 1, - sym__type_specifier, - STATE(1113), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1458), 1, - sym__declaration_specifiers, - ACTIONS(35), 2, - anon_sym___scanf, - anon_sym___printf, - ACTIONS(2212), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - ACTIONS(45), 4, + STATE(566), 2, + sym_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(99), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2280), 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, + anon_sym_DOT, + ACTIONS(2278), 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, + [77] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2282), 1, + sym_identifier, + STATE(566), 2, + sym_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(2289), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2287), 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, + anon_sym_DOT, + ACTIONS(2285), 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, + [154] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2292), 1, + sym_identifier, + STATE(565), 2, + sym_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(99), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2296), 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, + anon_sym_DOT, + ACTIONS(2294), 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, + [231] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(41), 1, + anon_sym___declspec, + ACTIONS(53), 1, + sym_primitive_type, + ACTIONS(55), 1, + anon_sym_enum, + ACTIONS(57), 1, + anon_sym_struct, + ACTIONS(59), 1, + anon_sym_union, + ACTIONS(1312), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2009), 1, + sym_identifier, + ACTIONS(2298), 1, + anon_sym_LBRACE, + STATE(851), 1, + sym_ms_call_modifier, + STATE(974), 1, + sym__type_specifier, + STATE(1085), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1547), 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, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___init, + STATE(209), 3, + sym_function_definition, + sym_declaration, + sym_declaration_list, + ACTIONS(47), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1106), 5, + STATE(1069), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(861), 7, + ACTIONS(43), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + STATE(855), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -75274,16 +78155,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - STATE(559), 8, - sym_preproc_def, - sym_preproc_function_def, - sym_preproc_call, - sym_preproc_if_in_field_declaration_list, - sym_preproc_ifdef_in_field_declaration_list, - sym__field_declaration_list_item, - sym_field_declaration, - aux_sym_preproc_if_in_field_declaration_list_repeat1, - ACTIONS(49), 9, + ACTIONS(51), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -75293,7 +78165,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(47), 10, + ACTIONS(49), 10, anon_sym_extern, anon_sym_static, anon_sym_auto, @@ -75304,57 +78176,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [112] = 24, + [342] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(39), 1, + ACTIONS(41), 1, anon_sym___declspec, - ACTIONS(51), 1, - sym_primitive_type, ACTIONS(53), 1, - anon_sym_enum, + sym_primitive_type, ACTIONS(55), 1, - anon_sym_struct, + anon_sym_enum, ACTIONS(57), 1, + anon_sym_struct, + ACTIONS(59), 1, anon_sym_union, - ACTIONS(1301), 1, + ACTIONS(1312), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2046), 1, + ACTIONS(2009), 1, sym_identifier, - ACTIONS(2208), 1, - aux_sym_preproc_def_token1, - ACTIONS(2210), 1, - aux_sym_preproc_if_token1, - ACTIONS(2214), 1, - sym_preproc_directive, - ACTIONS(2218), 1, - anon_sym_RBRACE, - STATE(1040), 1, + ACTIONS(2300), 1, + anon_sym_LBRACE, + STATE(849), 1, + sym_ms_call_modifier, + STATE(974), 1, sym__type_specifier, - STATE(1113), 1, + STATE(1085), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1458), 1, + STATE(1537), 1, sym__declaration_specifiers, + ACTIONS(33), 2, + anon_sym___attribute__, + anon_sym___must_hold, ACTIONS(35), 2, anon_sym___scanf, anon_sym___printf, - ACTIONS(2212), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - ACTIONS(45), 4, + ACTIONS(37), 3, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___init, + STATE(362), 3, + sym_function_definition, + sym_declaration, + sym_declaration_list, + ACTIONS(47), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1106), 5, + STATE(1069), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(861), 7, + ACTIONS(43), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + STATE(855), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -75362,16 +78243,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - STATE(561), 8, - sym_preproc_def, - sym_preproc_function_def, - sym_preproc_call, - sym_preproc_if_in_field_declaration_list, - sym_preproc_ifdef_in_field_declaration_list, - sym__field_declaration_list_item, - sym_field_declaration, - aux_sym_preproc_if_in_field_declaration_list_repeat1, - ACTIONS(49), 9, + ACTIONS(51), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -75381,7 +78253,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(47), 10, + ACTIONS(49), 10, anon_sym_extern, anon_sym_static, anon_sym_auto, @@ -75392,146 +78264,154 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [224] = 25, + [453] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(43), 1, - anon_sym_LBRACE, - ACTIONS(83), 1, - anon_sym_sizeof, - ACTIONS(87), 1, - anon_sym_offsetof, - ACTIONS(89), 1, - anon_sym__Generic, - ACTIONS(159), 1, - sym_number_literal, - ACTIONS(1926), 1, + ACTIONS(41), 1, + anon_sym___declspec, + ACTIONS(53), 1, + sym_primitive_type, + ACTIONS(55), 1, + anon_sym_enum, + ACTIONS(57), 1, + anon_sym_struct, + ACTIONS(59), 1, + anon_sym_union, + ACTIONS(1312), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2009), 1, sym_identifier, - ACTIONS(2220), 1, - anon_sym_RPAREN, - ACTIONS(2222), 1, + ACTIONS(2302), 1, + anon_sym_LBRACE, + STATE(847), 1, + sym_ms_call_modifier, + STATE(974), 1, + sym__type_specifier, + STATE(1085), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1542), 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, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___init, + STATE(142), 3, + sym_function_definition, + sym_declaration, + sym_declaration_list, + ACTIONS(47), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1069), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(43), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + STATE(855), 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__, - STATE(675), 1, - sym_string_literal, - STATE(1195), 1, - sym__expression, - STATE(1767), 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(81), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(91), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(101), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(161), 2, - sym_true, - sym_false, - ACTIONS(85), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(95), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(97), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(901), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(792), 16, - sym__expression_not_binary, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_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, - [338] = 24, + 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, + [564] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(2128), 1, - sym_identifier, - ACTIONS(2151), 1, - anon_sym___attribute__, - ACTIONS(2157), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2160), 1, + ACTIONS(41), 1, anon_sym___declspec, - ACTIONS(2166), 1, + ACTIONS(53), 1, sym_primitive_type, - ACTIONS(2169), 1, + ACTIONS(55), 1, anon_sym_enum, - ACTIONS(2172), 1, + ACTIONS(57), 1, anon_sym_struct, - ACTIONS(2175), 1, + ACTIONS(59), 1, anon_sym_union, - ACTIONS(2224), 1, - aux_sym_preproc_def_token1, - ACTIONS(2227), 1, - aux_sym_preproc_if_token1, - ACTIONS(2233), 1, - sym_preproc_directive, - ACTIONS(2236), 1, - anon_sym_RBRACE, - STATE(1040), 1, + ACTIONS(1312), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2009), 1, + sym_identifier, + ACTIONS(2304), 1, + anon_sym_LBRACE, + STATE(845), 1, + sym_ms_call_modifier, + STATE(974), 1, sym__type_specifier, - STATE(1113), 1, + STATE(1085), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1458), 1, + STATE(1548), 1, sym__declaration_specifiers, - ACTIONS(2154), 2, + ACTIONS(33), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(35), 2, anon_sym___scanf, anon_sym___printf, - ACTIONS(2230), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - ACTIONS(2163), 4, + ACTIONS(37), 3, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___init, + STATE(409), 3, + sym_function_definition, + sym_declaration, + sym_declaration_list, + ACTIONS(47), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1106), 5, + STATE(1069), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(861), 7, + ACTIONS(43), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + STATE(855), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -75539,16 +78419,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - STATE(561), 8, - sym_preproc_def, - sym_preproc_function_def, - sym_preproc_call, - sym_preproc_if_in_field_declaration_list, - sym_preproc_ifdef_in_field_declaration_list, - sym__field_declaration_list_item, - sym_field_declaration, - aux_sym_preproc_if_in_field_declaration_list_repeat1, - ACTIONS(2145), 9, + ACTIONS(51), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -75558,7 +78429,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(2148), 10, + ACTIONS(49), 10, anon_sym_extern, anon_sym_static, anon_sym_auto, @@ -75569,57 +78440,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [450] = 24, + [675] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(39), 1, + ACTIONS(41), 1, anon_sym___declspec, - ACTIONS(51), 1, - sym_primitive_type, ACTIONS(53), 1, - anon_sym_enum, + sym_primitive_type, ACTIONS(55), 1, - anon_sym_struct, + anon_sym_enum, ACTIONS(57), 1, + anon_sym_struct, + ACTIONS(59), 1, anon_sym_union, - ACTIONS(1301), 1, + ACTIONS(1312), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2046), 1, + ACTIONS(2009), 1, sym_identifier, - ACTIONS(2238), 1, - aux_sym_preproc_def_token1, - ACTIONS(2240), 1, - aux_sym_preproc_if_token1, - ACTIONS(2242), 1, - aux_sym_preproc_if_token2, - ACTIONS(2246), 1, - sym_preproc_directive, - STATE(1040), 1, + ACTIONS(2306), 1, + anon_sym_LBRACE, + STATE(842), 1, + sym_ms_call_modifier, + STATE(974), 1, sym__type_specifier, - STATE(1113), 1, + STATE(1085), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1460), 1, + STATE(1535), 1, sym__declaration_specifiers, + ACTIONS(33), 2, + anon_sym___attribute__, + anon_sym___must_hold, ACTIONS(35), 2, anon_sym___scanf, anon_sym___printf, - ACTIONS(2244), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - ACTIONS(45), 4, + ACTIONS(37), 3, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___init, + STATE(394), 3, + sym_function_definition, + sym_declaration, + sym_declaration_list, + ACTIONS(47), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1106), 5, + STATE(1069), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(861), 7, + ACTIONS(43), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + STATE(855), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -75627,16 +78507,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - STATE(564), 8, - sym_preproc_def, - sym_preproc_function_def, - sym_preproc_call, - sym_preproc_if_in_field_declaration_list, - sym_preproc_ifdef_in_field_declaration_list, - sym__field_declaration_list_item, - sym_field_declaration, - aux_sym_preproc_if_in_field_declaration_list_repeat1, - ACTIONS(49), 9, + ACTIONS(51), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -75646,7 +78517,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(47), 10, + ACTIONS(49), 10, anon_sym_extern, anon_sym_static, anon_sym_auto, @@ -75657,32 +78528,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [562] = 25, + [786] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(567), 1, + sym_string_literal, + ACTIONS(99), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(1973), 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___init, + anon_sym_EQ, + anon_sym_DOT, + sym_identifier, + ACTIONS(1967), 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, + [860] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(43), 1, + ACTIONS(45), 1, anon_sym_LBRACE, - ACTIONS(83), 1, + ACTIONS(85), 1, anon_sym_sizeof, - ACTIONS(87), 1, - anon_sym_offsetof, ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(159), 1, + ACTIONS(161), 1, sym_number_literal, - ACTIONS(1926), 1, + ACTIONS(1931), 1, sym_identifier, - ACTIONS(2248), 1, + ACTIONS(2308), 1, anon_sym_RPAREN, - ACTIONS(2250), 1, + ACTIONS(2310), 1, anon_sym___extension__, - STATE(675), 1, + STATE(573), 1, sym_string_literal, - STATE(1196), 1, + STATE(1219), 1, sym__expression, - STATE(1855), 1, + STATE(1868), 1, sym_compound_statement, ACTIONS(21), 2, anon_sym_BANG, @@ -75693,43 +78633,43 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(81), 2, + ACTIONS(83), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 2, + ACTIONS(93), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(101), 2, + ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(161), 2, + ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(85), 5, + ACTIONS(87), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(97), 5, + ACTIONS(99), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(901), 5, + STATE(877), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(792), 16, + STATE(809), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -75746,296 +78686,101 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [676] = 24, + [974] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(39), 1, - anon_sym___declspec, - ACTIONS(51), 1, - sym_primitive_type, - ACTIONS(53), 1, - anon_sym_enum, - ACTIONS(55), 1, - anon_sym_struct, - ACTIONS(57), 1, - anon_sym_union, - ACTIONS(1301), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2046), 1, - sym_identifier, - ACTIONS(2238), 1, - aux_sym_preproc_def_token1, - ACTIONS(2240), 1, - aux_sym_preproc_if_token1, - ACTIONS(2246), 1, - sym_preproc_directive, - ACTIONS(2252), 1, - aux_sym_preproc_if_token2, - STATE(1040), 1, - sym__type_specifier, - STATE(1113), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1460), 1, - sym__declaration_specifiers, - ACTIONS(35), 2, - anon_sym___scanf, - anon_sym___printf, - ACTIONS(2244), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - ACTIONS(45), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1106), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(861), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - STATE(565), 8, - sym_preproc_def, - sym_preproc_function_def, - sym_preproc_call, - sym_preproc_if_in_field_declaration_list, - sym_preproc_ifdef_in_field_declaration_list, - sym__field_declaration_list_item, - sym_field_declaration, - aux_sym_preproc_if_in_field_declaration_list_repeat1, - ACTIONS(49), 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(47), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - [788] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2128), 1, - sym_identifier, - ACTIONS(2137), 1, - aux_sym_preproc_if_token2, - ACTIONS(2151), 1, + STATE(567), 1, + sym_string_literal, + ACTIONS(99), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(1973), 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__, - ACTIONS(2157), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2160), 1, - anon_sym___declspec, - ACTIONS(2166), 1, - sym_primitive_type, - ACTIONS(2169), 1, - anon_sym_enum, - ACTIONS(2172), 1, - anon_sym_struct, - ACTIONS(2175), 1, - anon_sym_union, - ACTIONS(2254), 1, - aux_sym_preproc_def_token1, - ACTIONS(2257), 1, - aux_sym_preproc_if_token1, - ACTIONS(2263), 1, - sym_preproc_directive, - STATE(1040), 1, - sym__type_specifier, - STATE(1113), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1460), 1, - sym__declaration_specifiers, - ACTIONS(2154), 2, anon_sym___scanf, anon_sym___printf, - ACTIONS(2260), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - ACTIONS(2163), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1106), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(861), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - STATE(565), 8, - sym_preproc_def, - sym_preproc_function_def, - sym_preproc_call, - sym_preproc_if_in_field_declaration_list, - sym_preproc_ifdef_in_field_declaration_list, - sym__field_declaration_list_item, - sym_field_declaration, - aux_sym_preproc_if_in_field_declaration_list_repeat1, - ACTIONS(2145), 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(2148), 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, - [900] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(39), 1, - anon_sym___declspec, - ACTIONS(51), 1, - sym_primitive_type, - ACTIONS(53), 1, - anon_sym_enum, - ACTIONS(55), 1, - anon_sym_struct, - ACTIONS(57), 1, - anon_sym_union, - ACTIONS(1301), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2046), 1, + 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(2084), 1, + ACTIONS(1967), 33, anon_sym_DOT_DOT_DOT, - ACTIONS(2086), 1, + anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(2094), 1, - anon_sym_LBRACK, - ACTIONS(2266), 1, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, - ACTIONS(2268), 1, - anon_sym_STAR, - STATE(1040), 1, - sym__type_specifier, - STATE(1113), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1344), 1, - sym__declaration_specifiers, - STATE(1698), 1, - sym_parameter_list, - STATE(1723), 1, - sym__abstract_declarator, - ACTIONS(35), 2, - anon_sym___scanf, - anon_sym___printf, - STATE(1826), 2, - sym_variadic_parameter, - sym_parameter_declaration, - ACTIONS(45), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1701), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - STATE(1106), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(861), 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(49), 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(47), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - [1017] = 24, + 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, + [1048] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(43), 1, + ACTIONS(45), 1, anon_sym_LBRACE, - ACTIONS(83), 1, + ACTIONS(85), 1, anon_sym_sizeof, - ACTIONS(87), 1, - anon_sym_offsetof, ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(159), 1, + ACTIONS(161), 1, sym_number_literal, - ACTIONS(1926), 1, + ACTIONS(1931), 1, sym_identifier, - ACTIONS(2270), 1, + ACTIONS(2312), 1, + anon_sym_RPAREN, + ACTIONS(2314), 1, anon_sym___extension__, - STATE(675), 1, + STATE(573), 1, sym_string_literal, - STATE(1217), 1, + STATE(1220), 1, sym__expression, - STATE(1906), 1, + STATE(1800), 1, sym_compound_statement, ACTIONS(21), 2, anon_sym_BANG, @@ -76046,43 +78791,43 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(81), 2, + ACTIONS(83), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 2, + ACTIONS(93), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(101), 2, + ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(161), 2, + ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(85), 5, + ACTIONS(87), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(97), 5, + ACTIONS(99), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(901), 5, + STATE(877), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(792), 16, + STATE(809), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -76099,29 +78844,97 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [1128] = 23, + [1162] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2316), 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___init, + anon_sym_EQ, + anon_sym_DOT, + sym_identifier, + ACTIONS(2318), 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, + [1231] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(83), 1, + ACTIONS(45), 1, + anon_sym_LBRACE, + ACTIONS(85), 1, anon_sym_sizeof, - ACTIONS(87), 1, - anon_sym_offsetof, ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(159), 1, + ACTIONS(161), 1, sym_number_literal, - ACTIONS(1926), 1, + ACTIONS(1931), 1, sym_identifier, - ACTIONS(2272), 1, - anon_sym_SEMI, - STATE(675), 1, + ACTIONS(2320), 1, + anon_sym___extension__, + STATE(573), 1, sym_string_literal, - STATE(1242), 1, + STATE(1288), 1, sym__expression, - STATE(2212), 1, - sym_comma_expression, + STATE(1921), 1, + sym_compound_statement, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -76131,43 +78944,43 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(81), 2, + ACTIONS(83), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 2, + ACTIONS(93), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(101), 2, + ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(161), 2, + ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(85), 5, + ACTIONS(87), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(97), 5, + ACTIONS(99), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(901), 5, + STATE(877), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(792), 16, + STATE(809), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -76184,29 +78997,95 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [1236] = 23, + [1342] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2322), 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___init, + anon_sym_EQ, + anon_sym_DOT, + sym_identifier, + ACTIONS(2324), 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, + [1411] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(83), 1, + ACTIONS(85), 1, anon_sym_sizeof, - ACTIONS(87), 1, - anon_sym_offsetof, ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(159), 1, + ACTIONS(161), 1, sym_number_literal, - ACTIONS(1926), 1, + ACTIONS(1546), 1, + anon_sym_LBRACE, + ACTIONS(1931), 1, sym_identifier, - ACTIONS(2274), 1, - anon_sym_SEMI, - STATE(675), 1, + STATE(573), 1, sym_string_literal, - STATE(1226), 1, + STATE(1276), 1, sym__expression, - STATE(1974), 1, - sym_comma_expression, + STATE(1944), 1, + sym_initializer_list, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -76216,43 +79095,43 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(81), 2, + ACTIONS(83), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 2, + ACTIONS(93), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(101), 2, + ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(161), 2, + ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(85), 5, + ACTIONS(87), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(97), 5, + ACTIONS(99), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(901), 5, + STATE(877), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(792), 16, + STATE(809), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -76269,78 +79148,73 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [1344] = 23, + [1519] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(83), 1, + ACTIONS(1826), 1, + anon_sym_LBRACE, + ACTIONS(1828), 1, anon_sym_sizeof, - ACTIONS(87), 1, + ACTIONS(1832), 1, anon_sym_offsetof, - ACTIONS(89), 1, + ACTIONS(1834), 1, anon_sym__Generic, - ACTIONS(159), 1, + ACTIONS(1838), 1, sym_number_literal, - ACTIONS(1535), 1, - anon_sym_LBRACE, - ACTIONS(1926), 1, + ACTIONS(2326), 1, sym_identifier, - STATE(675), 1, + ACTIONS(2328), 1, + anon_sym_LPAREN2, + STATE(893), 1, sym_string_literal, - STATE(1252), 1, + STATE(1054), 1, sym__expression, - STATE(1919), 1, + STATE(1107), 1, sym_initializer_list, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(1822), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(81), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(91), 2, + ACTIONS(1824), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1836), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(101), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(161), 2, + ACTIONS(1844), 2, sym_true, sym_false, - ACTIONS(85), 5, + ACTIONS(1846), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(2330), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2332), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1830), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(95), 5, + ACTIONS(1840), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(97), 5, + ACTIONS(1842), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(901), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(792), 16, + STATE(1110), 21, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -76349,83 +79223,82 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [1452] = 23, + [1625] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, - anon_sym_offsetof, ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(159), 1, + ACTIONS(161), 1, sym_number_literal, - ACTIONS(1535), 1, + ACTIONS(1536), 1, + sym_identifier, + ACTIONS(1546), 1, anon_sym_LBRACE, - ACTIONS(1932), 1, + ACTIONS(1921), 1, anon_sym_sizeof, - ACTIONS(2276), 1, - sym_identifier, - ACTIONS(2278), 1, + ACTIONS(2334), 1, anon_sym_LPAREN2, - STATE(675), 1, + STATE(573), 1, sym_string_literal, - STATE(794), 1, + STATE(811), 1, sym_initializer_list, - STATE(843), 1, + STATE(1139), 1, sym__expression, - ACTIONS(91), 2, + ACTIONS(93), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(101), 2, + ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(161), 2, + ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(1928), 2, + ACTIONS(1917), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1930), 2, + ACTIONS(1919), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2280), 2, + ACTIONS(2077), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2282), 2, + ACTIONS(2336), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(85), 5, + ACTIONS(87), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(97), 5, + ACTIONS(99), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(913), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(792), 16, + STATE(809), 21, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -76434,372 +79307,168 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [1560] = 23, + [1731] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(83), 1, - anon_sym_sizeof, - ACTIONS(87), 1, - anon_sym_offsetof, - ACTIONS(89), 1, - anon_sym__Generic, - ACTIONS(159), 1, - sym_number_literal, - ACTIONS(1926), 1, - sym_identifier, - ACTIONS(2284), 1, - anon_sym_SEMI, - STATE(675), 1, - sym_string_literal, - STATE(1250), 1, - sym__expression, - STATE(2007), 1, - sym_comma_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(2338), 26, + 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(81), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(91), 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___init, + anon_sym_LBRACK, + anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - ACTIONS(101), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(161), 2, - sym_true, - sym_false, - ACTIONS(85), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(95), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(97), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(901), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(792), 16, - sym__expression_not_binary, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_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, - [1668] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(87), 1, - anon_sym_offsetof, - ACTIONS(89), 1, - anon_sym__Generic, - ACTIONS(159), 1, - sym_number_literal, - ACTIONS(1525), 1, + anon_sym_DOT, sym_identifier, - ACTIONS(1535), 1, - anon_sym_LBRACE, - ACTIONS(1543), 1, - anon_sym_sizeof, - ACTIONS(2286), 1, + ACTIONS(2340), 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, - STATE(675), 1, - sym_string_literal, - STATE(794), 1, - sym_initializer_list, - STATE(843), 1, - sym__expression, - ACTIONS(91), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(101), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(161), 2, - sym_true, - sym_false, - ACTIONS(1539), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1541), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2280), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2288), 2, + 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(85), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(95), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(97), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(792), 21, - sym__expression_not_binary, - sym_conditional_expression, - sym_assignment_expression, - sym_pointer_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_subscript_expression, - sym_call_expression, - sym_gnu_asm_expression, - sym_field_expression, - sym_compound_literal_expression, - sym_parenthesized_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [1774] = 22, + anon_sym_DASH_GT, + [1799] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, - anon_sym_offsetof, - ACTIONS(89), 1, - anon_sym__Generic, - ACTIONS(159), 1, - sym_number_literal, - ACTIONS(1525), 1, - sym_identifier, - ACTIONS(1535), 1, - anon_sym_LBRACE, - ACTIONS(1910), 1, - anon_sym_sizeof, - ACTIONS(2290), 1, - anon_sym_LPAREN2, - STATE(675), 1, - sym_string_literal, - STATE(794), 1, - sym_initializer_list, - STATE(1016), 1, - sym__expression, - ACTIONS(91), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(101), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(161), 2, - sym_true, - sym_false, - ACTIONS(1906), 2, + ACTIONS(2342), 26, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1908), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2002), 2, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(2292), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(85), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(95), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(97), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(792), 21, - sym__expression_not_binary, - sym_conditional_expression, - sym_assignment_expression, - sym_pointer_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_subscript_expression, - sym_call_expression, - sym_gnu_asm_expression, - sym_field_expression, - sym_compound_literal_expression, - sym_parenthesized_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [1880] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(83), 1, - anon_sym_sizeof, - ACTIONS(87), 1, - anon_sym_offsetof, - ACTIONS(89), 1, - anon_sym__Generic, - ACTIONS(159), 1, - sym_number_literal, - ACTIONS(1926), 1, + 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(2294), 1, + ACTIONS(2344), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_RPAREN, - STATE(675), 1, - sym_string_literal, - STATE(1249), 1, - sym__expression, - STATE(2191), 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(81), 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(91), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(101), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(161), 2, - sym_true, - sym_false, - ACTIONS(85), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(95), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(97), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(901), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(792), 16, - sym__expression_not_binary, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_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, - [1988] = 23, + anon_sym_DASH_GT, + [1867] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(83), 1, + ACTIONS(85), 1, anon_sym_sizeof, - ACTIONS(87), 1, - anon_sym_offsetof, ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(159), 1, + ACTIONS(161), 1, sym_number_literal, - ACTIONS(1535), 1, + ACTIONS(1546), 1, anon_sym_LBRACE, - ACTIONS(1926), 1, + ACTIONS(1931), 1, sym_identifier, - STATE(675), 1, + STATE(573), 1, sym_string_literal, - STATE(1263), 1, - sym__expression, - STATE(1887), 1, + STATE(811), 1, sym_initializer_list, + STATE(835), 1, + sym__expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -76809,43 +79478,43 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(81), 2, + ACTIONS(83), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 2, + ACTIONS(93), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(101), 2, + ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(161), 2, + ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(85), 5, + ACTIONS(87), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(97), 5, + ACTIONS(99), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(901), 5, + STATE(877), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(792), 16, + STATE(809), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -76862,28 +79531,28 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [2096] = 23, + [1975] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(83), 1, + ACTIONS(85), 1, anon_sym_sizeof, - ACTIONS(87), 1, - anon_sym_offsetof, ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(159), 1, + ACTIONS(161), 1, sym_number_literal, - ACTIONS(1926), 1, + ACTIONS(1931), 1, sym_identifier, - ACTIONS(2296), 1, - anon_sym_SEMI, - STATE(675), 1, + ACTIONS(2346), 1, + anon_sym_RPAREN, + STATE(573), 1, sym_string_literal, - STATE(1232), 1, + STATE(1279), 1, sym__expression, - STATE(2232), 1, + STATE(2156), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -76894,43 +79563,43 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(81), 2, + ACTIONS(83), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 2, + ACTIONS(93), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(101), 2, + ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(161), 2, + ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(85), 5, + ACTIONS(87), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(97), 5, + ACTIONS(99), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(901), 5, + STATE(877), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(792), 16, + STATE(809), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -76947,73 +79616,78 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [2204] = 22, + [2083] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, - anon_sym_offsetof, ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(159), 1, + ACTIONS(161), 1, sym_number_literal, - ACTIONS(1525), 1, - sym_identifier, - ACTIONS(1535), 1, + ACTIONS(1546), 1, anon_sym_LBRACE, - ACTIONS(1537), 1, + ACTIONS(1957), 1, anon_sym_sizeof, - ACTIONS(2298), 1, + ACTIONS(2348), 1, + sym_identifier, + ACTIONS(2350), 1, anon_sym_LPAREN2, - STATE(675), 1, + STATE(573), 1, sym_string_literal, - STATE(794), 1, + STATE(811), 1, sym_initializer_list, - STATE(843), 1, + STATE(835), 1, sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(91), 2, + ACTIONS(93), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(101), 2, + ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(161), 2, + ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(1529), 2, + ACTIONS(1953), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1531), 2, + ACTIONS(1955), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2300), 2, + ACTIONS(2352), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2354), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(85), 5, + ACTIONS(87), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(97), 5, + ACTIONS(99), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(792), 21, + STATE(1004), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(809), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -77022,82 +79696,83 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [2310] = 22, + [2191] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(1549), 1, + ACTIONS(1826), 1, anon_sym_LBRACE, - ACTIONS(1551), 1, - anon_sym_sizeof, - ACTIONS(1555), 1, + ACTIONS(1832), 1, anon_sym_offsetof, - ACTIONS(1557), 1, + ACTIONS(1834), 1, anon_sym__Generic, - ACTIONS(1561), 1, + ACTIONS(1838), 1, sym_number_literal, - ACTIONS(2302), 1, + ACTIONS(1963), 1, + anon_sym_sizeof, + ACTIONS(2356), 1, sym_identifier, - ACTIONS(2304), 1, + ACTIONS(2358), 1, anon_sym_LPAREN2, - STATE(859), 1, + STATE(893), 1, sym_string_literal, - STATE(936), 1, + STATE(1054), 1, sym__expression, - STATE(967), 1, + STATE(1107), 1, sym_initializer_list, - ACTIONS(1545), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1547), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1559), 2, + ACTIONS(1836), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1567), 2, + ACTIONS(1844), 2, sym_true, sym_false, - ACTIONS(1569), 2, + ACTIONS(1846), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(2306), 2, + ACTIONS(1959), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1961), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2330), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2308), 2, + ACTIONS(2360), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1553), 5, + ACTIONS(1830), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1563), 5, + ACTIONS(1840), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1565), 5, + ACTIONS(1842), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(963), 21, + STATE(1098), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(1110), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -77106,37 +79781,33 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [2416] = 23, + [2299] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(83), 1, + ACTIONS(85), 1, anon_sym_sizeof, - ACTIONS(87), 1, - anon_sym_offsetof, ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(159), 1, + ACTIONS(161), 1, sym_number_literal, - ACTIONS(1926), 1, + ACTIONS(1931), 1, sym_identifier, - ACTIONS(2310), 1, - anon_sym_SEMI, - STATE(675), 1, + ACTIONS(2362), 1, + anon_sym_RPAREN, + STATE(573), 1, sym_string_literal, - STATE(1238), 1, + STATE(1228), 1, sym__expression, - STATE(2234), 1, + STATE(2152), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -77147,43 +79818,43 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(81), 2, + ACTIONS(83), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 2, + ACTIONS(93), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(101), 2, + ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(161), 2, + ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(85), 5, + ACTIONS(87), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(97), 5, + ACTIONS(99), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(901), 5, + STATE(877), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(792), 16, + STATE(809), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -77200,114 +79871,94 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [2524] = 23, + [2407] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, - anon_sym_offsetof, - ACTIONS(89), 1, - anon_sym__Generic, - ACTIONS(159), 1, - sym_number_literal, - ACTIONS(1535), 1, - anon_sym_LBRACE, - ACTIONS(1954), 1, - sym_identifier, - ACTIONS(1960), 1, - anon_sym_sizeof, - ACTIONS(1998), 1, - anon_sym_LPAREN2, - STATE(675), 1, - sym_string_literal, - STATE(794), 1, - sym_initializer_list, - STATE(1016), 1, - sym__expression, - ACTIONS(91), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(101), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(161), 2, - sym_true, - sym_false, - ACTIONS(1956), 2, + ACTIONS(2364), 26, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1958), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2002), 2, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(2008), 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___init, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_DOT, + sym_identifier, + ACTIONS(2366), 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, - ACTIONS(85), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(95), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(97), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(1097), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(792), 16, - sym__expression_not_binary, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_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, - [2632] = 23, + anon_sym_DASH_GT, + [2475] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(83), 1, + ACTIONS(85), 1, anon_sym_sizeof, - ACTIONS(87), 1, - anon_sym_offsetof, ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(159), 1, + ACTIONS(161), 1, sym_number_literal, - ACTIONS(1926), 1, + ACTIONS(1546), 1, + anon_sym_LBRACE, + ACTIONS(1931), 1, sym_identifier, - ACTIONS(2312), 1, - anon_sym_RPAREN, - STATE(675), 1, + STATE(573), 1, sym_string_literal, - STATE(1231), 1, + STATE(1270), 1, sym__expression, - STATE(2171), 1, - sym_comma_expression, + STATE(1953), 1, + sym_initializer_list, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -77317,43 +79968,43 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(81), 2, + ACTIONS(83), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 2, + ACTIONS(93), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(101), 2, + ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(161), 2, + ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(85), 5, + ACTIONS(87), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(97), 5, + ACTIONS(99), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(901), 5, + STATE(877), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(792), 16, + STATE(809), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -77370,28 +80021,28 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [2740] = 23, + [2583] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(83), 1, + ACTIONS(85), 1, anon_sym_sizeof, - ACTIONS(87), 1, - anon_sym_offsetof, ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(159), 1, + ACTIONS(161), 1, sym_number_literal, - ACTIONS(1926), 1, + ACTIONS(1931), 1, sym_identifier, - ACTIONS(2314), 1, + ACTIONS(2368), 1, anon_sym_SEMI, - STATE(675), 1, + STATE(573), 1, sym_string_literal, - STATE(1261), 1, + STATE(1271), 1, sym__expression, - STATE(2089), 1, + STATE(2018), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -77402,43 +80053,43 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(81), 2, + ACTIONS(83), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 2, + ACTIONS(93), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(101), 2, + ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(161), 2, + ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(85), 5, + ACTIONS(87), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(97), 5, + ACTIONS(99), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(901), 5, + STATE(877), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(792), 16, + STATE(809), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -77455,113 +80106,223 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [2848] = 23, + [2691] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(83), 1, - anon_sym_sizeof, - ACTIONS(87), 1, - anon_sym_offsetof, - ACTIONS(89), 1, - anon_sym__Generic, - ACTIONS(159), 1, - sym_number_literal, - ACTIONS(1926), 1, - sym_identifier, - ACTIONS(2316), 1, - anon_sym_RPAREN, - STATE(675), 1, - sym_string_literal, - STATE(1257), 1, - sym__expression, - STATE(2213), 1, - sym_comma_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(2370), 26, + 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(81), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(91), 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___init, + anon_sym_LBRACK, + anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - ACTIONS(101), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(161), 2, - sym_true, - sym_false, - ACTIONS(85), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(95), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(97), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(901), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(792), 16, - sym__expression_not_binary, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_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, - [2956] = 23, + anon_sym_DOT, + sym_identifier, + ACTIONS(2372), 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, + [2759] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2374), 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(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_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, + [2827] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2378), 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(2380), 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, + [2895] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(83), 1, + ACTIONS(85), 1, anon_sym_sizeof, - ACTIONS(87), 1, - anon_sym_offsetof, ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(159), 1, + ACTIONS(161), 1, sym_number_literal, - ACTIONS(1926), 1, + ACTIONS(1931), 1, sym_identifier, - ACTIONS(2318), 1, - anon_sym_RPAREN, - STATE(675), 1, + ACTIONS(2382), 1, + anon_sym_SEMI, + STATE(573), 1, sym_string_literal, - STATE(1258), 1, + STATE(1265), 1, sym__expression, - STATE(2214), 1, + STATE(2041), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -77572,43 +80333,43 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(81), 2, + ACTIONS(83), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 2, + ACTIONS(93), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(101), 2, + ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(161), 2, + ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(85), 5, + ACTIONS(87), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(97), 5, + ACTIONS(99), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(901), 5, + STATE(877), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(792), 16, + STATE(809), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -77625,75 +80386,75 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [3064] = 23, + [3003] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(83), 1, - anon_sym_sizeof, - ACTIONS(87), 1, - anon_sym_offsetof, ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(159), 1, + ACTIONS(161), 1, sym_number_literal, - ACTIONS(1535), 1, + ACTIONS(1546), 1, anon_sym_LBRACE, - ACTIONS(1926), 1, + ACTIONS(1993), 1, sym_identifier, - STATE(675), 1, + ACTIONS(1999), 1, + anon_sym_sizeof, + ACTIONS(2073), 1, + anon_sym_LPAREN2, + STATE(573), 1, sym_string_literal, - STATE(1248), 1, - sym__expression, - STATE(1898), 1, + STATE(811), 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(81), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(91), 2, + STATE(1139), 1, + sym__expression, + ACTIONS(93), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(101), 2, + ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(161), 2, + ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(85), 5, + ACTIONS(1995), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1997), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2077), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2083), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(87), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(97), 5, + ACTIONS(99), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(901), 5, + STATE(1154), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(792), 16, + STATE(809), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -77710,28 +80471,28 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [3172] = 23, + [3111] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(83), 1, + ACTIONS(85), 1, anon_sym_sizeof, - ACTIONS(87), 1, - anon_sym_offsetof, ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(159), 1, + ACTIONS(161), 1, sym_number_literal, - ACTIONS(1926), 1, + ACTIONS(1931), 1, sym_identifier, - ACTIONS(2320), 1, + ACTIONS(2384), 1, anon_sym_RPAREN, - STATE(675), 1, + STATE(573), 1, sym_string_literal, - STATE(1243), 1, + STATE(1281), 1, sym__expression, - STATE(2193), 1, + STATE(2160), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -77742,43 +80503,43 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(81), 2, + ACTIONS(83), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 2, + ACTIONS(93), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(101), 2, + ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(161), 2, + ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(85), 5, + ACTIONS(87), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(97), 5, + ACTIONS(99), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(901), 5, + STATE(877), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(792), 16, + STATE(809), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -77795,28 +80556,28 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [3280] = 23, + [3219] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(83), 1, + ACTIONS(85), 1, anon_sym_sizeof, - ACTIONS(87), 1, - anon_sym_offsetof, ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(159), 1, + ACTIONS(161), 1, sym_number_literal, - ACTIONS(1926), 1, + ACTIONS(1931), 1, sym_identifier, - ACTIONS(2322), 1, - anon_sym_RPAREN, - STATE(675), 1, + ACTIONS(2386), 1, + anon_sym_SEMI, + STATE(573), 1, sym_string_literal, - STATE(1245), 1, + STATE(1266), 1, sym__expression, - STATE(2192), 1, + STATE(2032), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -77827,43 +80588,43 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(81), 2, + ACTIONS(83), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 2, + ACTIONS(93), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(101), 2, + ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(161), 2, + ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(85), 5, + ACTIONS(87), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(97), 5, + ACTIONS(99), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(901), 5, + STATE(877), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(792), 16, + STATE(809), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -77880,29 +80641,94 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [3388] = 23, + [3327] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2388), 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(2390), 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, + [3395] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(83), 1, + ACTIONS(85), 1, anon_sym_sizeof, - ACTIONS(87), 1, - anon_sym_offsetof, ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(159), 1, + ACTIONS(161), 1, sym_number_literal, - ACTIONS(1535), 1, - anon_sym_LBRACE, - ACTIONS(1926), 1, + ACTIONS(1931), 1, sym_identifier, - STATE(675), 1, + ACTIONS(2392), 1, + anon_sym_SEMI, + STATE(573), 1, sym_string_literal, - STATE(794), 1, - sym_initializer_list, - STATE(843), 1, + STATE(1278), 1, sym__expression, + STATE(2158), 1, + sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -77912,43 +80738,43 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(81), 2, + ACTIONS(83), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 2, + ACTIONS(93), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(101), 2, + ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(161), 2, + ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(85), 5, + ACTIONS(87), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(97), 5, + ACTIONS(99), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(901), 5, + STATE(877), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(792), 16, + STATE(809), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -77965,75 +80791,75 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [3496] = 23, + [3503] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(1549), 1, - anon_sym_LBRACE, - ACTIONS(1555), 1, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(85), 1, + anon_sym_sizeof, + ACTIONS(89), 1, anon_sym_offsetof, - ACTIONS(1557), 1, + ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(1561), 1, + ACTIONS(161), 1, sym_number_literal, - ACTIONS(1940), 1, - anon_sym_sizeof, - ACTIONS(2324), 1, + ACTIONS(1931), 1, sym_identifier, - ACTIONS(2326), 1, - anon_sym_LPAREN2, - STATE(859), 1, + ACTIONS(2394), 1, + anon_sym_SEMI, + STATE(573), 1, sym_string_literal, - STATE(936), 1, + STATE(1264), 1, sym__expression, - STATE(967), 1, - sym_initializer_list, - ACTIONS(1559), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(1567), 2, - sym_true, - sym_false, - ACTIONS(1569), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(1936), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1938), 2, + STATE(2107), 1, + sym_comma_expression, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2306), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2328), 2, + ACTIONS(83), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1553), 5, + ACTIONS(93), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(103), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(163), 2, + sym_true, + sym_false, + ACTIONS(87), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1563), 5, + ACTIONS(97), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1565), 5, + ACTIONS(99), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(954), 5, + STATE(877), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(963), 16, + STATE(809), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -78050,78 +80876,73 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [3604] = 23, + [3611] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(83), 1, - anon_sym_sizeof, - ACTIONS(87), 1, - anon_sym_offsetof, ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(159), 1, + ACTIONS(161), 1, sym_number_literal, - ACTIONS(1926), 1, + ACTIONS(1536), 1, sym_identifier, - ACTIONS(2330), 1, - anon_sym_SEMI, - STATE(675), 1, + ACTIONS(1546), 1, + anon_sym_LBRACE, + ACTIONS(1562), 1, + anon_sym_sizeof, + ACTIONS(2396), 1, + anon_sym_LPAREN2, + STATE(573), 1, sym_string_literal, - STATE(1203), 1, + STATE(811), 1, + sym_initializer_list, + STATE(835), 1, sym__expression, - STATE(1994), 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(81), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(91), 2, + ACTIONS(93), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(101), 2, + ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(161), 2, + ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(85), 5, + ACTIONS(1558), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1560), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2352), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2398), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(87), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(97), 5, + ACTIONS(99), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(901), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(792), 16, + STATE(809), 21, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -78130,33 +80951,37 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [3712] = 23, + [3717] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(83), 1, + ACTIONS(85), 1, anon_sym_sizeof, - ACTIONS(87), 1, - anon_sym_offsetof, ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(159), 1, + ACTIONS(161), 1, sym_number_literal, - ACTIONS(1926), 1, + ACTIONS(1931), 1, sym_identifier, - ACTIONS(2332), 1, - anon_sym_SEMI, - STATE(675), 1, + ACTIONS(2400), 1, + anon_sym_RPAREN, + STATE(573), 1, sym_string_literal, - STATE(1235), 1, + STATE(1285), 1, sym__expression, - STATE(2114), 1, + STATE(2046), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -78167,43 +80992,43 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(81), 2, + ACTIONS(83), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 2, + ACTIONS(93), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(101), 2, + ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(161), 2, + ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(85), 5, + ACTIONS(87), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(97), 5, + ACTIONS(99), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(901), 5, + STATE(877), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(792), 16, + STATE(809), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -78220,21 +81045,10 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [3820] = 6, + [3825] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2334), 1, - sym_identifier, - STATE(593), 2, - sym_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(2341), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2339), 18, + ACTIONS(2402), 26, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -78251,9 +81065,17 @@ static const uint16_t ts_small_parse_table[] = { 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, - ACTIONS(2337), 33, + sym_identifier, + ACTIONS(2404), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -78269,8 +81091,74 @@ 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_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, + [3893] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2406), 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(2408), 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, @@ -78287,71 +81175,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [3893] = 21, + [3961] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, - anon_sym_offsetof, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(85), 1, + anon_sym_sizeof, ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(159), 1, + ACTIONS(161), 1, sym_number_literal, - ACTIONS(1525), 1, + ACTIONS(1931), 1, sym_identifier, - ACTIONS(1910), 1, - anon_sym_sizeof, - ACTIONS(2290), 1, - anon_sym_LPAREN2, - ACTIONS(2344), 1, - anon_sym_RBRACK, - STATE(675), 1, + ACTIONS(2410), 1, + anon_sym_SEMI, + STATE(573), 1, sym_string_literal, - STATE(1064), 1, + STATE(1250), 1, sym__expression, - ACTIONS(91), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(101), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(161), 2, - sym_true, - sym_false, - ACTIONS(1906), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1908), 2, + STATE(2232), 1, + sym_comma_expression, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2002), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2292), 2, + ACTIONS(83), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(85), 5, + ACTIONS(93), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(103), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(163), 2, + sym_true, + sym_false, + ACTIONS(87), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(97), 5, + ACTIONS(99), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(792), 21, + STATE(877), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(809), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -78360,36 +81255,34 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [3996] = 22, + [4069] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(83), 1, + ACTIONS(85), 1, anon_sym_sizeof, - ACTIONS(87), 1, - anon_sym_offsetof, ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(159), 1, + ACTIONS(161), 1, sym_number_literal, - ACTIONS(1926), 1, + ACTIONS(1931), 1, sym_identifier, - ACTIONS(2346), 1, - anon_sym_COLON, - STATE(675), 1, + ACTIONS(2412), 1, + anon_sym_RPAREN, + STATE(573), 1, sym_string_literal, - STATE(1289), 1, + STATE(1268), 1, sym__expression, + STATE(2224), 1, + sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -78399,43 +81292,43 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(81), 2, + ACTIONS(83), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 2, + ACTIONS(93), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(101), 2, + ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(161), 2, + ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(85), 5, + ACTIONS(87), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(97), 5, + ACTIONS(99), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(901), 5, + STATE(877), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(792), 16, + STATE(809), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -78452,27 +81345,29 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [4101] = 22, + [4177] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(83), 1, + ACTIONS(85), 1, anon_sym_sizeof, - ACTIONS(87), 1, - anon_sym_offsetof, ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(159), 1, + ACTIONS(161), 1, sym_number_literal, - ACTIONS(1926), 1, + ACTIONS(1931), 1, sym_identifier, - ACTIONS(2348), 1, - anon_sym_COLON, - STATE(675), 1, + ACTIONS(2414), 1, + anon_sym_SEMI, + STATE(573), 1, sym_string_literal, - STATE(1303), 1, + STATE(1287), 1, sym__expression, + STATE(2048), 1, + sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -78482,43 +81377,43 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(81), 2, + ACTIONS(83), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 2, + ACTIONS(93), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(101), 2, + ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(161), 2, + ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(85), 5, + ACTIONS(87), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(97), 5, + ACTIONS(99), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(901), 5, + STATE(877), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(792), 16, + STATE(809), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -78535,71 +81430,163 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [4206] = 21, + [4285] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, - anon_sym_offsetof, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(85), 1, + anon_sym_sizeof, ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(159), 1, + ACTIONS(161), 1, sym_number_literal, - ACTIONS(1525), 1, + ACTIONS(1546), 1, + anon_sym_LBRACE, + ACTIONS(1931), 1, sym_identifier, - ACTIONS(1910), 1, - anon_sym_sizeof, - ACTIONS(2290), 1, - anon_sym_LPAREN2, - ACTIONS(2350), 1, - anon_sym_RBRACK, - STATE(675), 1, + STATE(573), 1, sym_string_literal, - STATE(1064), 1, + STATE(1275), 1, sym__expression, - ACTIONS(91), 2, + STATE(1947), 1, + sym_initializer_list, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(83), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(93), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(101), 2, + ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(161), 2, + ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(1906), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1908), 2, + ACTIONS(87), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(97), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(99), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(877), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(809), 16, + sym__expression_not_binary, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_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, + [4393] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(85), 1, + anon_sym_sizeof, + ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, + anon_sym__Generic, + ACTIONS(161), 1, + sym_number_literal, + ACTIONS(1931), 1, + sym_identifier, + ACTIONS(2416), 1, + anon_sym_RPAREN, + STATE(573), 1, + sym_string_literal, + STATE(1283), 1, + sym__expression, + STATE(2009), 1, + sym_comma_expression, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2002), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2292), 2, + ACTIONS(83), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(85), 5, + ACTIONS(93), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(103), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(163), 2, + sym_true, + sym_false, + ACTIONS(87), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(97), 5, + ACTIONS(99), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(792), 21, + STATE(877), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(809), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -78608,119 +81595,34 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [4309] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(39), 1, - anon_sym___declspec, - ACTIONS(51), 1, - sym_primitive_type, - ACTIONS(53), 1, - anon_sym_enum, - ACTIONS(55), 1, - anon_sym_struct, - ACTIONS(57), 1, - anon_sym_union, - ACTIONS(1301), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2046), 1, - sym_identifier, - ACTIONS(2352), 1, - anon_sym_LBRACE, - STATE(858), 1, - sym_ms_call_modifier, - STATE(1040), 1, - sym__type_specifier, - STATE(1113), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1512), 1, - sym__declaration_specifiers, - ACTIONS(35), 2, - anon_sym___scanf, - anon_sym___printf, - STATE(468), 3, - sym_function_definition, - sym_declaration, - sym_declaration_list, - ACTIONS(45), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1106), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(41), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - STATE(861), 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(49), 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(47), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - [4414] = 22, + [4501] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(83), 1, + ACTIONS(85), 1, anon_sym_sizeof, - ACTIONS(87), 1, - anon_sym_offsetof, ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(159), 1, + ACTIONS(161), 1, sym_number_literal, - ACTIONS(1926), 1, + ACTIONS(1931), 1, sym_identifier, - ACTIONS(2354), 1, - anon_sym_COLON, - STATE(675), 1, + ACTIONS(2418), 1, + anon_sym_SEMI, + STATE(573), 1, sym_string_literal, - STATE(1300), 1, + STATE(1251), 1, sym__expression, + STATE(2173), 1, + sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -78730,43 +81632,43 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(81), 2, + ACTIONS(83), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 2, + ACTIONS(93), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(101), 2, + ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(161), 2, + ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(85), 5, + ACTIONS(87), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(97), 5, + ACTIONS(99), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(901), 5, + STATE(877), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(792), 16, + STATE(809), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -78783,67 +81685,69 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [4519] = 21, + [4609] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, - anon_sym_offsetof, ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(159), 1, + ACTIONS(161), 1, sym_number_literal, - ACTIONS(1525), 1, + ACTIONS(1536), 1, sym_identifier, - ACTIONS(1910), 1, + ACTIONS(1546), 1, + anon_sym_LBRACE, + ACTIONS(1548), 1, anon_sym_sizeof, - ACTIONS(2290), 1, + ACTIONS(2420), 1, anon_sym_LPAREN2, - ACTIONS(2356), 1, - anon_sym_RBRACK, - STATE(675), 1, + STATE(573), 1, sym_string_literal, - STATE(1064), 1, + STATE(811), 1, + sym_initializer_list, + STATE(835), 1, sym__expression, - ACTIONS(91), 2, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(93), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(101), 2, + ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(161), 2, + ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(1906), 2, + ACTIONS(1540), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1908), 2, + ACTIONS(1542), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2002), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2292), 2, + ACTIONS(2422), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(85), 5, + ACTIONS(87), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(97), 5, + ACTIONS(99), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(792), 21, + STATE(809), 21, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -78865,109 +81769,173 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [4622] = 22, + [4715] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, + ACTIONS(2424), 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__, - ACTIONS(39), 1, - anon_sym___declspec, - ACTIONS(51), 1, - sym_primitive_type, - ACTIONS(53), 1, - anon_sym_enum, - ACTIONS(55), 1, - anon_sym_struct, - ACTIONS(57), 1, - anon_sym_union, - ACTIONS(1301), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2046), 1, - sym_identifier, - ACTIONS(2358), 1, - anon_sym_LBRACE, - STATE(849), 1, - sym_ms_call_modifier, - STATE(1040), 1, - sym__type_specifier, - STATE(1113), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1503), 1, - sym__declaration_specifiers, - ACTIONS(35), 2, anon_sym___scanf, anon_sym___printf, - STATE(210), 3, - sym_function_definition, - sym_declaration, - sym_declaration_list, - ACTIONS(45), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1106), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(41), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - STATE(861), 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(49), 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(47), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - [4727] = 22, + 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(2426), 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, + [4783] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, + anon_sym__Generic, + ACTIONS(161), 1, + sym_number_literal, + ACTIONS(1536), 1, + sym_identifier, + ACTIONS(1921), 1, + anon_sym_sizeof, + ACTIONS(2334), 1, + anon_sym_LPAREN2, + ACTIONS(2428), 1, + anon_sym_RBRACK, + STATE(573), 1, + sym_string_literal, + STATE(1138), 1, + sym__expression, + ACTIONS(93), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(103), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(163), 2, + sym_true, + sym_false, + ACTIONS(1917), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1919), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2077), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2336), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(87), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(97), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(99), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(809), 21, + sym__expression_not_binary, + sym_conditional_expression, + sym_assignment_expression, + sym_pointer_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_subscript_expression, + sym_call_expression, + sym_gnu_asm_expression, + sym_field_expression, + sym_compound_literal_expression, + sym_parenthesized_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [4886] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(83), 1, + ACTIONS(85), 1, anon_sym_sizeof, - ACTIONS(87), 1, - anon_sym_offsetof, ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(159), 1, + ACTIONS(161), 1, sym_number_literal, - ACTIONS(1926), 1, + ACTIONS(1931), 1, sym_identifier, - STATE(675), 1, + STATE(573), 1, sym_string_literal, - STATE(1259), 1, + STATE(1255), 1, sym__expression, - STATE(2093), 1, + STATE(2141), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -78978,43 +81946,43 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(81), 2, + ACTIONS(83), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 2, + ACTIONS(93), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(101), 2, + ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(161), 2, + ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(85), 5, + ACTIONS(87), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(97), 5, + ACTIONS(99), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(901), 5, + STATE(877), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(792), 16, + STATE(809), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -79031,67 +81999,67 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [4832] = 21, + [4991] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, - anon_sym_offsetof, ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(159), 1, + ACTIONS(161), 1, sym_number_literal, - ACTIONS(1525), 1, + ACTIONS(1536), 1, sym_identifier, - ACTIONS(1910), 1, + ACTIONS(1921), 1, anon_sym_sizeof, - ACTIONS(2290), 1, + ACTIONS(2334), 1, anon_sym_LPAREN2, - ACTIONS(2360), 1, + ACTIONS(2430), 1, anon_sym_RBRACK, - STATE(675), 1, + STATE(573), 1, sym_string_literal, - STATE(1064), 1, + STATE(1138), 1, sym__expression, - ACTIONS(91), 2, + ACTIONS(93), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(101), 2, + ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(161), 2, + ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(1906), 2, + ACTIONS(1917), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1908), 2, + ACTIONS(1919), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2002), 2, + ACTIONS(2077), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2292), 2, + ACTIONS(2336), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(85), 5, + ACTIONS(87), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(97), 5, + ACTIONS(99), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(792), 21, + STATE(809), 21, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -79113,71 +82081,76 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [4935] = 21, + [5094] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, - anon_sym_offsetof, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(85), 1, + anon_sym_sizeof, ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(159), 1, + ACTIONS(161), 1, sym_number_literal, - ACTIONS(1525), 1, + ACTIONS(1931), 1, sym_identifier, - ACTIONS(1910), 1, - anon_sym_sizeof, - ACTIONS(2290), 1, - anon_sym_LPAREN2, - ACTIONS(2362), 1, - anon_sym_RBRACK, - STATE(675), 1, + ACTIONS(2432), 1, + anon_sym_COLON, + STATE(573), 1, sym_string_literal, - STATE(1064), 1, + STATE(1322), 1, sym__expression, - ACTIONS(91), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(101), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(161), 2, - sym_true, - sym_false, - ACTIONS(1906), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1908), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2002), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2292), 2, + ACTIONS(83), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(85), 5, + ACTIONS(93), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(103), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(163), 2, + sym_true, + sym_false, + ACTIONS(87), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(97), 5, + ACTIONS(99), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(792), 21, + STATE(877), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(809), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -79186,76 +82159,72 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [5038] = 21, + [5199] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, - anon_sym_offsetof, ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(159), 1, + ACTIONS(161), 1, sym_number_literal, - ACTIONS(1525), 1, + ACTIONS(1536), 1, sym_identifier, - ACTIONS(1910), 1, + ACTIONS(1921), 1, anon_sym_sizeof, - ACTIONS(2290), 1, + ACTIONS(2334), 1, anon_sym_LPAREN2, - ACTIONS(2364), 1, + ACTIONS(2434), 1, anon_sym_RBRACK, - STATE(675), 1, + STATE(573), 1, sym_string_literal, - STATE(1064), 1, + STATE(1138), 1, sym__expression, - ACTIONS(91), 2, + ACTIONS(93), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(101), 2, + ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(161), 2, + ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(1906), 2, + ACTIONS(1917), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1908), 2, + ACTIONS(1919), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2002), 2, + ACTIONS(2077), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2292), 2, + ACTIONS(2336), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(85), 5, + ACTIONS(87), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(97), 5, + ACTIONS(99), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(792), 21, + STATE(809), 21, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -79277,26 +82246,26 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [5141] = 22, + [5302] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(83), 1, + ACTIONS(85), 1, anon_sym_sizeof, - ACTIONS(87), 1, - anon_sym_offsetof, ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(159), 1, + ACTIONS(161), 1, sym_number_literal, - ACTIONS(1926), 1, + ACTIONS(1931), 1, sym_identifier, - ACTIONS(2366), 1, + ACTIONS(2436), 1, anon_sym_COLON, - STATE(675), 1, + STATE(573), 1, sym_string_literal, - STATE(1290), 1, + STATE(1297), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -79307,43 +82276,43 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(81), 2, + ACTIONS(83), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 2, + ACTIONS(93), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(101), 2, + ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(161), 2, + ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(85), 5, + ACTIONS(87), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(97), 5, + ACTIONS(99), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(901), 5, + STATE(877), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(792), 16, + STATE(809), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -79360,76 +82329,71 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [5246] = 22, + [5407] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(83), 1, - anon_sym_sizeof, - ACTIONS(87), 1, - anon_sym_offsetof, ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(159), 1, + ACTIONS(161), 1, sym_number_literal, - ACTIONS(1926), 1, + ACTIONS(1536), 1, sym_identifier, - STATE(675), 1, + ACTIONS(1921), 1, + anon_sym_sizeof, + ACTIONS(2334), 1, + anon_sym_LPAREN2, + ACTIONS(2438), 1, + anon_sym_RBRACK, + STATE(573), 1, sym_string_literal, - STATE(1198), 1, + STATE(1138), 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(81), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(91), 2, + ACTIONS(93), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(101), 2, + ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(161), 2, + ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(85), 5, + ACTIONS(1917), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1919), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2077), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2336), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(87), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(97), 5, + ACTIONS(99), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(901), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(792), 16, + STATE(809), 21, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -79438,72 +82402,76 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [5351] = 21, + [5510] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, - anon_sym_offsetof, ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(159), 1, + ACTIONS(161), 1, sym_number_literal, - ACTIONS(1525), 1, + ACTIONS(1536), 1, sym_identifier, - ACTIONS(1910), 1, + ACTIONS(1921), 1, anon_sym_sizeof, - ACTIONS(2290), 1, + ACTIONS(2334), 1, anon_sym_LPAREN2, - ACTIONS(2368), 1, + ACTIONS(2440), 1, anon_sym_RBRACK, - STATE(675), 1, + STATE(573), 1, sym_string_literal, - STATE(1064), 1, + STATE(1138), 1, sym__expression, - ACTIONS(91), 2, + ACTIONS(93), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(101), 2, + ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(161), 2, + ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(1906), 2, + ACTIONS(1917), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1908), 2, + ACTIONS(1919), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2002), 2, + ACTIONS(2077), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2292), 2, + ACTIONS(2336), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(85), 5, + ACTIONS(87), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(97), 5, + ACTIONS(99), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(792), 21, + STATE(809), 21, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -79525,26 +82493,26 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [5454] = 22, + [5613] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(83), 1, + ACTIONS(85), 1, anon_sym_sizeof, - ACTIONS(87), 1, - anon_sym_offsetof, ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(159), 1, + ACTIONS(161), 1, sym_number_literal, - ACTIONS(1926), 1, + ACTIONS(1931), 1, sym_identifier, - ACTIONS(2370), 1, + ACTIONS(2442), 1, anon_sym_COLON, - STATE(675), 1, + STATE(573), 1, sym_string_literal, - STATE(1279), 1, + STATE(1317), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -79555,43 +82523,43 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(81), 2, + ACTIONS(83), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 2, + ACTIONS(93), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(101), 2, + ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(161), 2, + ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(85), 5, + ACTIONS(87), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(97), 5, + ACTIONS(99), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(901), 5, + STATE(877), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(792), 16, + STATE(809), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -79608,309 +82576,71 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [5559] = 6, + [5718] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2372), 1, + ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, + anon_sym__Generic, + ACTIONS(161), 1, + sym_number_literal, + ACTIONS(1536), 1, sym_identifier, - STATE(616), 2, - sym_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(97), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2376), 18, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(2374), 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, + ACTIONS(1921), 1, + anon_sym_sizeof, + ACTIONS(2334), 1, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, + ACTIONS(2444), 1, 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, - [5632] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(39), 1, - anon_sym___declspec, - ACTIONS(51), 1, - sym_primitive_type, - ACTIONS(53), 1, - anon_sym_enum, - ACTIONS(55), 1, - anon_sym_struct, - ACTIONS(57), 1, - anon_sym_union, - ACTIONS(1301), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2046), 1, - sym_identifier, - ACTIONS(2378), 1, - anon_sym_LBRACE, - STATE(856), 1, - sym_ms_call_modifier, - STATE(1040), 1, - sym__type_specifier, - STATE(1113), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1493), 1, - sym__declaration_specifiers, - ACTIONS(35), 2, - anon_sym___scanf, - anon_sym___printf, - STATE(359), 3, - sym_function_definition, - sym_declaration, - sym_declaration_list, - ACTIONS(45), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1106), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(41), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - STATE(861), 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(49), 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(47), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - [5737] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(39), 1, - anon_sym___declspec, - ACTIONS(51), 1, - sym_primitive_type, - ACTIONS(53), 1, - anon_sym_enum, - ACTIONS(55), 1, - anon_sym_struct, - ACTIONS(57), 1, - anon_sym_union, - ACTIONS(1301), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2046), 1, - sym_identifier, - ACTIONS(2380), 1, - anon_sym_LBRACE, - STATE(848), 1, - sym_ms_call_modifier, - STATE(1040), 1, - sym__type_specifier, - STATE(1113), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1491), 1, - sym__declaration_specifiers, - ACTIONS(35), 2, - anon_sym___scanf, - anon_sym___printf, - STATE(144), 3, - sym_function_definition, - sym_declaration, - sym_declaration_list, - ACTIONS(45), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1106), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(41), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - STATE(861), 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(49), 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(47), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - [5842] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(83), 1, - anon_sym_sizeof, - ACTIONS(87), 1, - anon_sym_offsetof, - ACTIONS(89), 1, - anon_sym__Generic, - ACTIONS(159), 1, - sym_number_literal, - ACTIONS(1926), 1, - sym_identifier, - ACTIONS(2382), 1, - anon_sym_COLON, - STATE(675), 1, + STATE(573), 1, sym_string_literal, - STATE(1273), 1, + STATE(1138), 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(81), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(91), 2, + ACTIONS(93), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(101), 2, + ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(161), 2, + ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(85), 5, + ACTIONS(1917), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1919), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2077), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2336), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(87), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(97), 5, + ACTIONS(99), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(901), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(792), 16, + STATE(809), 21, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -79919,32 +82649,36 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [5947] = 22, + [5821] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(83), 1, + ACTIONS(85), 1, anon_sym_sizeof, - ACTIONS(87), 1, - anon_sym_offsetof, ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(159), 1, + ACTIONS(161), 1, sym_number_literal, - ACTIONS(1926), 1, + ACTIONS(1931), 1, sym_identifier, - STATE(675), 1, + ACTIONS(2446), 1, + anon_sym_COLON, + STATE(573), 1, sym_string_literal, - STATE(1208), 1, + STATE(1321), 1, sym__expression, - STATE(2076), 1, - sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -79954,43 +82688,43 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(81), 2, + ACTIONS(83), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 2, + ACTIONS(93), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(101), 2, + ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(161), 2, + ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(85), 5, + ACTIONS(87), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(97), 5, + ACTIONS(99), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(901), 5, + STATE(877), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(792), 16, + STATE(809), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -80007,67 +82741,67 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [6052] = 21, + [5926] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, - anon_sym_offsetof, ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(159), 1, + ACTIONS(161), 1, sym_number_literal, - ACTIONS(1525), 1, + ACTIONS(1536), 1, sym_identifier, - ACTIONS(1910), 1, + ACTIONS(1921), 1, anon_sym_sizeof, - ACTIONS(2290), 1, + ACTIONS(2334), 1, anon_sym_LPAREN2, - ACTIONS(2384), 1, + ACTIONS(2448), 1, anon_sym_RBRACK, - STATE(675), 1, + STATE(573), 1, sym_string_literal, - STATE(1064), 1, + STATE(1138), 1, sym__expression, - ACTIONS(91), 2, + ACTIONS(93), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(101), 2, + ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(161), 2, + ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(1906), 2, + ACTIONS(1917), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1908), 2, + ACTIONS(1919), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2002), 2, + ACTIONS(2077), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2292), 2, + ACTIONS(2336), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(85), 5, + ACTIONS(87), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(97), 5, + ACTIONS(99), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(792), 21, + STATE(809), 21, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -80089,176 +82823,26 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [6155] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2386), 1, - sym_identifier, - STATE(593), 2, - sym_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(97), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2390), 18, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(2388), 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, - [6228] = 22, + [6029] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(83), 1, + ACTIONS(85), 1, anon_sym_sizeof, - ACTIONS(87), 1, - anon_sym_offsetof, ACTIONS(89), 1, - anon_sym__Generic, - ACTIONS(159), 1, - sym_number_literal, - ACTIONS(1926), 1, - sym_identifier, - ACTIONS(2392), 1, - anon_sym_COLON, - STATE(675), 1, - sym_string_literal, - STATE(1277), 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(81), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(91), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(101), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(161), 2, - sym_true, - sym_false, - ACTIONS(85), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(95), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(97), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(901), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(792), 16, - sym__expression_not_binary, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_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, - [6333] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(83), 1, - anon_sym_sizeof, - ACTIONS(87), 1, anon_sym_offsetof, - ACTIONS(89), 1, + ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(159), 1, + ACTIONS(161), 1, sym_number_literal, - ACTIONS(1926), 1, + ACTIONS(1931), 1, sym_identifier, - ACTIONS(2394), 1, + ACTIONS(2450), 1, anon_sym_COLON, - STATE(675), 1, + STATE(573), 1, sym_string_literal, - STATE(1286), 1, + STATE(1319), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -80269,43 +82853,43 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(81), 2, + ACTIONS(83), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 2, + ACTIONS(93), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(101), 2, + ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(161), 2, + ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(85), 5, + ACTIONS(87), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(97), 5, + ACTIONS(99), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(901), 5, + STATE(877), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(792), 16, + STATE(809), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -80322,67 +82906,67 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [6438] = 21, + [6134] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, - anon_sym_offsetof, ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(159), 1, + ACTIONS(161), 1, sym_number_literal, - ACTIONS(1525), 1, + ACTIONS(1536), 1, sym_identifier, - ACTIONS(1910), 1, + ACTIONS(1921), 1, anon_sym_sizeof, - ACTIONS(2290), 1, + ACTIONS(2334), 1, anon_sym_LPAREN2, - ACTIONS(2396), 1, + ACTIONS(2452), 1, anon_sym_RBRACK, - STATE(675), 1, + STATE(573), 1, sym_string_literal, - STATE(1064), 1, + STATE(1138), 1, sym__expression, - ACTIONS(91), 2, + ACTIONS(93), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(101), 2, + ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(161), 2, + ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(1906), 2, + ACTIONS(1917), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1908), 2, + ACTIONS(1919), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2002), 2, + ACTIONS(2077), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2292), 2, + ACTIONS(2336), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(85), 5, + ACTIONS(87), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(97), 5, + ACTIONS(99), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(792), 21, + STATE(809), 21, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -80404,154 +82988,76 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [6541] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(39), 1, - anon_sym___declspec, - ACTIONS(51), 1, - sym_primitive_type, - ACTIONS(53), 1, - anon_sym_enum, - ACTIONS(55), 1, - anon_sym_struct, - ACTIONS(57), 1, - anon_sym_union, - ACTIONS(1301), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2046), 1, - sym_identifier, - ACTIONS(2398), 1, - anon_sym_LBRACE, - STATE(853), 1, - sym_ms_call_modifier, - STATE(1040), 1, - sym__type_specifier, - STATE(1113), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1514), 1, - sym__declaration_specifiers, - ACTIONS(35), 2, - anon_sym___scanf, - anon_sym___printf, - STATE(398), 3, - sym_function_definition, - sym_declaration, - sym_declaration_list, - ACTIONS(45), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1106), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(41), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - STATE(861), 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(49), 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(47), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - [6646] = 21, + [6237] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, - anon_sym_offsetof, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(85), 1, + anon_sym_sizeof, ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(159), 1, + ACTIONS(161), 1, sym_number_literal, - ACTIONS(1525), 1, + ACTIONS(1931), 1, sym_identifier, - ACTIONS(1910), 1, - anon_sym_sizeof, - ACTIONS(2290), 1, - anon_sym_LPAREN2, - ACTIONS(2400), 1, - anon_sym_RBRACK, - STATE(675), 1, + ACTIONS(2454), 1, + anon_sym_COLON, + STATE(573), 1, sym_string_literal, - STATE(1064), 1, + STATE(1320), 1, sym__expression, - ACTIONS(91), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(101), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(161), 2, - sym_true, - sym_false, - ACTIONS(1906), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1908), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2002), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2292), 2, + ACTIONS(83), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(85), 5, + ACTIONS(93), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(103), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(163), 2, + sym_true, + sym_false, + ACTIONS(87), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(97), 5, + ACTIONS(99), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(792), 21, + STATE(877), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(809), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -80560,34 +83066,32 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [6749] = 21, + [6342] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(83), 1, + ACTIONS(85), 1, anon_sym_sizeof, - ACTIONS(87), 1, - anon_sym_offsetof, ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(159), 1, + ACTIONS(161), 1, sym_number_literal, - ACTIONS(1926), 1, + ACTIONS(1931), 1, sym_identifier, - STATE(675), 1, + STATE(573), 1, sym_string_literal, - STATE(1297), 1, + STATE(1261), 1, sym__expression, + STATE(2234), 1, + sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -80597,43 +83101,43 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(81), 2, + ACTIONS(83), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 2, + ACTIONS(93), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(101), 2, + ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(161), 2, + ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(85), 5, + ACTIONS(87), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(97), 5, + ACTIONS(99), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(901), 5, + STATE(877), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(792), 16, + STATE(809), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -80650,105 +83154,26 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [6851] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1555), 1, - anon_sym_offsetof, - ACTIONS(1557), 1, - anon_sym__Generic, - ACTIONS(1561), 1, - sym_number_literal, - ACTIONS(1940), 1, - anon_sym_sizeof, - ACTIONS(2324), 1, - sym_identifier, - ACTIONS(2326), 1, - anon_sym_LPAREN2, - STATE(859), 1, - sym_string_literal, - STATE(1179), 1, - sym__expression, - ACTIONS(1559), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(1567), 2, - sym_true, - sym_false, - ACTIONS(1569), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(1936), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1938), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2306), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2328), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1553), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(1563), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(1565), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(954), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(963), 16, - sym__expression_not_binary, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_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, - [6953] = 21, + [6447] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(83), 1, + ACTIONS(85), 1, anon_sym_sizeof, - ACTIONS(87), 1, - anon_sym_offsetof, ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(159), 1, + ACTIONS(161), 1, sym_number_literal, - ACTIONS(1926), 1, + ACTIONS(1931), 1, sym_identifier, - STATE(675), 1, + ACTIONS(2456), 1, + anon_sym_COLON, + STATE(573), 1, sym_string_literal, - STATE(1145), 1, + STATE(1295), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -80759,43 +83184,43 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(81), 2, + ACTIONS(83), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 2, + ACTIONS(93), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(101), 2, + ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(161), 2, + ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(85), 5, + ACTIONS(87), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(97), 5, + ACTIONS(99), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(901), 5, + STATE(877), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(792), 16, + STATE(809), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -80812,155 +83237,71 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [7055] = 21, + [6552] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(83), 1, - anon_sym_sizeof, - ACTIONS(87), 1, - anon_sym_offsetof, ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(159), 1, + ACTIONS(161), 1, sym_number_literal, - ACTIONS(1926), 1, + ACTIONS(1536), 1, sym_identifier, - STATE(675), 1, + ACTIONS(1921), 1, + anon_sym_sizeof, + ACTIONS(2334), 1, + anon_sym_LPAREN2, + ACTIONS(2458), 1, + anon_sym_RBRACK, + STATE(573), 1, sym_string_literal, - STATE(1177), 1, + STATE(1138), 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(81), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(91), 2, + ACTIONS(93), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(101), 2, + ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(161), 2, + ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(85), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(95), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(97), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(901), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(792), 16, - sym__expression_not_binary, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_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, - [7157] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(83), 1, - anon_sym_sizeof, - ACTIONS(87), 1, - anon_sym_offsetof, - ACTIONS(89), 1, - anon_sym__Generic, - ACTIONS(159), 1, - sym_number_literal, - ACTIONS(1926), 1, - sym_identifier, - STATE(675), 1, - sym_string_literal, - STATE(1272), 1, - sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(1917), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, + ACTIONS(1919), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2077), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(81), 2, + ACTIONS(2336), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(101), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(161), 2, - sym_true, - sym_false, - ACTIONS(85), 5, + ACTIONS(87), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(97), 5, + ACTIONS(99), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(901), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(792), 16, + STATE(809), 21, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -80969,70 +83310,76 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [7259] = 20, + [6655] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, - anon_sym_offsetof, ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(159), 1, + ACTIONS(161), 1, sym_number_literal, - ACTIONS(1525), 1, + ACTIONS(1536), 1, sym_identifier, - ACTIONS(1537), 1, + ACTIONS(1921), 1, anon_sym_sizeof, - ACTIONS(2298), 1, + ACTIONS(2334), 1, anon_sym_LPAREN2, - STATE(675), 1, + ACTIONS(2460), 1, + anon_sym_RBRACK, + STATE(573), 1, sym_string_literal, - STATE(885), 1, + STATE(1138), 1, sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(91), 2, + ACTIONS(93), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(101), 2, + ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(161), 2, + ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(1529), 2, + ACTIONS(1917), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1531), 2, + ACTIONS(1919), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2300), 2, + ACTIONS(2077), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2336), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(85), 5, + ACTIONS(87), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(97), 5, + ACTIONS(99), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(792), 21, + STATE(809), 21, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -81054,24 +83401,26 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [7359] = 21, + [6758] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(83), 1, + ACTIONS(85), 1, anon_sym_sizeof, - ACTIONS(87), 1, - anon_sym_offsetof, ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(159), 1, + ACTIONS(161), 1, sym_number_literal, - ACTIONS(1926), 1, + ACTIONS(1931), 1, sym_identifier, - STATE(675), 1, + ACTIONS(2462), 1, + anon_sym_COLON, + STATE(573), 1, sym_string_literal, - STATE(1284), 1, + STATE(1292), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -81082,43 +83431,43 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(81), 2, + ACTIONS(83), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 2, + ACTIONS(93), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(101), 2, + ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(161), 2, + ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(85), 5, + ACTIONS(87), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(97), 5, + ACTIONS(99), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(901), 5, + STATE(877), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(792), 16, + STATE(809), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -81135,25 +83484,27 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [7461] = 21, + [6863] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(83), 1, + ACTIONS(85), 1, anon_sym_sizeof, - ACTIONS(87), 1, - anon_sym_offsetof, ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(159), 1, + ACTIONS(161), 1, sym_number_literal, - ACTIONS(1926), 1, + ACTIONS(1931), 1, sym_identifier, - STATE(675), 1, + STATE(573), 1, sym_string_literal, - STATE(834), 1, + STATE(1221), 1, sym__expression, + STATE(1877), 1, + sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -81163,43 +83514,43 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(81), 2, + ACTIONS(83), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 2, + ACTIONS(93), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(101), 2, + ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(161), 2, + ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(85), 5, + ACTIONS(87), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(97), 5, + ACTIONS(99), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(901), 5, + STATE(877), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(792), 16, + STATE(809), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -81216,71 +83567,71 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [7563] = 21, + [6968] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(83), 1, - anon_sym_sizeof, - ACTIONS(87), 1, + ACTIONS(1832), 1, anon_sym_offsetof, - ACTIONS(89), 1, + ACTIONS(1834), 1, anon_sym__Generic, - ACTIONS(159), 1, + ACTIONS(1838), 1, sym_number_literal, - ACTIONS(1926), 1, + ACTIONS(1963), 1, + anon_sym_sizeof, + ACTIONS(2356), 1, sym_identifier, - STATE(675), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN2, + STATE(893), 1, sym_string_literal, - STATE(840), 1, + STATE(1203), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(1836), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(1844), 2, + sym_true, + sym_false, + ACTIONS(1846), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1959), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, + ACTIONS(1961), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2330), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(81), 2, + ACTIONS(2360), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(101), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(161), 2, - sym_true, - sym_false, - ACTIONS(85), 5, + ACTIONS(1830), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(95), 5, + ACTIONS(1840), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(97), 5, + ACTIONS(1842), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(901), 5, + STATE(1098), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(792), 16, + STATE(1110), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -81297,65 +83648,65 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [7665] = 20, + [7070] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, - anon_sym_offsetof, ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(159), 1, + ACTIONS(161), 1, sym_number_literal, - ACTIONS(1525), 1, + ACTIONS(1536), 1, sym_identifier, - ACTIONS(1537), 1, + ACTIONS(1921), 1, anon_sym_sizeof, - ACTIONS(2298), 1, + ACTIONS(2334), 1, anon_sym_LPAREN2, - STATE(675), 1, + STATE(573), 1, sym_string_literal, - STATE(875), 1, + STATE(1132), 1, sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(91), 2, + ACTIONS(93), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(101), 2, + ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(161), 2, + ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(1529), 2, + ACTIONS(1917), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1531), 2, + ACTIONS(1919), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2300), 2, + ACTIONS(2077), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2336), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(85), 5, + ACTIONS(87), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(97), 5, + ACTIONS(99), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(792), 21, + STATE(809), 21, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -81377,65 +83728,65 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [7765] = 20, + [7170] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, + ACTIONS(1828), 1, + anon_sym_sizeof, + ACTIONS(1832), 1, anon_sym_offsetof, - ACTIONS(89), 1, + ACTIONS(1834), 1, anon_sym__Generic, - ACTIONS(159), 1, + ACTIONS(1838), 1, sym_number_literal, - ACTIONS(1525), 1, + ACTIONS(2326), 1, sym_identifier, - ACTIONS(1537), 1, - anon_sym_sizeof, - ACTIONS(2298), 1, + ACTIONS(2328), 1, anon_sym_LPAREN2, - STATE(675), 1, + STATE(893), 1, sym_string_literal, - STATE(867), 1, + STATE(1058), 1, sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(91), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(101), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(161), 2, - sym_true, - sym_false, - ACTIONS(1529), 2, + ACTIONS(1822), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1531), 2, + ACTIONS(1824), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2300), 2, + ACTIONS(1836), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(1844), 2, + sym_true, + sym_false, + ACTIONS(1846), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(2330), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2332), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(85), 5, + ACTIONS(1830), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(95), 5, + ACTIONS(1840), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(97), 5, + ACTIONS(1842), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(792), 21, + STATE(1110), 21, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -81457,65 +83808,65 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [7865] = 20, + [7270] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, + ACTIONS(1828), 1, + anon_sym_sizeof, + ACTIONS(1832), 1, anon_sym_offsetof, - ACTIONS(89), 1, + ACTIONS(1834), 1, anon_sym__Generic, - ACTIONS(159), 1, + ACTIONS(1838), 1, sym_number_literal, - ACTIONS(1525), 1, + ACTIONS(2326), 1, sym_identifier, - ACTIONS(1543), 1, - anon_sym_sizeof, - ACTIONS(2286), 1, + ACTIONS(2328), 1, anon_sym_LPAREN2, - STATE(675), 1, + STATE(893), 1, sym_string_literal, - STATE(899), 1, + STATE(1082), 1, sym__expression, - ACTIONS(91), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(101), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(161), 2, - sym_true, - sym_false, - ACTIONS(1539), 2, + ACTIONS(1822), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1541), 2, + ACTIONS(1824), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2280), 2, + ACTIONS(1836), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(1844), 2, + sym_true, + sym_false, + ACTIONS(1846), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(2330), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2288), 2, + ACTIONS(2332), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(85), 5, + ACTIONS(1830), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(95), 5, + ACTIONS(1840), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(97), 5, + ACTIONS(1842), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(792), 21, + STATE(1110), 21, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -81537,65 +83888,65 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [7965] = 20, + [7370] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, + ACTIONS(1828), 1, + anon_sym_sizeof, + ACTIONS(1832), 1, anon_sym_offsetof, - ACTIONS(89), 1, + ACTIONS(1834), 1, anon_sym__Generic, - ACTIONS(159), 1, + ACTIONS(1838), 1, sym_number_literal, - ACTIONS(1525), 1, + ACTIONS(2326), 1, sym_identifier, - ACTIONS(1537), 1, - anon_sym_sizeof, - ACTIONS(2298), 1, + ACTIONS(2328), 1, anon_sym_LPAREN2, - STATE(675), 1, + STATE(893), 1, sym_string_literal, - STATE(889), 1, + STATE(1057), 1, sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(91), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(101), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(161), 2, - sym_true, - sym_false, - ACTIONS(1529), 2, + ACTIONS(1822), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1531), 2, + ACTIONS(1824), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2300), 2, + ACTIONS(1836), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(1844), 2, + sym_true, + sym_false, + ACTIONS(1846), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(2330), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2332), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(85), 5, + ACTIONS(1830), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(95), 5, + ACTIONS(1840), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(97), 5, + ACTIONS(1842), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(792), 21, + STATE(1110), 21, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -81617,69 +83968,74 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [8065] = 20, + [7470] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, - anon_sym_offsetof, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(85), 1, + anon_sym_sizeof, ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(159), 1, + ACTIONS(161), 1, sym_number_literal, - ACTIONS(1525), 1, + ACTIONS(1931), 1, sym_identifier, - ACTIONS(1537), 1, - anon_sym_sizeof, - ACTIONS(2402), 1, - anon_sym_LPAREN2, - STATE(675), 1, + STATE(573), 1, sym_string_literal, - STATE(836), 1, + STATE(1303), 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(91), 2, + ACTIONS(83), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(93), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(101), 2, + ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(161), 2, + ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(1529), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1531), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2300), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(85), 5, + ACTIONS(87), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(97), 5, + ACTIONS(99), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(792), 21, + STATE(877), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(809), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -81688,78 +84044,79 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [8165] = 20, + [7572] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, - anon_sym_offsetof, ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(159), 1, + ACTIONS(161), 1, sym_number_literal, - ACTIONS(1525), 1, - sym_identifier, - ACTIONS(1537), 1, + ACTIONS(1957), 1, anon_sym_sizeof, - ACTIONS(2298), 1, + ACTIONS(2348), 1, + sym_identifier, + ACTIONS(2350), 1, anon_sym_LPAREN2, - STATE(675), 1, + STATE(573), 1, sym_string_literal, - STATE(834), 1, + STATE(1179), 1, sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(91), 2, + ACTIONS(93), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(101), 2, + ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(161), 2, + ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(1529), 2, + ACTIONS(1953), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1531), 2, + ACTIONS(1955), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2300), 2, + ACTIONS(2352), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2354), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(85), 5, + ACTIONS(87), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(97), 5, + ACTIONS(99), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(792), 21, + STATE(1004), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(809), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -81768,78 +84125,79 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [8265] = 20, + [7674] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, - anon_sym_offsetof, ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(159), 1, + ACTIONS(161), 1, sym_number_literal, - ACTIONS(1525), 1, - sym_identifier, - ACTIONS(1537), 1, + ACTIONS(1957), 1, anon_sym_sizeof, - ACTIONS(2298), 1, + ACTIONS(2348), 1, + sym_identifier, + ACTIONS(2350), 1, anon_sym_LPAREN2, - STATE(675), 1, + STATE(573), 1, sym_string_literal, - STATE(887), 1, + STATE(1182), 1, sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(91), 2, + ACTIONS(93), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(101), 2, + ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(161), 2, + ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(1529), 2, + ACTIONS(1953), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1531), 2, + ACTIONS(1955), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2300), 2, + ACTIONS(2352), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2354), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(85), 5, + ACTIONS(87), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(97), 5, + ACTIONS(99), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(792), 21, + STATE(1004), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(809), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -81848,78 +84206,79 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [8365] = 20, + [7776] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, - anon_sym_offsetof, ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(159), 1, + ACTIONS(161), 1, sym_number_literal, - ACTIONS(1525), 1, - sym_identifier, - ACTIONS(1537), 1, + ACTIONS(1957), 1, anon_sym_sizeof, - ACTIONS(2298), 1, + ACTIONS(2348), 1, + sym_identifier, + ACTIONS(2350), 1, anon_sym_LPAREN2, - STATE(675), 1, + STATE(573), 1, sym_string_literal, - STATE(880), 1, + STATE(1181), 1, sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(91), 2, + ACTIONS(93), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(101), 2, + ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(161), 2, + ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(1529), 2, + ACTIONS(1953), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1531), 2, + ACTIONS(1955), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2300), 2, + ACTIONS(2352), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2354), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(85), 5, + ACTIONS(87), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(97), 5, + ACTIONS(99), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(792), 21, + STATE(1004), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(809), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -81928,78 +84287,79 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [8465] = 20, + [7878] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, - anon_sym_offsetof, ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(159), 1, + ACTIONS(161), 1, sym_number_literal, - ACTIONS(1525), 1, - sym_identifier, - ACTIONS(1537), 1, + ACTIONS(1957), 1, anon_sym_sizeof, - ACTIONS(2298), 1, + ACTIONS(2348), 1, + sym_identifier, + ACTIONS(2350), 1, anon_sym_LPAREN2, - STATE(675), 1, + STATE(573), 1, sym_string_literal, - STATE(868), 1, + STATE(1186), 1, sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(91), 2, + ACTIONS(93), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(101), 2, + ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(161), 2, + ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(1529), 2, + ACTIONS(1953), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1531), 2, + ACTIONS(1955), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2300), 2, + ACTIONS(2352), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2354), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(85), 5, + ACTIONS(87), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(97), 5, + ACTIONS(99), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(792), 21, + STATE(1004), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(809), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -82008,78 +84368,79 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [8565] = 20, + [7980] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, - anon_sym_offsetof, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(85), 1, + anon_sym_sizeof, ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(159), 1, + ACTIONS(161), 1, sym_number_literal, - ACTIONS(1525), 1, + ACTIONS(1931), 1, sym_identifier, - ACTIONS(1537), 1, - anon_sym_sizeof, - ACTIONS(2298), 1, - anon_sym_LPAREN2, - STATE(675), 1, + STATE(573), 1, sym_string_literal, - STATE(877), 1, + STATE(1237), 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(91), 2, + ACTIONS(83), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(93), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(101), 2, + ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(161), 2, + ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(1529), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1531), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2300), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(85), 5, + ACTIONS(87), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(97), 5, + ACTIONS(99), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(792), 21, + STATE(877), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(809), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -82088,78 +84449,79 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [8665] = 20, + [8082] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, - anon_sym_offsetof, ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(159), 1, + ACTIONS(161), 1, sym_number_literal, - ACTIONS(1525), 1, - sym_identifier, - ACTIONS(1543), 1, + ACTIONS(1957), 1, anon_sym_sizeof, - ACTIONS(2286), 1, + ACTIONS(2348), 1, + sym_identifier, + ACTIONS(2350), 1, anon_sym_LPAREN2, - STATE(675), 1, + STATE(573), 1, sym_string_literal, - STATE(900), 1, + STATE(1187), 1, sym__expression, - ACTIONS(91), 2, + ACTIONS(93), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(101), 2, + ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(161), 2, + ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(1539), 2, + ACTIONS(1953), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1541), 2, + ACTIONS(1955), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2280), 2, + ACTIONS(2352), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2288), 2, + ACTIONS(2354), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(85), 5, + ACTIONS(87), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(97), 5, + ACTIONS(99), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(792), 21, + STATE(1004), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(809), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -82168,80 +84530,76 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [8765] = 21, + [8184] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(83), 1, - anon_sym_sizeof, - ACTIONS(87), 1, - anon_sym_offsetof, ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(159), 1, + ACTIONS(161), 1, sym_number_literal, - ACTIONS(1926), 1, + ACTIONS(1957), 1, + anon_sym_sizeof, + ACTIONS(2348), 1, sym_identifier, - STATE(675), 1, + ACTIONS(2350), 1, + anon_sym_LPAREN2, + STATE(573), 1, sym_string_literal, - STATE(1271), 1, + STATE(1178), 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(81), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(91), 2, + ACTIONS(93), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(101), 2, + ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(161), 2, + ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(85), 5, + ACTIONS(1953), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1955), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2352), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2354), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(87), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(97), 5, + ACTIONS(99), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(901), 5, + STATE(1004), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(792), 16, + STATE(809), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -82258,69 +84616,74 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [8867] = 20, + [8286] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, - anon_sym_offsetof, ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(159), 1, + ACTIONS(161), 1, sym_number_literal, - ACTIONS(1525), 1, + ACTIONS(1993), 1, sym_identifier, - ACTIONS(1537), 1, + ACTIONS(1999), 1, anon_sym_sizeof, - ACTIONS(2298), 1, + ACTIONS(2073), 1, anon_sym_LPAREN2, - STATE(675), 1, + STATE(573), 1, sym_string_literal, - STATE(871), 1, + STATE(1248), 1, sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(91), 2, + ACTIONS(93), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(101), 2, + ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(161), 2, + ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(1529), 2, + ACTIONS(1995), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1531), 2, + ACTIONS(1997), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2300), 2, + ACTIONS(2077), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2083), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(85), 5, + ACTIONS(87), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(97), 5, + ACTIONS(99), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(792), 21, + STATE(1154), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(809), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -82329,74 +84692,70 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [8967] = 20, + [8388] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, + ACTIONS(1828), 1, + anon_sym_sizeof, + ACTIONS(1832), 1, anon_sym_offsetof, - ACTIONS(89), 1, + ACTIONS(1834), 1, anon_sym__Generic, - ACTIONS(159), 1, + ACTIONS(1838), 1, sym_number_literal, - ACTIONS(1525), 1, + ACTIONS(2326), 1, sym_identifier, - ACTIONS(1537), 1, - anon_sym_sizeof, - ACTIONS(2298), 1, + ACTIONS(2464), 1, anon_sym_LPAREN2, - STATE(675), 1, + STATE(893), 1, sym_string_literal, - STATE(832), 1, + STATE(1050), 1, sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(91), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(101), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(161), 2, - sym_true, - sym_false, - ACTIONS(1529), 2, + ACTIONS(1822), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1531), 2, + ACTIONS(1824), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2300), 2, + ACTIONS(1836), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(1844), 2, + sym_true, + sym_false, + ACTIONS(1846), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(2330), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2332), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(85), 5, + ACTIONS(1830), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(95), 5, + ACTIONS(1840), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(97), 5, + ACTIONS(1842), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(792), 21, + STATE(1110), 21, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -82418,65 +84777,145 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [9067] = 20, + [8488] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, + ACTIONS(1828), 1, + anon_sym_sizeof, + ACTIONS(1832), 1, anon_sym_offsetof, - ACTIONS(89), 1, + ACTIONS(1834), 1, anon_sym__Generic, - ACTIONS(159), 1, + ACTIONS(1838), 1, sym_number_literal, - ACTIONS(1525), 1, + ACTIONS(2326), 1, sym_identifier, - ACTIONS(1543), 1, - anon_sym_sizeof, - ACTIONS(2286), 1, + ACTIONS(2328), 1, anon_sym_LPAREN2, - STATE(675), 1, + STATE(893), 1, sym_string_literal, - STATE(840), 1, + STATE(1049), 1, sym__expression, - ACTIONS(91), 2, + ACTIONS(1822), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1824), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1836), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(101), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(161), 2, + ACTIONS(1844), 2, sym_true, sym_false, - ACTIONS(1539), 2, + ACTIONS(1846), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(2330), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2332), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1830), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(1840), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(1842), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(1110), 21, + sym__expression_not_binary, + sym_conditional_expression, + sym_assignment_expression, + sym_pointer_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_subscript_expression, + sym_call_expression, + sym_gnu_asm_expression, + sym_field_expression, + sym_compound_literal_expression, + sym_parenthesized_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [8588] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1828), 1, + anon_sym_sizeof, + ACTIONS(1832), 1, + anon_sym_offsetof, + ACTIONS(1834), 1, + anon_sym__Generic, + ACTIONS(1838), 1, + sym_number_literal, + ACTIONS(2326), 1, + sym_identifier, + ACTIONS(2328), 1, + anon_sym_LPAREN2, + STATE(893), 1, + sym_string_literal, + STATE(1041), 1, + sym__expression, + ACTIONS(1822), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1541), 2, + ACTIONS(1824), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2280), 2, + ACTIONS(1836), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(1844), 2, + sym_true, + sym_false, + ACTIONS(1846), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(2330), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2288), 2, + ACTIONS(2332), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(85), 5, + ACTIONS(1830), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(95), 5, + ACTIONS(1840), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(97), 5, + ACTIONS(1842), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(792), 21, + STATE(1110), 21, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -82498,65 +84937,65 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [9167] = 20, + [8688] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, - anon_sym_offsetof, ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(159), 1, + ACTIONS(161), 1, sym_number_literal, - ACTIONS(1525), 1, + ACTIONS(1536), 1, sym_identifier, - ACTIONS(1537), 1, + ACTIONS(1548), 1, anon_sym_sizeof, - ACTIONS(2298), 1, + ACTIONS(2420), 1, anon_sym_LPAREN2, - STATE(675), 1, + STATE(573), 1, sym_string_literal, - STATE(870), 1, + STATE(869), 1, sym__expression, ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(91), 2, + ACTIONS(93), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(101), 2, + ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(161), 2, + ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(1529), 2, + ACTIONS(1540), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1531), 2, + ACTIONS(1542), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2300), 2, + ACTIONS(2422), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(85), 5, + ACTIONS(87), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(97), 5, + ACTIONS(99), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(792), 21, + STATE(809), 21, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -82578,65 +85017,65 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [9267] = 20, + [8788] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1551), 1, - anon_sym_sizeof, - ACTIONS(1555), 1, + ACTIONS(89), 1, anon_sym_offsetof, - ACTIONS(1557), 1, + ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(1561), 1, + ACTIONS(161), 1, sym_number_literal, - ACTIONS(2302), 1, + ACTIONS(1536), 1, sym_identifier, - ACTIONS(2304), 1, + ACTIONS(1548), 1, + anon_sym_sizeof, + ACTIONS(2420), 1, anon_sym_LPAREN2, - STATE(859), 1, + STATE(573), 1, sym_string_literal, - STATE(944), 1, + STATE(829), 1, sym__expression, - ACTIONS(1545), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1547), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1559), 2, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(93), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1567), 2, - sym_true, - sym_false, - ACTIONS(1569), 2, + ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(2306), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2308), 2, + ACTIONS(163), 2, + sym_true, + sym_false, + ACTIONS(1540), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1542), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2422), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1553), 5, + ACTIONS(87), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1563), 5, + ACTIONS(97), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1565), 5, + ACTIONS(99), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(963), 21, + STATE(809), 21, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -82658,65 +85097,65 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [9367] = 20, + [8888] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, - anon_sym_offsetof, ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(159), 1, + ACTIONS(161), 1, sym_number_literal, - ACTIONS(1525), 1, + ACTIONS(1536), 1, sym_identifier, - ACTIONS(1537), 1, + ACTIONS(1548), 1, anon_sym_sizeof, - ACTIONS(2298), 1, + ACTIONS(2420), 1, anon_sym_LPAREN2, - STATE(675), 1, + STATE(573), 1, sym_string_literal, - STATE(840), 1, + STATE(867), 1, sym__expression, ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(91), 2, + ACTIONS(93), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(101), 2, + ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(161), 2, + ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(1529), 2, + ACTIONS(1540), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1531), 2, + ACTIONS(1542), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2300), 2, + ACTIONS(2422), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(85), 5, + ACTIONS(87), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(97), 5, + ACTIONS(99), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(792), 21, + STATE(809), 21, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -82738,65 +85177,65 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [9467] = 20, + [8988] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, - anon_sym_offsetof, ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(159), 1, + ACTIONS(161), 1, sym_number_literal, - ACTIONS(1525), 1, + ACTIONS(1536), 1, sym_identifier, - ACTIONS(1537), 1, + ACTIONS(1548), 1, anon_sym_sizeof, - ACTIONS(2298), 1, + ACTIONS(2420), 1, anon_sym_LPAREN2, - STATE(675), 1, + STATE(573), 1, sym_string_literal, - STATE(839), 1, + STATE(866), 1, sym__expression, ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(91), 2, + ACTIONS(93), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(101), 2, + ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(161), 2, + ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(1529), 2, + ACTIONS(1540), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1531), 2, + ACTIONS(1542), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2300), 2, + ACTIONS(2422), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(85), 5, + ACTIONS(87), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(97), 5, + ACTIONS(99), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(792), 21, + STATE(809), 21, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -82818,24 +85257,24 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [9567] = 21, + [9088] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(83), 1, + ACTIONS(85), 1, anon_sym_sizeof, - ACTIONS(87), 1, - anon_sym_offsetof, ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(159), 1, + ACTIONS(161), 1, sym_number_literal, - ACTIONS(1926), 1, + ACTIONS(1931), 1, sym_identifier, - STATE(675), 1, + STATE(573), 1, sym_string_literal, - STATE(1197), 1, + STATE(1324), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -82846,43 +85285,43 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(81), 2, + ACTIONS(83), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 2, + ACTIONS(93), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(101), 2, + ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(161), 2, + ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(85), 5, + ACTIONS(87), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(97), 5, + ACTIONS(99), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(901), 5, + STATE(877), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(792), 16, + STATE(809), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -82899,71 +85338,151 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [9669] = 21, + [9190] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1555), 1, + ACTIONS(89), 1, anon_sym_offsetof, - ACTIONS(1557), 1, + ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(1561), 1, + ACTIONS(161), 1, sym_number_literal, - ACTIONS(1940), 1, - anon_sym_sizeof, - ACTIONS(2324), 1, + ACTIONS(1536), 1, sym_identifier, - ACTIONS(2326), 1, + ACTIONS(1548), 1, + anon_sym_sizeof, + ACTIONS(2420), 1, anon_sym_LPAREN2, - STATE(859), 1, + STATE(573), 1, sym_string_literal, - STATE(1175), 1, + STATE(865), 1, sym__expression, - ACTIONS(1559), 2, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(93), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1567), 2, + ACTIONS(103), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(1569), 2, + ACTIONS(1540), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1542), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2422), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(87), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(97), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(99), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(809), 21, + sym__expression_not_binary, + sym_conditional_expression, + sym_assignment_expression, + sym_pointer_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_subscript_expression, + sym_call_expression, + sym_gnu_asm_expression, + sym_field_expression, + sym_compound_literal_expression, + sym_parenthesized_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [9290] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, + anon_sym__Generic, + ACTIONS(161), 1, + sym_number_literal, + ACTIONS(1957), 1, + anon_sym_sizeof, + ACTIONS(2348), 1, + sym_identifier, + ACTIONS(2350), 1, + anon_sym_LPAREN2, + STATE(573), 1, + sym_string_literal, + STATE(1188), 1, + sym__expression, + ACTIONS(93), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(1936), 2, + ACTIONS(163), 2, + sym_true, + sym_false, + ACTIONS(1953), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1938), 2, + ACTIONS(1955), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2306), 2, + ACTIONS(2352), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2328), 2, + ACTIONS(2354), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1553), 5, + ACTIONS(87), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1563), 5, + ACTIONS(97), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1565), 5, + ACTIONS(99), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(954), 5, + STATE(1004), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(963), 16, + STATE(809), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -82980,71 +85499,71 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [9771] = 21, + [9392] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, - anon_sym_offsetof, ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(159), 1, + ACTIONS(161), 1, sym_number_literal, - ACTIONS(1954), 1, - sym_identifier, - ACTIONS(1960), 1, + ACTIONS(1957), 1, anon_sym_sizeof, - ACTIONS(1998), 1, + ACTIONS(2348), 1, + sym_identifier, + ACTIONS(2350), 1, anon_sym_LPAREN2, - STATE(675), 1, + STATE(573), 1, sym_string_literal, - STATE(1256), 1, + STATE(829), 1, sym__expression, - ACTIONS(91), 2, + ACTIONS(93), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(101), 2, + ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(161), 2, + ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(1956), 2, + ACTIONS(1953), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1958), 2, + ACTIONS(1955), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2002), 2, + ACTIONS(2352), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2008), 2, + ACTIONS(2354), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(85), 5, + ACTIONS(87), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(97), 5, + ACTIONS(99), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1097), 5, + STATE(1004), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(792), 16, + STATE(809), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -83061,71 +85580,152 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [9873] = 21, + [9494] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, - anon_sym_offsetof, ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(159), 1, + ACTIONS(161), 1, sym_number_literal, - ACTIONS(1954), 1, - sym_identifier, - ACTIONS(1960), 1, + ACTIONS(1957), 1, anon_sym_sizeof, - ACTIONS(1998), 1, + ACTIONS(2348), 1, + sym_identifier, + ACTIONS(2350), 1, anon_sym_LPAREN2, - STATE(675), 1, + STATE(573), 1, sym_string_literal, - STATE(1219), 1, + STATE(1189), 1, sym__expression, - ACTIONS(91), 2, + ACTIONS(93), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(101), 2, + ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(161), 2, + ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(1956), 2, + ACTIONS(1953), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1958), 2, + ACTIONS(1955), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2002), 2, + ACTIONS(2352), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2008), 2, + ACTIONS(2354), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(85), 5, + ACTIONS(87), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, + ACTIONS(99), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(1004), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(809), 16, + sym__expression_not_binary, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_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, + [9596] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, + anon_sym__Generic, + ACTIONS(161), 1, + sym_number_literal, + ACTIONS(1957), 1, + anon_sym_sizeof, + ACTIONS(2348), 1, + sym_identifier, + ACTIONS(2350), 1, + anon_sym_LPAREN2, + STATE(573), 1, + sym_string_literal, + STATE(1190), 1, + sym__expression, + ACTIONS(93), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(103), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(163), 2, + sym_true, + sym_false, + ACTIONS(1953), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1955), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2352), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2354), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(87), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, ACTIONS(97), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(99), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1097), 5, + STATE(1004), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(792), 16, + STATE(809), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -83142,139 +85742,69 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [9975] = 5, + [9698] = 20, ACTIONS(3), 1, sym_comment, - STATE(610), 1, - sym_string_literal, - ACTIONS(97), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1970), 19, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, - anon_sym_EQ, - anon_sym_DOT, - sym_identifier, - ACTIONS(1964), 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, - [10045] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(87), 1, + ACTIONS(1828), 1, + anon_sym_sizeof, + ACTIONS(1832), 1, anon_sym_offsetof, - ACTIONS(89), 1, + ACTIONS(1834), 1, anon_sym__Generic, - ACTIONS(159), 1, + ACTIONS(1838), 1, sym_number_literal, - ACTIONS(1954), 1, + ACTIONS(2326), 1, sym_identifier, - ACTIONS(1960), 1, - anon_sym_sizeof, - ACTIONS(1998), 1, + ACTIONS(2328), 1, anon_sym_LPAREN2, - STATE(675), 1, + STATE(893), 1, sym_string_literal, - STATE(1031), 1, + STATE(1068), 1, sym__expression, - ACTIONS(91), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(101), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(161), 2, - sym_true, - sym_false, - ACTIONS(1956), 2, + ACTIONS(1822), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1958), 2, + ACTIONS(1824), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2002), 2, + ACTIONS(1836), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(1844), 2, + sym_true, + sym_false, + ACTIONS(1846), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(2330), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2008), 2, + ACTIONS(2332), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(85), 5, + ACTIONS(1830), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(95), 5, + ACTIONS(1840), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(97), 5, + ACTIONS(1842), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1097), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(792), 16, + STATE(1110), 21, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -83283,70 +85813,74 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [10147] = 20, + [9798] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, + ACTIONS(1828), 1, + anon_sym_sizeof, + ACTIONS(1832), 1, anon_sym_offsetof, - ACTIONS(89), 1, + ACTIONS(1834), 1, anon_sym__Generic, - ACTIONS(159), 1, + ACTIONS(1838), 1, sym_number_literal, - ACTIONS(1525), 1, + ACTIONS(2326), 1, sym_identifier, - ACTIONS(1537), 1, - anon_sym_sizeof, - ACTIONS(2298), 1, + ACTIONS(2328), 1, anon_sym_LPAREN2, - STATE(675), 1, + STATE(893), 1, sym_string_literal, - STATE(879), 1, + STATE(1066), 1, sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(91), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(101), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(161), 2, - sym_true, - sym_false, - ACTIONS(1529), 2, + ACTIONS(1822), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1531), 2, + ACTIONS(1824), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2300), 2, + ACTIONS(1836), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(1844), 2, + sym_true, + sym_false, + ACTIONS(1846), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(2330), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2332), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(85), 5, + ACTIONS(1830), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(95), 5, + ACTIONS(1840), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(97), 5, + ACTIONS(1842), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(792), 21, + STATE(1110), 21, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -83368,71 +85902,71 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [10247] = 21, + [9898] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(83), 1, - anon_sym_sizeof, - ACTIONS(87), 1, - anon_sym_offsetof, ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(159), 1, + ACTIONS(161), 1, sym_number_literal, - ACTIONS(1926), 1, + ACTIONS(1957), 1, + anon_sym_sizeof, + ACTIONS(2348), 1, sym_identifier, - STATE(675), 1, + ACTIONS(2350), 1, + anon_sym_LPAREN2, + STATE(573), 1, sym_string_literal, - STATE(1285), 1, + STATE(1180), 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(81), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(91), 2, + ACTIONS(93), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(101), 2, + ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(161), 2, + ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(85), 5, + ACTIONS(1953), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1955), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2352), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2354), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(87), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(97), 5, + ACTIONS(99), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(901), 5, + STATE(1004), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(792), 16, + STATE(809), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -83449,74 +85983,69 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [10349] = 21, + [10000] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, + ACTIONS(1828), 1, + anon_sym_sizeof, + ACTIONS(1832), 1, anon_sym_offsetof, - ACTIONS(89), 1, + ACTIONS(1834), 1, anon_sym__Generic, - ACTIONS(159), 1, + ACTIONS(1838), 1, sym_number_literal, - ACTIONS(1954), 1, + ACTIONS(2326), 1, sym_identifier, - ACTIONS(1960), 1, - anon_sym_sizeof, - ACTIONS(1998), 1, + ACTIONS(2328), 1, anon_sym_LPAREN2, - STATE(675), 1, + STATE(893), 1, sym_string_literal, - STATE(1218), 1, + STATE(1063), 1, sym__expression, - ACTIONS(91), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(101), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(161), 2, - sym_true, - sym_false, - ACTIONS(1956), 2, + ACTIONS(1822), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1958), 2, + ACTIONS(1824), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2002), 2, + ACTIONS(1836), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(1844), 2, + sym_true, + sym_false, + ACTIONS(1846), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(2330), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2008), 2, + ACTIONS(2332), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(85), 5, + ACTIONS(1830), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(95), 5, + ACTIONS(1840), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(97), 5, + ACTIONS(1842), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1097), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(792), 16, + STATE(1110), 21, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -83525,79 +86054,78 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [10451] = 21, + [10100] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(83), 1, + ACTIONS(1828), 1, anon_sym_sizeof, - ACTIONS(87), 1, + ACTIONS(1832), 1, anon_sym_offsetof, - ACTIONS(89), 1, + ACTIONS(1834), 1, anon_sym__Generic, - ACTIONS(159), 1, + ACTIONS(1838), 1, sym_number_literal, - ACTIONS(1926), 1, + ACTIONS(2326), 1, sym_identifier, - STATE(675), 1, + ACTIONS(2328), 1, + anon_sym_LPAREN2, + STATE(893), 1, sym_string_literal, - STATE(1268), 1, + STATE(1028), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(1822), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(81), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(91), 2, + ACTIONS(1824), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1836), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(101), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(161), 2, + ACTIONS(1844), 2, sym_true, sym_false, - ACTIONS(85), 5, + ACTIONS(1846), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(2330), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2332), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1830), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(95), 5, + ACTIONS(1840), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(97), 5, + ACTIONS(1842), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(901), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(792), 16, + STATE(1110), 21, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -83606,79 +86134,78 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [10553] = 21, + [10200] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, + ACTIONS(1828), 1, + anon_sym_sizeof, + ACTIONS(1832), 1, anon_sym_offsetof, - ACTIONS(89), 1, + ACTIONS(1834), 1, anon_sym__Generic, - ACTIONS(159), 1, + ACTIONS(1838), 1, sym_number_literal, - ACTIONS(1954), 1, + ACTIONS(2326), 1, sym_identifier, - ACTIONS(1960), 1, - anon_sym_sizeof, - ACTIONS(1998), 1, + ACTIONS(2328), 1, anon_sym_LPAREN2, - STATE(675), 1, + STATE(893), 1, sym_string_literal, - STATE(1234), 1, + STATE(1061), 1, sym__expression, - ACTIONS(91), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(101), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(161), 2, - sym_true, - sym_false, - ACTIONS(1956), 2, + ACTIONS(1822), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1958), 2, + ACTIONS(1824), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2002), 2, + ACTIONS(1836), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(1844), 2, + sym_true, + sym_false, + ACTIONS(1846), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(2330), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2008), 2, + ACTIONS(2332), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(85), 5, + ACTIONS(1830), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(95), 5, + ACTIONS(1840), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(97), 5, + ACTIONS(1842), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1097), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(792), 16, + STATE(1110), 21, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -83687,29 +86214,33 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [10655] = 21, + [10300] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(83), 1, + ACTIONS(85), 1, anon_sym_sizeof, - ACTIONS(87), 1, - anon_sym_offsetof, ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(159), 1, + ACTIONS(161), 1, sym_number_literal, - ACTIONS(1926), 1, + ACTIONS(1931), 1, sym_identifier, - STATE(675), 1, + STATE(573), 1, sym_string_literal, - STATE(1304), 1, + STATE(1294), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -83720,43 +86251,43 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(81), 2, + ACTIONS(83), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 2, + ACTIONS(93), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(101), 2, + ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(161), 2, + ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(85), 5, + ACTIONS(87), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(97), 5, + ACTIONS(99), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(901), 5, + STATE(877), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(792), 16, + STATE(809), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -83773,24 +86304,24 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [10757] = 21, + [10402] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(83), 1, + ACTIONS(85), 1, anon_sym_sizeof, - ACTIONS(87), 1, - anon_sym_offsetof, ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(159), 1, + ACTIONS(161), 1, sym_number_literal, - ACTIONS(1926), 1, + ACTIONS(1931), 1, sym_identifier, - STATE(675), 1, + STATE(573), 1, sym_string_literal, - STATE(1253), 1, + STATE(1176), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -83801,43 +86332,43 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(81), 2, + ACTIONS(83), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 2, + ACTIONS(93), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(101), 2, + ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(161), 2, + ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(85), 5, + ACTIONS(87), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(97), 5, + ACTIONS(99), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(901), 5, + STATE(877), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(792), 16, + STATE(809), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -83854,74 +86385,69 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [10859] = 21, + [10504] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, + ACTIONS(1828), 1, + anon_sym_sizeof, + ACTIONS(1832), 1, anon_sym_offsetof, - ACTIONS(89), 1, + ACTIONS(1834), 1, anon_sym__Generic, - ACTIONS(159), 1, + ACTIONS(1838), 1, sym_number_literal, - ACTIONS(1932), 1, - anon_sym_sizeof, - ACTIONS(2276), 1, + ACTIONS(2326), 1, sym_identifier, - ACTIONS(2278), 1, + ACTIONS(2328), 1, anon_sym_LPAREN2, - STATE(675), 1, + STATE(893), 1, sym_string_literal, - STATE(832), 1, + STATE(1060), 1, sym__expression, - ACTIONS(91), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(101), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(161), 2, - sym_true, - sym_false, - ACTIONS(1928), 2, + ACTIONS(1822), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1930), 2, + ACTIONS(1824), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2280), 2, + ACTIONS(1836), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(1844), 2, + sym_true, + sym_false, + ACTIONS(1846), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(2330), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2282), 2, + ACTIONS(2332), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(85), 5, + ACTIONS(1830), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(95), 5, + ACTIONS(1840), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(97), 5, + ACTIONS(1842), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(913), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(792), 16, + STATE(1110), 21, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -83930,79 +86456,78 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [10961] = 21, + [10604] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, - anon_sym_offsetof, ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(159), 1, + ACTIONS(161), 1, sym_number_literal, - ACTIONS(1932), 1, - anon_sym_sizeof, - ACTIONS(2276), 1, + ACTIONS(1536), 1, sym_identifier, - ACTIONS(2278), 1, + ACTIONS(1548), 1, + anon_sym_sizeof, + ACTIONS(2420), 1, anon_sym_LPAREN2, - STATE(675), 1, + STATE(573), 1, sym_string_literal, - STATE(1156), 1, + STATE(864), 1, sym__expression, - ACTIONS(91), 2, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(93), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(101), 2, + ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(161), 2, + ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(1928), 2, + ACTIONS(1540), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1930), 2, + ACTIONS(1542), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2280), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2282), 2, + ACTIONS(2422), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(85), 5, + ACTIONS(87), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(97), 5, + ACTIONS(99), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(913), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(792), 16, + STATE(809), 21, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -84011,76 +86536,80 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [11063] = 21, + [10704] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, - anon_sym_offsetof, ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(159), 1, + ACTIONS(161), 1, sym_number_literal, - ACTIONS(1954), 1, + ACTIONS(1993), 1, sym_identifier, - ACTIONS(1960), 1, + ACTIONS(1999), 1, anon_sym_sizeof, - ACTIONS(1998), 1, + ACTIONS(2466), 1, anon_sym_LPAREN2, - STATE(675), 1, + STATE(573), 1, sym_string_literal, - STATE(1207), 1, + STATE(1131), 1, sym__expression, - ACTIONS(91), 2, + ACTIONS(93), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(101), 2, + ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(161), 2, + ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(1956), 2, + ACTIONS(1995), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1958), 2, + ACTIONS(1997), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2002), 2, + ACTIONS(2077), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2008), 2, + ACTIONS(2083), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(85), 5, + ACTIONS(87), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(97), 5, + ACTIONS(99), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1097), 5, + STATE(1154), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(792), 16, + STATE(809), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -84097,74 +86626,69 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [11165] = 21, + [10806] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, - anon_sym_offsetof, ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(159), 1, + ACTIONS(161), 1, sym_number_literal, - ACTIONS(1932), 1, - anon_sym_sizeof, - ACTIONS(2276), 1, + ACTIONS(1536), 1, sym_identifier, - ACTIONS(2278), 1, + ACTIONS(1548), 1, + anon_sym_sizeof, + ACTIONS(2420), 1, anon_sym_LPAREN2, - STATE(675), 1, + STATE(573), 1, sym_string_literal, - STATE(1159), 1, + STATE(862), 1, sym__expression, - ACTIONS(91), 2, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(93), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(101), 2, + ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(161), 2, + ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(1928), 2, + ACTIONS(1540), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1930), 2, + ACTIONS(1542), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2280), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2282), 2, + ACTIONS(2422), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(85), 5, + ACTIONS(87), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(97), 5, + ACTIONS(99), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(913), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(792), 16, + STATE(809), 21, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -84173,79 +86697,78 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [11267] = 21, + [10906] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, - anon_sym_offsetof, ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(159), 1, + ACTIONS(161), 1, sym_number_literal, - ACTIONS(1954), 1, + ACTIONS(1536), 1, sym_identifier, - ACTIONS(1960), 1, + ACTIONS(1548), 1, anon_sym_sizeof, - ACTIONS(1998), 1, + ACTIONS(2420), 1, anon_sym_LPAREN2, - STATE(675), 1, + STATE(573), 1, sym_string_literal, - STATE(1255), 1, + STATE(870), 1, sym__expression, - ACTIONS(91), 2, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(93), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(101), 2, + ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(161), 2, + ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(1956), 2, + ACTIONS(1540), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1958), 2, + ACTIONS(1542), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2002), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2008), 2, + ACTIONS(2422), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(85), 5, + ACTIONS(87), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(97), 5, + ACTIONS(99), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1097), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(792), 16, + STATE(809), 21, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -84254,74 +86777,83 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [11369] = 20, + [11006] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, - anon_sym_offsetof, ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(159), 1, + ACTIONS(161), 1, sym_number_literal, - ACTIONS(1525), 1, + ACTIONS(1993), 1, sym_identifier, - ACTIONS(1910), 1, + ACTIONS(1999), 1, anon_sym_sizeof, - ACTIONS(2290), 1, + ACTIONS(2073), 1, anon_sym_LPAREN2, - STATE(675), 1, + STATE(573), 1, sym_string_literal, - STATE(1031), 1, + STATE(1136), 1, sym__expression, - ACTIONS(91), 2, + ACTIONS(93), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(101), 2, + ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(161), 2, + ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(1906), 2, + ACTIONS(1995), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1908), 2, + ACTIONS(1997), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2002), 2, + ACTIONS(2077), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2292), 2, + ACTIONS(2083), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(85), 5, + ACTIONS(87), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(97), 5, + ACTIONS(99), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(792), 21, + STATE(1154), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(809), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -84330,83 +86862,74 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [11469] = 21, + [11108] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, - anon_sym_offsetof, ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(159), 1, + ACTIONS(161), 1, sym_number_literal, - ACTIONS(1932), 1, - anon_sym_sizeof, - ACTIONS(2276), 1, + ACTIONS(1536), 1, sym_identifier, - ACTIONS(2278), 1, + ACTIONS(1921), 1, + anon_sym_sizeof, + ACTIONS(2334), 1, anon_sym_LPAREN2, - STATE(675), 1, + STATE(573), 1, sym_string_literal, - STATE(1168), 1, + STATE(1138), 1, sym__expression, - ACTIONS(91), 2, + ACTIONS(93), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(101), 2, + ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(161), 2, + ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(1928), 2, + ACTIONS(1917), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1930), 2, + ACTIONS(1919), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2280), 2, + ACTIONS(2077), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2282), 2, + ACTIONS(2336), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(85), 5, + ACTIONS(87), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(97), 5, + ACTIONS(99), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(913), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(792), 16, + STATE(809), 21, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -84415,79 +86938,78 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [11571] = 21, + [11208] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(83), 1, - anon_sym_sizeof, - ACTIONS(87), 1, - anon_sym_offsetof, ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(159), 1, + ACTIONS(161), 1, sym_number_literal, - ACTIONS(1926), 1, + ACTIONS(1536), 1, sym_identifier, - ACTIONS(2404), 1, + ACTIONS(1548), 1, + anon_sym_sizeof, + ACTIONS(2420), 1, anon_sym_LPAREN2, - STATE(675), 1, + STATE(573), 1, sym_string_literal, - STATE(836), 1, + STATE(871), 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(81), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(91), 2, + ACTIONS(93), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(101), 2, + ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(161), 2, + ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(85), 5, + ACTIONS(1540), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1542), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2422), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(87), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(97), 5, + ACTIONS(99), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(901), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(792), 16, + STATE(809), 21, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -84496,76 +87018,80 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [11673] = 21, + [11308] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, - anon_sym_offsetof, ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(159), 1, + ACTIONS(161), 1, sym_number_literal, - ACTIONS(1932), 1, - anon_sym_sizeof, - ACTIONS(2276), 1, + ACTIONS(1993), 1, sym_identifier, - ACTIONS(2278), 1, + ACTIONS(1999), 1, + anon_sym_sizeof, + ACTIONS(2073), 1, anon_sym_LPAREN2, - STATE(675), 1, + STATE(573), 1, sym_string_literal, - STATE(1154), 1, + STATE(1126), 1, sym__expression, - ACTIONS(91), 2, + ACTIONS(93), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(101), 2, + ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(161), 2, + ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(1928), 2, + ACTIONS(1995), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1930), 2, + ACTIONS(1997), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2280), 2, + ACTIONS(2077), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2282), 2, + ACTIONS(2083), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(85), 5, + ACTIONS(87), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(97), 5, + ACTIONS(99), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(913), 5, + STATE(1154), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(792), 16, + STATE(809), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -84582,24 +87108,24 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [11775] = 21, + [11410] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(83), 1, + ACTIONS(85), 1, anon_sym_sizeof, - ACTIONS(87), 1, - anon_sym_offsetof, ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(159), 1, + ACTIONS(161), 1, sym_number_literal, - ACTIONS(1926), 1, + ACTIONS(1931), 1, sym_identifier, - STATE(675), 1, + STATE(573), 1, sym_string_literal, - STATE(1202), 1, + STATE(1325), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -84610,43 +87136,43 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(81), 2, + ACTIONS(83), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 2, + ACTIONS(93), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(101), 2, + ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(161), 2, + ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(85), 5, + ACTIONS(87), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(97), 5, + ACTIONS(99), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(901), 5, + STATE(877), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(792), 16, + STATE(809), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -84663,65 +87189,65 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [11877] = 20, + [11512] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, + ACTIONS(1828), 1, + anon_sym_sizeof, + ACTIONS(1832), 1, anon_sym_offsetof, - ACTIONS(89), 1, + ACTIONS(1834), 1, anon_sym__Generic, - ACTIONS(159), 1, + ACTIONS(1838), 1, sym_number_literal, - ACTIONS(1525), 1, + ACTIONS(2326), 1, sym_identifier, - ACTIONS(1543), 1, - anon_sym_sizeof, - ACTIONS(2406), 1, + ACTIONS(2328), 1, anon_sym_LPAREN2, - STATE(675), 1, + STATE(893), 1, sym_string_literal, - STATE(836), 1, + STATE(1073), 1, sym__expression, - ACTIONS(91), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(101), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(161), 2, - sym_true, - sym_false, - ACTIONS(1539), 2, + ACTIONS(1822), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1541), 2, + ACTIONS(1824), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2280), 2, + ACTIONS(1836), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(1844), 2, + sym_true, + sym_false, + ACTIONS(1846), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(2330), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2288), 2, + ACTIONS(2332), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(85), 5, + ACTIONS(1830), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(95), 5, + ACTIONS(1840), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(97), 5, + ACTIONS(1842), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(792), 21, + STATE(1110), 21, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -84743,74 +87269,69 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [11977] = 21, + [11612] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, - anon_sym_offsetof, ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(159), 1, + ACTIONS(161), 1, sym_number_literal, - ACTIONS(1954), 1, + ACTIONS(1536), 1, sym_identifier, - ACTIONS(1960), 1, + ACTIONS(1548), 1, anon_sym_sizeof, - ACTIONS(1998), 1, + ACTIONS(2420), 1, anon_sym_LPAREN2, - STATE(675), 1, + STATE(573), 1, sym_string_literal, - STATE(1295), 1, + STATE(861), 1, sym__expression, - ACTIONS(91), 2, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(93), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(101), 2, + ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(161), 2, + ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(1956), 2, + ACTIONS(1540), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1958), 2, + ACTIONS(1542), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2002), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2008), 2, + ACTIONS(2422), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(85), 5, + ACTIONS(87), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(97), 5, + ACTIONS(99), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1097), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(792), 16, + STATE(809), 21, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -84819,141 +87340,80 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [12079] = 5, + [11712] = 21, ACTIONS(3), 1, sym_comment, - STATE(610), 1, - sym_string_literal, - ACTIONS(97), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1970), 19, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, - anon_sym_EQ, - anon_sym_DOT, - sym_identifier, - ACTIONS(1964), 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, + ACTIONS(19), 1, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [12149] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(87), 1, - anon_sym_offsetof, + ACTIONS(85), 1, + anon_sym_sizeof, ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(159), 1, + ACTIONS(161), 1, sym_number_literal, - ACTIONS(1932), 1, - anon_sym_sizeof, - ACTIONS(2276), 1, + ACTIONS(1931), 1, sym_identifier, - ACTIONS(2278), 1, - anon_sym_LPAREN2, - STATE(675), 1, + STATE(573), 1, sym_string_literal, - STATE(840), 1, + STATE(1312), 1, sym__expression, - ACTIONS(91), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(101), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(161), 2, - sym_true, - sym_false, - ACTIONS(1928), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1930), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2280), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2282), 2, + ACTIONS(83), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(85), 5, + ACTIONS(93), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(103), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(163), 2, + sym_true, + sym_false, + ACTIONS(87), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(97), 5, + ACTIONS(99), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(913), 5, + STATE(877), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(792), 16, + STATE(809), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -84970,71 +87430,71 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [12251] = 21, + [11814] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1555), 1, + ACTIONS(89), 1, anon_sym_offsetof, - ACTIONS(1557), 1, + ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(1561), 1, + ACTIONS(161), 1, sym_number_literal, - ACTIONS(1940), 1, - anon_sym_sizeof, - ACTIONS(2324), 1, + ACTIONS(1993), 1, sym_identifier, - ACTIONS(2326), 1, + ACTIONS(1999), 1, + anon_sym_sizeof, + ACTIONS(2073), 1, anon_sym_LPAREN2, - STATE(859), 1, + STATE(573), 1, sym_string_literal, - STATE(943), 1, + STATE(1249), 1, sym__expression, - ACTIONS(1559), 2, + ACTIONS(93), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1567), 2, - sym_true, - sym_false, - ACTIONS(1569), 2, + ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(1936), 2, + ACTIONS(163), 2, + sym_true, + sym_false, + ACTIONS(1995), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1938), 2, + ACTIONS(1997), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2306), 2, + ACTIONS(2077), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2328), 2, + ACTIONS(2083), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1553), 5, + ACTIONS(87), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1563), 5, + ACTIONS(97), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1565), 5, + ACTIONS(99), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(954), 5, + STATE(1154), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(963), 16, + STATE(809), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -85051,145 +87511,151 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [12353] = 14, + [11916] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1962), 1, - anon_sym_const, - ACTIONS(1966), 1, + ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, + anon_sym__Generic, + ACTIONS(161), 1, + sym_number_literal, + ACTIONS(1536), 1, + sym_identifier, + ACTIONS(1562), 1, + anon_sym_sizeof, + ACTIONS(2468), 1, anon_sym_LPAREN2, - ACTIONS(1972), 1, - anon_sym_STAR, - ACTIONS(1982), 1, - anon_sym_EQ, - STATE(610), 1, + STATE(573), 1, sym_string_literal, - STATE(1085), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(1975), 2, - anon_sym_RPAREN, - anon_sym_LBRACK, - ACTIONS(2408), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, + STATE(833), 1, + sym__expression, + ACTIONS(93), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(103), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(163), 2, + sym_true, + sym_false, + ACTIONS(1558), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1560), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2352), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2398), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(87), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, ACTIONS(97), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(99), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1978), 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, - ACTIONS(1986), 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(1970), 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(1964), 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, - [12441] = 21, + STATE(809), 21, + sym__expression_not_binary, + sym_conditional_expression, + sym_assignment_expression, + sym_pointer_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_subscript_expression, + sym_call_expression, + sym_gnu_asm_expression, + sym_field_expression, + sym_compound_literal_expression, + sym_parenthesized_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [12016] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, - anon_sym_offsetof, ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(159), 1, + ACTIONS(161), 1, sym_number_literal, - ACTIONS(1954), 1, + ACTIONS(1993), 1, sym_identifier, - ACTIONS(1960), 1, + ACTIONS(1999), 1, anon_sym_sizeof, - ACTIONS(1998), 1, + ACTIONS(2073), 1, anon_sym_LPAREN2, - STATE(675), 1, + STATE(573), 1, sym_string_literal, - STATE(1006), 1, + STATE(1135), 1, sym__expression, - ACTIONS(91), 2, + ACTIONS(93), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(101), 2, + ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(161), 2, + ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(1956), 2, + ACTIONS(1995), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1958), 2, + ACTIONS(1997), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2002), 2, + ACTIONS(2077), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2008), 2, + ACTIONS(2083), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(85), 5, + ACTIONS(87), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(97), 5, + ACTIONS(99), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1097), 5, + STATE(1154), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(792), 16, + STATE(809), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -85206,71 +87672,71 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [12543] = 21, + [12118] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, - anon_sym_offsetof, ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(159), 1, + ACTIONS(161), 1, sym_number_literal, - ACTIONS(1954), 1, - sym_identifier, - ACTIONS(1960), 1, + ACTIONS(1957), 1, anon_sym_sizeof, - ACTIONS(1998), 1, + ACTIONS(2348), 1, + sym_identifier, + ACTIONS(2350), 1, anon_sym_LPAREN2, - STATE(675), 1, + STATE(573), 1, sym_string_literal, - STATE(1209), 1, + STATE(1183), 1, sym__expression, - ACTIONS(91), 2, + ACTIONS(93), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(101), 2, + ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(161), 2, + ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(1956), 2, + ACTIONS(1953), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1958), 2, + ACTIONS(1955), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2002), 2, + ACTIONS(2352), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2008), 2, + ACTIONS(2354), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(85), 5, + ACTIONS(87), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(97), 5, + ACTIONS(99), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1097), 5, + STATE(1004), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(792), 16, + STATE(809), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -85287,71 +87753,71 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [12645] = 21, + [12220] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, + ACTIONS(1832), 1, anon_sym_offsetof, - ACTIONS(89), 1, + ACTIONS(1834), 1, anon_sym__Generic, - ACTIONS(159), 1, + ACTIONS(1838), 1, sym_number_literal, - ACTIONS(1932), 1, + ACTIONS(1963), 1, anon_sym_sizeof, - ACTIONS(2276), 1, + ACTIONS(2356), 1, sym_identifier, - ACTIONS(2410), 1, + ACTIONS(2470), 1, anon_sym_LPAREN2, - STATE(675), 1, + STATE(893), 1, sym_string_literal, - STATE(836), 1, + STATE(1050), 1, sym__expression, - ACTIONS(91), 2, + ACTIONS(1836), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(101), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(161), 2, + ACTIONS(1844), 2, sym_true, sym_false, - ACTIONS(1928), 2, + ACTIONS(1846), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1959), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1930), 2, + ACTIONS(1961), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2280), 2, + ACTIONS(2330), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2282), 2, + ACTIONS(2360), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(85), 5, + ACTIONS(1830), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(95), 5, + ACTIONS(1840), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(97), 5, + ACTIONS(1842), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(913), 5, + STATE(1098), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(792), 16, + STATE(1110), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -85368,69 +87834,74 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [12747] = 20, + [12322] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, + ACTIONS(1832), 1, anon_sym_offsetof, - ACTIONS(89), 1, + ACTIONS(1834), 1, anon_sym__Generic, - ACTIONS(159), 1, + ACTIONS(1838), 1, sym_number_literal, - ACTIONS(1525), 1, - sym_identifier, - ACTIONS(1910), 1, + ACTIONS(1963), 1, anon_sym_sizeof, - ACTIONS(2290), 1, + ACTIONS(2356), 1, + sym_identifier, + ACTIONS(2358), 1, anon_sym_LPAREN2, - STATE(675), 1, + STATE(893), 1, sym_string_literal, - STATE(1064), 1, + STATE(1049), 1, sym__expression, - ACTIONS(91), 2, + ACTIONS(1836), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(101), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(161), 2, + ACTIONS(1844), 2, sym_true, sym_false, - ACTIONS(1906), 2, + ACTIONS(1846), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1959), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1908), 2, + ACTIONS(1961), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2002), 2, + ACTIONS(2330), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2292), 2, + ACTIONS(2360), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(85), 5, + ACTIONS(1830), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(95), 5, + ACTIONS(1840), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(97), 5, + ACTIONS(1842), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(792), 21, + STATE(1098), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(1110), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -85439,80 +87910,76 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [12847] = 21, + [12424] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(83), 1, - anon_sym_sizeof, - ACTIONS(87), 1, - anon_sym_offsetof, ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(159), 1, + ACTIONS(161), 1, sym_number_literal, - ACTIONS(1926), 1, + ACTIONS(1993), 1, sym_identifier, - STATE(675), 1, + ACTIONS(1999), 1, + anon_sym_sizeof, + ACTIONS(2073), 1, + anon_sym_LPAREN2, + STATE(573), 1, sym_string_literal, - STATE(1204), 1, + STATE(1247), 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(81), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(91), 2, + ACTIONS(93), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(101), 2, + ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(161), 2, + ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(85), 5, + ACTIONS(1995), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1997), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2077), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2083), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(87), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(97), 5, + ACTIONS(99), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(901), 5, + STATE(1154), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(792), 16, + STATE(809), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -85529,69 +87996,74 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [12949] = 20, + [12526] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, + ACTIONS(1832), 1, anon_sym_offsetof, - ACTIONS(89), 1, + ACTIONS(1834), 1, anon_sym__Generic, - ACTIONS(159), 1, + ACTIONS(1838), 1, sym_number_literal, - ACTIONS(1525), 1, - sym_identifier, - ACTIONS(1910), 1, + ACTIONS(1963), 1, anon_sym_sizeof, - ACTIONS(2290), 1, + ACTIONS(2356), 1, + sym_identifier, + ACTIONS(2358), 1, anon_sym_LPAREN2, - STATE(675), 1, + STATE(893), 1, sym_string_literal, - STATE(1049), 1, + STATE(1041), 1, sym__expression, - ACTIONS(91), 2, + ACTIONS(1836), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(101), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(161), 2, + ACTIONS(1844), 2, sym_true, sym_false, - ACTIONS(1906), 2, + ACTIONS(1846), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1959), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1908), 2, + ACTIONS(1961), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2002), 2, + ACTIONS(2330), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2292), 2, + ACTIONS(2360), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(85), 5, + ACTIONS(1830), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(95), 5, + ACTIONS(1840), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(97), 5, + ACTIONS(1842), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(792), 21, + STATE(1098), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(1110), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -85600,78 +88072,79 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [13049] = 20, + [12628] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, - anon_sym_offsetof, ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(159), 1, + ACTIONS(161), 1, sym_number_literal, - ACTIONS(1525), 1, - sym_identifier, - ACTIONS(1910), 1, + ACTIONS(1957), 1, anon_sym_sizeof, - ACTIONS(2290), 1, + ACTIONS(2348), 1, + sym_identifier, + ACTIONS(2350), 1, anon_sym_LPAREN2, - STATE(675), 1, + STATE(573), 1, sym_string_literal, - STATE(1053), 1, + STATE(1184), 1, sym__expression, - ACTIONS(91), 2, + ACTIONS(93), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(101), 2, + ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(161), 2, + ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(1906), 2, + ACTIONS(1953), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1908), 2, + ACTIONS(1955), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2002), 2, + ACTIONS(2352), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2292), 2, + ACTIONS(2354), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(85), 5, + ACTIONS(87), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(97), 5, + ACTIONS(99), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(792), 21, + STATE(1004), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(809), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -85680,80 +88153,76 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [13149] = 21, + [12730] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, - anon_sym_offsetof, ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(159), 1, + ACTIONS(161), 1, sym_number_literal, - ACTIONS(1954), 1, - sym_identifier, - ACTIONS(1960), 1, + ACTIONS(1957), 1, anon_sym_sizeof, - ACTIONS(1998), 1, + ACTIONS(2348), 1, + sym_identifier, + ACTIONS(2350), 1, anon_sym_LPAREN2, - STATE(675), 1, + STATE(573), 1, sym_string_literal, - STATE(1222), 1, + STATE(1185), 1, sym__expression, - ACTIONS(91), 2, + ACTIONS(93), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(101), 2, + ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(161), 2, + ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(1956), 2, + ACTIONS(1953), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1958), 2, + ACTIONS(1955), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2002), 2, + ACTIONS(2352), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2008), 2, + ACTIONS(2354), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(85), 5, + ACTIONS(87), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(97), 5, + ACTIONS(99), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1097), 5, + STATE(1004), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(792), 16, + STATE(809), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -85770,65 +88239,65 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [13251] = 20, + [12832] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, + ACTIONS(1828), 1, + anon_sym_sizeof, + ACTIONS(1832), 1, anon_sym_offsetof, - ACTIONS(89), 1, + ACTIONS(1834), 1, anon_sym__Generic, - ACTIONS(159), 1, + ACTIONS(1838), 1, sym_number_literal, - ACTIONS(1525), 1, + ACTIONS(2326), 1, sym_identifier, - ACTIONS(1543), 1, - anon_sym_sizeof, - ACTIONS(2286), 1, + ACTIONS(2328), 1, anon_sym_LPAREN2, - STATE(675), 1, + STATE(893), 1, sym_string_literal, - STATE(834), 1, + STATE(1079), 1, sym__expression, - ACTIONS(91), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(101), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(161), 2, - sym_true, - sym_false, - ACTIONS(1539), 2, + ACTIONS(1822), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1541), 2, + ACTIONS(1824), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2280), 2, + ACTIONS(1836), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(1844), 2, + sym_true, + sym_false, + ACTIONS(1846), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(2330), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2288), 2, + ACTIONS(2332), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(85), 5, + ACTIONS(1830), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(95), 5, + ACTIONS(1840), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(97), 5, + ACTIONS(1842), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(792), 21, + STATE(1110), 21, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -85850,24 +88319,24 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [13351] = 21, + [12932] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(83), 1, + ACTIONS(85), 1, anon_sym_sizeof, - ACTIONS(87), 1, - anon_sym_offsetof, ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(159), 1, + ACTIONS(161), 1, sym_number_literal, - ACTIONS(1926), 1, + ACTIONS(1931), 1, sym_identifier, - STATE(675), 1, + STATE(573), 1, sym_string_literal, - STATE(1302), 1, + STATE(1298), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -85878,43 +88347,43 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(81), 2, + ACTIONS(83), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 2, + ACTIONS(93), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(101), 2, + ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(161), 2, + ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(85), 5, + ACTIONS(87), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(97), 5, + ACTIONS(99), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(901), 5, + STATE(877), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(792), 16, + STATE(809), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -85931,152 +88400,71 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [13453] = 21, + [13034] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, - anon_sym_offsetof, ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(159), 1, + ACTIONS(161), 1, sym_number_literal, - ACTIONS(1954), 1, - sym_identifier, - ACTIONS(1960), 1, + ACTIONS(1957), 1, anon_sym_sizeof, - ACTIONS(1998), 1, + ACTIONS(2348), 1, + sym_identifier, + ACTIONS(2472), 1, anon_sym_LPAREN2, - STATE(675), 1, + STATE(573), 1, sym_string_literal, - STATE(1241), 1, + STATE(833), 1, sym__expression, - ACTIONS(91), 2, + ACTIONS(93), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(101), 2, + ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(161), 2, + ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(1956), 2, + ACTIONS(1953), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1958), 2, + ACTIONS(1955), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2002), 2, + ACTIONS(2352), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2008), 2, + ACTIONS(2354), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(85), 5, + ACTIONS(87), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(95), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, ACTIONS(97), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(1097), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(792), 16, - sym__expression_not_binary, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_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, - [13555] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(83), 1, - anon_sym_sizeof, - ACTIONS(87), 1, - anon_sym_offsetof, - ACTIONS(89), 1, - anon_sym__Generic, - ACTIONS(159), 1, - sym_number_literal, - ACTIONS(1926), 1, - sym_identifier, - STATE(675), 1, - sym_string_literal, - STATE(1213), 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(81), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(91), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(101), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(161), 2, - sym_true, - sym_false, - ACTIONS(85), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(97), 5, + ACTIONS(99), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(901), 5, + STATE(1004), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(792), 16, + STATE(809), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -86093,71 +88481,71 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [13657] = 21, + [13136] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, - anon_sym_offsetof, ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(159), 1, + ACTIONS(161), 1, sym_number_literal, - ACTIONS(1954), 1, + ACTIONS(1993), 1, sym_identifier, - ACTIONS(1960), 1, + ACTIONS(1999), 1, anon_sym_sizeof, - ACTIONS(1998), 1, + ACTIONS(2073), 1, anon_sym_LPAREN2, - STATE(675), 1, + STATE(573), 1, sym_string_literal, - STATE(1071), 1, + STATE(1246), 1, sym__expression, - ACTIONS(91), 2, + ACTIONS(93), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(101), 2, + ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(161), 2, + ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(1956), 2, + ACTIONS(1995), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1958), 2, + ACTIONS(1997), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2002), 2, + ACTIONS(2077), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2008), 2, + ACTIONS(2083), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(85), 5, + ACTIONS(87), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(97), 5, + ACTIONS(99), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1097), 5, + STATE(1154), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(792), 16, + STATE(809), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -86174,71 +88562,145 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [13759] = 21, + [13238] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, - anon_sym_offsetof, + ACTIONS(1965), 1, + anon_sym_const, + ACTIONS(1969), 1, + anon_sym_LPAREN2, + ACTIONS(1975), 1, + anon_sym_STAR, + ACTIONS(1985), 1, + anon_sym_EQ, + STATE(567), 1, + sym_string_literal, + STATE(1033), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(1978), 2, + anon_sym_RPAREN, + anon_sym_LBRACK, + ACTIONS(2474), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(99), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(1981), 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, + ACTIONS(1989), 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(1973), 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(1967), 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, + [13326] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(85), 1, + anon_sym_sizeof, ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(159), 1, + ACTIONS(161), 1, sym_number_literal, - ACTIONS(1954), 1, + ACTIONS(1931), 1, sym_identifier, - ACTIONS(1960), 1, - anon_sym_sizeof, - ACTIONS(2412), 1, - anon_sym_LPAREN2, - STATE(675), 1, + STATE(573), 1, sym_string_literal, - STATE(1065), 1, + STATE(837), 1, sym__expression, - ACTIONS(91), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(101), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(161), 2, - sym_true, - sym_false, - ACTIONS(1956), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1958), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2002), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2008), 2, + ACTIONS(83), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(85), 5, + ACTIONS(93), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(103), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(163), 2, + sym_true, + sym_false, + ACTIONS(87), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(97), 5, + ACTIONS(99), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1097), 5, + STATE(877), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(792), 16, + STATE(809), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -86255,71 +88717,71 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [13861] = 21, + [13428] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, - anon_sym_offsetof, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(85), 1, + anon_sym_sizeof, ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(159), 1, + ACTIONS(161), 1, sym_number_literal, - ACTIONS(1932), 1, - anon_sym_sizeof, - ACTIONS(2276), 1, + ACTIONS(1931), 1, sym_identifier, - ACTIONS(2278), 1, - anon_sym_LPAREN2, - STATE(675), 1, + STATE(573), 1, sym_string_literal, - STATE(1166), 1, + STATE(1318), 1, sym__expression, - ACTIONS(91), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(101), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(161), 2, - sym_true, - sym_false, - ACTIONS(1928), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1930), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2280), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2282), 2, + ACTIONS(83), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(85), 5, + ACTIONS(93), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(103), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(163), 2, + sym_true, + sym_false, + ACTIONS(87), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(97), 5, + ACTIONS(99), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(913), 5, + STATE(877), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(792), 16, + STATE(809), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -86336,71 +88798,71 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [13963] = 21, + [13530] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, - anon_sym_offsetof, ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(159), 1, + ACTIONS(161), 1, sym_number_literal, - ACTIONS(1954), 1, + ACTIONS(1993), 1, sym_identifier, - ACTIONS(1960), 1, + ACTIONS(1999), 1, anon_sym_sizeof, - ACTIONS(1998), 1, + ACTIONS(2073), 1, anon_sym_LPAREN2, - STATE(675), 1, + STATE(573), 1, sym_string_literal, - STATE(1223), 1, + STATE(1245), 1, sym__expression, - ACTIONS(91), 2, + ACTIONS(93), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(101), 2, + ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(161), 2, + ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(1956), 2, + ACTIONS(1995), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1958), 2, + ACTIONS(1997), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2002), 2, + ACTIONS(2077), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2008), 2, + ACTIONS(2083), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(85), 5, + ACTIONS(87), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(97), 5, + ACTIONS(99), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1097), 5, + STATE(1154), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(792), 16, + STATE(809), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -86417,71 +88879,71 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [14065] = 21, + [13632] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, - anon_sym_offsetof, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(85), 1, + anon_sym_sizeof, ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(159), 1, + ACTIONS(161), 1, sym_number_literal, - ACTIONS(1954), 1, + ACTIONS(1931), 1, sym_identifier, - ACTIONS(1960), 1, - anon_sym_sizeof, - ACTIONS(1998), 1, - anon_sym_LPAREN2, - STATE(675), 1, + STATE(573), 1, sym_string_literal, - STATE(1224), 1, + STATE(1222), 1, sym__expression, - ACTIONS(91), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(101), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(161), 2, - sym_true, - sym_false, - ACTIONS(1956), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1958), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2002), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2008), 2, + ACTIONS(83), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(85), 5, + ACTIONS(93), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(103), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(163), 2, + sym_true, + sym_false, + ACTIONS(87), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(97), 5, + ACTIONS(99), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1097), 5, + STATE(877), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(792), 16, + STATE(809), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -86498,69 +88960,74 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [14167] = 20, + [13734] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, - anon_sym_offsetof, ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(159), 1, + ACTIONS(161), 1, sym_number_literal, - ACTIONS(1525), 1, + ACTIONS(1993), 1, sym_identifier, - ACTIONS(1543), 1, + ACTIONS(1999), 1, anon_sym_sizeof, - ACTIONS(2286), 1, + ACTIONS(2073), 1, anon_sym_LPAREN2, - STATE(675), 1, + STATE(573), 1, sym_string_literal, - STATE(898), 1, + STATE(1244), 1, sym__expression, - ACTIONS(91), 2, + ACTIONS(93), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(101), 2, + ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(161), 2, + ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(1539), 2, + ACTIONS(1995), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1541), 2, + ACTIONS(1997), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2280), 2, + ACTIONS(2077), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2288), 2, + ACTIONS(2083), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(85), 5, + ACTIONS(87), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(97), 5, + ACTIONS(99), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(792), 21, + STATE(1154), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(809), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -86569,80 +89036,76 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [14267] = 21, + [13836] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1555), 1, + ACTIONS(89), 1, anon_sym_offsetof, - ACTIONS(1557), 1, + ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(1561), 1, + ACTIONS(161), 1, sym_number_literal, - ACTIONS(1940), 1, - anon_sym_sizeof, - ACTIONS(2324), 1, + ACTIONS(1993), 1, sym_identifier, - ACTIONS(2326), 1, + ACTIONS(1999), 1, + anon_sym_sizeof, + ACTIONS(2073), 1, anon_sym_LPAREN2, - STATE(859), 1, + STATE(573), 1, sym_string_literal, - STATE(940), 1, + STATE(1243), 1, sym__expression, - ACTIONS(1559), 2, + ACTIONS(93), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1567), 2, - sym_true, - sym_false, - ACTIONS(1569), 2, + ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(1936), 2, + ACTIONS(163), 2, + sym_true, + sym_false, + ACTIONS(1995), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1938), 2, + ACTIONS(1997), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2306), 2, + ACTIONS(2077), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2328), 2, + ACTIONS(2083), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1553), 5, + ACTIONS(87), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1563), 5, + ACTIONS(97), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1565), 5, + ACTIONS(99), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(954), 5, + STATE(1154), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(963), 16, + STATE(809), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -86659,74 +89122,69 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [14369] = 21, + [13938] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1555), 1, + ACTIONS(89), 1, anon_sym_offsetof, - ACTIONS(1557), 1, + ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(1561), 1, + ACTIONS(161), 1, sym_number_literal, - ACTIONS(1940), 1, - anon_sym_sizeof, - ACTIONS(2324), 1, + ACTIONS(1536), 1, sym_identifier, - ACTIONS(2414), 1, + ACTIONS(1921), 1, + anon_sym_sizeof, + ACTIONS(2334), 1, anon_sym_LPAREN2, - STATE(859), 1, + STATE(573), 1, sym_string_literal, - STATE(938), 1, + STATE(1129), 1, sym__expression, - ACTIONS(1559), 2, + ACTIONS(93), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1567), 2, - sym_true, - sym_false, - ACTIONS(1569), 2, + ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(1936), 2, + ACTIONS(163), 2, + sym_true, + sym_false, + ACTIONS(1917), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1938), 2, + ACTIONS(1919), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2306), 2, + ACTIONS(2077), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2328), 2, + ACTIONS(2336), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1553), 5, + ACTIONS(87), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1563), 5, + ACTIONS(97), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1565), 5, + ACTIONS(99), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(954), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(963), 16, + STATE(809), 21, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -86735,79 +89193,78 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [14471] = 21, + [14038] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1555), 1, + ACTIONS(89), 1, anon_sym_offsetof, - ACTIONS(1557), 1, + ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(1561), 1, + ACTIONS(161), 1, sym_number_literal, - ACTIONS(1940), 1, - anon_sym_sizeof, - ACTIONS(2324), 1, + ACTIONS(1536), 1, sym_identifier, - ACTIONS(2326), 1, + ACTIONS(1921), 1, + anon_sym_sizeof, + ACTIONS(2334), 1, anon_sym_LPAREN2, - STATE(859), 1, + STATE(573), 1, sym_string_literal, - STATE(1183), 1, + STATE(1135), 1, sym__expression, - ACTIONS(1559), 2, + ACTIONS(93), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1567), 2, - sym_true, - sym_false, - ACTIONS(1569), 2, + ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(1936), 2, + ACTIONS(163), 2, + sym_true, + sym_false, + ACTIONS(1917), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1938), 2, + ACTIONS(1919), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2306), 2, + ACTIONS(2077), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2328), 2, + ACTIONS(2336), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1553), 5, + ACTIONS(87), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1563), 5, + ACTIONS(97), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1565), 5, + ACTIONS(99), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(954), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(963), 16, + STATE(809), 21, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -86816,76 +89273,80 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [14573] = 21, + [14138] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1555), 1, + ACTIONS(89), 1, anon_sym_offsetof, - ACTIONS(1557), 1, + ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(1561), 1, + ACTIONS(161), 1, sym_number_literal, - ACTIONS(1940), 1, - anon_sym_sizeof, - ACTIONS(2324), 1, + ACTIONS(1993), 1, sym_identifier, - ACTIONS(2326), 1, + ACTIONS(1999), 1, + anon_sym_sizeof, + ACTIONS(2073), 1, anon_sym_LPAREN2, - STATE(859), 1, + STATE(573), 1, sym_string_literal, - STATE(1172), 1, + STATE(1242), 1, sym__expression, - ACTIONS(1559), 2, + ACTIONS(93), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1567), 2, - sym_true, - sym_false, - ACTIONS(1569), 2, + ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(1936), 2, + ACTIONS(163), 2, + sym_true, + sym_false, + ACTIONS(1995), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1938), 2, + ACTIONS(1997), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2306), 2, + ACTIONS(2077), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2328), 2, + ACTIONS(2083), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1553), 5, + ACTIONS(87), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1563), 5, + ACTIONS(97), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1565), 5, + ACTIONS(99), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(954), 5, + STATE(1154), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(963), 16, + STATE(809), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -86902,71 +89363,71 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [14675] = 21, + [14240] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1555), 1, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(85), 1, + anon_sym_sizeof, + ACTIONS(89), 1, anon_sym_offsetof, - ACTIONS(1557), 1, + ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(1561), 1, + ACTIONS(161), 1, sym_number_literal, - ACTIONS(1940), 1, - anon_sym_sizeof, - ACTIONS(2324), 1, + ACTIONS(1931), 1, sym_identifier, - ACTIONS(2326), 1, - anon_sym_LPAREN2, - STATE(859), 1, + STATE(573), 1, sym_string_literal, - STATE(933), 1, + STATE(1153), 1, sym__expression, - ACTIONS(1559), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(1567), 2, - sym_true, - sym_false, - ACTIONS(1569), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(1936), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1938), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2306), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2328), 2, + ACTIONS(83), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1553), 5, + ACTIONS(93), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(103), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(163), 2, + sym_true, + sym_false, + ACTIONS(87), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1563), 5, + ACTIONS(97), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1565), 5, + ACTIONS(99), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(954), 5, + STATE(877), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(963), 16, + STATE(809), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -86983,69 +89444,74 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [14777] = 20, + [14342] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, - anon_sym_offsetof, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(85), 1, + anon_sym_sizeof, ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(159), 1, + ACTIONS(161), 1, sym_number_literal, - ACTIONS(1525), 1, + ACTIONS(1931), 1, sym_identifier, - ACTIONS(1543), 1, - anon_sym_sizeof, - ACTIONS(2286), 1, - anon_sym_LPAREN2, - STATE(675), 1, + STATE(573), 1, sym_string_literal, - STATE(902), 1, + STATE(1315), 1, sym__expression, - ACTIONS(91), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(101), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(161), 2, - sym_true, - sym_false, - ACTIONS(1539), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1541), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2280), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2288), 2, + ACTIONS(83), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(85), 5, + ACTIONS(93), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(103), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(163), 2, + sym_true, + sym_false, + ACTIONS(87), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(97), 5, + ACTIONS(99), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(792), 21, + STATE(877), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(809), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -87054,83 +89520,74 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [14877] = 21, + [14444] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1555), 1, + ACTIONS(89), 1, anon_sym_offsetof, - ACTIONS(1557), 1, + ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(1561), 1, + ACTIONS(161), 1, sym_number_literal, - ACTIONS(1940), 1, - anon_sym_sizeof, - ACTIONS(2324), 1, + ACTIONS(1536), 1, sym_identifier, - ACTIONS(2326), 1, + ACTIONS(1548), 1, + anon_sym_sizeof, + ACTIONS(2420), 1, anon_sym_LPAREN2, - STATE(859), 1, + STATE(573), 1, sym_string_literal, - STATE(1171), 1, + STATE(863), 1, sym__expression, - ACTIONS(1559), 2, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(93), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1567), 2, - sym_true, - sym_false, - ACTIONS(1569), 2, + ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(1936), 2, + ACTIONS(163), 2, + sym_true, + sym_false, + ACTIONS(1540), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1938), 2, + ACTIONS(1542), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2306), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2328), 2, + ACTIONS(2422), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1553), 5, + ACTIONS(87), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1563), 5, + ACTIONS(97), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1565), 5, + ACTIONS(99), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(954), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(963), 16, + STATE(809), 21, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -87139,70 +89596,74 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [14979] = 20, + [14544] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, + ACTIONS(1828), 1, + anon_sym_sizeof, + ACTIONS(1832), 1, anon_sym_offsetof, - ACTIONS(89), 1, + ACTIONS(1834), 1, anon_sym__Generic, - ACTIONS(159), 1, + ACTIONS(1838), 1, sym_number_literal, - ACTIONS(1525), 1, + ACTIONS(2326), 1, sym_identifier, - ACTIONS(1543), 1, - anon_sym_sizeof, - ACTIONS(2286), 1, + ACTIONS(2328), 1, anon_sym_LPAREN2, - STATE(675), 1, + STATE(893), 1, sym_string_literal, - STATE(903), 1, + STATE(1059), 1, sym__expression, - ACTIONS(91), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(101), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(161), 2, - sym_true, - sym_false, - ACTIONS(1539), 2, + ACTIONS(1822), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1541), 2, + ACTIONS(1824), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2280), 2, + ACTIONS(1836), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(1844), 2, + sym_true, + sym_false, + ACTIONS(1846), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(2330), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2288), 2, + ACTIONS(2332), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(85), 5, + ACTIONS(1830), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(95), 5, + ACTIONS(1840), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(97), 5, + ACTIONS(1842), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(792), 21, + STATE(1110), 21, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -87224,71 +89685,71 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [15079] = 21, + [14644] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1555), 1, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(85), 1, + anon_sym_sizeof, + ACTIONS(89), 1, anon_sym_offsetof, - ACTIONS(1557), 1, + ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(1561), 1, + ACTIONS(161), 1, sym_number_literal, - ACTIONS(1940), 1, - anon_sym_sizeof, - ACTIONS(2324), 1, + ACTIONS(1931), 1, sym_identifier, - ACTIONS(2326), 1, - anon_sym_LPAREN2, - STATE(859), 1, + STATE(573), 1, sym_string_literal, - STATE(1178), 1, + STATE(1277), 1, sym__expression, - ACTIONS(1559), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(1567), 2, - sym_true, - sym_false, - ACTIONS(1569), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(1936), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1938), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2306), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2328), 2, + ACTIONS(83), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1553), 5, + ACTIONS(93), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(103), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(163), 2, + sym_true, + sym_false, + ACTIONS(87), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1563), 5, + ACTIONS(97), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1565), 5, + ACTIONS(99), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(954), 5, + STATE(877), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(963), 16, + STATE(809), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -87305,71 +89766,71 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [15181] = 21, + [14746] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(83), 1, - anon_sym_sizeof, - ACTIONS(87), 1, - anon_sym_offsetof, ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(159), 1, + ACTIONS(161), 1, sym_number_literal, - ACTIONS(1926), 1, + ACTIONS(1993), 1, sym_identifier, - STATE(675), 1, + ACTIONS(1999), 1, + anon_sym_sizeof, + ACTIONS(2073), 1, + anon_sym_LPAREN2, + STATE(573), 1, sym_string_literal, - STATE(1283), 1, + STATE(1241), 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(81), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(91), 2, + ACTIONS(93), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(101), 2, + ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(161), 2, + ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(85), 5, + ACTIONS(1995), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1997), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2077), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2083), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(87), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(97), 5, + ACTIONS(99), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(901), 5, + STATE(1154), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(792), 16, + STATE(809), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -87386,71 +89847,71 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [15283] = 21, + [14848] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1555), 1, + ACTIONS(89), 1, anon_sym_offsetof, - ACTIONS(1557), 1, + ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(1561), 1, + ACTIONS(161), 1, sym_number_literal, - ACTIONS(1940), 1, - anon_sym_sizeof, - ACTIONS(2324), 1, + ACTIONS(1993), 1, sym_identifier, - ACTIONS(2326), 1, + ACTIONS(1999), 1, + anon_sym_sizeof, + ACTIONS(2073), 1, anon_sym_LPAREN2, - STATE(859), 1, + STATE(573), 1, sym_string_literal, - STATE(1173), 1, + STATE(1280), 1, sym__expression, - ACTIONS(1559), 2, + ACTIONS(93), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1567), 2, - sym_true, - sym_false, - ACTIONS(1569), 2, + ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(1936), 2, + ACTIONS(163), 2, + sym_true, + sym_false, + ACTIONS(1995), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1938), 2, + ACTIONS(1997), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2306), 2, + ACTIONS(2077), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2328), 2, + ACTIONS(2083), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1553), 5, + ACTIONS(87), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1563), 5, + ACTIONS(97), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1565), 5, + ACTIONS(99), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(954), 5, + STATE(1154), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(963), 16, + STATE(809), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -87467,71 +89928,71 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [15385] = 21, + [14950] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1555), 1, + ACTIONS(89), 1, anon_sym_offsetof, - ACTIONS(1557), 1, + ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(1561), 1, + ACTIONS(161), 1, sym_number_literal, - ACTIONS(1940), 1, + ACTIONS(1957), 1, anon_sym_sizeof, - ACTIONS(2324), 1, + ACTIONS(2348), 1, sym_identifier, - ACTIONS(2326), 1, + ACTIONS(2350), 1, anon_sym_LPAREN2, - STATE(859), 1, + STATE(573), 1, sym_string_literal, - STATE(1176), 1, + STATE(837), 1, sym__expression, - ACTIONS(1559), 2, + ACTIONS(93), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1567), 2, - sym_true, - sym_false, - ACTIONS(1569), 2, + ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(1936), 2, + ACTIONS(163), 2, + sym_true, + sym_false, + ACTIONS(1953), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1938), 2, + ACTIONS(1955), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2306), 2, + ACTIONS(2352), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2328), 2, + ACTIONS(2354), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1553), 5, + ACTIONS(87), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1563), 5, + ACTIONS(97), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1565), 5, + ACTIONS(99), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(954), 5, + STATE(1004), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(963), 16, + STATE(809), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -87548,65 +90009,65 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [15487] = 20, + [15052] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, - anon_sym_offsetof, ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(159), 1, + ACTIONS(161), 1, sym_number_literal, - ACTIONS(1525), 1, + ACTIONS(1536), 1, sym_identifier, - ACTIONS(1910), 1, + ACTIONS(1562), 1, anon_sym_sizeof, - ACTIONS(2290), 1, + ACTIONS(2396), 1, anon_sym_LPAREN2, - STATE(675), 1, + STATE(573), 1, sym_string_literal, - STATE(1079), 1, + STATE(838), 1, sym__expression, - ACTIONS(91), 2, + ACTIONS(93), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(101), 2, + ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(161), 2, + ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(1906), 2, + ACTIONS(1558), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1908), 2, + ACTIONS(1560), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2002), 2, + ACTIONS(2352), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2292), 2, + ACTIONS(2398), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(85), 5, + ACTIONS(87), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(97), 5, + ACTIONS(99), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(792), 21, + STATE(809), 21, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -87628,151 +90089,71 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [15587] = 20, + [15152] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, - anon_sym_offsetof, ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(159), 1, + ACTIONS(161), 1, sym_number_literal, - ACTIONS(1525), 1, + ACTIONS(1993), 1, sym_identifier, - ACTIONS(1543), 1, + ACTIONS(1999), 1, anon_sym_sizeof, - ACTIONS(2286), 1, + ACTIONS(2073), 1, anon_sym_LPAREN2, - STATE(675), 1, + STATE(573), 1, sym_string_literal, - STATE(839), 1, + STATE(1240), 1, sym__expression, - ACTIONS(91), 2, + ACTIONS(93), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(101), 2, + ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(161), 2, + ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(1539), 2, + ACTIONS(1995), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1541), 2, + ACTIONS(1997), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2280), 2, + ACTIONS(2077), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2288), 2, + ACTIONS(2083), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(85), 5, + ACTIONS(87), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(95), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, ACTIONS(97), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(792), 21, - sym__expression_not_binary, - sym_conditional_expression, - sym_assignment_expression, - sym_pointer_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_subscript_expression, - sym_call_expression, - sym_gnu_asm_expression, - sym_field_expression, - sym_compound_literal_expression, - sym_parenthesized_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [15687] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(87), 1, - anon_sym_offsetof, - ACTIONS(89), 1, - anon_sym__Generic, - ACTIONS(159), 1, - sym_number_literal, - ACTIONS(1954), 1, - sym_identifier, - ACTIONS(1960), 1, - anon_sym_sizeof, - ACTIONS(1998), 1, - anon_sym_LPAREN2, - STATE(675), 1, - sym_string_literal, - STATE(1276), 1, - sym__expression, - ACTIONS(91), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(101), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(161), 2, - sym_true, - sym_false, - ACTIONS(1956), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1958), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2002), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2008), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(85), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(95), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(97), 5, + ACTIONS(99), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1097), 5, + STATE(1154), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(792), 16, + STATE(809), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -87789,24 +90170,24 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [15789] = 21, + [15254] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(83), 1, + ACTIONS(85), 1, anon_sym_sizeof, - ACTIONS(87), 1, - anon_sym_offsetof, ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(159), 1, + ACTIONS(161), 1, sym_number_literal, - ACTIONS(1926), 1, + ACTIONS(1931), 1, sym_identifier, - STATE(675), 1, + STATE(573), 1, sym_string_literal, - STATE(1299), 1, + STATE(1148), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -87817,43 +90198,43 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(81), 2, + ACTIONS(83), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 2, + ACTIONS(93), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(101), 2, + ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(161), 2, + ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(85), 5, + ACTIONS(87), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(97), 5, + ACTIONS(99), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(901), 5, + STATE(877), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(792), 16, + STATE(809), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -87870,71 +90251,71 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [15891] = 21, + [15356] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(83), 1, - anon_sym_sizeof, - ACTIONS(87), 1, - anon_sym_offsetof, ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(159), 1, + ACTIONS(161), 1, sym_number_literal, - ACTIONS(1926), 1, + ACTIONS(1993), 1, sym_identifier, - STATE(675), 1, + ACTIONS(1999), 1, + anon_sym_sizeof, + ACTIONS(2073), 1, + anon_sym_LPAREN2, + STATE(573), 1, sym_string_literal, - STATE(1152), 1, + STATE(1313), 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(81), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(91), 2, + ACTIONS(93), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(101), 2, + ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(161), 2, + ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(85), 5, + ACTIONS(1995), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1997), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2077), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2083), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(87), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(97), 5, + ACTIONS(99), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(901), 5, + STATE(1154), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(792), 16, + STATE(809), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -87951,71 +90332,71 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [15993] = 21, + [15458] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1555), 1, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(85), 1, + anon_sym_sizeof, + ACTIONS(89), 1, anon_sym_offsetof, - ACTIONS(1557), 1, + ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(1561), 1, + ACTIONS(161), 1, sym_number_literal, - ACTIONS(1940), 1, - anon_sym_sizeof, - ACTIONS(2324), 1, + ACTIONS(1931), 1, sym_identifier, - ACTIONS(2326), 1, - anon_sym_LPAREN2, - STATE(859), 1, + STATE(573), 1, sym_string_literal, - STATE(1181), 1, + STATE(1218), 1, sym__expression, - ACTIONS(1559), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(1567), 2, - sym_true, - sym_false, - ACTIONS(1569), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(1936), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1938), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2306), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2328), 2, + ACTIONS(83), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1553), 5, + ACTIONS(93), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(103), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(163), 2, + sym_true, + sym_false, + ACTIONS(87), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1563), 5, + ACTIONS(97), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1565), 5, + ACTIONS(99), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(954), 5, + STATE(877), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(963), 16, + STATE(809), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -88032,71 +90413,71 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [16095] = 21, + [15560] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1555), 1, + ACTIONS(1832), 1, anon_sym_offsetof, - ACTIONS(1557), 1, + ACTIONS(1834), 1, anon_sym__Generic, - ACTIONS(1561), 1, + ACTIONS(1838), 1, sym_number_literal, - ACTIONS(1940), 1, + ACTIONS(1963), 1, anon_sym_sizeof, - ACTIONS(2324), 1, + ACTIONS(2356), 1, sym_identifier, - ACTIONS(2326), 1, + ACTIONS(2358), 1, anon_sym_LPAREN2, - STATE(859), 1, + STATE(893), 1, sym_string_literal, - STATE(1182), 1, + STATE(1198), 1, sym__expression, - ACTIONS(1559), 2, + ACTIONS(1836), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1567), 2, + ACTIONS(1844), 2, sym_true, sym_false, - ACTIONS(1569), 2, + ACTIONS(1846), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(1936), 2, + ACTIONS(1959), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1938), 2, + ACTIONS(1961), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2306), 2, + ACTIONS(2330), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2328), 2, + ACTIONS(2360), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1553), 5, + ACTIONS(1830), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1563), 5, + ACTIONS(1840), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1565), 5, + ACTIONS(1842), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(954), 5, + STATE(1098), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(963), 16, + STATE(1110), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -88113,71 +90494,71 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [16197] = 21, + [15662] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1555), 1, + ACTIONS(1832), 1, anon_sym_offsetof, - ACTIONS(1557), 1, + ACTIONS(1834), 1, anon_sym__Generic, - ACTIONS(1561), 1, + ACTIONS(1838), 1, sym_number_literal, - ACTIONS(1940), 1, + ACTIONS(1963), 1, anon_sym_sizeof, - ACTIONS(2324), 1, + ACTIONS(2356), 1, sym_identifier, - ACTIONS(2326), 1, + ACTIONS(2358), 1, anon_sym_LPAREN2, - STATE(859), 1, + STATE(893), 1, sym_string_literal, - STATE(1184), 1, + STATE(1197), 1, sym__expression, - ACTIONS(1559), 2, + ACTIONS(1836), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1567), 2, + ACTIONS(1844), 2, sym_true, sym_false, - ACTIONS(1569), 2, + ACTIONS(1846), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(1936), 2, + ACTIONS(1959), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1938), 2, + ACTIONS(1961), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2306), 2, + ACTIONS(2330), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2328), 2, + ACTIONS(2360), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1553), 5, + ACTIONS(1830), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1563), 5, + ACTIONS(1840), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1565), 5, + ACTIONS(1842), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(954), 5, + STATE(1098), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(963), 16, + STATE(1110), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -88194,74 +90575,69 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [16299] = 21, + [15764] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1555), 1, + ACTIONS(89), 1, anon_sym_offsetof, - ACTIONS(1557), 1, + ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(1561), 1, + ACTIONS(161), 1, sym_number_literal, - ACTIONS(1940), 1, - anon_sym_sizeof, - ACTIONS(2324), 1, + ACTIONS(1536), 1, sym_identifier, - ACTIONS(2326), 1, + ACTIONS(1921), 1, + anon_sym_sizeof, + ACTIONS(2476), 1, anon_sym_LPAREN2, - STATE(859), 1, + STATE(573), 1, sym_string_literal, - STATE(1185), 1, + STATE(1131), 1, sym__expression, - ACTIONS(1559), 2, + ACTIONS(93), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1567), 2, - sym_true, - sym_false, - ACTIONS(1569), 2, + ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(1936), 2, + ACTIONS(163), 2, + sym_true, + sym_false, + ACTIONS(1917), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1938), 2, + ACTIONS(1919), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2306), 2, + ACTIONS(2077), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2328), 2, + ACTIONS(2336), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1553), 5, + ACTIONS(87), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1563), 5, + ACTIONS(97), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1565), 5, + ACTIONS(99), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(954), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(963), 16, + STATE(809), 21, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -88270,157 +90646,80 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [16401] = 21, + [15864] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(83), 1, - anon_sym_sizeof, - ACTIONS(87), 1, - anon_sym_offsetof, ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(159), 1, + ACTIONS(161), 1, sym_number_literal, - ACTIONS(1926), 1, + ACTIONS(1993), 1, sym_identifier, - STATE(675), 1, + ACTIONS(1999), 1, + anon_sym_sizeof, + ACTIONS(2073), 1, + anon_sym_LPAREN2, + STATE(573), 1, sym_string_literal, - STATE(1141), 1, + STATE(1236), 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(81), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(91), 2, + ACTIONS(93), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(101), 2, + ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(161), 2, + ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(85), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(95), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(97), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(901), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(792), 16, - sym__expression_not_binary, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_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(83), 1, - anon_sym_sizeof, - ACTIONS(87), 1, - anon_sym_offsetof, - ACTIONS(89), 1, - anon_sym__Generic, - ACTIONS(159), 1, - sym_number_literal, - ACTIONS(1926), 1, - sym_identifier, - STATE(675), 1, - sym_string_literal, - STATE(1200), 1, - sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(1995), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, + ACTIONS(1997), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2077), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(81), 2, + ACTIONS(2083), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(101), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(161), 2, - sym_true, - sym_false, - ACTIONS(85), 5, + ACTIONS(87), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(97), 5, + ACTIONS(99), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(901), 5, + STATE(1154), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(792), 16, + STATE(809), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -88437,71 +90736,71 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [16605] = 21, + [15966] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, - anon_sym_offsetof, ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(159), 1, + ACTIONS(161), 1, sym_number_literal, - ACTIONS(1954), 1, - sym_identifier, - ACTIONS(1960), 1, + ACTIONS(1957), 1, anon_sym_sizeof, - ACTIONS(1998), 1, + ACTIONS(2348), 1, + sym_identifier, + ACTIONS(2350), 1, anon_sym_LPAREN2, - STATE(675), 1, + STATE(573), 1, sym_string_literal, - STATE(1240), 1, + STATE(840), 1, sym__expression, - ACTIONS(91), 2, + ACTIONS(93), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(101), 2, + ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(161), 2, + ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(1956), 2, + ACTIONS(1953), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1958), 2, + ACTIONS(1955), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2002), 2, + ACTIONS(2352), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2008), 2, + ACTIONS(2354), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(85), 5, + ACTIONS(87), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(97), 5, + ACTIONS(99), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1097), 5, + STATE(1004), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(792), 16, + STATE(809), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -88518,71 +90817,71 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [16707] = 21, + [16068] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, - anon_sym_offsetof, ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(159), 1, + ACTIONS(161), 1, sym_number_literal, - ACTIONS(1932), 1, - anon_sym_sizeof, - ACTIONS(2276), 1, + ACTIONS(1993), 1, sym_identifier, - ACTIONS(2278), 1, + ACTIONS(1999), 1, + anon_sym_sizeof, + ACTIONS(2073), 1, anon_sym_LPAREN2, - STATE(675), 1, + STATE(573), 1, sym_string_literal, - STATE(1157), 1, + STATE(1231), 1, sym__expression, - ACTIONS(91), 2, + ACTIONS(93), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(101), 2, + ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(161), 2, + ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(1928), 2, + ACTIONS(1995), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1930), 2, + ACTIONS(1997), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2280), 2, + ACTIONS(2077), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2282), 2, + ACTIONS(2083), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(85), 5, + ACTIONS(87), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(97), 5, + ACTIONS(99), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(913), 5, + STATE(1154), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(792), 16, + STATE(809), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -88599,74 +90898,69 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [16809] = 21, + [16170] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, - anon_sym_offsetof, ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(159), 1, + ACTIONS(161), 1, sym_number_literal, - ACTIONS(1932), 1, - anon_sym_sizeof, - ACTIONS(2276), 1, + ACTIONS(1536), 1, sym_identifier, - ACTIONS(2278), 1, + ACTIONS(1921), 1, + anon_sym_sizeof, + ACTIONS(2334), 1, anon_sym_LPAREN2, - STATE(675), 1, + STATE(573), 1, sym_string_literal, - STATE(1155), 1, + STATE(1136), 1, sym__expression, - ACTIONS(91), 2, + ACTIONS(93), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(101), 2, + ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(161), 2, + ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(1928), 2, + ACTIONS(1917), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1930), 2, + ACTIONS(1919), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2280), 2, + ACTIONS(2077), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2282), 2, + ACTIONS(2336), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(85), 5, + ACTIONS(87), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(97), 5, + ACTIONS(99), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(913), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(792), 16, + STATE(809), 21, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -88675,79 +90969,78 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [16911] = 21, + [16270] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, - anon_sym_offsetof, ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(159), 1, + ACTIONS(161), 1, sym_number_literal, - ACTIONS(1932), 1, - anon_sym_sizeof, - ACTIONS(2276), 1, + ACTIONS(1536), 1, sym_identifier, - ACTIONS(2278), 1, + ACTIONS(1921), 1, + anon_sym_sizeof, + ACTIONS(2334), 1, anon_sym_LPAREN2, - STATE(675), 1, + STATE(573), 1, sym_string_literal, - STATE(1162), 1, + STATE(1126), 1, sym__expression, - ACTIONS(91), 2, + ACTIONS(93), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(101), 2, + ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(161), 2, + ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(1928), 2, + ACTIONS(1917), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1930), 2, + ACTIONS(1919), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2280), 2, + ACTIONS(2077), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2282), 2, + ACTIONS(2336), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(85), 5, + ACTIONS(87), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(97), 5, + ACTIONS(99), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(913), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(792), 16, + STATE(809), 21, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -88756,79 +91049,78 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [17013] = 21, + [16370] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(83), 1, - anon_sym_sizeof, - ACTIONS(87), 1, - anon_sym_offsetof, ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(159), 1, + ACTIONS(161), 1, sym_number_literal, - ACTIONS(1926), 1, + ACTIONS(1536), 1, sym_identifier, - STATE(675), 1, + ACTIONS(1562), 1, + anon_sym_sizeof, + ACTIONS(2396), 1, + anon_sym_LPAREN2, + STATE(573), 1, sym_string_literal, - STATE(1143), 1, + STATE(960), 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(81), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(91), 2, + ACTIONS(93), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(101), 2, + ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(161), 2, + ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(85), 5, + ACTIONS(1558), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1560), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2352), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2398), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(87), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(97), 5, + ACTIONS(99), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(901), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(792), 16, + STATE(809), 21, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -88837,79 +91129,78 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [17115] = 21, + [16470] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(83), 1, - anon_sym_sizeof, - ACTIONS(87), 1, - anon_sym_offsetof, ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(159), 1, + ACTIONS(161), 1, sym_number_literal, - ACTIONS(1926), 1, + ACTIONS(1536), 1, sym_identifier, - STATE(675), 1, + ACTIONS(1548), 1, + anon_sym_sizeof, + ACTIONS(2420), 1, + anon_sym_LPAREN2, + STATE(573), 1, sym_string_literal, - STATE(832), 1, + STATE(838), 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(81), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(91), 2, + ACTIONS(93), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(101), 2, + ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(161), 2, + ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(85), 5, + ACTIONS(1540), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1542), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2422), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(87), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(97), 5, + ACTIONS(99), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(901), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(792), 16, + STATE(809), 21, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -88918,29 +91209,33 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [17217] = 21, + [16570] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(83), 1, + ACTIONS(85), 1, anon_sym_sizeof, - ACTIONS(87), 1, - anon_sym_offsetof, ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(159), 1, + ACTIONS(161), 1, sym_number_literal, - ACTIONS(1926), 1, + ACTIONS(1931), 1, sym_identifier, - STATE(675), 1, + STATE(573), 1, sym_string_literal, - STATE(1144), 1, + STATE(1223), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -88951,43 +91246,43 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(81), 2, + ACTIONS(83), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 2, + ACTIONS(93), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(101), 2, + ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(161), 2, + ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(85), 5, + ACTIONS(87), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(97), 5, + ACTIONS(99), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(901), 5, + STATE(877), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(792), 16, + STATE(809), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -89004,74 +91299,69 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [17319] = 21, + [16672] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1555), 1, + ACTIONS(89), 1, anon_sym_offsetof, - ACTIONS(1557), 1, + ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(1561), 1, + ACTIONS(161), 1, sym_number_literal, - ACTIONS(1940), 1, - anon_sym_sizeof, - ACTIONS(2324), 1, + ACTIONS(1536), 1, sym_identifier, - ACTIONS(2326), 1, + ACTIONS(1548), 1, + anon_sym_sizeof, + ACTIONS(2478), 1, anon_sym_LPAREN2, - STATE(859), 1, + STATE(573), 1, sym_string_literal, - STATE(1180), 1, + STATE(833), 1, sym__expression, - ACTIONS(1559), 2, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(93), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1567), 2, - sym_true, - sym_false, - ACTIONS(1569), 2, + ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(1936), 2, + ACTIONS(163), 2, + sym_true, + sym_false, + ACTIONS(1540), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1938), 2, + ACTIONS(1542), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2306), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2328), 2, + ACTIONS(2422), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1553), 5, + ACTIONS(87), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1563), 5, + ACTIONS(97), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1565), 5, + ACTIONS(99), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(954), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(963), 16, + STATE(809), 21, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -89080,79 +91370,78 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [17421] = 21, + [16772] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(83), 1, - anon_sym_sizeof, - ACTIONS(87), 1, - anon_sym_offsetof, ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(159), 1, + ACTIONS(161), 1, sym_number_literal, - ACTIONS(1926), 1, + ACTIONS(1536), 1, sym_identifier, - STATE(675), 1, + ACTIONS(1921), 1, + anon_sym_sizeof, + ACTIONS(2334), 1, + anon_sym_LPAREN2, + STATE(573), 1, sym_string_literal, - STATE(1137), 1, + STATE(1141), 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(81), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(91), 2, + ACTIONS(93), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(101), 2, + ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(161), 2, + ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(85), 5, + ACTIONS(1917), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1919), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2077), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2336), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(87), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(97), 5, + ACTIONS(99), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(901), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(792), 16, + STATE(809), 21, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -89161,79 +91450,78 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [17523] = 21, + [16872] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(83), 1, - anon_sym_sizeof, - ACTIONS(87), 1, - anon_sym_offsetof, ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(159), 1, + ACTIONS(161), 1, sym_number_literal, - ACTIONS(1926), 1, + ACTIONS(1536), 1, sym_identifier, - STATE(675), 1, + ACTIONS(1921), 1, + anon_sym_sizeof, + ACTIONS(2334), 1, + anon_sym_LPAREN2, + STATE(573), 1, sym_string_literal, - STATE(1133), 1, + STATE(1143), 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(81), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(91), 2, + ACTIONS(93), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(101), 2, + ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(161), 2, + ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(85), 5, + ACTIONS(1917), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1919), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2077), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2336), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(87), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(97), 5, + ACTIONS(99), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(901), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(792), 16, + STATE(809), 21, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -89242,79 +91530,78 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [17625] = 21, + [16972] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(83), 1, - anon_sym_sizeof, - ACTIONS(87), 1, - anon_sym_offsetof, ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(159), 1, + ACTIONS(161), 1, sym_number_literal, - ACTIONS(1926), 1, + ACTIONS(1536), 1, sym_identifier, - STATE(675), 1, + ACTIONS(1548), 1, + anon_sym_sizeof, + ACTIONS(2420), 1, + anon_sym_LPAREN2, + STATE(573), 1, sym_string_literal, - STATE(1136), 1, + STATE(840), 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(81), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(91), 2, + ACTIONS(93), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(101), 2, + ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(161), 2, + ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(85), 5, + ACTIONS(1540), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1542), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2422), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(87), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(97), 5, + ACTIONS(99), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(901), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(792), 16, + STATE(809), 21, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -89323,79 +91610,78 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [17727] = 21, + [17072] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(83), 1, - anon_sym_sizeof, - ACTIONS(87), 1, - anon_sym_offsetof, ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(159), 1, + ACTIONS(161), 1, sym_number_literal, - ACTIONS(1926), 1, + ACTIONS(1536), 1, sym_identifier, - STATE(675), 1, + ACTIONS(1562), 1, + anon_sym_sizeof, + ACTIONS(2396), 1, + anon_sym_LPAREN2, + STATE(573), 1, sym_string_literal, - STATE(1151), 1, + STATE(829), 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(81), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(91), 2, + ACTIONS(93), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(101), 2, + ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(161), 2, + ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(85), 5, + ACTIONS(1558), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1560), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2352), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2398), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(87), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(97), 5, + ACTIONS(99), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(901), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(792), 16, + STATE(809), 21, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -89404,70 +91690,74 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [17829] = 20, + [17172] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, - anon_sym_offsetof, ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(159), 1, + ACTIONS(161), 1, sym_number_literal, - ACTIONS(1525), 1, + ACTIONS(1536), 1, sym_identifier, - ACTIONS(1543), 1, + ACTIONS(1921), 1, anon_sym_sizeof, - ACTIONS(2286), 1, + ACTIONS(2334), 1, anon_sym_LPAREN2, - STATE(675), 1, + STATE(573), 1, sym_string_literal, - STATE(895), 1, + STATE(1144), 1, sym__expression, - ACTIONS(91), 2, + ACTIONS(93), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(101), 2, + ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(161), 2, + ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(1539), 2, + ACTIONS(1917), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1541), 2, + ACTIONS(1919), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2280), 2, + ACTIONS(2077), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2288), 2, + ACTIONS(2336), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(85), 5, + ACTIONS(87), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(97), 5, + ACTIONS(99), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(792), 21, + STATE(809), 21, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -89489,65 +91779,65 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [17929] = 20, + [17272] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, - anon_sym_offsetof, ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(159), 1, + ACTIONS(161), 1, sym_number_literal, - ACTIONS(1525), 1, + ACTIONS(1536), 1, sym_identifier, - ACTIONS(1543), 1, + ACTIONS(1921), 1, anon_sym_sizeof, - ACTIONS(2286), 1, + ACTIONS(2334), 1, anon_sym_LPAREN2, - STATE(675), 1, + STATE(573), 1, sym_string_literal, - STATE(891), 1, + STATE(1133), 1, sym__expression, - ACTIONS(91), 2, + ACTIONS(93), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(101), 2, + ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(161), 2, + ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(1539), 2, + ACTIONS(1917), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1541), 2, + ACTIONS(1919), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2280), 2, + ACTIONS(2077), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2288), 2, + ACTIONS(2336), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(85), 5, + ACTIONS(87), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(97), 5, + ACTIONS(99), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(792), 21, + STATE(809), 21, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -89569,74 +91859,69 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [18029] = 21, + [17372] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(83), 1, - anon_sym_sizeof, - ACTIONS(87), 1, - anon_sym_offsetof, ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(159), 1, + ACTIONS(161), 1, sym_number_literal, - ACTIONS(1926), 1, + ACTIONS(1536), 1, sym_identifier, - STATE(675), 1, + ACTIONS(1562), 1, + anon_sym_sizeof, + ACTIONS(2396), 1, + anon_sym_LPAREN2, + STATE(573), 1, sym_string_literal, - STATE(1134), 1, + STATE(952), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(81), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(91), 2, + ACTIONS(93), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(101), 2, + ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(161), 2, + ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(85), 5, + ACTIONS(1558), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1560), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2352), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2398), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(87), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(97), 5, + ACTIONS(99), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(901), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(792), 16, + STATE(809), 21, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -89645,70 +91930,74 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [18131] = 20, + [17472] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1551), 1, + ACTIONS(1828), 1, anon_sym_sizeof, - ACTIONS(1555), 1, + ACTIONS(1832), 1, anon_sym_offsetof, - ACTIONS(1557), 1, + ACTIONS(1834), 1, anon_sym__Generic, - ACTIONS(1561), 1, + ACTIONS(1838), 1, sym_number_literal, - ACTIONS(2302), 1, + ACTIONS(2326), 1, sym_identifier, - ACTIONS(2304), 1, + ACTIONS(2328), 1, anon_sym_LPAREN2, - STATE(859), 1, + STATE(893), 1, sym_string_literal, - STATE(941), 1, + STATE(1042), 1, sym__expression, - ACTIONS(1545), 2, + ACTIONS(1822), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1547), 2, + ACTIONS(1824), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1559), 2, + ACTIONS(1836), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1567), 2, + ACTIONS(1844), 2, sym_true, sym_false, - ACTIONS(1569), 2, + ACTIONS(1846), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(2306), 2, + ACTIONS(2330), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2308), 2, + ACTIONS(2332), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1553), 5, + ACTIONS(1830), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1563), 5, + ACTIONS(1840), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1565), 5, + ACTIONS(1842), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(963), 21, + STATE(1110), 21, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -89730,74 +92019,69 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [18231] = 21, + [17572] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, - anon_sym_offsetof, ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(159), 1, + ACTIONS(161), 1, sym_number_literal, - ACTIONS(1932), 1, - anon_sym_sizeof, - ACTIONS(2276), 1, + ACTIONS(1536), 1, sym_identifier, - ACTIONS(2278), 1, + ACTIONS(1921), 1, + anon_sym_sizeof, + ACTIONS(2334), 1, anon_sym_LPAREN2, - STATE(675), 1, + STATE(573), 1, sym_string_literal, - STATE(1158), 1, + STATE(1137), 1, sym__expression, - ACTIONS(91), 2, + ACTIONS(93), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(101), 2, + ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(161), 2, + ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(1928), 2, + ACTIONS(1917), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1930), 2, + ACTIONS(1919), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2280), 2, + ACTIONS(2077), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2282), 2, + ACTIONS(2336), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(85), 5, + ACTIONS(87), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(97), 5, + ACTIONS(99), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(913), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(792), 16, + STATE(809), 21, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -89806,79 +92090,78 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [18333] = 21, + [17672] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(83), 1, - anon_sym_sizeof, - ACTIONS(87), 1, - anon_sym_offsetof, ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(159), 1, + ACTIONS(161), 1, sym_number_literal, - ACTIONS(1926), 1, + ACTIONS(1536), 1, sym_identifier, - STATE(675), 1, + ACTIONS(1921), 1, + anon_sym_sizeof, + ACTIONS(2334), 1, + anon_sym_LPAREN2, + STATE(573), 1, sym_string_literal, - STATE(1147), 1, + STATE(1142), 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(81), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(91), 2, + ACTIONS(93), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(101), 2, + ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(161), 2, + ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(85), 5, + ACTIONS(1917), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1919), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2077), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2336), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(87), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(97), 5, + ACTIONS(99), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(901), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(792), 16, + STATE(809), 21, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -89887,79 +92170,78 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [18435] = 21, + [17772] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(83), 1, - anon_sym_sizeof, - ACTIONS(87), 1, - anon_sym_offsetof, ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(159), 1, + ACTIONS(161), 1, sym_number_literal, - ACTIONS(1926), 1, + ACTIONS(1536), 1, sym_identifier, - STATE(675), 1, + ACTIONS(1921), 1, + anon_sym_sizeof, + ACTIONS(2334), 1, + anon_sym_LPAREN2, + STATE(573), 1, sym_string_literal, - STATE(1148), 1, + STATE(1130), 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(81), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(91), 2, + ACTIONS(93), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(101), 2, + ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(161), 2, + ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(85), 5, + ACTIONS(1917), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1919), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2077), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2336), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(87), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(97), 5, + ACTIONS(99), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(901), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(792), 16, + STATE(809), 21, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -89968,76 +92250,80 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [18537] = 21, + [17872] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, - anon_sym_offsetof, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(85), 1, + anon_sym_sizeof, ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(159), 1, + ACTIONS(161), 1, sym_number_literal, - ACTIONS(1954), 1, + ACTIONS(1931), 1, sym_identifier, - ACTIONS(1960), 1, - anon_sym_sizeof, - ACTIONS(1998), 1, - anon_sym_LPAREN2, - STATE(675), 1, + STATE(573), 1, sym_string_literal, - STATE(1274), 1, + STATE(1291), 1, sym__expression, - ACTIONS(91), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(101), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(161), 2, - sym_true, - sym_false, - ACTIONS(1956), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1958), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2002), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2008), 2, + ACTIONS(83), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(85), 5, + ACTIONS(93), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(103), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(163), 2, + sym_true, + sym_false, + ACTIONS(87), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(97), 5, + ACTIONS(99), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1097), 5, + STATE(877), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(792), 16, + STATE(809), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -90054,65 +92340,65 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [18639] = 20, + [17974] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, - anon_sym_offsetof, ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(159), 1, + ACTIONS(161), 1, sym_number_literal, - ACTIONS(1525), 1, + ACTIONS(1536), 1, sym_identifier, - ACTIONS(1910), 1, + ACTIONS(1921), 1, anon_sym_sizeof, - ACTIONS(2416), 1, + ACTIONS(2334), 1, anon_sym_LPAREN2, - STATE(675), 1, + STATE(573), 1, sym_string_literal, - STATE(1065), 1, + STATE(1140), 1, sym__expression, - ACTIONS(91), 2, + ACTIONS(93), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(101), 2, + ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(161), 2, + ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(1906), 2, + ACTIONS(1917), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1908), 2, + ACTIONS(1919), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2002), 2, + ACTIONS(2077), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2292), 2, + ACTIONS(2336), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(85), 5, + ACTIONS(87), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(97), 5, + ACTIONS(99), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(792), 21, + STATE(809), 21, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -90134,65 +92420,65 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [18739] = 20, + [18074] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, - anon_sym_offsetof, ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(159), 1, + ACTIONS(161), 1, sym_number_literal, - ACTIONS(1525), 1, + ACTIONS(1536), 1, sym_identifier, - ACTIONS(1543), 1, + ACTIONS(1562), 1, anon_sym_sizeof, - ACTIONS(2286), 1, + ACTIONS(2396), 1, anon_sym_LPAREN2, - STATE(675), 1, + STATE(573), 1, sym_string_literal, - STATE(892), 1, + STATE(959), 1, sym__expression, - ACTIONS(91), 2, + ACTIONS(93), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(101), 2, + ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(161), 2, + ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(1539), 2, + ACTIONS(1558), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1541), 2, + ACTIONS(1560), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2280), 2, + ACTIONS(2352), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2288), 2, + ACTIONS(2398), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(85), 5, + ACTIONS(87), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(97), 5, + ACTIONS(99), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(792), 21, + STATE(809), 21, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -90214,65 +92500,65 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [18839] = 20, + [18174] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, - anon_sym_offsetof, ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(159), 1, + ACTIONS(161), 1, sym_number_literal, - ACTIONS(1525), 1, + ACTIONS(1536), 1, sym_identifier, - ACTIONS(1910), 1, + ACTIONS(1562), 1, anon_sym_sizeof, - ACTIONS(2290), 1, + ACTIONS(2396), 1, anon_sym_LPAREN2, - STATE(675), 1, + STATE(573), 1, sym_string_literal, - STATE(1071), 1, + STATE(948), 1, sym__expression, - ACTIONS(91), 2, + ACTIONS(93), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(101), 2, + ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(161), 2, + ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(1906), 2, + ACTIONS(1558), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1908), 2, + ACTIONS(1560), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2002), 2, + ACTIONS(2352), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2292), 2, + ACTIONS(2398), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(85), 5, + ACTIONS(87), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(97), 5, + ACTIONS(99), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(792), 21, + STATE(809), 21, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -90294,71 +92580,71 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [18939] = 21, + [18274] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, + ACTIONS(1832), 1, anon_sym_offsetof, - ACTIONS(89), 1, + ACTIONS(1834), 1, anon_sym__Generic, - ACTIONS(159), 1, + ACTIONS(1838), 1, sym_number_literal, - ACTIONS(1932), 1, + ACTIONS(1963), 1, anon_sym_sizeof, - ACTIONS(2276), 1, + ACTIONS(2356), 1, sym_identifier, - ACTIONS(2278), 1, + ACTIONS(2358), 1, anon_sym_LPAREN2, - STATE(675), 1, + STATE(893), 1, sym_string_literal, - STATE(1169), 1, + STATE(1200), 1, sym__expression, - ACTIONS(91), 2, + ACTIONS(1836), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(101), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(161), 2, + ACTIONS(1844), 2, sym_true, sym_false, - ACTIONS(1928), 2, + ACTIONS(1846), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1959), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1930), 2, + ACTIONS(1961), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2280), 2, + ACTIONS(2330), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2282), 2, + ACTIONS(2360), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(85), 5, + ACTIONS(1830), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(95), 5, + ACTIONS(1840), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(97), 5, + ACTIONS(1842), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(913), 5, + STATE(1098), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(792), 16, + STATE(1110), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -90375,69 +92661,74 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [19041] = 20, + [18376] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, - anon_sym_offsetof, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(85), 1, + anon_sym_sizeof, ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(159), 1, + ACTIONS(161), 1, sym_number_literal, - ACTIONS(1525), 1, + ACTIONS(1931), 1, sym_identifier, - ACTIONS(1910), 1, - anon_sym_sizeof, - ACTIONS(2290), 1, - anon_sym_LPAREN2, - STATE(675), 1, + STATE(573), 1, sym_string_literal, - STATE(1006), 1, + STATE(1156), 1, sym__expression, - ACTIONS(91), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(101), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(161), 2, - sym_true, - sym_false, - ACTIONS(1906), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1908), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2002), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2292), 2, + ACTIONS(83), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(85), 5, + ACTIONS(93), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(103), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(163), 2, + sym_true, + sym_false, + ACTIONS(87), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(97), 5, + ACTIONS(99), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(792), 21, + STATE(877), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(809), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -90446,83 +92737,74 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [19141] = 21, + [18478] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, - anon_sym_offsetof, ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(159), 1, + ACTIONS(161), 1, sym_number_literal, - ACTIONS(1932), 1, - anon_sym_sizeof, - ACTIONS(2276), 1, + ACTIONS(1536), 1, sym_identifier, - ACTIONS(2278), 1, + ACTIONS(1562), 1, + anon_sym_sizeof, + ACTIONS(2396), 1, anon_sym_LPAREN2, - STATE(675), 1, + STATE(573), 1, sym_string_literal, - STATE(1164), 1, + STATE(943), 1, sym__expression, - ACTIONS(91), 2, + ACTIONS(93), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(101), 2, + ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(161), 2, + ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(1928), 2, + ACTIONS(1558), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1930), 2, + ACTIONS(1560), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2280), 2, + ACTIONS(2352), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2282), 2, + ACTIONS(2398), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(85), 5, + ACTIONS(87), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(97), 5, + ACTIONS(99), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(913), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(792), 16, + STATE(809), 21, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -90531,70 +92813,74 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [19243] = 20, + [18578] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, - anon_sym_offsetof, ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(159), 1, + ACTIONS(161), 1, sym_number_literal, - ACTIONS(1525), 1, + ACTIONS(1536), 1, sym_identifier, - ACTIONS(1543), 1, + ACTIONS(1562), 1, anon_sym_sizeof, - ACTIONS(2286), 1, + ACTIONS(2396), 1, anon_sym_LPAREN2, - STATE(675), 1, + STATE(573), 1, sym_string_literal, - STATE(896), 1, + STATE(945), 1, sym__expression, - ACTIONS(91), 2, + ACTIONS(93), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(101), 2, + ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(161), 2, + ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(1539), 2, + ACTIONS(1558), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1541), 2, + ACTIONS(1560), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2280), 2, + ACTIONS(2352), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2288), 2, + ACTIONS(2398), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(85), 5, + ACTIONS(87), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(97), 5, + ACTIONS(99), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(792), 21, + STATE(809), 21, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -90616,69 +92902,74 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [19343] = 20, + [18678] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, - anon_sym_offsetof, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(85), 1, + anon_sym_sizeof, ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(159), 1, + ACTIONS(161), 1, sym_number_literal, - ACTIONS(1525), 1, + ACTIONS(1931), 1, sym_identifier, - ACTIONS(1543), 1, - anon_sym_sizeof, - ACTIONS(2286), 1, - anon_sym_LPAREN2, - STATE(675), 1, + STATE(573), 1, sym_string_literal, - STATE(897), 1, + STATE(829), 1, sym__expression, - ACTIONS(91), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(101), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(161), 2, - sym_true, - sym_false, - ACTIONS(1539), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1541), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2280), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2288), 2, + ACTIONS(83), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(85), 5, + ACTIONS(93), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(103), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(163), 2, + sym_true, + sym_false, + ACTIONS(87), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(97), 5, + ACTIONS(99), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(792), 21, + STATE(877), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(809), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -90687,74 +92978,70 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [19443] = 20, + [18780] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, - anon_sym_offsetof, ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(159), 1, + ACTIONS(161), 1, sym_number_literal, - ACTIONS(1525), 1, + ACTIONS(1536), 1, sym_identifier, - ACTIONS(1543), 1, + ACTIONS(1562), 1, anon_sym_sizeof, - ACTIONS(2286), 1, + ACTIONS(2396), 1, anon_sym_LPAREN2, - STATE(675), 1, + STATE(573), 1, sym_string_literal, - STATE(832), 1, + STATE(947), 1, sym__expression, - ACTIONS(91), 2, + ACTIONS(93), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(101), 2, + ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(161), 2, + ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(1539), 2, + ACTIONS(1558), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1541), 2, + ACTIONS(1560), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2280), 2, + ACTIONS(2352), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2288), 2, + ACTIONS(2398), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(85), 5, + ACTIONS(87), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(97), 5, + ACTIONS(99), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(792), 21, + STATE(809), 21, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -90776,74 +93063,69 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [19543] = 21, + [18880] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, - anon_sym_offsetof, ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(159), 1, + ACTIONS(161), 1, sym_number_literal, - ACTIONS(1954), 1, + ACTIONS(1536), 1, sym_identifier, - ACTIONS(1960), 1, + ACTIONS(1562), 1, anon_sym_sizeof, - ACTIONS(1998), 1, + ACTIONS(2396), 1, anon_sym_LPAREN2, - STATE(675), 1, + STATE(573), 1, sym_string_literal, - STATE(1211), 1, + STATE(958), 1, sym__expression, - ACTIONS(91), 2, + ACTIONS(93), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(101), 2, + ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(161), 2, + ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(1956), 2, + ACTIONS(1558), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1958), 2, + ACTIONS(1560), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2002), 2, + ACTIONS(2352), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2008), 2, + ACTIONS(2398), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(85), 5, + ACTIONS(87), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(97), 5, + ACTIONS(99), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1097), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(792), 16, + STATE(809), 21, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -90852,74 +93134,83 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [19645] = 20, + [18980] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, - anon_sym_offsetof, ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(159), 1, + ACTIONS(161), 1, sym_number_literal, - ACTIONS(1525), 1, + ACTIONS(1993), 1, sym_identifier, - ACTIONS(1543), 1, + ACTIONS(1999), 1, anon_sym_sizeof, - ACTIONS(2286), 1, + ACTIONS(2073), 1, anon_sym_LPAREN2, - STATE(675), 1, + STATE(573), 1, sym_string_literal, - STATE(893), 1, + STATE(1310), 1, sym__expression, - ACTIONS(91), 2, + ACTIONS(93), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(101), 2, + ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(161), 2, + ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(1539), 2, + ACTIONS(1995), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1541), 2, + ACTIONS(1997), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2280), 2, + ACTIONS(2077), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2288), 2, + ACTIONS(2083), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(85), 5, + ACTIONS(87), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(97), 5, + ACTIONS(99), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(792), 21, + STATE(1154), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(809), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -90928,80 +93219,76 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [19745] = 21, + [19082] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, - anon_sym_offsetof, + ACTIONS(85), 1, + anon_sym_sizeof, ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(159), 1, + ACTIONS(161), 1, sym_number_literal, - ACTIONS(1932), 1, - anon_sym_sizeof, - ACTIONS(2276), 1, + ACTIONS(1931), 1, sym_identifier, - ACTIONS(2278), 1, + ACTIONS(2480), 1, anon_sym_LPAREN2, - STATE(675), 1, + STATE(573), 1, sym_string_literal, - STATE(1167), 1, + STATE(833), 1, sym__expression, - ACTIONS(91), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(101), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(161), 2, - sym_true, - sym_false, - ACTIONS(1928), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1930), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2280), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2282), 2, + ACTIONS(83), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(85), 5, + ACTIONS(93), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(103), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(163), 2, + sym_true, + sym_false, + ACTIONS(87), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(97), 5, + ACTIONS(99), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(913), 5, + STATE(877), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(792), 16, + STATE(809), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -91018,69 +93305,74 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [19847] = 20, + [19184] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, - anon_sym_offsetof, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(85), 1, + anon_sym_sizeof, ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(159), 1, + ACTIONS(161), 1, sym_number_literal, - ACTIONS(1525), 1, + ACTIONS(1931), 1, sym_identifier, - ACTIONS(1910), 1, - anon_sym_sizeof, - ACTIONS(2290), 1, - anon_sym_LPAREN2, - STATE(675), 1, + STATE(573), 1, sym_string_literal, - STATE(1073), 1, + STATE(840), 1, sym__expression, - ACTIONS(91), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(101), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(161), 2, - sym_true, - sym_false, - ACTIONS(1906), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1908), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2002), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2292), 2, + ACTIONS(83), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(85), 5, + ACTIONS(93), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(103), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(163), 2, + sym_true, + sym_false, + ACTIONS(87), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(97), 5, + ACTIONS(99), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(792), 21, + STATE(877), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(809), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -91089,74 +93381,70 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [19947] = 20, + [19286] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1551), 1, - anon_sym_sizeof, - ACTIONS(1555), 1, + ACTIONS(89), 1, anon_sym_offsetof, - ACTIONS(1557), 1, + ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(1561), 1, + ACTIONS(161), 1, sym_number_literal, - ACTIONS(2302), 1, + ACTIONS(1536), 1, sym_identifier, - ACTIONS(2304), 1, + ACTIONS(1562), 1, + anon_sym_sizeof, + ACTIONS(2396), 1, anon_sym_LPAREN2, - STATE(859), 1, + STATE(573), 1, sym_string_literal, - STATE(935), 1, + STATE(951), 1, sym__expression, - ACTIONS(1545), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1547), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1559), 2, + ACTIONS(93), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1567), 2, - sym_true, - sym_false, - ACTIONS(1569), 2, + ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(2306), 2, + ACTIONS(163), 2, + sym_true, + sym_false, + ACTIONS(1558), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1560), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2352), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2308), 2, + ACTIONS(2398), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1553), 5, + ACTIONS(87), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1563), 5, + ACTIONS(97), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1565), 5, + ACTIONS(99), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(963), 21, + STATE(809), 21, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -91178,69 +93466,74 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [20047] = 20, + [19386] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1551), 1, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(85), 1, anon_sym_sizeof, - ACTIONS(1555), 1, + ACTIONS(89), 1, anon_sym_offsetof, - ACTIONS(1557), 1, + ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(1561), 1, + ACTIONS(161), 1, sym_number_literal, - ACTIONS(2302), 1, + ACTIONS(1931), 1, sym_identifier, - ACTIONS(2304), 1, - anon_sym_LPAREN2, - STATE(859), 1, + STATE(573), 1, sym_string_literal, - STATE(943), 1, + STATE(1146), 1, sym__expression, - ACTIONS(1545), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1547), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1559), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(1567), 2, - sym_true, - sym_false, - ACTIONS(1569), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(2306), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2308), 2, + ACTIONS(83), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1553), 5, + ACTIONS(93), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(103), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(163), 2, + sym_true, + sym_false, + ACTIONS(87), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1563), 5, + ACTIONS(97), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1565), 5, + ACTIONS(99), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(963), 21, + STATE(877), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(809), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -91249,74 +93542,70 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [20147] = 20, + [19488] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, - anon_sym_offsetof, ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(159), 1, + ACTIONS(161), 1, sym_number_literal, - ACTIONS(1525), 1, + ACTIONS(1536), 1, sym_identifier, - ACTIONS(1910), 1, + ACTIONS(1548), 1, anon_sym_sizeof, - ACTIONS(2290), 1, + ACTIONS(2420), 1, anon_sym_LPAREN2, - STATE(675), 1, + STATE(573), 1, sym_string_literal, - STATE(1072), 1, + STATE(873), 1, sym__expression, - ACTIONS(91), 2, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(93), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(101), 2, + ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(161), 2, + ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(1906), 2, + ACTIONS(1540), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1908), 2, + ACTIONS(1542), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2002), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2292), 2, + ACTIONS(2422), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(85), 5, + ACTIONS(87), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(97), 5, + ACTIONS(99), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(792), 21, + STATE(809), 21, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -91338,69 +93627,74 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [20247] = 20, + [19588] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, - anon_sym_offsetof, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(85), 1, + anon_sym_sizeof, ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(159), 1, + ACTIONS(161), 1, sym_number_literal, - ACTIONS(1525), 1, + ACTIONS(1931), 1, sym_identifier, - ACTIONS(1910), 1, - anon_sym_sizeof, - ACTIONS(2290), 1, - anon_sym_LPAREN2, - STATE(675), 1, + STATE(573), 1, sym_string_literal, - STATE(1063), 1, + STATE(1161), 1, sym__expression, - ACTIONS(91), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(101), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(161), 2, - sym_true, - sym_false, - ACTIONS(1906), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1908), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2002), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2292), 2, + ACTIONS(83), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(85), 5, + ACTIONS(93), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(103), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(163), 2, + sym_true, + sym_false, + ACTIONS(87), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(97), 5, + ACTIONS(99), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(792), 21, + STATE(877), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(809), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -91409,74 +93703,70 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [20347] = 20, + [19690] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, - anon_sym_offsetof, ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(159), 1, + ACTIONS(161), 1, sym_number_literal, - ACTIONS(1525), 1, + ACTIONS(1536), 1, sym_identifier, - ACTIONS(1910), 1, + ACTIONS(1548), 1, anon_sym_sizeof, - ACTIONS(2290), 1, + ACTIONS(2420), 1, anon_sym_LPAREN2, - STATE(675), 1, + STATE(573), 1, sym_string_literal, - STATE(1062), 1, + STATE(837), 1, sym__expression, - ACTIONS(91), 2, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(93), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(101), 2, + ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(161), 2, + ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(1906), 2, + ACTIONS(1540), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1908), 2, + ACTIONS(1542), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2002), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2292), 2, + ACTIONS(2422), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(85), 5, + ACTIONS(87), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(97), 5, + ACTIONS(99), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(792), 21, + STATE(809), 21, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -91498,69 +93788,74 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [20447] = 20, + [19790] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1551), 1, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(85), 1, anon_sym_sizeof, - ACTIONS(1555), 1, + ACTIONS(89), 1, anon_sym_offsetof, - ACTIONS(1557), 1, + ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(1561), 1, + ACTIONS(161), 1, sym_number_literal, - ACTIONS(2302), 1, + ACTIONS(1931), 1, sym_identifier, - ACTIONS(2304), 1, - anon_sym_LPAREN2, - STATE(859), 1, + STATE(573), 1, sym_string_literal, - STATE(940), 1, + STATE(1151), 1, sym__expression, - ACTIONS(1545), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1547), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1559), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(1567), 2, - sym_true, - sym_false, - ACTIONS(1569), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(2306), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2308), 2, + ACTIONS(83), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1553), 5, + ACTIONS(93), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(103), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(163), 2, + sym_true, + sym_false, + ACTIONS(87), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1563), 5, + ACTIONS(97), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1565), 5, + ACTIONS(99), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(963), 21, + STATE(877), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(809), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -91569,74 +93864,70 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [20547] = 20, + [19892] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1551), 1, - anon_sym_sizeof, - ACTIONS(1555), 1, + ACTIONS(89), 1, anon_sym_offsetof, - ACTIONS(1557), 1, + ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(1561), 1, + ACTIONS(161), 1, sym_number_literal, - ACTIONS(2302), 1, + ACTIONS(1536), 1, sym_identifier, - ACTIONS(2418), 1, + ACTIONS(1921), 1, + anon_sym_sizeof, + ACTIONS(2334), 1, anon_sym_LPAREN2, - STATE(859), 1, + STATE(573), 1, sym_string_literal, - STATE(938), 1, + STATE(1127), 1, sym__expression, - ACTIONS(1545), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1547), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1559), 2, + ACTIONS(93), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1567), 2, - sym_true, - sym_false, - ACTIONS(1569), 2, + ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(2306), 2, + ACTIONS(163), 2, + sym_true, + sym_false, + ACTIONS(1917), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1919), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2077), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2308), 2, + ACTIONS(2336), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1553), 5, + ACTIONS(87), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1563), 5, + ACTIONS(97), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1565), 5, + ACTIONS(99), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(963), 21, + STATE(809), 21, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -91658,69 +93949,74 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [20647] = 20, + [19992] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, - anon_sym_offsetof, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(85), 1, + anon_sym_sizeof, ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(159), 1, + ACTIONS(161), 1, sym_number_literal, - ACTIONS(1525), 1, + ACTIONS(1931), 1, sym_identifier, - ACTIONS(1910), 1, - anon_sym_sizeof, - ACTIONS(2290), 1, - anon_sym_LPAREN2, - STATE(675), 1, + STATE(573), 1, sym_string_literal, - STATE(1058), 1, + STATE(1225), 1, sym__expression, - ACTIONS(91), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(101), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(161), 2, - sym_true, - sym_false, - ACTIONS(1906), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1908), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2002), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2292), 2, + ACTIONS(83), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(85), 5, + ACTIONS(93), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(103), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(163), 2, + sym_true, + sym_false, + ACTIONS(87), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(97), 5, + ACTIONS(99), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(792), 21, + STATE(877), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(809), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -91729,78 +94025,79 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [20747] = 20, + [20094] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, - anon_sym_offsetof, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(85), 1, + anon_sym_sizeof, ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(159), 1, + ACTIONS(161), 1, sym_number_literal, - ACTIONS(1525), 1, + ACTIONS(1931), 1, sym_identifier, - ACTIONS(1910), 1, - anon_sym_sizeof, - ACTIONS(2290), 1, - anon_sym_LPAREN2, - STATE(675), 1, + STATE(573), 1, sym_string_literal, - STATE(1057), 1, + STATE(1289), 1, sym__expression, - ACTIONS(91), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(101), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(161), 2, - sym_true, - sym_false, - ACTIONS(1906), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1908), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2002), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2292), 2, + ACTIONS(83), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(85), 5, + ACTIONS(93), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(103), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(163), 2, + sym_true, + sym_false, + ACTIONS(87), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(97), 5, + ACTIONS(99), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(792), 21, + STATE(877), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(809), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -91809,78 +94106,79 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [20847] = 20, + [20196] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1551), 1, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(85), 1, anon_sym_sizeof, - ACTIONS(1555), 1, + ACTIONS(89), 1, anon_sym_offsetof, - ACTIONS(1557), 1, + ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(1561), 1, + ACTIONS(161), 1, sym_number_literal, - ACTIONS(2302), 1, + ACTIONS(1931), 1, sym_identifier, - ACTIONS(2304), 1, - anon_sym_LPAREN2, - STATE(859), 1, + STATE(573), 1, sym_string_literal, - STATE(931), 1, + STATE(1273), 1, sym__expression, - ACTIONS(1545), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1547), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1559), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(1567), 2, - sym_true, - sym_false, - ACTIONS(1569), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(2306), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2308), 2, + ACTIONS(83), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1553), 5, + ACTIONS(93), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(103), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(163), 2, + sym_true, + sym_false, + ACTIONS(87), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1563), 5, + ACTIONS(97), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1565), 5, + ACTIONS(99), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(963), 21, + STATE(877), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(809), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -91889,78 +94187,79 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [20947] = 20, + [20298] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, - anon_sym_offsetof, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(85), 1, + anon_sym_sizeof, ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(159), 1, + ACTIONS(161), 1, sym_number_literal, - ACTIONS(1525), 1, + ACTIONS(1931), 1, sym_identifier, - ACTIONS(1910), 1, - anon_sym_sizeof, - ACTIONS(2290), 1, - anon_sym_LPAREN2, - STATE(675), 1, + STATE(573), 1, sym_string_literal, - STATE(1056), 1, + STATE(1150), 1, sym__expression, - ACTIONS(91), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(101), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(161), 2, - sym_true, - sym_false, - ACTIONS(1906), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1908), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2002), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2292), 2, + ACTIONS(83), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(85), 5, + ACTIONS(93), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(103), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(163), 2, + sym_true, + sym_false, + ACTIONS(87), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(97), 5, + ACTIONS(99), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(792), 21, + STATE(877), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(809), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -91969,78 +94268,79 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [21047] = 20, + [20400] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1551), 1, - anon_sym_sizeof, - ACTIONS(1555), 1, + ACTIONS(1832), 1, anon_sym_offsetof, - ACTIONS(1557), 1, + ACTIONS(1834), 1, anon_sym__Generic, - ACTIONS(1561), 1, + ACTIONS(1838), 1, sym_number_literal, - ACTIONS(2302), 1, + ACTIONS(1963), 1, + anon_sym_sizeof, + ACTIONS(2356), 1, sym_identifier, - ACTIONS(2304), 1, + ACTIONS(2358), 1, anon_sym_LPAREN2, - STATE(859), 1, + STATE(893), 1, sym_string_literal, - STATE(928), 1, + STATE(1201), 1, sym__expression, - ACTIONS(1545), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1547), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1559), 2, + ACTIONS(1836), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1567), 2, + ACTIONS(1844), 2, sym_true, sym_false, - ACTIONS(1569), 2, + ACTIONS(1846), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(2306), 2, + ACTIONS(1959), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1961), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2330), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2308), 2, + ACTIONS(2360), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1553), 5, + ACTIONS(1830), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1563), 5, + ACTIONS(1840), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1565), 5, + ACTIONS(1842), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(963), 21, + STATE(1098), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(1110), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -92049,78 +94349,79 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [21147] = 20, + [20502] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1551), 1, - anon_sym_sizeof, - ACTIONS(1555), 1, + ACTIONS(1832), 1, anon_sym_offsetof, - ACTIONS(1557), 1, + ACTIONS(1834), 1, anon_sym__Generic, - ACTIONS(1561), 1, + ACTIONS(1838), 1, sym_number_literal, - ACTIONS(2302), 1, + ACTIONS(1963), 1, + anon_sym_sizeof, + ACTIONS(2356), 1, sym_identifier, - ACTIONS(2304), 1, + ACTIONS(2358), 1, anon_sym_LPAREN2, - STATE(859), 1, + STATE(893), 1, sym_string_literal, - STATE(939), 1, + STATE(1202), 1, sym__expression, - ACTIONS(1545), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1547), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1559), 2, + ACTIONS(1836), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1567), 2, + ACTIONS(1844), 2, sym_true, sym_false, - ACTIONS(1569), 2, + ACTIONS(1846), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(2306), 2, + ACTIONS(1959), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1961), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2330), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2308), 2, + ACTIONS(2360), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1553), 5, + ACTIONS(1830), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1563), 5, + ACTIONS(1840), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1565), 5, + ACTIONS(1842), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(963), 21, + STATE(1098), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(1110), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -92129,78 +94430,79 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [21247] = 20, + [20604] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1551), 1, - anon_sym_sizeof, - ACTIONS(1555), 1, + ACTIONS(1832), 1, anon_sym_offsetof, - ACTIONS(1557), 1, + ACTIONS(1834), 1, anon_sym__Generic, - ACTIONS(1561), 1, + ACTIONS(1838), 1, sym_number_literal, - ACTIONS(2302), 1, + ACTIONS(1963), 1, + anon_sym_sizeof, + ACTIONS(2356), 1, sym_identifier, - ACTIONS(2304), 1, + ACTIONS(2358), 1, anon_sym_LPAREN2, - STATE(859), 1, + STATE(893), 1, sym_string_literal, - STATE(937), 1, + STATE(1204), 1, sym__expression, - ACTIONS(1545), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1547), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1559), 2, + ACTIONS(1836), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1567), 2, + ACTIONS(1844), 2, sym_true, sym_false, - ACTIONS(1569), 2, + ACTIONS(1846), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(2306), 2, + ACTIONS(1959), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1961), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2330), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2308), 2, + ACTIONS(2360), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1553), 5, + ACTIONS(1830), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1563), 5, + ACTIONS(1840), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1565), 5, + ACTIONS(1842), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(963), 21, + STATE(1098), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(1110), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -92209,78 +94511,79 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [21347] = 20, + [20706] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1551), 1, - anon_sym_sizeof, - ACTIONS(1555), 1, + ACTIONS(1832), 1, anon_sym_offsetof, - ACTIONS(1557), 1, + ACTIONS(1834), 1, anon_sym__Generic, - ACTIONS(1561), 1, + ACTIONS(1838), 1, sym_number_literal, - ACTIONS(2302), 1, + ACTIONS(1963), 1, + anon_sym_sizeof, + ACTIONS(2356), 1, sym_identifier, - ACTIONS(2304), 1, + ACTIONS(2358), 1, anon_sym_LPAREN2, - STATE(859), 1, + STATE(893), 1, sym_string_literal, - STATE(927), 1, + STATE(1206), 1, sym__expression, - ACTIONS(1545), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1547), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1559), 2, + ACTIONS(1836), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1567), 2, + ACTIONS(1844), 2, sym_true, sym_false, - ACTIONS(1569), 2, + ACTIONS(1846), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(2306), 2, + ACTIONS(1959), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1961), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2330), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2308), 2, + ACTIONS(2360), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1553), 5, + ACTIONS(1830), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1563), 5, + ACTIONS(1840), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1565), 5, + ACTIONS(1842), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(963), 21, + STATE(1098), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(1110), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -92289,78 +94592,79 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [21447] = 20, + [20808] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1551), 1, - anon_sym_sizeof, - ACTIONS(1555), 1, + ACTIONS(1832), 1, anon_sym_offsetof, - ACTIONS(1557), 1, + ACTIONS(1834), 1, anon_sym__Generic, - ACTIONS(1561), 1, + ACTIONS(1838), 1, sym_number_literal, - ACTIONS(2302), 1, + ACTIONS(1963), 1, + anon_sym_sizeof, + ACTIONS(2356), 1, sym_identifier, - ACTIONS(2304), 1, + ACTIONS(2358), 1, anon_sym_LPAREN2, - STATE(859), 1, + STATE(893), 1, sym_string_literal, - STATE(930), 1, + STATE(1194), 1, sym__expression, - ACTIONS(1545), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1547), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1559), 2, + ACTIONS(1836), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1567), 2, + ACTIONS(1844), 2, sym_true, sym_false, - ACTIONS(1569), 2, + ACTIONS(1846), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(2306), 2, + ACTIONS(1959), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1961), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2330), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2308), 2, + ACTIONS(2360), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1553), 5, + ACTIONS(1830), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1563), 5, + ACTIONS(1840), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1565), 5, + ACTIONS(1842), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(963), 21, + STATE(1098), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(1110), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -92369,78 +94673,79 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [21547] = 20, + [20910] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1551), 1, - anon_sym_sizeof, - ACTIONS(1555), 1, + ACTIONS(1832), 1, anon_sym_offsetof, - ACTIONS(1557), 1, + ACTIONS(1834), 1, anon_sym__Generic, - ACTIONS(1561), 1, + ACTIONS(1838), 1, sym_number_literal, - ACTIONS(2302), 1, + ACTIONS(1963), 1, + anon_sym_sizeof, + ACTIONS(2356), 1, sym_identifier, - ACTIONS(2304), 1, + ACTIONS(2358), 1, anon_sym_LPAREN2, - STATE(859), 1, + STATE(893), 1, sym_string_literal, - STATE(934), 1, + STATE(1193), 1, sym__expression, - ACTIONS(1545), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1547), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1559), 2, + ACTIONS(1836), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1567), 2, + ACTIONS(1844), 2, sym_true, sym_false, - ACTIONS(1569), 2, + ACTIONS(1846), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(2306), 2, + ACTIONS(1959), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1961), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2330), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2308), 2, + ACTIONS(2360), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1553), 5, + ACTIONS(1830), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1563), 5, + ACTIONS(1840), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1565), 5, + ACTIONS(1842), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(963), 21, + STATE(1098), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(1110), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -92449,78 +94754,79 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [21647] = 20, + [21012] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1551), 1, - anon_sym_sizeof, - ACTIONS(1555), 1, + ACTIONS(1832), 1, anon_sym_offsetof, - ACTIONS(1557), 1, + ACTIONS(1834), 1, anon_sym__Generic, - ACTIONS(1561), 1, + ACTIONS(1838), 1, sym_number_literal, - ACTIONS(2302), 1, + ACTIONS(1963), 1, + anon_sym_sizeof, + ACTIONS(2356), 1, sym_identifier, - ACTIONS(2304), 1, + ACTIONS(2358), 1, anon_sym_LPAREN2, - STATE(859), 1, + STATE(893), 1, sym_string_literal, - STATE(932), 1, + STATE(1195), 1, sym__expression, - ACTIONS(1545), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1547), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1559), 2, + ACTIONS(1836), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1567), 2, + ACTIONS(1844), 2, sym_true, sym_false, - ACTIONS(1569), 2, + ACTIONS(1846), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(2306), 2, + ACTIONS(1959), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1961), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2330), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2308), 2, + ACTIONS(2360), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1553), 5, + ACTIONS(1830), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1563), 5, + ACTIONS(1840), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1565), 5, + ACTIONS(1842), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(963), 21, + STATE(1098), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(1110), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -92529,78 +94835,79 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [21747] = 20, + [21114] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1551), 1, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(85), 1, anon_sym_sizeof, - ACTIONS(1555), 1, + ACTIONS(89), 1, anon_sym_offsetof, - ACTIONS(1557), 1, + ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(1561), 1, + ACTIONS(161), 1, sym_number_literal, - ACTIONS(2302), 1, + ACTIONS(1931), 1, sym_identifier, - ACTIONS(2304), 1, - anon_sym_LPAREN2, - STATE(859), 1, + STATE(573), 1, sym_string_literal, - STATE(933), 1, + STATE(1152), 1, sym__expression, - ACTIONS(1545), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1547), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1559), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(1567), 2, - sym_true, - sym_false, - ACTIONS(1569), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(2306), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2308), 2, + ACTIONS(83), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1553), 5, + ACTIONS(93), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(103), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(163), 2, + sym_true, + sym_false, + ACTIONS(87), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1563), 5, + ACTIONS(97), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1565), 5, + ACTIONS(99), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(963), 21, + STATE(877), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(809), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -92609,78 +94916,79 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [21847] = 20, + [21216] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1551), 1, - anon_sym_sizeof, - ACTIONS(1555), 1, + ACTIONS(1832), 1, anon_sym_offsetof, - ACTIONS(1557), 1, + ACTIONS(1834), 1, anon_sym__Generic, - ACTIONS(1561), 1, + ACTIONS(1838), 1, sym_number_literal, - ACTIONS(2302), 1, + ACTIONS(1963), 1, + anon_sym_sizeof, + ACTIONS(2356), 1, sym_identifier, - ACTIONS(2304), 1, + ACTIONS(2358), 1, anon_sym_LPAREN2, - STATE(859), 1, + STATE(893), 1, sym_string_literal, - STATE(942), 1, + STATE(1082), 1, sym__expression, - ACTIONS(1545), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1547), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1559), 2, + ACTIONS(1836), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1567), 2, + ACTIONS(1844), 2, sym_true, sym_false, - ACTIONS(1569), 2, + ACTIONS(1846), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(2306), 2, + ACTIONS(1959), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1961), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2330), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2308), 2, + ACTIONS(2360), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1553), 5, + ACTIONS(1830), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1563), 5, + ACTIONS(1840), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1565), 5, + ACTIONS(1842), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(963), 21, + STATE(1098), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(1110), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -92689,80 +94997,76 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [21947] = 21, + [21318] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, + ACTIONS(1832), 1, anon_sym_offsetof, - ACTIONS(89), 1, + ACTIONS(1834), 1, anon_sym__Generic, - ACTIONS(159), 1, + ACTIONS(1838), 1, sym_number_literal, - ACTIONS(1932), 1, + ACTIONS(1963), 1, anon_sym_sizeof, - ACTIONS(2276), 1, + ACTIONS(2356), 1, sym_identifier, - ACTIONS(2278), 1, + ACTIONS(2358), 1, anon_sym_LPAREN2, - STATE(675), 1, + STATE(893), 1, sym_string_literal, - STATE(1160), 1, + STATE(1196), 1, sym__expression, - ACTIONS(91), 2, + ACTIONS(1836), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(101), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(161), 2, + ACTIONS(1844), 2, sym_true, sym_false, - ACTIONS(1928), 2, + ACTIONS(1846), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1959), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1930), 2, + ACTIONS(1961), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2280), 2, + ACTIONS(2330), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2282), 2, + ACTIONS(2360), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(85), 5, + ACTIONS(1830), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(95), 5, + ACTIONS(1840), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(97), 5, + ACTIONS(1842), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(913), 5, + STATE(1098), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(792), 16, + STATE(1110), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -92779,24 +95083,425 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [22049] = 21, + [21420] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, + ACTIONS(1832), 1, + anon_sym_offsetof, + ACTIONS(1834), 1, + anon_sym__Generic, + ACTIONS(1838), 1, + sym_number_literal, + ACTIONS(1963), 1, + anon_sym_sizeof, + ACTIONS(2356), 1, + sym_identifier, + ACTIONS(2358), 1, + anon_sym_LPAREN2, + STATE(893), 1, + sym_string_literal, + STATE(1199), 1, + sym__expression, + ACTIONS(1836), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(1844), 2, + sym_true, + sym_false, + ACTIONS(1846), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1959), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1961), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2330), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2360), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1830), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(1840), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(1842), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(1098), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(1110), 16, + sym__expression_not_binary, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_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, + [21522] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, + anon_sym__Generic, + ACTIONS(161), 1, + sym_number_literal, + ACTIONS(1536), 1, + sym_identifier, + ACTIONS(1562), 1, + anon_sym_sizeof, + ACTIONS(2396), 1, anon_sym_LPAREN2, - ACTIONS(83), 1, + STATE(573), 1, + sym_string_literal, + STATE(957), 1, + sym__expression, + ACTIONS(93), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(103), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(163), 2, + sym_true, + sym_false, + ACTIONS(1558), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1560), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2352), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2398), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(87), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(97), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(99), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(809), 21, + sym__expression_not_binary, + sym_conditional_expression, + sym_assignment_expression, + sym_pointer_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_subscript_expression, + sym_call_expression, + sym_gnu_asm_expression, + sym_field_expression, + sym_compound_literal_expression, + sym_parenthesized_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [21622] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, + anon_sym__Generic, + ACTIONS(161), 1, + sym_number_literal, + ACTIONS(1536), 1, + sym_identifier, + ACTIONS(1562), 1, anon_sym_sizeof, - ACTIONS(87), 1, + ACTIONS(2396), 1, + anon_sym_LPAREN2, + STATE(573), 1, + sym_string_literal, + STATE(949), 1, + sym__expression, + ACTIONS(93), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(103), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(163), 2, + sym_true, + sym_false, + ACTIONS(1558), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1560), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2352), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2398), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(87), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(97), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(99), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(809), 21, + sym__expression_not_binary, + sym_conditional_expression, + sym_assignment_expression, + sym_pointer_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_subscript_expression, + sym_call_expression, + sym_gnu_asm_expression, + sym_field_expression, + sym_compound_literal_expression, + sym_parenthesized_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [21722] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(89), 1, anon_sym_offsetof, + ACTIONS(91), 1, + anon_sym__Generic, + ACTIONS(161), 1, + sym_number_literal, + ACTIONS(1536), 1, + sym_identifier, + ACTIONS(1562), 1, + anon_sym_sizeof, + ACTIONS(2396), 1, + anon_sym_LPAREN2, + STATE(573), 1, + sym_string_literal, + STATE(837), 1, + sym__expression, + ACTIONS(93), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(103), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(163), 2, + sym_true, + sym_false, + ACTIONS(1558), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1560), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2352), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2398), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(87), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(97), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(99), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(809), 21, + sym__expression_not_binary, + sym_conditional_expression, + sym_assignment_expression, + sym_pointer_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_subscript_expression, + sym_call_expression, + sym_gnu_asm_expression, + sym_field_expression, + sym_compound_literal_expression, + sym_parenthesized_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [21822] = 20, + ACTIONS(3), 1, + sym_comment, ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(159), 1, + ACTIONS(161), 1, sym_number_literal, - ACTIONS(1926), 1, + ACTIONS(1536), 1, sym_identifier, - STATE(675), 1, + ACTIONS(1562), 1, + anon_sym_sizeof, + ACTIONS(2396), 1, + anon_sym_LPAREN2, + STATE(573), 1, sym_string_literal, - STATE(1199), 1, + STATE(840), 1, + sym__expression, + ACTIONS(93), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(103), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(163), 2, + sym_true, + sym_false, + ACTIONS(1558), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1560), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2352), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2398), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(87), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(97), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(99), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(809), 21, + sym__expression_not_binary, + sym_conditional_expression, + sym_assignment_expression, + sym_pointer_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_subscript_expression, + sym_call_expression, + sym_gnu_asm_expression, + sym_field_expression, + sym_compound_literal_expression, + sym_parenthesized_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [21922] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(85), 1, + anon_sym_sizeof, + ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, + anon_sym__Generic, + ACTIONS(161), 1, + sym_number_literal, + ACTIONS(1931), 1, + sym_identifier, + STATE(573), 1, + sym_string_literal, + STATE(1160), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -92807,43 +95512,43 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(81), 2, + ACTIONS(83), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(91), 2, + ACTIONS(93), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(101), 2, + ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(161), 2, + ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(85), 5, + ACTIONS(87), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(97), 5, + ACTIONS(99), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(901), 5, + STATE(877), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(792), 16, + STATE(809), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -92860,71 +95565,233 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [22151] = 21, + [22024] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, - anon_sym_offsetof, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(85), 1, + anon_sym_sizeof, ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(159), 1, + ACTIONS(161), 1, sym_number_literal, - ACTIONS(1932), 1, - anon_sym_sizeof, - ACTIONS(2276), 1, + ACTIONS(1931), 1, sym_identifier, - ACTIONS(2278), 1, - anon_sym_LPAREN2, - STATE(675), 1, + STATE(573), 1, sym_string_literal, - STATE(834), 1, + STATE(1159), 1, sym__expression, - ACTIONS(91), 2, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(83), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(93), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(101), 2, + ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(161), 2, + ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(1928), 2, + ACTIONS(87), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(97), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(99), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(877), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(809), 16, + sym__expression_not_binary, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_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, + [22126] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(85), 1, + anon_sym_sizeof, + ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, + anon_sym__Generic, + ACTIONS(161), 1, + sym_number_literal, + ACTIONS(1931), 1, + sym_identifier, + STATE(573), 1, + sym_string_literal, + STATE(1155), 1, + sym__expression, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1930), 2, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(83), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(93), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(103), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(163), 2, + sym_true, + sym_false, + ACTIONS(87), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(97), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(99), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(877), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(809), 16, + sym__expression_not_binary, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_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, + [22228] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(85), 1, + anon_sym_sizeof, + ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, + anon_sym__Generic, + ACTIONS(161), 1, + sym_number_literal, + ACTIONS(1931), 1, + sym_identifier, + STATE(573), 1, + sym_string_literal, + STATE(1166), 1, + sym__expression, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2280), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2282), 2, + ACTIONS(83), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(85), 5, + ACTIONS(93), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(103), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(163), 2, + sym_true, + sym_false, + ACTIONS(87), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(97), 5, + ACTIONS(99), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(913), 5, + STATE(877), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(792), 16, + STATE(809), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -92941,69 +95808,74 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [22253] = 20, + [22330] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, - anon_sym_offsetof, ACTIONS(89), 1, + anon_sym_offsetof, + ACTIONS(91), 1, anon_sym__Generic, - ACTIONS(159), 1, + ACTIONS(161), 1, sym_number_literal, - ACTIONS(1525), 1, + ACTIONS(1993), 1, sym_identifier, - ACTIONS(1910), 1, + ACTIONS(1999), 1, anon_sym_sizeof, - ACTIONS(2290), 1, + ACTIONS(2073), 1, anon_sym_LPAREN2, - STATE(675), 1, + STATE(573), 1, sym_string_literal, - STATE(1054), 1, + STATE(1293), 1, sym__expression, - ACTIONS(91), 2, + ACTIONS(93), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(101), 2, + ACTIONS(103), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(161), 2, + ACTIONS(163), 2, sym_true, sym_false, - ACTIONS(1906), 2, + ACTIONS(1995), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1908), 2, + ACTIONS(1997), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2002), 2, + ACTIONS(2077), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2292), 2, + ACTIONS(2083), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(85), 5, + ACTIONS(87), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(95), 5, + ACTIONS(97), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(97), 5, + ACTIONS(99), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(792), 21, + STATE(1154), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(809), 16, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -93012,19 +95884,15 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [22353] = 3, + [22432] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2420), 19, + ACTIONS(2482), 23, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -93041,10 +95909,14 @@ static const uint16_t ts_small_parse_table[] = { 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_DOT, sym_identifier, - ACTIONS(2422), 38, + ACTIONS(2484), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -93060,6 +95932,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, @@ -93078,15 +95951,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [22418] = 3, + [22497] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2424), 19, + ACTIONS(2486), 23, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -93103,10 +95971,14 @@ static const uint16_t ts_small_parse_table[] = { 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_DOT, sym_identifier, - ACTIONS(2426), 38, + ACTIONS(2488), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -93140,76 +96012,90 @@ 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, - [22483] = 3, + [22561] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2428), 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_LBRACK, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_DOT, - sym_identifier, - ACTIONS(2430), 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(45), 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, - [22547] = 3, + ACTIONS(53), 1, + sym_primitive_type, + ACTIONS(55), 1, + anon_sym_enum, + ACTIONS(57), 1, + anon_sym_struct, + ACTIONS(59), 1, + anon_sym_union, + ACTIONS(1312), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2009), 1, + sym_identifier, + STATE(413), 1, + sym_compound_statement, + STATE(974), 1, + sym__type_specifier, + STATE(1085), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1531), 1, + sym__declaration_specifiers, + ACTIONS(33), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(35), 2, + anon_sym___scanf, + anon_sym___printf, + STATE(839), 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(1069), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(855), 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, + [22663] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2432), 22, + ACTIONS(2490), 23, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -93226,13 +96112,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym___scanf, anon_sym___printf, - anon_sym_LBRACK, + anon_sym___read_mostly, + anon_sym___must_hold, + anon_sym___ro_after_init, + anon_sym___init, anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, anon_sym_DOT, sym_identifier, - ACTIONS(2434), 34, + ACTIONS(2492), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -93248,9 +96135,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, @@ -93267,132 +96153,410 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [22611] = 3, + [22727] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2436), 22, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(41), 1, + anon_sym___declspec, + ACTIONS(53), 1, + sym_primitive_type, + ACTIONS(55), 1, + anon_sym_enum, + ACTIONS(57), 1, + anon_sym_struct, + ACTIONS(59), 1, + anon_sym_union, + ACTIONS(511), 1, + anon_sym_LBRACE, + ACTIONS(1312), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2009), 1, + sym_identifier, + STATE(398), 1, + sym_compound_statement, + STATE(974), 1, + sym__type_specifier, + STATE(1085), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1531), 1, + sym__declaration_specifiers, + ACTIONS(33), 2, anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(35), 2, anon_sym___scanf, anon_sym___printf, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_DOT, - sym_identifier, - ACTIONS(2438), 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, - [22675] = 3, + STATE(825), 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(1069), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(855), 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, + [22829] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2440), 22, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(41), 1, + anon_sym___declspec, + ACTIONS(53), 1, + sym_primitive_type, + ACTIONS(55), 1, + anon_sym_enum, + ACTIONS(57), 1, + anon_sym_struct, + ACTIONS(59), 1, + anon_sym_union, + ACTIONS(205), 1, + anon_sym_LBRACE, + ACTIONS(1312), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2009), 1, + sym_identifier, + STATE(212), 1, + sym_compound_statement, + STATE(974), 1, + sym__type_specifier, + STATE(1085), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1531), 1, + sym__declaration_specifiers, + ACTIONS(33), 2, anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(35), 2, anon_sym___scanf, anon_sym___printf, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_DOT, + STATE(839), 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(1069), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(855), 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, + [22931] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(41), 1, + anon_sym___declspec, + ACTIONS(53), 1, + sym_primitive_type, + ACTIONS(55), 1, + anon_sym_enum, + ACTIONS(57), 1, + anon_sym_struct, + ACTIONS(59), 1, + anon_sym_union, + ACTIONS(205), 1, + anon_sym_LBRACE, + ACTIONS(1312), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2009), 1, sym_identifier, - ACTIONS(2442), 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, + STATE(215), 1, + sym_compound_statement, + STATE(974), 1, + sym__type_specifier, + STATE(1085), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1531), 1, + sym__declaration_specifiers, + ACTIONS(33), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(35), 2, + anon_sym___scanf, + anon_sym___printf, + STATE(794), 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(1069), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(855), 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, + [23033] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(41), 1, + anon_sym___declspec, + ACTIONS(45), 1, + anon_sym_LBRACE, + ACTIONS(53), 1, + sym_primitive_type, + ACTIONS(55), 1, + anon_sym_enum, + ACTIONS(57), 1, + anon_sym_struct, + ACTIONS(59), 1, + anon_sym_union, + ACTIONS(1312), 1, anon_sym_LBRACK_LBRACK, + ACTIONS(2009), 1, + sym_identifier, + STATE(419), 1, + sym_compound_statement, + STATE(974), 1, + sym__type_specifier, + STATE(1085), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1531), 1, + sym__declaration_specifiers, + ACTIONS(33), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(35), 2, + anon_sym___scanf, + anon_sym___printf, + STATE(839), 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(1069), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(855), 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, + [23135] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(41), 1, + anon_sym___declspec, + ACTIONS(53), 1, + sym_primitive_type, + ACTIONS(55), 1, + anon_sym_enum, + ACTIONS(57), 1, + anon_sym_struct, + ACTIONS(59), 1, + anon_sym_union, + ACTIONS(205), 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, - [22739] = 3, + ACTIONS(1312), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2009), 1, + sym_identifier, + STATE(202), 1, + sym_compound_statement, + STATE(974), 1, + sym__type_specifier, + STATE(1085), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1531), 1, + sym__declaration_specifiers, + ACTIONS(33), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(35), 2, + anon_sym___scanf, + anon_sym___printf, + STATE(839), 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(1069), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(855), 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, + [23237] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2444), 22, + ACTIONS(2494), 23, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -93409,13 +96573,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym___scanf, anon_sym___printf, - anon_sym_LBRACK, + anon_sym___read_mostly, + anon_sym___must_hold, + anon_sym___ro_after_init, + anon_sym___init, anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, anon_sym_DOT, sym_identifier, - ACTIONS(2446), 34, + ACTIONS(2496), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -93431,9 +96596,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, @@ -93450,71 +96614,250 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [22803] = 3, + [23301] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2448), 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_LBRACK, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_DOT, + ACTIONS(41), 1, + anon_sym___declspec, + ACTIONS(53), 1, + sym_primitive_type, + ACTIONS(55), 1, + anon_sym_enum, + ACTIONS(57), 1, + anon_sym_struct, + ACTIONS(59), 1, + anon_sym_union, + ACTIONS(631), 1, + anon_sym_LBRACE, + ACTIONS(1312), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2009), 1, sym_identifier, - ACTIONS(2450), 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, + STATE(372), 1, + sym_compound_statement, + STATE(974), 1, + sym__type_specifier, + STATE(1085), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1531), 1, + sym__declaration_specifiers, + ACTIONS(33), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(35), 2, + anon_sym___scanf, + anon_sym___printf, + STATE(813), 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(1069), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(855), 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, + [23403] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(41), 1, + anon_sym___declspec, + ACTIONS(53), 1, + sym_primitive_type, + ACTIONS(55), 1, + anon_sym_enum, + ACTIONS(57), 1, + anon_sym_struct, + ACTIONS(59), 1, + anon_sym_union, + ACTIONS(205), 1, + anon_sym_LBRACE, + ACTIONS(1312), 1, anon_sym_LBRACK_LBRACK, + ACTIONS(2009), 1, + sym_identifier, + STATE(219), 1, + sym_compound_statement, + STATE(974), 1, + sym__type_specifier, + STATE(1085), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1531), 1, + sym__declaration_specifiers, + ACTIONS(33), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(35), 2, + anon_sym___scanf, + anon_sym___printf, + STATE(797), 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(1069), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(855), 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, + [23505] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(41), 1, + anon_sym___declspec, + ACTIONS(53), 1, + sym_primitive_type, + ACTIONS(55), 1, + anon_sym_enum, + ACTIONS(57), 1, + anon_sym_struct, + ACTIONS(59), 1, + anon_sym_union, + ACTIONS(511), 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, - [22867] = 3, + ACTIONS(1312), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2009), 1, + sym_identifier, + STATE(382), 1, + sym_compound_statement, + STATE(974), 1, + sym__type_specifier, + STATE(1085), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1531), 1, + sym__declaration_specifiers, + ACTIONS(33), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(35), 2, + anon_sym___scanf, + anon_sym___printf, + STATE(839), 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(1069), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(855), 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, + [23607] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2452), 22, + ACTIONS(2498), 23, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -93531,13 +96874,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym___scanf, anon_sym___printf, - anon_sym_LBRACK, + anon_sym___read_mostly, + anon_sym___must_hold, + anon_sym___ro_after_init, + anon_sym___init, anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, anon_sym_DOT, sym_identifier, - ACTIONS(2454), 34, + ACTIONS(2500), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -93553,9 +96897,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, @@ -93572,10 +96915,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [22931] = 3, + [23671] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2456), 22, + ACTIONS(2502), 23, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -93592,13 +96935,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym___scanf, anon_sym___printf, - anon_sym_LBRACK, + anon_sym___read_mostly, + anon_sym___must_hold, + anon_sym___ro_after_init, + anon_sym___init, anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, anon_sym_DOT, sym_identifier, - ACTIONS(2458), 34, + ACTIONS(2504), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -93614,9 +96958,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, @@ -93633,71 +96976,330 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [22995] = 3, + [23735] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2460), 22, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(41), 1, + anon_sym___declspec, + ACTIONS(53), 1, + sym_primitive_type, + ACTIONS(55), 1, + anon_sym_enum, + ACTIONS(57), 1, + anon_sym_struct, + ACTIONS(59), 1, + anon_sym_union, + ACTIONS(133), 1, + anon_sym_LBRACE, + ACTIONS(1312), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2009), 1, + sym_identifier, + STATE(158), 1, + sym_compound_statement, + STATE(974), 1, + sym__type_specifier, + STATE(1085), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1531), 1, + sym__declaration_specifiers, + ACTIONS(33), 2, anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(35), 2, anon_sym___scanf, anon_sym___printf, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_DOT, + STATE(839), 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(1069), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(855), 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, + [23837] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(41), 1, + anon_sym___declspec, + ACTIONS(53), 1, + sym_primitive_type, + ACTIONS(55), 1, + anon_sym_enum, + ACTIONS(57), 1, + anon_sym_struct, + ACTIONS(59), 1, + anon_sym_union, + ACTIONS(133), 1, + anon_sym_LBRACE, + ACTIONS(1312), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2009), 1, sym_identifier, - ACTIONS(2462), 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, + STATE(153), 1, + sym_compound_statement, + STATE(974), 1, + sym__type_specifier, + STATE(1085), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1531), 1, + sym__declaration_specifiers, + ACTIONS(33), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(35), 2, + anon_sym___scanf, + anon_sym___printf, + STATE(804), 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(1069), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(855), 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, + [23939] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(41), 1, + anon_sym___declspec, + ACTIONS(53), 1, + sym_primitive_type, + ACTIONS(55), 1, + anon_sym_enum, + ACTIONS(57), 1, + anon_sym_struct, + ACTIONS(59), 1, + anon_sym_union, + ACTIONS(133), 1, + anon_sym_LBRACE, + ACTIONS(1312), 1, anon_sym_LBRACK_LBRACK, + ACTIONS(2009), 1, + sym_identifier, + STATE(151), 1, + sym_compound_statement, + STATE(974), 1, + sym__type_specifier, + STATE(1085), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1531), 1, + sym__declaration_specifiers, + ACTIONS(33), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(35), 2, + anon_sym___scanf, + anon_sym___printf, + STATE(839), 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(1069), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(855), 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, + [24041] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(41), 1, + anon_sym___declspec, + ACTIONS(53), 1, + sym_primitive_type, + ACTIONS(55), 1, + anon_sym_enum, + ACTIONS(57), 1, + anon_sym_struct, + ACTIONS(59), 1, + anon_sym_union, + ACTIONS(133), 1, 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, - [23059] = 3, + ACTIONS(1312), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2009), 1, + sym_identifier, + STATE(144), 1, + sym_compound_statement, + STATE(974), 1, + sym__type_specifier, + STATE(1085), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1531), 1, + sym__declaration_specifiers, + ACTIONS(33), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(35), 2, + anon_sym___scanf, + anon_sym___printf, + STATE(806), 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(1069), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(855), 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, + [24143] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2464), 22, + ACTIONS(2506), 23, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -93714,13 +97316,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym___scanf, anon_sym___printf, - anon_sym_LBRACK, + anon_sym___read_mostly, + anon_sym___must_hold, + anon_sym___ro_after_init, + anon_sym___init, anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, anon_sym_DOT, sym_identifier, - ACTIONS(2466), 34, + ACTIONS(2508), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -93736,9 +97339,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, @@ -93755,10 +97357,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [23123] = 3, + [24207] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2468), 19, + ACTIONS(2510), 23, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -93775,10 +97377,14 @@ static const uint16_t ts_small_parse_table[] = { 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_DOT, sym_identifier, - ACTIONS(2470), 34, + ACTIONS(2512), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -93794,7 +97400,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_SEMI, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, @@ -93813,10 +97418,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [23184] = 3, + [24271] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2472), 19, + ACTIONS(2514), 23, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -93833,10 +97438,14 @@ static const uint16_t ts_small_parse_table[] = { 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_DOT, sym_identifier, - ACTIONS(2474), 33, + ACTIONS(2516), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -93870,10 +97479,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [23244] = 3, + [24335] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2476), 19, + ACTIONS(2518), 23, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -93890,10 +97499,14 @@ static const uint16_t ts_small_parse_table[] = { 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_DOT, sym_identifier, - ACTIONS(2478), 33, + ACTIONS(2520), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -93927,18 +97540,419 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [23304] = 3, + [24399] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2480), 19, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(41), 1, + anon_sym___declspec, + ACTIONS(53), 1, + sym_primitive_type, + ACTIONS(55), 1, + anon_sym_enum, + ACTIONS(57), 1, + anon_sym_struct, + ACTIONS(59), 1, + anon_sym_union, + ACTIONS(511), 1, + anon_sym_LBRACE, + ACTIONS(1312), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2009), 1, + sym_identifier, + STATE(365), 1, + sym_compound_statement, + STATE(974), 1, + sym__type_specifier, + STATE(1085), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1531), 1, + sym__declaration_specifiers, + ACTIONS(33), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(35), 2, + anon_sym___scanf, + anon_sym___printf, + STATE(801), 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(1069), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(855), 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, + [24501] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(41), 1, + anon_sym___declspec, + ACTIONS(53), 1, + sym_primitive_type, + ACTIONS(55), 1, + anon_sym_enum, + ACTIONS(57), 1, + anon_sym_struct, + ACTIONS(59), 1, + anon_sym_union, + ACTIONS(631), 1, + anon_sym_LBRACE, + ACTIONS(1312), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2009), 1, + sym_identifier, + STATE(400), 1, + sym_compound_statement, + STATE(974), 1, + sym__type_specifier, + STATE(1085), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1531), 1, + sym__declaration_specifiers, + ACTIONS(33), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(35), 2, + anon_sym___scanf, + anon_sym___printf, + STATE(839), 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(1069), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(855), 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, + [24603] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(41), 1, + anon_sym___declspec, + ACTIONS(53), 1, + sym_primitive_type, + ACTIONS(55), 1, + anon_sym_enum, + ACTIONS(57), 1, + anon_sym_struct, + ACTIONS(59), 1, + anon_sym_union, + ACTIONS(631), 1, + anon_sym_LBRACE, + ACTIONS(1312), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2009), 1, + sym_identifier, + STATE(354), 1, + sym_compound_statement, + STATE(974), 1, + sym__type_specifier, + STATE(1085), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1531), 1, + sym__declaration_specifiers, + ACTIONS(33), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(35), 2, + anon_sym___scanf, + anon_sym___printf, + STATE(839), 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(1069), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(855), 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, + [24705] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(41), 1, + anon_sym___declspec, + ACTIONS(53), 1, + sym_primitive_type, + ACTIONS(55), 1, + anon_sym_enum, + ACTIONS(57), 1, + anon_sym_struct, + ACTIONS(59), 1, + anon_sym_union, + ACTIONS(1312), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2037), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2522), 1, + sym_identifier, + ACTIONS(2524), 1, + anon_sym_RPAREN, + STATE(974), 1, + sym__type_specifier, + STATE(1085), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1387), 1, + sym__declaration_specifiers, + STATE(1729), 1, + sym_variadic_parameter, + STATE(1843), 1, + sym_parameter_declaration, + 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(47), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1069), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(855), 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, + [24809] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(41), 1, + anon_sym___declspec, + ACTIONS(53), 1, + sym_primitive_type, + ACTIONS(55), 1, + anon_sym_enum, + ACTIONS(57), 1, + anon_sym_struct, + ACTIONS(59), 1, + anon_sym_union, + ACTIONS(1312), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2009), 1, + sym_identifier, + ACTIONS(2037), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2039), 1, + anon_sym_RPAREN, + STATE(974), 1, + sym__type_specifier, + STATE(1085), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1387), 1, + sym__declaration_specifiers, + ACTIONS(33), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(35), 2, + anon_sym___scanf, + anon_sym___printf, + STATE(1843), 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(1069), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(855), 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, + [24911] = 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, @@ -93947,10 +97961,14 @@ static const uint16_t ts_small_parse_table[] = { 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_DOT, sym_identifier, - ACTIONS(2482), 33, + ACTIONS(2528), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -93984,10 +98002,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [23364] = 3, + [24975] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2484), 19, + ACTIONS(2530), 23, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -94004,10 +98022,14 @@ static const uint16_t ts_small_parse_table[] = { 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_DOT, sym_identifier, - ACTIONS(2486), 33, + ACTIONS(2532), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -94041,10 +98063,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [23424] = 3, + [25039] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2488), 19, + ACTIONS(2534), 23, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -94061,10 +98083,14 @@ static const uint16_t ts_small_parse_table[] = { 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_DOT, sym_identifier, - ACTIONS(2490), 33, + ACTIONS(2536), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -94098,10 +98124,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [23484] = 3, + [25103] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(41), 1, + anon_sym___declspec, + ACTIONS(45), 1, + anon_sym_LBRACE, + ACTIONS(53), 1, + sym_primitive_type, + ACTIONS(55), 1, + anon_sym_enum, + ACTIONS(57), 1, + anon_sym_struct, + ACTIONS(59), 1, + anon_sym_union, + ACTIONS(1312), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2009), 1, + sym_identifier, + STATE(407), 1, + sym_compound_statement, + STATE(974), 1, + sym__type_specifier, + STATE(1085), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1531), 1, + sym__declaration_specifiers, + ACTIONS(33), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(35), 2, + anon_sym___scanf, + anon_sym___printf, + STATE(796), 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(1069), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(855), 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, + [25205] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2492), 19, + ACTIONS(2538), 23, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -94118,10 +98224,14 @@ static const uint16_t ts_small_parse_table[] = { 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_DOT, sym_identifier, - ACTIONS(2494), 33, + ACTIONS(2540), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -94155,10 +98265,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [23544] = 3, + [25269] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(41), 1, + anon_sym___declspec, + ACTIONS(45), 1, + anon_sym_LBRACE, + ACTIONS(53), 1, + sym_primitive_type, + ACTIONS(55), 1, + anon_sym_enum, + ACTIONS(57), 1, + anon_sym_struct, + ACTIONS(59), 1, + anon_sym_union, + ACTIONS(1312), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2009), 1, + sym_identifier, + STATE(425), 1, + sym_compound_statement, + STATE(974), 1, + sym__type_specifier, + STATE(1085), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1531), 1, + sym__declaration_specifiers, + ACTIONS(33), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(35), 2, + anon_sym___scanf, + anon_sym___printf, + STATE(791), 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(1069), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(855), 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, + [25371] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2496), 19, + ACTIONS(2542), 23, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -94175,10 +98365,14 @@ static const uint16_t ts_small_parse_table[] = { 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_DOT, sym_identifier, - ACTIONS(2498), 33, + ACTIONS(2544), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -94212,10 +98406,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [23604] = 3, + [25435] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2500), 19, + ACTIONS(2546), 23, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -94232,10 +98426,14 @@ static const uint16_t ts_small_parse_table[] = { 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_DOT, sym_identifier, - ACTIONS(2502), 33, + ACTIONS(2548), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -94269,129 +98467,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [23664] = 22, + [25499] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(39), 1, + ACTIONS(41), 1, anon_sym___declspec, - ACTIONS(51), 1, - sym_primitive_type, ACTIONS(53), 1, - anon_sym_enum, - ACTIONS(55), 1, - anon_sym_struct, - ACTIONS(57), 1, - anon_sym_union, - ACTIONS(1301), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2084), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2504), 1, - sym_identifier, - ACTIONS(2506), 1, - anon_sym_RPAREN, - STATE(1040), 1, - sym__type_specifier, - STATE(1113), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1344), 1, - sym__declaration_specifiers, - STATE(1730), 1, - sym_variadic_parameter, - STATE(1826), 1, - sym_parameter_declaration, - ACTIONS(35), 2, - anon_sym___scanf, - anon_sym___printf, - ACTIONS(45), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1106), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(861), 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(49), 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(47), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - [23762] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(39), 1, - anon_sym___declspec, - ACTIONS(51), 1, sym_primitive_type, - ACTIONS(53), 1, - anon_sym_enum, ACTIONS(55), 1, - anon_sym_struct, + anon_sym_enum, ACTIONS(57), 1, + anon_sym_struct, + ACTIONS(59), 1, anon_sym_union, - ACTIONS(1301), 1, + ACTIONS(511), 1, + anon_sym_LBRACE, + ACTIONS(1312), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2046), 1, + ACTIONS(2009), 1, sym_identifier, - ACTIONS(2084), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2086), 1, - anon_sym_RPAREN, - STATE(1040), 1, + STATE(363), 1, + sym_compound_statement, + STATE(974), 1, sym__type_specifier, - STATE(1113), 1, + STATE(1085), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1344), 1, + STATE(1531), 1, sym__declaration_specifiers, + ACTIONS(33), 2, + anon_sym___attribute__, + anon_sym___must_hold, ACTIONS(35), 2, anon_sym___scanf, anon_sym___printf, - STATE(1826), 2, - sym_variadic_parameter, - sym_parameter_declaration, - ACTIONS(45), 4, + STATE(839), 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(1106), 5, + STATE(1069), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(861), 7, + STATE(855), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -94399,7 +98526,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(49), 9, + ACTIONS(51), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -94409,7 +98536,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(47), 10, + ACTIONS(49), 10, anon_sym_extern, anon_sym_static, anon_sym_auto, @@ -94420,10 +98547,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [23858] = 3, + [25601] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2508), 19, + ACTIONS(2550), 23, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -94440,10 +98567,14 @@ static const uint16_t ts_small_parse_table[] = { 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_DOT, sym_identifier, - ACTIONS(2510), 33, + ACTIONS(2552), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -94477,53 +98608,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [23918] = 21, + [25665] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(39), 1, + ACTIONS(41), 1, anon_sym___declspec, - ACTIONS(43), 1, - anon_sym_LBRACE, - ACTIONS(51), 1, - sym_primitive_type, ACTIONS(53), 1, - anon_sym_enum, + sym_primitive_type, ACTIONS(55), 1, - anon_sym_struct, + anon_sym_enum, ACTIONS(57), 1, + anon_sym_struct, + ACTIONS(59), 1, anon_sym_union, - ACTIONS(1301), 1, + ACTIONS(631), 1, + anon_sym_LBRACE, + ACTIONS(1312), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2046), 1, + ACTIONS(2009), 1, sym_identifier, - STATE(447), 1, + STATE(380), 1, sym_compound_statement, - STATE(1040), 1, + STATE(974), 1, sym__type_specifier, - STATE(1113), 1, + STATE(1085), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1492), 1, + STATE(1531), 1, sym__declaration_specifiers, + ACTIONS(33), 2, + anon_sym___attribute__, + anon_sym___must_hold, ACTIONS(35), 2, anon_sym___scanf, anon_sym___printf, - STATE(842), 2, + STATE(814), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, - ACTIONS(45), 4, + 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(1106), 5, + STATE(1069), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(861), 7, + STATE(855), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -94531,7 +98667,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(49), 9, + ACTIONS(51), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -94541,7 +98677,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(47), 10, + ACTIONS(49), 10, anon_sym_extern, anon_sym_static, anon_sym_auto, @@ -94552,10 +98688,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [24014] = 3, + [25767] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2512), 19, + ACTIONS(2554), 22, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -94572,11 +98708,13 @@ static const uint16_t ts_small_parse_table[] = { 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_DOT, sym_identifier, - ACTIONS(2514), 33, - anon_sym_DOT_DOT_DOT, + ACTIONS(2556), 33, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_preproc_if_token2, @@ -94591,9 +98729,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, @@ -94608,161 +98746,77 @@ 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, - [24074] = 21, + [25830] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, + ACTIONS(2562), 1, + anon_sym_LPAREN2, + ACTIONS(2564), 1, + anon_sym_LBRACK, + STATE(821), 1, + sym_argument_list, + ACTIONS(2566), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2568), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2558), 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__, - ACTIONS(39), 1, - anon_sym___declspec, - ACTIONS(51), 1, - sym_primitive_type, - ACTIONS(53), 1, - anon_sym_enum, - ACTIONS(55), 1, - anon_sym_struct, - ACTIONS(57), 1, - anon_sym_union, - ACTIONS(656), 1, - anon_sym_LBRACE, - ACTIONS(1301), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2046), 1, - sym_identifier, - STATE(396), 1, - sym_compound_statement, - STATE(1040), 1, - sym__type_specifier, - STATE(1113), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1492), 1, - sym__declaration_specifiers, - ACTIONS(35), 2, anon_sym___scanf, anon_sym___printf, - STATE(811), 2, - sym_declaration, - aux_sym__old_style_function_definition_repeat1, - ACTIONS(45), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1106), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(861), 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(49), 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(47), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - [24170] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(39), 1, - anon_sym___declspec, - ACTIONS(51), 1, - sym_primitive_type, - ACTIONS(53), 1, - anon_sym_enum, - ACTIONS(55), 1, - anon_sym_struct, - ACTIONS(57), 1, - anon_sym_union, - ACTIONS(504), 1, - anon_sym_LBRACE, - ACTIONS(1301), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2046), 1, + anon_sym___read_mostly, + anon_sym___must_hold, + anon_sym___ro_after_init, + anon_sym___init, + anon_sym_EQ, sym_identifier, - STATE(354), 1, - sym_compound_statement, - STATE(1040), 1, - sym__type_specifier, - STATE(1113), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1492), 1, - sym__declaration_specifiers, - ACTIONS(35), 2, - anon_sym___scanf, - anon_sym___printf, - STATE(827), 2, - sym_declaration, - aux_sym__old_style_function_definition_repeat1, - ACTIONS(45), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1106), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(861), 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(49), 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(47), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - [24266] = 3, + ACTIONS(2560), 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, + [25903] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2516), 19, + ACTIONS(2570), 22, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -94779,11 +98833,13 @@ static const uint16_t ts_small_parse_table[] = { 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_DOT, sym_identifier, - ACTIONS(2518), 33, - anon_sym_DOT_DOT_DOT, + ACTIONS(2572), 33, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_preproc_if_token2, @@ -94798,9 +98854,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, @@ -94815,54 +98871,59 @@ 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, - [24326] = 21, + [25966] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(39), 1, + ACTIONS(41), 1, anon_sym___declspec, - ACTIONS(51), 1, - sym_primitive_type, ACTIONS(53), 1, - anon_sym_enum, + sym_primitive_type, ACTIONS(55), 1, - anon_sym_struct, + anon_sym_enum, ACTIONS(57), 1, + anon_sym_struct, + ACTIONS(59), 1, anon_sym_union, - ACTIONS(131), 1, - anon_sym_LBRACE, - ACTIONS(1301), 1, + ACTIONS(1312), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2046), 1, + ACTIONS(2037), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2574), 1, sym_identifier, - STATE(145), 1, - sym_compound_statement, - STATE(1040), 1, + STATE(974), 1, sym__type_specifier, - STATE(1113), 1, + STATE(1085), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1492), 1, + STATE(1387), 1, sym__declaration_specifiers, + STATE(1904), 1, + sym_parameter_declaration, + STATE(1942), 1, + sym_variadic_parameter, + ACTIONS(33), 2, + anon_sym___attribute__, + anon_sym___must_hold, ACTIONS(35), 2, anon_sym___scanf, anon_sym___printf, - STATE(808), 2, - sym_declaration, - aux_sym__old_style_function_definition_repeat1, - ACTIONS(45), 4, + 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(1106), 5, + STATE(1069), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(861), 7, + STATE(855), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -94870,7 +98931,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(49), 9, + ACTIONS(51), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -94880,7 +98941,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(47), 10, + ACTIONS(49), 10, anon_sym_extern, anon_sym_static, anon_sym_auto, @@ -94891,53 +98952,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [24422] = 21, + [26067] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(39), 1, + ACTIONS(41), 1, anon_sym___declspec, - ACTIONS(43), 1, - anon_sym_LBRACE, - ACTIONS(51), 1, - sym_primitive_type, ACTIONS(53), 1, - anon_sym_enum, + sym_primitive_type, ACTIONS(55), 1, - anon_sym_struct, + anon_sym_enum, ACTIONS(57), 1, + anon_sym_struct, + ACTIONS(59), 1, anon_sym_union, - ACTIONS(1301), 1, + ACTIONS(1312), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2046), 1, + ACTIONS(2009), 1, sym_identifier, - STATE(443), 1, - sym_compound_statement, - STATE(1040), 1, + ACTIONS(2037), 1, + anon_sym_DOT_DOT_DOT, + STATE(974), 1, sym__type_specifier, - STATE(1113), 1, + STATE(1085), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1492), 1, + STATE(1387), 1, sym__declaration_specifiers, + ACTIONS(33), 2, + anon_sym___attribute__, + anon_sym___must_hold, ACTIONS(35), 2, anon_sym___scanf, anon_sym___printf, - STATE(826), 2, - sym_declaration, - aux_sym__old_style_function_definition_repeat1, - ACTIONS(45), 4, + STATE(1904), 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(1106), 5, + STATE(1069), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(861), 7, + STATE(855), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -94945,7 +99009,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(49), 9, + ACTIONS(51), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -94955,7 +99019,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(47), 10, + ACTIONS(49), 10, anon_sym_extern, anon_sym_static, anon_sym_auto, @@ -94966,85 +99030,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [24518] = 21, + [26166] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, + ACTIONS(2562), 1, + anon_sym_LPAREN2, + ACTIONS(2564), 1, + anon_sym_LBRACK, + STATE(821), 1, + sym_argument_list, + ACTIONS(2566), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2568), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2576), 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__, - ACTIONS(39), 1, - anon_sym___declspec, - ACTIONS(51), 1, - sym_primitive_type, - ACTIONS(53), 1, - anon_sym_enum, - ACTIONS(55), 1, - anon_sym_struct, - ACTIONS(57), 1, - anon_sym_union, - ACTIONS(131), 1, - anon_sym_LBRACE, - ACTIONS(1301), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2046), 1, - sym_identifier, - STATE(154), 1, - sym_compound_statement, - STATE(1040), 1, - sym__type_specifier, - STATE(1113), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1492), 1, - sym__declaration_specifiers, - ACTIONS(35), 2, anon_sym___scanf, anon_sym___printf, - STATE(842), 2, - sym_declaration, - aux_sym__old_style_function_definition_repeat1, - ACTIONS(45), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1106), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(861), 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(49), 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(47), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - [24614] = 3, + anon_sym___read_mostly, + anon_sym___must_hold, + anon_sym___ro_after_init, + anon_sym___init, + anon_sym_EQ, + sym_identifier, + ACTIONS(2578), 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, + [26239] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2520), 19, + ACTIONS(2580), 22, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -95061,11 +99115,13 @@ static const uint16_t ts_small_parse_table[] = { 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_DOT, sym_identifier, - ACTIONS(2522), 33, - anon_sym_DOT_DOT_DOT, + ACTIONS(2582), 33, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_preproc_if_token2, @@ -95080,9 +99136,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, @@ -95097,204 +99153,312 @@ 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, - [24674] = 21, + [26302] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, + ACTIONS(2562), 1, + anon_sym_LPAREN2, + ACTIONS(2564), 1, + anon_sym_LBRACK, + STATE(821), 1, + sym_argument_list, + ACTIONS(2566), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2568), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2584), 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__, - ACTIONS(39), 1, - anon_sym___declspec, - ACTIONS(51), 1, - sym_primitive_type, - ACTIONS(53), 1, - anon_sym_enum, - ACTIONS(55), 1, - anon_sym_struct, - ACTIONS(57), 1, - anon_sym_union, - ACTIONS(131), 1, - anon_sym_LBRACE, - ACTIONS(1301), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2046), 1, - sym_identifier, - STATE(157), 1, - sym_compound_statement, - STATE(1040), 1, - sym__type_specifier, - STATE(1113), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1492), 1, - sym__declaration_specifiers, - ACTIONS(35), 2, anon_sym___scanf, anon_sym___printf, - STATE(817), 2, - sym_declaration, - aux_sym__old_style_function_definition_repeat1, - ACTIONS(45), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1106), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(861), 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(49), 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(47), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - [24770] = 21, + anon_sym___read_mostly, + anon_sym___must_hold, + anon_sym___ro_after_init, + anon_sym___init, + anon_sym_EQ, + sym_identifier, + ACTIONS(2586), 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, + [26375] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, + ACTIONS(2588), 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__, - ACTIONS(39), 1, - anon_sym___declspec, - ACTIONS(51), 1, - sym_primitive_type, - ACTIONS(53), 1, - anon_sym_enum, - ACTIONS(55), 1, - anon_sym_struct, - ACTIONS(57), 1, - anon_sym_union, - ACTIONS(656), 1, - anon_sym_LBRACE, - ACTIONS(1301), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2046), 1, - sym_identifier, - STATE(390), 1, - sym_compound_statement, - STATE(1040), 1, - sym__type_specifier, - STATE(1113), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1492), 1, - sym__declaration_specifiers, - ACTIONS(35), 2, anon_sym___scanf, anon_sym___printf, - STATE(842), 2, - sym_declaration, - aux_sym__old_style_function_definition_repeat1, - ACTIONS(45), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1106), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(861), 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(49), 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(47), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - [24866] = 21, + anon_sym___read_mostly, + anon_sym___must_hold, + anon_sym___ro_after_init, + anon_sym___init, + anon_sym_EQ, + sym_identifier, + ACTIONS(2590), 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, + [26438] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, + ACTIONS(2562), 1, + anon_sym_LPAREN2, + ACTIONS(2564), 1, + anon_sym_LBRACK, + STATE(821), 1, + sym_argument_list, + ACTIONS(2568), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2592), 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__, - ACTIONS(39), 1, + 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(2594), 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + [26509] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2562), 1, + anon_sym_LPAREN2, + ACTIONS(2564), 1, + anon_sym_LBRACK, + STATE(821), 1, + sym_argument_list, + ACTIONS(2566), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2568), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2596), 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(2598), 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, + [26582] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2600), 1, + sym_identifier, + ACTIONS(2618), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2621), 1, anon_sym___declspec, - ACTIONS(51), 1, + ACTIONS(2624), 1, + anon_sym_LBRACE, + ACTIONS(2629), 1, sym_primitive_type, - ACTIONS(53), 1, + ACTIONS(2632), 1, anon_sym_enum, - ACTIONS(55), 1, + ACTIONS(2635), 1, anon_sym_struct, - ACTIONS(57), 1, + ACTIONS(2638), 1, anon_sym_union, - ACTIONS(203), 1, - anon_sym_LBRACE, - ACTIONS(1301), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2046), 1, - sym_identifier, - STATE(224), 1, - sym_compound_statement, - STATE(1040), 1, + STATE(974), 1, sym__type_specifier, - STATE(1113), 1, + STATE(1085), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1492), 1, + STATE(1531), 1, sym__declaration_specifiers, - ACTIONS(35), 2, + ACTIONS(2609), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(2612), 2, anon_sym___scanf, anon_sym___printf, - STATE(842), 2, + STATE(839), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, - ACTIONS(45), 4, + ACTIONS(2615), 3, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___init, + ACTIONS(2626), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1106), 5, + STATE(1069), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(861), 7, + STATE(855), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -95302,7 +99466,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(49), 9, + ACTIONS(2603), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -95312,7 +99476,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(47), 10, + ACTIONS(2606), 10, anon_sym_extern, anon_sym_static, anon_sym_auto, @@ -95323,53 +99487,179 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [24962] = 21, + [26681] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, + ACTIONS(2562), 1, + anon_sym_LPAREN2, + ACTIONS(2564), 1, + anon_sym_LBRACK, + STATE(821), 1, + sym_argument_list, + ACTIONS(2566), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2568), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2641), 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__, - ACTIONS(39), 1, + 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(2643), 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, + [26754] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1985), 1, + anon_sym_EQ, + STATE(567), 1, + sym_string_literal, + ACTIONS(99), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(1989), 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(1973), 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(1967), 25, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_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___init, + 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, + [26824] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(41), 1, anon_sym___declspec, - ACTIONS(43), 1, - anon_sym_LBRACE, - ACTIONS(51), 1, - sym_primitive_type, ACTIONS(53), 1, - anon_sym_enum, + sym_primitive_type, ACTIONS(55), 1, - anon_sym_struct, + anon_sym_enum, ACTIONS(57), 1, + anon_sym_struct, + ACTIONS(59), 1, anon_sym_union, - ACTIONS(1301), 1, + ACTIONS(1312), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2046), 1, + ACTIONS(2009), 1, sym_identifier, - STATE(427), 1, - sym_compound_statement, - STATE(1040), 1, + STATE(974), 1, sym__type_specifier, - STATE(1113), 1, + STATE(1085), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1492), 1, + STATE(1570), 1, sym__declaration_specifiers, + ACTIONS(33), 2, + anon_sym___attribute__, + anon_sym___must_hold, ACTIONS(35), 2, anon_sym___scanf, anon_sym___printf, - STATE(801), 2, - sym_declaration, - aux_sym__old_style_function_definition_repeat1, - ACTIONS(45), 4, + 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(1106), 5, + STATE(1069), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(861), 7, + STATE(855), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -95377,7 +99667,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(49), 9, + ACTIONS(51), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -95387,7 +99677,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(47), 10, + ACTIONS(49), 10, anon_sym_extern, anon_sym_static, anon_sym_auto, @@ -95398,53 +99688,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [25058] = 21, + [26916] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(39), 1, + ACTIONS(41), 1, anon_sym___declspec, - ACTIONS(51), 1, - sym_primitive_type, ACTIONS(53), 1, - anon_sym_enum, + sym_primitive_type, ACTIONS(55), 1, - anon_sym_struct, + anon_sym_enum, ACTIONS(57), 1, + anon_sym_struct, + ACTIONS(59), 1, anon_sym_union, - ACTIONS(504), 1, - anon_sym_LBRACE, - ACTIONS(1301), 1, + ACTIONS(1312), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2046), 1, + ACTIONS(2009), 1, sym_identifier, - STATE(371), 1, - sym_compound_statement, - STATE(1040), 1, + STATE(974), 1, sym__type_specifier, - STATE(1113), 1, + STATE(1085), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1492), 1, + STATE(1560), 1, sym__declaration_specifiers, + ACTIONS(33), 2, + anon_sym___attribute__, + anon_sym___must_hold, ACTIONS(35), 2, anon_sym___scanf, anon_sym___printf, - STATE(816), 2, - sym_declaration, - aux_sym__old_style_function_definition_repeat1, - ACTIONS(45), 4, + 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(1106), 5, + STATE(1069), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(861), 7, + STATE(855), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -95452,7 +99740,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(49), 9, + ACTIONS(51), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -95462,7 +99750,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(47), 10, + ACTIONS(49), 10, anon_sym_extern, anon_sym_static, anon_sym_auto, @@ -95473,110 +99761,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [25154] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2524), 19, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, - anon_sym_EQ, - anon_sym_DOT, - sym_identifier, - ACTIONS(2526), 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, - [25214] = 21, + [27008] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(39), 1, + ACTIONS(41), 1, anon_sym___declspec, - ACTIONS(51), 1, - sym_primitive_type, ACTIONS(53), 1, - anon_sym_enum, + sym_primitive_type, ACTIONS(55), 1, - anon_sym_struct, + anon_sym_enum, ACTIONS(57), 1, + anon_sym_struct, + ACTIONS(59), 1, anon_sym_union, - ACTIONS(504), 1, - anon_sym_LBRACE, - ACTIONS(1301), 1, + ACTIONS(1312), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2046), 1, + ACTIONS(2009), 1, sym_identifier, - STATE(380), 1, - sym_compound_statement, - STATE(1040), 1, + STATE(974), 1, sym__type_specifier, - STATE(1113), 1, + STATE(1085), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1492), 1, + STATE(1563), 1, sym__declaration_specifiers, + ACTIONS(33), 2, + anon_sym___attribute__, + anon_sym___must_hold, ACTIONS(35), 2, anon_sym___scanf, anon_sym___printf, - STATE(842), 2, - sym_declaration, - aux_sym__old_style_function_definition_repeat1, - ACTIONS(45), 4, + 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(1106), 5, + STATE(1069), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(861), 7, + STATE(855), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -95584,7 +99813,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(49), 9, + ACTIONS(51), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -95594,7 +99823,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(47), 10, + ACTIONS(49), 10, anon_sym_extern, anon_sym_static, anon_sym_auto, @@ -95605,53 +99834,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [25310] = 21, + [27100] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(39), 1, + ACTIONS(41), 1, anon_sym___declspec, - ACTIONS(51), 1, - sym_primitive_type, ACTIONS(53), 1, - anon_sym_enum, + sym_primitive_type, ACTIONS(55), 1, - anon_sym_struct, + anon_sym_enum, ACTIONS(57), 1, + anon_sym_struct, + ACTIONS(59), 1, anon_sym_union, - ACTIONS(131), 1, - anon_sym_LBRACE, - ACTIONS(1301), 1, + ACTIONS(1312), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2046), 1, + ACTIONS(2009), 1, sym_identifier, - STATE(150), 1, - sym_compound_statement, - STATE(1040), 1, + STATE(974), 1, sym__type_specifier, - STATE(1113), 1, + STATE(1085), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1492), 1, + STATE(1568), 1, sym__declaration_specifiers, + ACTIONS(33), 2, + anon_sym___attribute__, + anon_sym___must_hold, ACTIONS(35), 2, anon_sym___scanf, anon_sym___printf, - STATE(842), 2, - sym_declaration, - aux_sym__old_style_function_definition_repeat1, - ACTIONS(45), 4, + 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(1106), 5, + STATE(1069), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(861), 7, + STATE(855), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -95659,7 +99886,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(49), 9, + ACTIONS(51), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -95669,7 +99896,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(47), 10, + ACTIONS(49), 10, anon_sym_extern, anon_sym_static, anon_sym_auto, @@ -95680,110 +99907,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [25406] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2528), 19, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, - anon_sym_EQ, - anon_sym_DOT, - sym_identifier, - ACTIONS(2530), 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, - [25466] = 21, + [27192] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(39), 1, + ACTIONS(41), 1, anon_sym___declspec, - ACTIONS(51), 1, - sym_primitive_type, ACTIONS(53), 1, - anon_sym_enum, + sym_primitive_type, ACTIONS(55), 1, - anon_sym_struct, + anon_sym_enum, ACTIONS(57), 1, + anon_sym_struct, + ACTIONS(59), 1, anon_sym_union, - ACTIONS(656), 1, - anon_sym_LBRACE, - ACTIONS(1301), 1, + ACTIONS(1312), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2046), 1, + ACTIONS(2009), 1, sym_identifier, - STATE(355), 1, - sym_compound_statement, - STATE(1040), 1, + STATE(974), 1, sym__type_specifier, - STATE(1113), 1, + STATE(1085), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1492), 1, + STATE(1564), 1, sym__declaration_specifiers, + ACTIONS(33), 2, + anon_sym___attribute__, + anon_sym___must_hold, ACTIONS(35), 2, anon_sym___scanf, anon_sym___printf, - STATE(842), 2, - sym_declaration, - aux_sym__old_style_function_definition_repeat1, - ACTIONS(45), 4, + 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(1106), 5, + STATE(1069), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(861), 7, + STATE(855), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -95791,7 +99959,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(49), 9, + ACTIONS(51), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -95801,7 +99969,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(47), 10, + ACTIONS(49), 10, anon_sym_extern, anon_sym_static, anon_sym_auto, @@ -95812,53 +99980,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [25562] = 21, + [27284] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(39), 1, + ACTIONS(41), 1, anon_sym___declspec, - ACTIONS(51), 1, - sym_primitive_type, ACTIONS(53), 1, - anon_sym_enum, + sym_primitive_type, ACTIONS(55), 1, - anon_sym_struct, + anon_sym_enum, ACTIONS(57), 1, + anon_sym_struct, + ACTIONS(59), 1, anon_sym_union, - ACTIONS(203), 1, - anon_sym_LBRACE, - ACTIONS(1301), 1, + ACTIONS(1312), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2046), 1, + ACTIONS(2009), 1, sym_identifier, - STATE(220), 1, - sym_compound_statement, - STATE(1040), 1, + STATE(974), 1, sym__type_specifier, - STATE(1113), 1, + STATE(1085), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1492), 1, + STATE(1577), 1, sym__declaration_specifiers, + ACTIONS(33), 2, + anon_sym___attribute__, + anon_sym___must_hold, ACTIONS(35), 2, anon_sym___scanf, anon_sym___printf, - STATE(842), 2, - sym_declaration, - aux_sym__old_style_function_definition_repeat1, - ACTIONS(45), 4, + 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(1106), 5, + STATE(1069), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(861), 7, + STATE(855), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -95866,7 +100032,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(49), 9, + ACTIONS(51), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -95876,7 +100042,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(47), 10, + ACTIONS(49), 10, anon_sym_extern, anon_sym_static, anon_sym_auto, @@ -95887,110 +100053,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [25658] = 3, + [27376] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(2532), 19, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(41), 1, + anon_sym___declspec, + ACTIONS(53), 1, + sym_primitive_type, + ACTIONS(55), 1, + anon_sym_enum, + ACTIONS(57), 1, + anon_sym_struct, + ACTIONS(59), 1, + anon_sym_union, + ACTIONS(1312), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2009), 1, + sym_identifier, + STATE(974), 1, + sym__type_specifier, + STATE(1085), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1565), 1, + sym__declaration_specifiers, + ACTIONS(33), 2, anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(35), 2, anon_sym___scanf, anon_sym___printf, - anon_sym_EQ, - anon_sym_DOT, - sym_identifier, - ACTIONS(2534), 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, - [25718] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(39), 1, - anon_sym___declspec, - ACTIONS(51), 1, - sym_primitive_type, - ACTIONS(53), 1, - anon_sym_enum, - ACTIONS(55), 1, - anon_sym_struct, - ACTIONS(57), 1, - anon_sym_union, - ACTIONS(203), 1, - anon_sym_LBRACE, - ACTIONS(1301), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2046), 1, - sym_identifier, - STATE(213), 1, - sym_compound_statement, - STATE(1040), 1, - sym__type_specifier, - STATE(1113), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1492), 1, - sym__declaration_specifiers, - ACTIONS(35), 2, - anon_sym___scanf, - anon_sym___printf, - STATE(820), 2, - sym_declaration, - aux_sym__old_style_function_definition_repeat1, - ACTIONS(45), 4, + 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(1106), 5, + STATE(1069), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(861), 7, + STATE(855), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -95998,7 +100105,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(49), 9, + ACTIONS(51), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -96008,7 +100115,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(47), 10, + ACTIONS(49), 10, anon_sym_extern, anon_sym_static, anon_sym_auto, @@ -96019,53 +100126,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [25814] = 21, + [27468] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(39), 1, + ACTIONS(41), 1, anon_sym___declspec, - ACTIONS(51), 1, - sym_primitive_type, ACTIONS(53), 1, - anon_sym_enum, + sym_primitive_type, ACTIONS(55), 1, - anon_sym_struct, + anon_sym_enum, ACTIONS(57), 1, + anon_sym_struct, + ACTIONS(59), 1, anon_sym_union, - ACTIONS(203), 1, - anon_sym_LBRACE, - ACTIONS(1301), 1, + ACTIONS(1312), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2046), 1, + ACTIONS(2009), 1, sym_identifier, - STATE(222), 1, - sym_compound_statement, - STATE(1040), 1, + STATE(974), 1, sym__type_specifier, - STATE(1113), 1, + STATE(1085), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1492), 1, + STATE(1571), 1, sym__declaration_specifiers, + ACTIONS(33), 2, + anon_sym___attribute__, + anon_sym___must_hold, ACTIONS(35), 2, anon_sym___scanf, anon_sym___printf, - STATE(812), 2, - sym_declaration, - aux_sym__old_style_function_definition_repeat1, - ACTIONS(45), 4, + 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(1106), 5, + STATE(1069), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(861), 7, + STATE(855), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -96073,7 +100178,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(49), 9, + ACTIONS(51), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -96083,7 +100188,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(47), 10, + ACTIONS(49), 10, anon_sym_extern, anon_sym_static, anon_sym_auto, @@ -96094,110 +100199,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [25910] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2536), 19, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, - anon_sym_EQ, - anon_sym_DOT, - sym_identifier, - ACTIONS(2538), 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, - [25970] = 21, + [27560] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(39), 1, + ACTIONS(41), 1, anon_sym___declspec, - ACTIONS(51), 1, - sym_primitive_type, ACTIONS(53), 1, - anon_sym_enum, + sym_primitive_type, ACTIONS(55), 1, - anon_sym_struct, + anon_sym_enum, ACTIONS(57), 1, + anon_sym_struct, + ACTIONS(59), 1, anon_sym_union, - ACTIONS(656), 1, - anon_sym_LBRACE, - ACTIONS(1301), 1, + ACTIONS(1312), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2046), 1, + ACTIONS(2009), 1, sym_identifier, - STATE(388), 1, - sym_compound_statement, - STATE(1040), 1, + STATE(974), 1, sym__type_specifier, - STATE(1113), 1, + STATE(1085), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1492), 1, + STATE(1567), 1, sym__declaration_specifiers, + ACTIONS(33), 2, + anon_sym___attribute__, + anon_sym___must_hold, ACTIONS(35), 2, anon_sym___scanf, anon_sym___printf, - STATE(819), 2, - sym_declaration, - aux_sym__old_style_function_definition_repeat1, - ACTIONS(45), 4, + 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(1106), 5, + STATE(1069), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(861), 7, + STATE(855), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -96205,7 +100251,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(49), 9, + ACTIONS(51), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -96215,7 +100261,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(47), 10, + ACTIONS(49), 10, anon_sym_extern, anon_sym_static, anon_sym_auto, @@ -96226,53 +100272,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [26066] = 21, + [27652] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(39), 1, + ACTIONS(41), 1, anon_sym___declspec, - ACTIONS(43), 1, - anon_sym_LBRACE, - ACTIONS(51), 1, - sym_primitive_type, ACTIONS(53), 1, - anon_sym_enum, + sym_primitive_type, ACTIONS(55), 1, - anon_sym_struct, + anon_sym_enum, ACTIONS(57), 1, + anon_sym_struct, + ACTIONS(59), 1, anon_sym_union, - ACTIONS(1301), 1, + ACTIONS(1312), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2046), 1, + ACTIONS(2009), 1, sym_identifier, - STATE(409), 1, - sym_compound_statement, - STATE(1040), 1, + STATE(974), 1, sym__type_specifier, - STATE(1113), 1, + STATE(1085), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1492), 1, + STATE(1578), 1, sym__declaration_specifiers, + ACTIONS(33), 2, + anon_sym___attribute__, + anon_sym___must_hold, ACTIONS(35), 2, anon_sym___scanf, anon_sym___printf, - STATE(842), 2, - sym_declaration, - aux_sym__old_style_function_definition_repeat1, - ACTIONS(45), 4, + 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(1106), 5, + STATE(1069), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(861), 7, + STATE(855), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -96280,7 +100324,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(49), 9, + ACTIONS(51), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -96290,7 +100334,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(47), 10, + ACTIONS(49), 10, anon_sym_extern, anon_sym_static, anon_sym_auto, @@ -96301,53 +100345,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [26162] = 21, + [27744] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(39), 1, - anon_sym___declspec, - ACTIONS(51), 1, - sym_primitive_type, - ACTIONS(53), 1, - anon_sym_enum, - ACTIONS(55), 1, - anon_sym_struct, - ACTIONS(57), 1, - anon_sym_union, - ACTIONS(504), 1, - anon_sym_LBRACE, - ACTIONS(1301), 1, + ACTIONS(2664), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2046), 1, - sym_identifier, - STATE(368), 1, - sym_compound_statement, - STATE(1040), 1, - sym__type_specifier, - STATE(1113), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1492), 1, - sym__declaration_specifiers, - ACTIONS(35), 2, + ACTIONS(2667), 1, + anon_sym___declspec, + ACTIONS(2655), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(2658), 2, anon_sym___scanf, anon_sym___printf, - STATE(842), 2, - sym_declaration, - aux_sym__old_style_function_definition_repeat1, - ACTIONS(45), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1106), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(861), 7, + ACTIONS(2661), 3, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___init, + ACTIONS(2647), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + STATE(852), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -96355,7 +100376,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(49), 9, + ACTIONS(2649), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -96365,7 +100386,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(47), 10, + ACTIONS(2652), 10, anon_sym_extern, anon_sym_static, anon_sym_auto, @@ -96376,66 +100397,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [26258] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2540), 18, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, - anon_sym_EQ, - sym_identifier, - ACTIONS(2542), 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, + ACTIONS(2645), 11, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, 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, - [26317] = 3, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [27819] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1914), 21, + ACTIONS(2484), 21, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -96457,7 +100434,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1912), 30, + ACTIONS(2482), 30, anon_sym_DASH, anon_sym_PLUS, anon_sym_if, @@ -96488,10 +100465,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NULL, anon_sym_nullptr, sym_identifier, - [26376] = 3, + [27878] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1918), 21, + ACTIONS(1929), 21, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -96513,7 +100490,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1916), 30, + ACTIONS(1927), 30, anon_sym_DASH, anon_sym_PLUS, anon_sym_if, @@ -96544,10 +100521,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NULL, anon_sym_nullptr, sym_identifier, - [26435] = 3, + [27937] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(41), 1, + anon_sym___declspec, + ACTIONS(53), 1, + sym_primitive_type, + ACTIONS(55), 1, + anon_sym_enum, + ACTIONS(57), 1, + anon_sym_struct, + ACTIONS(59), 1, + anon_sym_union, + ACTIONS(1312), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2009), 1, + sym_identifier, + STATE(976), 1, + sym__type_specifier, + STATE(1085), 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(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(1069), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(852), 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, + [28026] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2470), 21, + ACTIONS(1925), 21, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -96569,7 +100617,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(2468), 30, + ACTIONS(1923), 30, anon_sym_DASH, anon_sym_PLUS, anon_sym_if, @@ -96600,122 +100648,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NULL, anon_sym_nullptr, sym_identifier, - [26494] = 8, + [28085] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2548), 1, - anon_sym_LPAREN2, - ACTIONS(2550), 1, - anon_sym_LBRACK, - STATE(791), 1, - sym_argument_list, - ACTIONS(2552), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2554), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2544), 18, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, - anon_sym_EQ, - sym_identifier, - ACTIONS(2546), 26, + ACTIONS(2672), 9, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_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_LBRACE, + anon_sym_EQ, 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, - [26563] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, + ACTIONS(2670), 41, + anon_sym___extension__, + anon_sym_extern, anon_sym___attribute__, - ACTIONS(39), 1, + 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, - ACTIONS(51), 1, + 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, sym_primitive_type, - ACTIONS(53), 1, anon_sym_enum, - ACTIONS(55), 1, anon_sym_struct, - ACTIONS(57), 1, + anon_sym___aligned, anon_sym_union, - ACTIONS(1301), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2084), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2556), 1, + anon_sym_asm, + anon_sym___asm__, sym_identifier, - STATE(1040), 1, - sym__type_specifier, - STATE(1113), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1344), 1, - sym__declaration_specifiers, - STATE(1892), 1, - sym_variadic_parameter, - STATE(1923), 1, - sym_parameter_declaration, - ACTIONS(35), 2, + [28143] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2676), 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(2674), 41, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, anon_sym___scanf, anon_sym___printf, - ACTIONS(45), 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_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1106), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(861), 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(49), 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, @@ -96724,8 +100750,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(47), 10, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym___aligned, + anon_sym_union, + anon_sym_asm, + anon_sym___asm__, + sym_identifier, + [28201] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2680), 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(2678), 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___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, @@ -96735,77 +100797,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [26658] = 8, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym___aligned, + anon_sym_union, + anon_sym_asm, + anon_sym___asm__, + sym_identifier, + [28259] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2548), 1, + ACTIONS(2684), 9, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(2550), 1, - anon_sym_LBRACK, - STATE(791), 1, - sym_argument_list, - ACTIONS(2552), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2554), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2558), 18, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(2682), 41, + anon_sym___extension__, + anon_sym_extern, anon_sym___attribute__, anon_sym___scanf, anon_sym___printf, - anon_sym_EQ, + anon_sym___read_mostly, + anon_sym___must_hold, + anon_sym___ro_after_init, + anon_sym___init, + 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, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym___aligned, + anon_sym_union, + anon_sym_asm, + anon_sym___asm__, sym_identifier, - ACTIONS(2560), 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, - [26727] = 3, + [28317] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2562), 18, - aux_sym_preproc_elif_token1, + ACTIONS(2562), 1, + anon_sym_LPAREN2, + ACTIONS(2564), 1, + anon_sym_LBRACK, + STATE(821), 1, + sym_argument_list, + ACTIONS(2566), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2568), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2686), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(2688), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(2558), 8, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -96813,19 +100898,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, anon_sym_EQ, - sym_identifier, - ACTIONS(2564), 33, + ACTIONS(2560), 29, anon_sym_COMMA, anon_sym_RPAREN, - aux_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, @@ -96833,9 +100909,14 @@ 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___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, anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -96848,58 +100929,58 @@ 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, - [26786] = 8, + [28388] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2548), 1, + ACTIONS(2562), 1, anon_sym_LPAREN2, - ACTIONS(2550), 1, + ACTIONS(2564), 1, anon_sym_LBRACK, - STATE(791), 1, + STATE(821), 1, sym_argument_list, - ACTIONS(2552), 2, + ACTIONS(2566), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2554), 2, + ACTIONS(2568), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2566), 18, - aux_sym_preproc_elif_token1, + ACTIONS(2686), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(2690), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2692), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2694), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2696), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2688), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(2558), 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___attribute__, - anon_sym___scanf, - anon_sym___printf, anon_sym_EQ, - sym_identifier, - ACTIONS(2568), 26, + ACTIONS(2560), 25, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_SEMI, + anon_sym___attribute__, + anon_sym___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, @@ -96913,121 +100994,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [26855] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(39), 1, - anon_sym___declspec, - ACTIONS(51), 1, - sym_primitive_type, - ACTIONS(53), 1, - anon_sym_enum, - ACTIONS(55), 1, - anon_sym_struct, - ACTIONS(57), 1, - anon_sym_union, - ACTIONS(1301), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2046), 1, - sym_identifier, - ACTIONS(2084), 1, - anon_sym_DOT_DOT_DOT, - STATE(1040), 1, - sym__type_specifier, - STATE(1113), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1344), 1, - sym__declaration_specifiers, - ACTIONS(35), 2, - anon_sym___scanf, - anon_sym___printf, - STATE(1923), 2, - sym_variadic_parameter, - sym_parameter_declaration, - ACTIONS(45), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1106), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(861), 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(49), 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(47), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - [26948] = 3, + [28467] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2570), 18, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(2562), 1, + anon_sym_LPAREN2, + ACTIONS(2564), 1, + anon_sym_LBRACK, + ACTIONS(2700), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2702), 1, + anon_sym_AMP_AMP, + ACTIONS(2704), 1, anon_sym_PIPE, + ACTIONS(2706), 1, anon_sym_CARET, + ACTIONS(2708), 1, anon_sym_AMP, + ACTIONS(2710), 1, + anon_sym_EQ, + ACTIONS(2712), 1, + anon_sym_QMARK, + STATE(821), 1, + sym_argument_list, + ACTIONS(2566), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2568), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2686), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2690), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2692), 2, anon_sym_GT, anon_sym_LT, + ACTIONS(2694), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2696), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, - anon_sym_EQ, - sym_identifier, - ACTIONS(2572), 33, + ACTIONS(2688), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2698), 22, anon_sym_COMMA, anon_sym_RPAREN, - aux_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___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, anon_sym_COLON, - anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -97038,58 +101065,59 @@ 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, - [27007] = 8, + [28558] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2548), 1, + ACTIONS(2562), 1, anon_sym_LPAREN2, - ACTIONS(2550), 1, + ACTIONS(2564), 1, anon_sym_LBRACK, - STATE(791), 1, + ACTIONS(2708), 1, + anon_sym_AMP, + STATE(821), 1, sym_argument_list, - ACTIONS(2552), 2, + ACTIONS(2566), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2554), 2, + ACTIONS(2568), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2574), 18, - aux_sym_preproc_elif_token1, + ACTIONS(2686), 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(2690), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2692), 2, anon_sym_GT, anon_sym_LT, + ACTIONS(2694), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2696), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, + ACTIONS(2558), 3, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_EQ, - sym_identifier, - ACTIONS(2576), 26, + ACTIONS(2688), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2560), 25, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_SEMI, + anon_sym___attribute__, + anon_sym___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, @@ -97103,51 +101131,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [27076] = 7, + [28639] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(2548), 1, + ACTIONS(2562), 1, anon_sym_LPAREN2, - ACTIONS(2550), 1, + ACTIONS(2564), 1, anon_sym_LBRACK, - STATE(791), 1, + ACTIONS(2706), 1, + anon_sym_CARET, + ACTIONS(2708), 1, + anon_sym_AMP, + STATE(821), 1, sym_argument_list, - ACTIONS(2554), 2, + ACTIONS(2558), 2, + anon_sym_PIPE, + anon_sym_EQ, + ACTIONS(2566), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2568), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2578), 18, - aux_sym_preproc_elif_token1, + ACTIONS(2686), 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(2690), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2692), 2, anon_sym_GT, anon_sym_LT, + ACTIONS(2694), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2696), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, - anon_sym_EQ, - sym_identifier, - ACTIONS(2580), 28, + ACTIONS(2688), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2560), 25, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_SEMI, + anon_sym___attribute__, + anon_sym___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, @@ -97161,48 +101198,62 @@ 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, - [27143] = 3, + [28722] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2582), 18, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(2558), 1, + anon_sym_EQ, + ACTIONS(2562), 1, + anon_sym_LPAREN2, + ACTIONS(2564), 1, + anon_sym_LBRACK, + ACTIONS(2704), 1, anon_sym_PIPE, + ACTIONS(2706), 1, anon_sym_CARET, + ACTIONS(2708), 1, anon_sym_AMP, + STATE(821), 1, + sym_argument_list, + ACTIONS(2566), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2568), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2686), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2690), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2692), 2, anon_sym_GT, anon_sym_LT, + ACTIONS(2694), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2696), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, - anon_sym_EQ, - sym_identifier, - ACTIONS(2584), 33, + ACTIONS(2688), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2560), 25, anon_sym_COMMA, anon_sym_RPAREN, - aux_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___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, anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -97215,131 +101266,62 @@ 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, - [27202] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2586), 1, - sym_identifier, - ACTIONS(2595), 1, - anon_sym___attribute__, - ACTIONS(2601), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2604), 1, - anon_sym___declspec, - ACTIONS(2607), 1, - anon_sym_LBRACE, - ACTIONS(2612), 1, - sym_primitive_type, - ACTIONS(2615), 1, - anon_sym_enum, - ACTIONS(2618), 1, - anon_sym_struct, - ACTIONS(2621), 1, - anon_sym_union, - STATE(1040), 1, - sym__type_specifier, - STATE(1113), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1492), 1, - sym__declaration_specifiers, - ACTIONS(2598), 2, - anon_sym___scanf, - anon_sym___printf, - STATE(842), 2, - sym_declaration, - aux_sym__old_style_function_definition_repeat1, - ACTIONS(2609), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1106), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(861), 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(2589), 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(2592), 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, - [27295] = 8, + [28807] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2548), 1, + ACTIONS(2558), 1, + anon_sym_EQ, + ACTIONS(2562), 1, anon_sym_LPAREN2, - ACTIONS(2550), 1, + ACTIONS(2564), 1, anon_sym_LBRACK, - STATE(791), 1, + ACTIONS(2702), 1, + anon_sym_AMP_AMP, + ACTIONS(2704), 1, + anon_sym_PIPE, + ACTIONS(2706), 1, + anon_sym_CARET, + ACTIONS(2708), 1, + anon_sym_AMP, + STATE(821), 1, sym_argument_list, - ACTIONS(2552), 2, + ACTIONS(2566), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2554), 2, + ACTIONS(2568), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2624), 18, - aux_sym_preproc_elif_token1, + ACTIONS(2686), 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(2690), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2692), 2, anon_sym_GT, anon_sym_LT, + ACTIONS(2694), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2696), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, - anon_sym_EQ, - sym_identifier, - ACTIONS(2626), 26, + ACTIONS(2688), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2560), 24, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_SEMI, + anon_sym___attribute__, + anon_sym___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, @@ -97353,20 +101335,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [27364] = 7, + [28894] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1982), 1, + ACTIONS(2714), 1, anon_sym_EQ, - STATE(610), 1, + STATE(567), 1, sym_string_literal, - ACTIONS(97), 5, + ACTIONS(99), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1986), 10, + ACTIONS(2716), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -97377,7 +101359,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1970), 12, + ACTIONS(1973), 14, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -97390,9 +101373,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1964), 21, + sym_identifier, + ACTIONS(1967), 18, anon_sym_COMMA, - anon_sym_RPAREN, + aux_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, @@ -97400,49 +101387,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, - 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, - [27430] = 7, + [28959] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2628), 1, - anon_sym_EQ, - STATE(610), 1, - sym_string_literal, - ACTIONS(97), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2630), 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(1970), 14, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(2562), 1, + anon_sym_LPAREN2, + ACTIONS(2564), 1, + anon_sym_LBRACK, + STATE(821), 1, + sym_argument_list, + ACTIONS(2566), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2568), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2688), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(2558), 10, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -97450,41 +101422,320 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - sym_identifier, - ACTIONS(1964), 18, + anon_sym_EQ, + ACTIONS(2560), 29, 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___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, + [29028] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2562), 1, + anon_sym_LPAREN2, + ACTIONS(2564), 1, + anon_sym_LBRACK, + STATE(821), 1, + sym_argument_list, + ACTIONS(2566), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(2568), 2, anon_sym_DOT, anon_sym_DASH_GT, - [27495] = 6, + ACTIONS(2686), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2692), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2694), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2696), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2688), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2558), 4, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ, + ACTIONS(2560), 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, + [29105] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2632), 1, + ACTIONS(2562), 1, + anon_sym_LPAREN2, + ACTIONS(2564), 1, + anon_sym_LBRACK, + STATE(821), 1, + sym_argument_list, + ACTIONS(2566), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2568), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2686), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2696), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2688), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2558), 6, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_EQ, + ACTIONS(2560), 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, + [29178] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2562), 1, + anon_sym_LPAREN2, + ACTIONS(2564), 1, + anon_sym_LBRACK, + ACTIONS(2700), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2702), 1, + anon_sym_AMP_AMP, + ACTIONS(2704), 1, + anon_sym_PIPE, + ACTIONS(2706), 1, + anon_sym_CARET, + ACTIONS(2708), 1, + anon_sym_AMP, + ACTIONS(2712), 1, + anon_sym_QMARK, + ACTIONS(2720), 1, + anon_sym_EQ, + STATE(821), 1, + sym_argument_list, + ACTIONS(2566), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2568), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2686), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2690), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2692), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2694), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2696), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2688), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2718), 22, + 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, + [29269] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2562), 1, + anon_sym_LPAREN2, + ACTIONS(2564), 1, + anon_sym_LBRACK, + ACTIONS(2700), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2702), 1, + anon_sym_AMP_AMP, + ACTIONS(2704), 1, + anon_sym_PIPE, + ACTIONS(2706), 1, + anon_sym_CARET, + ACTIONS(2708), 1, + anon_sym_AMP, + ACTIONS(2712), 1, + anon_sym_QMARK, + ACTIONS(2724), 1, + anon_sym_EQ, + STATE(821), 1, + sym_argument_list, + ACTIONS(2566), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2568), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2686), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2690), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2692), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2694), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2696), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2688), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2722), 22, + 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, + [29360] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2726), 1, sym_identifier, - STATE(846), 2, + STATE(874), 2, sym_string_literal, aux_sym_concatenated_string_repeat1, - ACTIONS(2635), 5, + ACTIONS(2729), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(2339), 13, + ACTIONS(2287), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -97498,7 +101749,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2337), 27, + ACTIONS(2285), 27, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -97526,21 +101777,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [27557] = 6, + [29422] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2638), 1, + ACTIONS(2732), 1, + sym_identifier, + STATE(874), 2, + sym_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(1842), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2280), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(2278), 27, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + anon_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, + [29484] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2734), 1, sym_identifier, - STATE(852), 2, + STATE(875), 2, sym_string_literal, aux_sym_concatenated_string_repeat1, - ACTIONS(1565), 5, + ACTIONS(1842), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(2376), 13, + ACTIONS(2296), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -97554,7 +101861,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2374), 27, + ACTIONS(2294), 27, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -97582,65 +101889,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [27619] = 18, + [29546] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, + ACTIONS(1985), 1, + anon_sym_EQ, + ACTIONS(1989), 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(1973), 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(1967), 25, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_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__, - ACTIONS(39), 1, - anon_sym___declspec, - ACTIONS(51), 1, - sym_primitive_type, - ACTIONS(53), 1, - anon_sym_enum, - ACTIONS(55), 1, - anon_sym_struct, - ACTIONS(57), 1, - anon_sym_union, - ACTIONS(1301), 1, + 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, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [29606] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1434), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2046), 1, - sym_identifier, - STATE(1040), 1, - sym__type_specifier, - STATE(1113), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1533), 1, - sym__declaration_specifiers, - ACTIONS(35), 2, + ACTIONS(1432), 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, + 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, - ACTIONS(45), 4, + 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, - STATE(1106), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(861), 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(49), 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(47), 10, - anon_sym_extern, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -97650,65 +101983,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [27705] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(39), 1, - anon_sym___declspec, - ACTIONS(51), 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, sym_primitive_type, - ACTIONS(53), 1, anon_sym_enum, - ACTIONS(55), 1, anon_sym_struct, - ACTIONS(57), 1, anon_sym_union, - ACTIONS(1301), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2046), 1, sym_identifier, - STATE(1040), 1, - sym__type_specifier, - STATE(1113), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1532), 1, - sym__declaration_specifiers, - ACTIONS(35), 2, + [29661] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1426), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1424), 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, + 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, - ACTIONS(45), 4, + 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, - STATE(1106), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(861), 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(49), 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(47), 10, - anon_sym_extern, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -97718,55 +102035,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [27791] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(39), 1, - anon_sym___declspec, - ACTIONS(51), 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, sym_primitive_type, - ACTIONS(53), 1, anon_sym_enum, - ACTIONS(55), 1, anon_sym_struct, - ACTIONS(57), 1, anon_sym_union, - ACTIONS(1301), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2046), 1, sym_identifier, - STATE(1040), 1, - sym__type_specifier, - STATE(1113), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1515), 1, - sym__declaration_specifiers, - ACTIONS(35), 2, + [29716] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1474), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1472), 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, + 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, - ACTIONS(45), 4, + 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, - STATE(1106), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(861), 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(49), 9, - anon_sym___extension__, + anon_sym_static, + anon_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, @@ -97775,8 +102095,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(47), 10, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [29771] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2738), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2736), 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, + 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, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -97786,55 +102139,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [27877] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(39), 1, - anon_sym___declspec, - ACTIONS(51), 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, sym_primitive_type, - ACTIONS(53), 1, anon_sym_enum, - ACTIONS(55), 1, anon_sym_struct, - ACTIONS(57), 1, anon_sym_union, - ACTIONS(1301), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2046), 1, sym_identifier, - STATE(1040), 1, - sym__type_specifier, - STATE(1113), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1528), 1, - sym__declaration_specifiers, - ACTIONS(35), 2, + [29826] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2742), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2740), 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, + 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, - ACTIONS(45), 4, + 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, - STATE(1106), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(861), 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(49), 9, - anon_sym___extension__, + anon_sym_static, + anon_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, @@ -97843,8 +102199,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(47), 10, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [29881] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2746), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2744), 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, + 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, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -97854,21 +102243,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [27963] = 6, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [29936] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2640), 1, - sym_identifier, - STATE(846), 2, + STATE(876), 1, sym_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(1565), 5, + ACTIONS(1842), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(2390), 13, + ACTIONS(1973), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -97882,7 +102281,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2388), 27, + sym_identifier, + ACTIONS(1967), 27, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -97910,65 +102310,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [28025] = 18, + [29995] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(39), 1, - anon_sym___declspec, - ACTIONS(51), 1, - sym_primitive_type, - ACTIONS(53), 1, - anon_sym_enum, - ACTIONS(55), 1, - anon_sym_struct, - ACTIONS(57), 1, - anon_sym_union, - ACTIONS(1301), 1, + ACTIONS(2750), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2046), 1, - sym_identifier, - STATE(1040), 1, - sym__type_specifier, - STATE(1113), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1545), 1, - sym__declaration_specifiers, - ACTIONS(35), 2, + ACTIONS(2748), 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, + 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, - ACTIONS(45), 4, + 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, - STATE(1106), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(861), 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(49), 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(47), 10, - anon_sym_extern, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -97978,65 +102349,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [28111] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(39), 1, - anon_sym___declspec, - ACTIONS(51), 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, sym_primitive_type, - ACTIONS(53), 1, anon_sym_enum, - ACTIONS(55), 1, anon_sym_struct, - ACTIONS(57), 1, anon_sym_union, - ACTIONS(1301), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2046), 1, sym_identifier, - STATE(1040), 1, - sym__type_specifier, - STATE(1113), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1522), 1, - sym__declaration_specifiers, - ACTIONS(35), 2, + [30050] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1446), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1444), 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, + 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, - ACTIONS(45), 4, + 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, - STATE(1106), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(861), 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(49), 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(47), 10, - anon_sym_extern, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -98046,65 +102401,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [28197] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(39), 1, - anon_sym___declspec, - ACTIONS(51), 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, sym_primitive_type, - ACTIONS(53), 1, anon_sym_enum, - ACTIONS(55), 1, anon_sym_struct, - ACTIONS(57), 1, anon_sym_union, - ACTIONS(1301), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2046), 1, sym_identifier, - STATE(1040), 1, - sym__type_specifier, - STATE(1113), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1517), 1, - sym__declaration_specifiers, - ACTIONS(35), 2, + [30105] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2754), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2752), 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, + 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, - ACTIONS(45), 4, + 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, - STATE(1106), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(861), 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(49), 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(47), 10, - anon_sym_extern, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -98114,65 +102453,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [28283] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(39), 1, - anon_sym___declspec, - ACTIONS(51), 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, sym_primitive_type, - ACTIONS(53), 1, anon_sym_enum, - ACTIONS(55), 1, anon_sym_struct, - ACTIONS(57), 1, anon_sym_union, - ACTIONS(1301), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2046), 1, sym_identifier, - STATE(1040), 1, - sym__type_specifier, - STATE(1113), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1534), 1, - sym__declaration_specifiers, - ACTIONS(35), 2, + [30160] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2758), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2756), 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, + 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, - ACTIONS(45), 4, + 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, - STATE(1106), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(861), 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(49), 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(47), 10, - anon_sym_extern, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -98182,55 +102505,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [28369] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(39), 1, - anon_sym___declspec, - ACTIONS(51), 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, sym_primitive_type, - ACTIONS(53), 1, anon_sym_enum, - ACTIONS(55), 1, anon_sym_struct, - ACTIONS(57), 1, anon_sym_union, - ACTIONS(1301), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2046), 1, sym_identifier, - STATE(1040), 1, - sym__type_specifier, - STATE(1113), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1516), 1, - sym__declaration_specifiers, - ACTIONS(35), 2, + [30215] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2762), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2760), 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, + 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, - ACTIONS(45), 4, + 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, - STATE(1106), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(861), 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(49), 9, - anon_sym___extension__, + anon_sym_static, + anon_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, @@ -98239,8 +102565,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(47), 10, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [30270] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2766), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2764), 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, + 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, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -98250,55 +102609,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [28455] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(39), 1, - anon_sym___declspec, - ACTIONS(51), 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, sym_primitive_type, - ACTIONS(53), 1, anon_sym_enum, - ACTIONS(55), 1, anon_sym_struct, - ACTIONS(57), 1, anon_sym_union, - ACTIONS(1301), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2046), 1, sym_identifier, - STATE(1040), 1, - sym__type_specifier, - STATE(1113), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1529), 1, - sym__declaration_specifiers, - ACTIONS(35), 2, + [30325] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1454), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1452), 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, + 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, - ACTIONS(45), 4, + 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, - STATE(1106), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(861), 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(49), 9, - anon_sym___extension__, + anon_sym_static, + anon_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, @@ -98307,8 +102669,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(47), 10, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [30380] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1470), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1468), 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, + 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, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -98318,18 +102713,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [28541] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(847), 1, - sym_string_literal, - ACTIONS(1565), 5, - anon_sym_L_DQUOTE, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [30435] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(876), 1, + sym_string_literal, + ACTIONS(1842), 5, + anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1970), 14, + ACTIONS(1973), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -98344,7 +102752,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ, sym_identifier, - ACTIONS(1964), 27, + ACTIONS(1967), 27, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -98372,33 +102780,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [28600] = 10, + [30494] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2652), 1, - anon_sym___attribute__, - ACTIONS(2658), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2661), 1, - anon_sym___declspec, - ACTIONS(2655), 2, - anon_sym___scanf, - anon_sym___printf, - ACTIONS(2644), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - STATE(860), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, + STATE(894), 2, sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(2646), 9, + aux_sym__type_definition_type_repeat1, + ACTIONS(2772), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -98408,8 +102796,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(2649), 10, + ACTIONS(2768), 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(2770), 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, + [30553] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2777), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2775), 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, + 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, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -98419,65 +102873,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - ACTIONS(2642), 11, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, sym_primitive_type, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [28669] = 17, + [30608] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, + ACTIONS(2781), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2779), 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, + 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__, - ACTIONS(39), 1, + 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, - ACTIONS(51), 1, + 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, sym_primitive_type, - ACTIONS(53), 1, anon_sym_enum, - ACTIONS(55), 1, anon_sym_struct, - ACTIONS(57), 1, anon_sym_union, - ACTIONS(1301), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2046), 1, sym_identifier, - STATE(1023), 1, - sym__type_specifier, - STATE(1113), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(35), 2, + [30663] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2785), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2783), 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, + 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, - ACTIONS(45), 4, + 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, - STATE(1106), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(860), 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(49), 9, - anon_sym___extension__, + anon_sym_static, + anon_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, @@ -98486,8 +102985,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(47), 10, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [30718] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2789), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2787), 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, + 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, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -98497,14 +103029,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [28752] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(862), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(2668), 9, - anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -98513,112 +103037,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(2664), 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(2666), 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, - [28811] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(847), 1, - sym_string_literal, - ACTIONS(1565), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1970), 14, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - ACTIONS(1964), 27, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_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, - [28870] = 7, + [30773] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2671), 1, + ACTIONS(2791), 1, anon_sym_EQ, - STATE(847), 1, + STATE(876), 1, sym_string_literal, - ACTIONS(1565), 5, + ACTIONS(1842), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(2673), 10, + ACTIONS(2793), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -98629,7 +103066,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1970), 13, + ACTIONS(1973), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -98643,7 +103080,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, sym_identifier, - ACTIONS(1964), 17, + ACTIONS(1967), 17, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -98661,10 +103098,126 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [28933] = 3, + [30836] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2799), 1, + anon_sym_LBRACE, + ACTIONS(2801), 1, + anon_sym___aligned, + STATE(942), 1, + sym_field_declaration_list, + STATE(980), 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(2797), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2795), 28, + 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_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, + sym_primitive_type, + sym_identifier, + [30904] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2799), 1, + anon_sym_LBRACE, + ACTIONS(2807), 1, + anon_sym___aligned, + STATE(940), 1, + sym_field_declaration_list, + STATE(1016), 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(2805), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2803), 28, + 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_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, + sym_primitive_type, + sym_identifier, + [30972] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2424), 14, + ACTIONS(2316), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -98679,7 +103232,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ, sym_identifier, - ACTIONS(2426), 32, + ACTIONS(2318), 32, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -98712,10 +103265,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [28987] = 3, + [31026] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2799), 1, + anon_sym_LBRACE, + ACTIONS(2813), 1, + anon_sym___aligned, + STATE(950), 1, + sym_field_declaration_list, + STATE(1022), 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(2811), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2809), 28, + 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_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, + sym_primitive_type, + sym_identifier, + [31094] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2420), 14, + ACTIONS(2322), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -98730,7 +103341,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ, sym_identifier, - ACTIONS(2422), 32, + ACTIONS(2324), 32, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -98763,41 +103374,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [29041] = 11, + [31148] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2548), 1, - anon_sym_LPAREN2, - ACTIONS(2550), 1, - anon_sym_LBRACK, - STATE(791), 1, - sym_argument_list, - ACTIONS(2552), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2554), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2675), 2, + ACTIONS(1985), 1, + anon_sym_EQ, + ACTIONS(1991), 1, + anon_sym_COLON, + STATE(567), 1, + sym_string_literal, + ACTIONS(99), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(1989), 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(1973), 12, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2679), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2677), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2544), 6, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - anon_sym_EQ, - ACTIONS(2546), 25, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1967), 15, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -98805,89 +103423,16 @@ 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_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, - [29110] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2548), 1, - anon_sym_LPAREN2, - ACTIONS(2550), 1, anon_sym_LBRACK, - ACTIONS(2681), 1, - anon_sym_CARET, - ACTIONS(2683), 1, - anon_sym_AMP, - STATE(791), 1, - sym_argument_list, - ACTIONS(2544), 2, - anon_sym_PIPE, - anon_sym_EQ, - ACTIONS(2552), 2, + anon_sym_QMARK, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2554), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2675), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2679), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2685), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2687), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2689), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2677), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2546), 21, - 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_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, - [29189] = 3, + [31211] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2693), 9, + ACTIONS(2817), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -98895,14 +103440,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - ACTIONS(2691), 36, + ACTIONS(2815), 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_signed, @@ -98931,201 +103478,326 @@ 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, - [29242] = 9, + [31264] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2548), 1, - anon_sym_LPAREN2, - ACTIONS(2550), 1, - anon_sym_LBRACK, - STATE(791), 1, - sym_argument_list, - ACTIONS(2552), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2554), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2677), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2544), 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(2546), 25, - 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, + ACTIONS(1454), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1452), 44, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym___extension__, + anon_sym_extern, anon_sym___attribute__, anon_sym___scanf, anon_sym___printf, - 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, - [29307] = 18, + 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, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [31317] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2544), 1, - anon_sym_EQ, - ACTIONS(2548), 1, - anon_sym_LPAREN2, - ACTIONS(2550), 1, - anon_sym_LBRACK, - ACTIONS(2681), 1, - anon_sym_CARET, - ACTIONS(2683), 1, - anon_sym_AMP, - ACTIONS(2695), 1, - anon_sym_AMP_AMP, - ACTIONS(2697), 1, - anon_sym_PIPE, - STATE(791), 1, - sym_argument_list, - ACTIONS(2552), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2554), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2675), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2679), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2685), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2687), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2689), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2677), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2546), 20, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_SEMI, + ACTIONS(1434), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1432), 44, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym___extension__, + anon_sym_extern, anon_sym___attribute__, anon_sym___scanf, anon_sym___printf, - 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, - [29390] = 8, + 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, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [31370] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1982), 1, - anon_sym_EQ, - ACTIONS(1994), 1, - anon_sym_COLON, - STATE(610), 1, - sym_string_literal, - ACTIONS(97), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1986), 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(1970), 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(1964), 15, + ACTIONS(2826), 2, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + ACTIONS(2829), 3, + anon_sym_LBRACK, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(2821), 4, 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, - [29453] = 8, + anon_sym_EQ, + ACTIONS(2823), 7, + 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, + ACTIONS(2819), 29, + anon_sym___extension__, + anon_sym_extern, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [31429] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2762), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2760), 44, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + 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, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [31482] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2781), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2779), 44, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + 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, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [31535] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2789), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2787), 44, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + 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, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [31588] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1982), 1, + ACTIONS(1985), 1, anon_sym_EQ, - ACTIONS(1990), 1, + ACTIONS(2007), 1, anon_sym_COLON, - STATE(610), 1, + STATE(567), 1, sym_string_literal, - ACTIONS(97), 5, + ACTIONS(99), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1986), 10, + ACTIONS(1989), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -99136,7 +103808,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1970), 12, + ACTIONS(1973), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -99149,7 +103821,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1964), 15, + ACTIONS(1967), 15, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, @@ -99165,22 +103837,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [29516] = 8, + [31651] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1982), 1, + ACTIONS(1985), 1, anon_sym_EQ, - ACTIONS(1984), 1, + ACTIONS(2005), 1, anon_sym_COLON, - STATE(610), 1, + STATE(567), 1, sym_string_literal, - ACTIONS(97), 5, + ACTIONS(99), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1986), 10, + ACTIONS(1989), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -99191,7 +103863,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1970), 12, + ACTIONS(1973), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -99204,7 +103876,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1964), 15, + ACTIONS(1967), 15, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, @@ -99220,239 +103892,222 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [29579] = 10, + [31714] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2548), 1, - anon_sym_LPAREN2, - ACTIONS(2550), 1, - anon_sym_LBRACK, - STATE(791), 1, - sym_argument_list, - ACTIONS(2552), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2554), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2675), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2677), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2544), 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(2546), 25, - 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, + ACTIONS(2766), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2764), 44, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym___extension__, + anon_sym_extern, anon_sym___attribute__, anon_sym___scanf, anon_sym___printf, - 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, - [29646] = 8, + 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, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [31767] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1982), 1, - anon_sym_EQ, - ACTIONS(1988), 1, - anon_sym_COLON, - STATE(610), 1, - sym_string_literal, - ACTIONS(97), 5, + ACTIONS(2833), 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(1986), 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(1970), 12, + ACTIONS(2831), 26, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1964), 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, - [29709] = 17, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_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, + [31820] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2544), 1, - anon_sym_EQ, - ACTIONS(2548), 1, - anon_sym_LPAREN2, - ACTIONS(2550), 1, - anon_sym_LBRACK, - ACTIONS(2681), 1, - anon_sym_CARET, - ACTIONS(2683), 1, - anon_sym_AMP, - ACTIONS(2697), 1, - anon_sym_PIPE, - STATE(791), 1, - sym_argument_list, - ACTIONS(2552), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2554), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2675), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2679), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2685), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2687), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2689), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2677), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2546), 21, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(2742), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2740), 44, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym___extension__, + anon_sym_extern, anon_sym___attribute__, anon_sym___scanf, anon_sym___printf, - 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, - [29790] = 20, + 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, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [31873] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2548), 1, - anon_sym_LPAREN2, - ACTIONS(2550), 1, - anon_sym_LBRACK, - ACTIONS(2681), 1, - anon_sym_CARET, - ACTIONS(2683), 1, - anon_sym_AMP, - ACTIONS(2695), 1, - anon_sym_AMP_AMP, - ACTIONS(2697), 1, - anon_sym_PIPE, - ACTIONS(2701), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2703), 1, - anon_sym_EQ, - ACTIONS(2705), 1, - anon_sym_QMARK, - STATE(791), 1, - sym_argument_list, - ACTIONS(2552), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2554), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2675), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2679), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2685), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2687), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2689), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2677), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2699), 18, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, + ACTIONS(2738), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2736), 44, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym___extension__, + anon_sym_extern, anon_sym___attribute__, anon_sym___scanf, anon_sym___printf, - anon_sym_RBRACE, + 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, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [31926] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1985), 1, + anon_sym_EQ, + ACTIONS(1987), 1, anon_sym_COLON, + STATE(567), 1, + sym_string_literal, + ACTIONS(99), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(1989), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -99463,151 +104118,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [29877] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2548), 1, - anon_sym_LPAREN2, - ACTIONS(2550), 1, - anon_sym_LBRACK, - ACTIONS(2681), 1, - anon_sym_CARET, - ACTIONS(2683), 1, - anon_sym_AMP, - ACTIONS(2695), 1, - anon_sym_AMP_AMP, - ACTIONS(2697), 1, - anon_sym_PIPE, - ACTIONS(2701), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2705), 1, - anon_sym_QMARK, - ACTIONS(2709), 1, - anon_sym_EQ, - STATE(791), 1, - sym_argument_list, - ACTIONS(2552), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2554), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2675), 2, + ACTIONS(1973), 12, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2679), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2685), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2687), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2689), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2677), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2707), 18, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, - 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, - [29964] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2548), 1, - anon_sym_LPAREN2, - ACTIONS(2550), 1, - anon_sym_LBRACK, - ACTIONS(2683), 1, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - STATE(791), 1, - sym_argument_list, - ACTIONS(2552), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2554), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2675), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2679), 2, + anon_sym_GT, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2685), 2, + ACTIONS(1967), 15, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2687), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2689), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2544), 3, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_EQ, - ACTIONS(2677), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2546), 21, - 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_RBRACE, - anon_sym_COLON, + anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [30041] = 8, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [31989] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1982), 1, + ACTIONS(1985), 1, anon_sym_EQ, - ACTIONS(1996), 1, + ACTIONS(2001), 1, anon_sym_COLON, - STATE(610), 1, + STATE(567), 1, sym_string_literal, - ACTIONS(97), 5, + ACTIONS(99), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1986), 10, + ACTIONS(1989), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -99618,7 +104173,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1970), 12, + ACTIONS(1973), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -99631,7 +104186,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1964), 15, + ACTIONS(1967), 15, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, @@ -99647,22 +104202,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [30104] = 8, + [32052] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1446), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1444), 44, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + 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, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [32105] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1982), 1, + ACTIONS(1985), 1, anon_sym_EQ, - ACTIONS(1992), 1, + ACTIONS(2003), 1, anon_sym_COLON, - STATE(610), 1, + STATE(567), 1, sym_string_literal, - ACTIONS(97), 5, + ACTIONS(99), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1986), 10, + ACTIONS(1989), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -99673,7 +104278,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1970), 12, + ACTIONS(1973), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -99686,7 +104291,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1964), 15, + ACTIONS(1967), 15, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, @@ -99702,25 +104307,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [30167] = 3, + [32168] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2713), 9, + ACTIONS(2833), 7, 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(2711), 36, + ACTIONS(2831), 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_signed, @@ -99749,145 +104356,37 @@ 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, - [30220] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2717), 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(2715), 26, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym_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, - [30273] = 20, + [32221] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2548), 1, - anon_sym_LPAREN2, - ACTIONS(2550), 1, - anon_sym_LBRACK, - ACTIONS(2681), 1, - anon_sym_CARET, - ACTIONS(2683), 1, - anon_sym_AMP, - ACTIONS(2695), 1, - anon_sym_AMP_AMP, - ACTIONS(2697), 1, - anon_sym_PIPE, - ACTIONS(2701), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2705), 1, - anon_sym_QMARK, - ACTIONS(2721), 1, - anon_sym_EQ, - STATE(791), 1, - sym_argument_list, - ACTIONS(2552), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2554), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2675), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2679), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2685), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2687), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2689), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2677), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2719), 18, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, + ACTIONS(2799), 1, + anon_sym_LBRACE, + STATE(1013), 1, + sym_field_declaration_list, + STATE(1048), 1, + sym_attribute_specifier, + ACTIONS(33), 2, anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(35), 2, anon_sym___scanf, anon_sym___printf, - 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, - [30360] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2725), 9, + ACTIONS(37), 3, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___init, + ACTIONS(2837), 7, 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(2723), 36, + ACTIONS(2835), 28, anon_sym___extension__, anon_sym_extern, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, anon_sym___declspec, anon_sym___based, anon_sym_signed, @@ -99913,89 +104412,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_asm, - anon_sym___asm__, sym_identifier, - [30413] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2548), 1, - anon_sym_LPAREN2, - ACTIONS(2550), 1, - anon_sym_LBRACK, - STATE(791), 1, - sym_argument_list, - ACTIONS(2552), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2554), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2675), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2679), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2685), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2687), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2689), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2677), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2544), 4, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ, - ACTIONS(2546), 21, - 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_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, - [30488] = 8, + [32286] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1982), 1, + ACTIONS(1985), 1, anon_sym_EQ, - ACTIONS(2727), 1, + ACTIONS(2839), 1, anon_sym_COLON, - STATE(610), 1, + STATE(567), 1, sym_string_literal, - ACTIONS(97), 5, + ACTIONS(99), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1986), 10, + ACTIONS(1989), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -100006,7 +104439,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1970), 12, + ACTIONS(1973), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -100019,7 +104452,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1964), 15, + ACTIONS(1967), 15, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, @@ -100035,959 +104468,365 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [30551] = 13, + [32349] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2548), 1, - anon_sym_LPAREN2, - ACTIONS(2550), 1, + ACTIONS(2848), 2, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + ACTIONS(2851), 3, anon_sym_LBRACK, - STATE(791), 1, - sym_argument_list, - ACTIONS(2552), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2554), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2675), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2679), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2687), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2689), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2677), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2544), 4, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ, - ACTIONS(2546), 23, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(2843), 4, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym_EQ, + ACTIONS(2845), 7, anon_sym___attribute__, anon_sym___scanf, anon_sym___printf, - 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, - [30624] = 7, + anon_sym___read_mostly, + anon_sym___must_hold, + anon_sym___ro_after_init, + anon_sym___init, + ACTIONS(2841), 29, + anon_sym___extension__, + anon_sym_extern, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [32408] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2729), 1, - anon_sym_EQ, - STATE(610), 1, - sym_string_literal, - ACTIONS(97), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2731), 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(1970), 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(1964), 14, - anon_sym_DOT_DOT_DOT, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [30684] = 15, + ACTIONS(2785), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2783), 44, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + 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, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [32461] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2548), 1, - anon_sym_LPAREN2, - ACTIONS(2550), 1, - anon_sym_LBRACK, - ACTIONS(2737), 1, - anon_sym_AMP, - STATE(791), 1, - sym_argument_list, - ACTIONS(2552), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2554), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2733), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2739), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2741), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2743), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2745), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2735), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2544), 4, - aux_sym_preproc_elif_token1, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_EQ, - ACTIONS(2546), 19, - anon_sym_COMMA, + ACTIONS(2777), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2775), 44, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + aux_sym_preproc_elif_token1, + 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, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [30760] = 16, + [32514] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2548), 1, - anon_sym_LPAREN2, - ACTIONS(2550), 1, - anon_sym_LBRACK, - ACTIONS(2737), 1, - anon_sym_AMP, - ACTIONS(2747), 1, - anon_sym_CARET, - STATE(791), 1, - sym_argument_list, - ACTIONS(2552), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2554), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2733), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2739), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2741), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2743), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2745), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2544), 3, - aux_sym_preproc_elif_token1, - anon_sym_PIPE, - anon_sym_EQ, - ACTIONS(2735), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2546), 19, - anon_sym_COMMA, + ACTIONS(2758), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2756), 44, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + aux_sym_preproc_elif_token1, + 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, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [30838] = 9, + [32567] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2548), 1, - anon_sym_LPAREN2, - ACTIONS(2550), 1, - anon_sym_LBRACK, - STATE(791), 1, - sym_argument_list, - ACTIONS(2552), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2554), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2735), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2544), 11, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(2546), 23, - anon_sym_COMMA, + ACTIONS(1426), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1424), 44, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + aux_sym_preproc_elif_token1, + 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, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [30902] = 20, + [32620] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2548), 1, - anon_sym_LPAREN2, - ACTIONS(2550), 1, - anon_sym_LBRACK, - ACTIONS(2737), 1, - anon_sym_AMP, - ACTIONS(2747), 1, - anon_sym_CARET, - ACTIONS(2749), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2751), 1, - anon_sym_AMP_AMP, - ACTIONS(2753), 1, - anon_sym_PIPE, - ACTIONS(2755), 1, - anon_sym_QMARK, - STATE(791), 1, - sym_argument_list, - ACTIONS(2552), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2554), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2703), 2, - aux_sym_preproc_elif_token1, - anon_sym_EQ, - ACTIONS(2733), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2739), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2741), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2743), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2745), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2735), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2699), 16, - anon_sym_COMMA, + ACTIONS(2754), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2752), 44, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + aux_sym_preproc_elif_token1, + 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, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [30988] = 14, + [32673] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2548), 1, - anon_sym_LPAREN2, - ACTIONS(2550), 1, - anon_sym_LBRACK, - STATE(791), 1, - sym_argument_list, - ACTIONS(2552), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2554), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2733), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2739), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2741), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2743), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2745), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2735), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2544), 5, - aux_sym_preproc_elif_token1, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ, - ACTIONS(2546), 19, - anon_sym_COMMA, + ACTIONS(2750), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2748), 44, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - sym_identifier, - [31062] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2548), 1, - anon_sym_LPAREN2, - ACTIONS(2550), 1, - anon_sym_LBRACK, - ACTIONS(2737), 1, - anon_sym_AMP, - ACTIONS(2747), 1, - anon_sym_CARET, - ACTIONS(2753), 1, - anon_sym_PIPE, - STATE(791), 1, - sym_argument_list, - ACTIONS(2544), 2, - aux_sym_preproc_elif_token1, - anon_sym_EQ, - ACTIONS(2552), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2554), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2733), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2739), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2741), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2743), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2745), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2735), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2546), 19, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_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, - [31142] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2548), 1, - anon_sym_LPAREN2, - ACTIONS(2550), 1, - anon_sym_LBRACK, - ACTIONS(2737), 1, - anon_sym_AMP, - ACTIONS(2747), 1, - anon_sym_CARET, - ACTIONS(2751), 1, - anon_sym_AMP_AMP, - ACTIONS(2753), 1, - anon_sym_PIPE, - STATE(791), 1, - sym_argument_list, - ACTIONS(2544), 2, - aux_sym_preproc_elif_token1, - anon_sym_EQ, - ACTIONS(2552), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2554), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2733), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2739), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2741), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2743), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2745), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2735), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2546), 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, - [31224] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2548), 1, - anon_sym_LPAREN2, - ACTIONS(2550), 1, - anon_sym_LBRACK, - STATE(791), 1, - sym_argument_list, - ACTIONS(2552), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2554), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2733), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2735), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2544), 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(2546), 23, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - sym_identifier, - [31290] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2548), 1, - anon_sym_LPAREN2, - ACTIONS(2550), 1, - anon_sym_LBRACK, - ACTIONS(2737), 1, - anon_sym_AMP, - ACTIONS(2747), 1, - anon_sym_CARET, - ACTIONS(2749), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2751), 1, - anon_sym_AMP_AMP, - ACTIONS(2753), 1, - anon_sym_PIPE, - ACTIONS(2755), 1, - anon_sym_QMARK, - STATE(791), 1, - sym_argument_list, - ACTIONS(2552), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2554), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2721), 2, - aux_sym_preproc_elif_token1, - anon_sym_EQ, - ACTIONS(2733), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2739), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2741), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2743), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2745), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2735), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2719), 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_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_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, - [31376] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2548), 1, - anon_sym_LPAREN2, - ACTIONS(2550), 1, - anon_sym_LBRACK, - ACTIONS(2737), 1, - anon_sym_AMP, - ACTIONS(2747), 1, - anon_sym_CARET, - ACTIONS(2749), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2751), 1, - anon_sym_AMP_AMP, - ACTIONS(2753), 1, - anon_sym_PIPE, - ACTIONS(2755), 1, - anon_sym_QMARK, - STATE(791), 1, - sym_argument_list, - ACTIONS(2552), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2554), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2709), 2, aux_sym_preproc_elif_token1, - anon_sym_EQ, - ACTIONS(2733), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2739), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2741), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2743), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2745), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2735), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2707), 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_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_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, - [31462] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1982), 1, - anon_sym_EQ, - ACTIONS(1986), 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(1970), 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(1964), 21, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_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, + sym_preproc_directive, + anon_sym___extension__, + anon_sym_extern, anon_sym___attribute__, anon_sym___scanf, anon_sym___printf, - 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, - [31518] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2548), 1, - anon_sym_LPAREN2, - ACTIONS(2550), 1, - anon_sym_LBRACK, - STATE(791), 1, - sym_argument_list, - ACTIONS(2552), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2554), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2733), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2745), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2735), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2544), 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(2546), 23, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - sym_identifier, - [31586] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2548), 1, - anon_sym_LPAREN2, - ACTIONS(2550), 1, - anon_sym_LBRACK, - STATE(791), 1, - sym_argument_list, - ACTIONS(2552), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2554), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2733), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2741), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2743), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2745), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2735), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2544), 5, - aux_sym_preproc_elif_token1, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ, - ACTIONS(2546), 21, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - sym_identifier, - [31658] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2562), 14, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(2564), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, + 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, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [31709] = 3, + [32726] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2759), 1, + ACTIONS(1474), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2757), 42, + ACTIONS(1472), 44, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -100995,14 +104834,16 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -101030,12 +104871,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [31760] = 3, + [32779] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2799), 1, + anon_sym_LBRACE, + STATE(1024), 1, + sym_field_declaration_list, + STATE(1071), 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(2855), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2853), 28, + 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_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, + sym_primitive_type, + sym_identifier, + [32844] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1509), 1, + ACTIONS(2746), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1507), 42, + ACTIONS(2744), 44, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -101043,14 +104940,16 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -101078,12 +104977,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [31811] = 3, + [32897] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2763), 1, + ACTIONS(1470), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2761), 42, + ACTIONS(1468), 44, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -101091,14 +104990,16 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -101126,80 +105027,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [31862] = 3, + [32950] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2540), 14, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(2861), 1, + anon_sym___aligned, + STATE(977), 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(2859), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(2542), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_identifier, - [31913] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2767), 1, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2765), 42, - 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(2857), 28, anon_sym___extension__, anon_sym_extern, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, 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, @@ -101218,36 +105080,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [31964] = 3, + [33012] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2771), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2769), 42, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - sym_preproc_directive, - anon_sym___extension__, - anon_sym_extern, + ACTIONS(2867), 1, + anon_sym___aligned, + STATE(1023), 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(2865), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2863), 28, + 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_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -101266,36 +105134,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [32015] = 3, + [33074] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2775), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2773), 42, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - sym_preproc_directive, - anon_sym___extension__, - anon_sym_extern, + ACTIONS(2873), 1, + anon_sym___aligned, + STATE(1015), 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(2871), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2869), 28, + 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_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -101314,64 +105188,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [32066] = 3, + [33136] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2570), 14, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(2572), 29, - anon_sym_DOT_DOT_DOT, + ACTIONS(2879), 1, + anon_sym___aligned, + STATE(1020), 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(2877), 7, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2875), 28, + 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_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, + anon_sym_static, + anon_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, + sym_primitive_type, sym_identifier, - [32117] = 5, + [33198] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2628), 1, + ACTIONS(2881), 1, anon_sym_EQ, - ACTIONS(2630), 10, + STATE(567), 1, + sym_string_literal, + ACTIONS(99), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2883), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -101382,8 +105267,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1970), 13, - aux_sym_preproc_elif_token1, + ACTIONS(1973), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -101396,12 +105280,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1964), 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_DOT, + ACTIONS(1967), 14, + anon_sym_DOT_DOT_DOT, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -101410,38 +105291,46 @@ static const uint16_t ts_small_parse_table[] = { 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_DOT, anon_sym_DASH_GT, - sym_identifier, - [32172] = 3, + [33258] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1467), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1465), 42, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - sym_preproc_directive, - anon_sym___extension__, - anon_sym_extern, + ACTIONS(2889), 1, + anon_sym___aligned, + STATE(971), 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(2887), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2885), 28, + 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_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -101460,32 +105349,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [32223] = 3, + [33320] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2779), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2777), 42, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, + ACTIONS(2562), 1, + anon_sym_LPAREN2, + ACTIONS(2564), 1, + anon_sym_LBRACK, + ACTIONS(2895), 1, + anon_sym_AMP, + STATE(821), 1, + sym_argument_list, + ACTIONS(2566), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2568), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2891), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2897), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2899), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2901), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2903), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2893), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2558), 4, + aux_sym_preproc_elif_token1, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_EQ, + ACTIONS(2560), 19, + anon_sym_COMMA, 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + sym_identifier, + [33396] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2324), 2, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + ACTIONS(2322), 42, 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___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, @@ -101512,32 +105460,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [32274] = 3, + [33448] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1463), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1461), 42, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, + ACTIONS(2562), 1, + anon_sym_LPAREN2, + ACTIONS(2564), 1, + anon_sym_LBRACK, + STATE(821), 1, + sym_argument_list, + ACTIONS(2566), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2568), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2891), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2897), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2899), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2901), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2903), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2893), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2558), 5, + aux_sym_preproc_elif_token1, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ, + ACTIONS(2560), 19, + anon_sym_COMMA, 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + sym_identifier, + [33522] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1929), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(1927), 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_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -101560,39 +105569,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [32325] = 3, + [33574] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2582), 14, + ACTIONS(2562), 1, + anon_sym_LPAREN2, + ACTIONS(2564), 1, + anon_sym_LBRACK, + STATE(821), 1, + sym_argument_list, + ACTIONS(2566), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2568), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2891), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(2899), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2901), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2903), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2893), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(2558), 5, + 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, - anon_sym_DOT, - ACTIONS(2584), 29, - anon_sym_DOT_DOT_DOT, + ACTIONS(2560), 21, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, + 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_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -101604,36 +105627,170 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + sym_identifier, + [33646] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2562), 1, + anon_sym_LPAREN2, + ACTIONS(2564), 1, + anon_sym_LBRACK, + ACTIONS(2895), 1, + anon_sym_AMP, + ACTIONS(2905), 1, + anon_sym_CARET, + STATE(821), 1, + sym_argument_list, + ACTIONS(2566), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(2568), 2, + anon_sym_DOT, anon_sym_DASH_GT, + ACTIONS(2891), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2897), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2899), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2901), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2903), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2558), 3, + aux_sym_preproc_elif_token1, + anon_sym_PIPE, + anon_sym_EQ, + ACTIONS(2893), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2560), 19, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_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, - [32376] = 3, + [33724] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1451), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1449), 42, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, + ACTIONS(2562), 1, + anon_sym_LPAREN2, + ACTIONS(2564), 1, + anon_sym_LBRACK, + ACTIONS(2895), 1, + anon_sym_AMP, + ACTIONS(2905), 1, + anon_sym_CARET, + ACTIONS(2907), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2909), 1, + anon_sym_AMP_AMP, + ACTIONS(2911), 1, + anon_sym_PIPE, + ACTIONS(2913), 1, + anon_sym_QMARK, + STATE(821), 1, + sym_argument_list, + ACTIONS(2566), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2568), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2724), 2, + aux_sym_preproc_elif_token1, + anon_sym_EQ, + ACTIONS(2891), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2897), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2899), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2901), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2903), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2893), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2722), 16, + anon_sym_COMMA, 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_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_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, + [33810] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2919), 1, + anon_sym___aligned, + STATE(981), 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(2917), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2915), 28, + 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_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -101652,276 +105809,154 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [32427] = 3, + [33872] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1431), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1429), 42, - 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___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, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [32478] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1443), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1441), 42, - 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, + ACTIONS(2562), 1, + anon_sym_LPAREN2, + ACTIONS(2564), 1, + anon_sym_LBRACK, + STATE(821), 1, + sym_argument_list, + ACTIONS(2566), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2568), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2891), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2893), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2558), 9, 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___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, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [32529] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2783), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2781), 42, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_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(2560), 23, + anon_sym_COMMA, 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___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, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, sym_identifier, - [32580] = 3, + [33938] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2787), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2785), 42, - 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, + ACTIONS(2562), 1, + anon_sym_LPAREN2, + ACTIONS(2564), 1, + anon_sym_LBRACK, + ACTIONS(2895), 1, + anon_sym_AMP, + ACTIONS(2905), 1, + anon_sym_CARET, + ACTIONS(2909), 1, + anon_sym_AMP_AMP, + ACTIONS(2911), 1, + anon_sym_PIPE, + STATE(821), 1, + sym_argument_list, + ACTIONS(2558), 2, 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___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, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [32631] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2791), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2789), 42, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, + anon_sym_EQ, + ACTIONS(2566), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2568), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2891), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2897), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2899), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2901), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2903), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2893), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2560), 18, + anon_sym_COMMA, 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___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, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, + 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, - [32682] = 3, + [34020] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2795), 1, + ACTIONS(2923), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2793), 42, - 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(2921), 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_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -101944,32 +105979,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [32733] = 3, + [34072] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2799), 1, + ACTIONS(1925), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2797), 42, - 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(1923), 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_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -101992,28 +106028,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [32784] = 3, + [34124] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2803), 1, + ACTIONS(2318), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(2801), 42, - 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_LBRACE, + ACTIONS(2316), 42, 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___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, @@ -102040,173 +106077,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [32835] = 15, + [34176] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2805), 1, + ACTIONS(2562), 1, anon_sym_LPAREN2, - ACTIONS(2811), 1, - anon_sym_AMP, - ACTIONS(2821), 1, + ACTIONS(2564), 1, anon_sym_LBRACK, - STATE(980), 1, - sym_argument_list, - ACTIONS(2807), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2813), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2815), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2817), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2819), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2823), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2825), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2544), 3, - anon_sym_PIPE, + ACTIONS(2895), 1, + anon_sym_AMP, + ACTIONS(2905), 1, anon_sym_CARET, - anon_sym_EQ, - ACTIONS(2809), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2546), 18, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + ACTIONS(2907), 1, anon_sym_PIPE_PIPE, + ACTIONS(2909), 1, anon_sym_AMP_AMP, + ACTIONS(2911), 1, + anon_sym_PIPE, + ACTIONS(2913), 1, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - sym_identifier, - [32909] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2805), 1, - anon_sym_LPAREN2, - ACTIONS(2821), 1, - anon_sym_LBRACK, - STATE(980), 1, + STATE(821), 1, sym_argument_list, - ACTIONS(2807), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2819), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2823), 2, + ACTIONS(2566), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2825), 2, + ACTIONS(2568), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2809), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2544), 6, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_EQ, - ACTIONS(2546), 22, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, + ACTIONS(2720), 2, aux_sym_preproc_elif_token1, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - sym_identifier, - [32975] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2703), 1, anon_sym_EQ, - ACTIONS(2805), 1, - anon_sym_LPAREN2, - ACTIONS(2811), 1, - anon_sym_AMP, - ACTIONS(2821), 1, - anon_sym_LBRACK, - ACTIONS(2827), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2829), 1, - anon_sym_AMP_AMP, - ACTIONS(2831), 1, - anon_sym_PIPE, - ACTIONS(2833), 1, - anon_sym_CARET, - ACTIONS(2835), 1, - anon_sym_QMARK, - STATE(980), 1, - sym_argument_list, - ACTIONS(2807), 2, + ACTIONS(2891), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2813), 2, + ACTIONS(2897), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2815), 2, + ACTIONS(2899), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2817), 2, + ACTIONS(2901), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2819), 2, + ACTIONS(2903), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2823), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2825), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2809), 3, + ACTIONS(2893), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2699), 15, + ACTIONS(2718), 16, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -102218,55 +106143,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, sym_identifier, - [33059] = 16, + [34262] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2805), 1, + ACTIONS(2562), 1, anon_sym_LPAREN2, - ACTIONS(2811), 1, - anon_sym_AMP, - ACTIONS(2821), 1, + ACTIONS(2564), 1, anon_sym_LBRACK, - ACTIONS(2833), 1, + ACTIONS(2895), 1, + anon_sym_AMP, + ACTIONS(2905), 1, anon_sym_CARET, - STATE(980), 1, - sym_argument_list, - ACTIONS(2544), 2, + ACTIONS(2907), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2909), 1, + anon_sym_AMP_AMP, + ACTIONS(2911), 1, anon_sym_PIPE, + ACTIONS(2913), 1, + anon_sym_QMARK, + STATE(821), 1, + sym_argument_list, + ACTIONS(2566), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2568), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2710), 2, + aux_sym_preproc_elif_token1, anon_sym_EQ, - ACTIONS(2807), 2, + ACTIONS(2891), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2813), 2, + ACTIONS(2897), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2815), 2, + ACTIONS(2899), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2817), 2, + ACTIONS(2901), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2819), 2, + ACTIONS(2903), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2823), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2825), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2809), 3, + ACTIONS(2893), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2546), 18, + ACTIONS(2698), 16, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_QMARK, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -102278,42 +106209,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, sym_identifier, - [33135] = 10, + [34348] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2805), 1, + ACTIONS(2562), 1, anon_sym_LPAREN2, - ACTIONS(2821), 1, + ACTIONS(2564), 1, anon_sym_LBRACK, - STATE(980), 1, + STATE(821), 1, sym_argument_list, - ACTIONS(2807), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2823), 2, + ACTIONS(2566), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2825), 2, + ACTIONS(2568), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2809), 3, + ACTIONS(2891), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2903), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2893), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2544), 8, + ACTIONS(2558), 7, + 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(2546), 22, + ACTIONS(2560), 23, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -102332,56 +106266,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, sym_identifier, - [33199] = 18, + [34416] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2544), 1, - anon_sym_EQ, - ACTIONS(2805), 1, + ACTIONS(2562), 1, anon_sym_LPAREN2, - ACTIONS(2811), 1, - anon_sym_AMP, - ACTIONS(2821), 1, + ACTIONS(2564), 1, anon_sym_LBRACK, - ACTIONS(2829), 1, - anon_sym_AMP_AMP, - ACTIONS(2831), 1, - anon_sym_PIPE, - ACTIONS(2833), 1, + ACTIONS(2895), 1, + anon_sym_AMP, + ACTIONS(2905), 1, anon_sym_CARET, - STATE(980), 1, + ACTIONS(2911), 1, + anon_sym_PIPE, + STATE(821), 1, sym_argument_list, - ACTIONS(2807), 2, + ACTIONS(2558), 2, + aux_sym_preproc_elif_token1, + anon_sym_EQ, + ACTIONS(2566), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2568), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2891), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2813), 2, + ACTIONS(2897), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2815), 2, + ACTIONS(2899), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2817), 2, + ACTIONS(2901), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2819), 2, + ACTIONS(2903), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2823), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2825), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2809), 3, + ACTIONS(2893), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2546), 17, + ACTIONS(2560), 19, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -102394,27 +106329,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, sym_identifier, - [33279] = 8, + [34496] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2805), 1, + ACTIONS(2562), 1, anon_sym_LPAREN2, - ACTIONS(2821), 1, + ACTIONS(2564), 1, anon_sym_LBRACK, - STATE(980), 1, + STATE(821), 1, sym_argument_list, - ACTIONS(2823), 2, + ACTIONS(2566), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2825), 2, + ACTIONS(2568), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2544), 13, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(2893), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(2558), 11, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -102423,11 +106360,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2546), 22, + ACTIONS(2560), 23, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -102446,147 +106384,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, sym_identifier, - [33339] = 17, + [34560] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2544), 1, - anon_sym_EQ, - ACTIONS(2805), 1, - anon_sym_LPAREN2, - ACTIONS(2811), 1, - anon_sym_AMP, - ACTIONS(2821), 1, - anon_sym_LBRACK, - ACTIONS(2831), 1, - anon_sym_PIPE, - ACTIONS(2833), 1, - anon_sym_CARET, - STATE(980), 1, - sym_argument_list, - ACTIONS(2807), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2813), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2815), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2817), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2819), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2823), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2825), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2809), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2546), 18, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - sym_identifier, - [33417] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2721), 1, - anon_sym_EQ, - ACTIONS(2805), 1, - anon_sym_LPAREN2, - ACTIONS(2811), 1, - anon_sym_AMP, - ACTIONS(2821), 1, - anon_sym_LBRACK, - ACTIONS(2827), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2829), 1, - anon_sym_AMP_AMP, - ACTIONS(2831), 1, - anon_sym_PIPE, - ACTIONS(2833), 1, - anon_sym_CARET, - ACTIONS(2835), 1, - anon_sym_QMARK, - STATE(980), 1, - sym_argument_list, - ACTIONS(2807), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2813), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2815), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2817), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2819), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2823), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2825), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2809), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2719), 15, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_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, - [33501] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2805), 1, - anon_sym_LPAREN2, - ACTIONS(2821), 1, - anon_sym_LBRACK, - STATE(980), 1, - sym_argument_list, - ACTIONS(2823), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2825), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2624), 13, + ACTIONS(2580), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -102600,75 +106401,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2626), 22, + anon_sym_DOT, + ACTIONS(2582), 29, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, + anon_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_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_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, - [33561] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2805), 1, - anon_sym_LPAREN2, - ACTIONS(2821), 1, anon_sym_LBRACK, - STATE(980), 1, - sym_argument_list, - ACTIONS(2807), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2813), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2815), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2817), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2819), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2823), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2825), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2809), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2544), 4, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ, - ACTIONS(2546), 18, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -102680,132 +106428,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - sym_identifier, - [33633] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2805), 1, - anon_sym_LPAREN2, - ACTIONS(2821), 1, - anon_sym_LBRACK, - STATE(980), 1, - sym_argument_list, - ACTIONS(2823), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2825), 2, - anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2566), 13, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(2568), 22, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, sym_identifier, - [33693] = 13, + [34611] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2805), 1, - anon_sym_LPAREN2, - ACTIONS(2821), 1, - anon_sym_LBRACK, - STATE(980), 1, - sym_argument_list, - ACTIONS(2807), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2815), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2817), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2819), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2823), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2825), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2809), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2544), 4, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ, - ACTIONS(2546), 20, - anon_sym_COMMA, + ACTIONS(1474), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1472), 42, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + 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, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [33763] = 8, + [34662] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2805), 1, - anon_sym_LPAREN2, - ACTIONS(2821), 1, - anon_sym_LBRACK, - STATE(980), 1, - sym_argument_list, - ACTIONS(2823), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2825), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2558), 13, + ACTIONS(2588), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -102819,183 +106497,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2560), 22, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - sym_identifier, - [33823] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2709), 1, - anon_sym_EQ, - ACTIONS(2805), 1, - anon_sym_LPAREN2, - ACTIONS(2811), 1, - anon_sym_AMP, - ACTIONS(2821), 1, - anon_sym_LBRACK, - ACTIONS(2827), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2829), 1, - anon_sym_AMP_AMP, - ACTIONS(2831), 1, - anon_sym_PIPE, - ACTIONS(2833), 1, - anon_sym_CARET, - ACTIONS(2835), 1, - anon_sym_QMARK, - STATE(980), 1, - sym_argument_list, - ACTIONS(2807), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2813), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2815), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2817), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2819), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2823), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2825), 2, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2809), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2707), 15, + ACTIONS(2590), 29, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_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, - [33907] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2805), 1, anon_sym_LPAREN2, - ACTIONS(2821), 1, - anon_sym_LBRACK, - STATE(980), 1, - sym_argument_list, - ACTIONS(2823), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2825), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2809), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2544), 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(2546), 22, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - sym_identifier, - [33969] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2805), 1, - anon_sym_LPAREN2, - ACTIONS(2821), 1, anon_sym_LBRACK, - STATE(980), 1, - sym_argument_list, - ACTIONS(2825), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2578), 13, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(2580), 24, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -103009,78 +106526,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, sym_identifier, - [34027] = 8, + [34713] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2805), 1, - anon_sym_LPAREN2, - ACTIONS(2821), 1, - anon_sym_LBRACK, - STATE(980), 1, - sym_argument_list, - ACTIONS(2823), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2825), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2574), 13, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(2576), 22, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + ACTIONS(2738), 2, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(2736), 41, + 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, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [34087] = 3, + [34764] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1451), 1, + ACTIONS(2754), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(1449), 40, + anon_sym_RBRACE, + ACTIONS(2752), 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, 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, @@ -103108,30 +106624,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [34136] = 3, + [34815] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2717), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(2923), 1, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2715), 34, + STATE(568), 1, + sym_string_literal, + ACTIONS(2925), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2921), 36, 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_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -103154,163 +106674,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [34185] = 3, + [34870] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2428), 13, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(2430), 28, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_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, - sym_identifier, - [34234] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2484), 13, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(2486), 28, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_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, - sym_identifier, - [34283] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2452), 13, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(2454), 28, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_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, - sym_identifier, - [34332] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1431), 1, + ACTIONS(2758), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(1429), 40, + anon_sym_RBRACE, + ACTIONS(2756), 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, 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, @@ -103338,25 +106722,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [34381] = 3, + [34921] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1443), 1, + ACTIONS(2777), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(1441), 40, + anon_sym_RBRACE, + ACTIONS(2775), 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, 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, @@ -103384,170 +106770,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [34430] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2500), 13, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(2502), 28, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_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, - sym_identifier, - [34479] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2464), 13, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(2466), 28, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_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, - sym_identifier, - [34528] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2671), 1, - anon_sym_EQ, - ACTIONS(2673), 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(1970), 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(1964), 18, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_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, - [34581] = 3, + [34972] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2839), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(2785), 2, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(2837), 34, + anon_sym_RBRACE, + ACTIONS(2783), 41, + 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___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, @@ -103570,21 +106818,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [34630] = 8, + [35023] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, + ACTIONS(2923), 1, + anon_sym_LBRACK_LBRACK, + STATE(570), 1, + sym_string_literal, + ACTIONS(2925), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2921), 36, + anon_sym___extension__, + anon_sym_extern, anon_sym___attribute__, - ACTIONS(2845), 1, - anon_sym_LBRACE, - STATE(1025), 1, - sym_field_declaration_list, - STATE(1099), 1, - sym_attribute_specifier, - ACTIONS(35), 2, anon_sym___scanf, anon_sym___printf, - ACTIONS(2843), 7, + 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, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [35078] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2931), 1, + anon_sym___aligned, + ACTIONS(2929), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -103592,9 +106881,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2841), 28, + ACTIONS(2927), 35, 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_signed, @@ -103621,10 +106917,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [34689] = 3, + [35131] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2520), 13, + ACTIONS(2554), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -103638,7 +106934,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2522), 28, + anon_sym_DOT, + ACTIONS(2556), 29, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -103651,6 +106949,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -103664,87 +106963,161 @@ 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, sym_identifier, - [34738] = 3, + [35182] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2432), 13, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(2434), 28, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_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, + ACTIONS(2923), 1, + anon_sym_LBRACK_LBRACK, + STATE(569), 1, + sym_string_literal, + ACTIONS(2925), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2921), 36, + 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, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [34787] = 8, + [35237] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, + ACTIONS(41), 1, + anon_sym___declspec, + ACTIONS(1312), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(33), 2, anon_sym___attribute__, - ACTIONS(2845), 1, - anon_sym_LBRACE, - STATE(1010), 1, - sym_field_declaration_list, - STATE(1108), 1, - sym_attribute_specifier, + anon_sym___must_hold, ACTIONS(35), 2, anon_sym___scanf, anon_sym___printf, - ACTIONS(2849), 7, + ACTIONS(37), 3, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___init, + ACTIONS(2933), 3, + anon_sym___based, + anon_sym_LBRACK, + sym_identifier, + ACTIONS(2935), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2847), 28, + STATE(975), 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, + [35304] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(41), 1, anon_sym___declspec, + ACTIONS(1312), 1, + anon_sym_LBRACK_LBRACK, + 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(2937), 3, anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, anon_sym_LBRACK, + sym_identifier, + ACTIONS(2939), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + STATE(852), 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, @@ -103754,6 +107127,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, + [35371] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(41), 1, + anon_sym___declspec, + ACTIONS(1312), 1, + anon_sym_LBRACK_LBRACK, + 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(2941), 3, + anon_sym___based, + anon_sym_LBRACK, + sym_identifier, + ACTIONS(2943), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + STATE(989), 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, @@ -103762,216 +107172,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - sym_primitive_type, - sym_identifier, - [34846] = 3, + ACTIONS(49), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [35438] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2468), 13, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(2470), 28, + ACTIONS(2949), 1, + anon_sym___aligned, + ACTIONS(2947), 7, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + anon_sym_RPAREN, anon_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, - sym_identifier, - [34895] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2536), 13, - anon_sym_DASH, - anon_sym_PLUS, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(2538), 28, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_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_COLON, + ACTIONS(2945), 35, + 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_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, 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, + anon_sym_static, + anon_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, + sym_primitive_type, sym_identifier, - [34944] = 3, + [35491] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2492), 13, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(2494), 28, + STATE(1047), 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(2953), 7, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + anon_sym_RPAREN, anon_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, - sym_identifier, - [34993] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2480), 13, - anon_sym_DASH, - anon_sym_PLUS, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(2482), 28, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_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, - sym_identifier, - [35042] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1463), 1, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(1461), 40, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, + anon_sym_COLON, + ACTIONS(2951), 28, anon_sym___extension__, anon_sym_extern, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, 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, @@ -103990,29 +107283,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [35091] = 3, + [35550] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1467), 1, + ACTIONS(1434), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(1465), 40, + anon_sym_RBRACE, + ACTIONS(1432), 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, 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, @@ -104040,21 +107332,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [35140] = 8, + [35601] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(2845), 1, - anon_sym_LBRACE, - STATE(1007), 1, - sym_field_declaration_list, - STATE(1083), 1, - sym_attribute_specifier, - ACTIONS(35), 2, - anon_sym___scanf, - anon_sym___printf, - ACTIONS(2853), 7, + ACTIONS(2959), 1, + anon_sym___aligned, + ACTIONS(2957), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -104062,9 +107345,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2851), 28, + ACTIONS(2955), 35, 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_signed, @@ -104091,122 +107381,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [35199] = 3, + [35654] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2488), 13, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(2490), 28, + ACTIONS(2965), 1, + anon_sym___aligned, + ACTIONS(2963), 7, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + anon_sym_RPAREN, anon_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, - sym_identifier, - [35248] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2532), 13, - anon_sym_DASH, - anon_sym_PLUS, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(2534), 28, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_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, - sym_identifier, - [35297] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1509), 1, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(1507), 40, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, + anon_sym_COLON, + ACTIONS(2961), 35, 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_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -104225,121 +107429,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [35346] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2456), 13, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(2458), 28, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_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, - sym_identifier, - [35395] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2508), 13, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(2510), 28, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_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, sym_identifier, - [35444] = 3, + [35707] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2763), 1, + ACTIONS(2923), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2761), 40, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, + STATE(571), 1, + sym_string_literal, + ACTIONS(2925), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2921), 36, 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, @@ -104367,25 +107480,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [35493] = 3, + [35762] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2799), 1, + ACTIONS(2923), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2797), 40, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, + STATE(572), 1, + sym_string_literal, + ACTIONS(2925), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2921), 36, 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, @@ -104413,25 +107530,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [35542] = 3, + [35817] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2779), 1, + ACTIONS(2762), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(2777), 40, + anon_sym_RBRACE, + ACTIONS(2760), 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, 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, @@ -104459,84 +107578,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [35591] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2448), 13, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(2450), 28, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_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, - sym_identifier, - [35640] = 8, + [35868] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(2845), 1, - anon_sym_LBRACE, - STATE(1074), 1, - sym_field_declaration_list, - STATE(1086), 1, - sym_attribute_specifier, - ACTIONS(35), 2, - anon_sym___scanf, - anon_sym___printf, - ACTIONS(2857), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(2781), 2, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2855), 28, + anon_sym_RBRACE, + ACTIONS(2779), 41, + 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___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, @@ -104555,39 +107622,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [35699] = 8, + [35919] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(2845), 1, - anon_sym_LBRACE, - STATE(1033), 1, - sym_field_declaration_list, - STATE(1105), 1, - sym_attribute_specifier, - ACTIONS(35), 2, - anon_sym___scanf, - anon_sym___printf, - ACTIONS(2861), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(1446), 2, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2859), 28, + anon_sym_RBRACE, + ACTIONS(1444), 41, + 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___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, @@ -104606,29 +107670,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [35758] = 6, + [35970] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2870), 2, + ACTIONS(1454), 2, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(2867), 3, + anon_sym_RBRACE, + ACTIONS(1452), 41, + 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, - ACTIONS(2873), 3, - anon_sym_LBRACK, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(2865), 4, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_EQ, - ACTIONS(2863), 29, - anon_sym___extension__, - anon_sym_extern, + 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, @@ -104656,163 +107722,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [35813] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2524), 13, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(2526), 28, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_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, - sym_identifier, - [35862] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2476), 13, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(2478), 28, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_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, - sym_identifier, - [35911] = 3, + [36021] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2472), 13, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(2474), 28, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_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, - sym_identifier, - [35960] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2791), 1, + ACTIONS(2789), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(2789), 40, + anon_sym_RBRACE, + ACTIONS(2787), 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, 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, @@ -104840,25 +107770,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [36009] = 3, + [36072] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(41), 1, + anon_sym___declspec, + ACTIONS(1312), 1, + anon_sym_LBRACK_LBRACK, + 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(2967), 3, + anon_sym___based, + anon_sym_LBRACK, + sym_identifier, + ACTIONS(2969), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + STATE(852), 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, + [36139] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2787), 1, + ACTIONS(1470), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(2785), 40, + anon_sym_RBRACE, + ACTIONS(1468), 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, 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, @@ -104886,25 +107874,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [36058] = 3, + [36190] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2783), 1, + ACTIONS(1474), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(2781), 40, + anon_sym_RBRACE, + ACTIONS(1472), 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, 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, @@ -104932,212 +107922,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [36107] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2444), 13, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(2446), 28, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_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, - sym_identifier, - [36156] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2440), 13, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(2442), 28, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_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, - sym_identifier, - [36205] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2512), 13, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(2514), 28, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_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, - sym_identifier, - [36254] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2496), 13, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(2498), 28, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_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, - sym_identifier, - [36303] = 6, + [36241] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2882), 2, + ACTIONS(2766), 1, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(2879), 3, + ACTIONS(2764), 42, + 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, - ACTIONS(2885), 3, - anon_sym_LBRACK, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(2877), 4, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_EQ, - ACTIONS(2875), 29, - anon_sym___extension__, - anon_sym_extern, + 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, @@ -105165,117 +107970,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [36358] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2516), 13, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(2518), 28, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_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, - sym_identifier, - [36407] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2528), 13, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(2530), 28, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_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, - sym_identifier, - [36456] = 3, + [36292] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2759), 1, + ACTIONS(1426), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(2757), 40, + anon_sym_RBRACE, + ACTIONS(1424), 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, 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, @@ -105303,25 +108018,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [36505] = 3, + [36343] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2775), 1, + ACTIONS(2789), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2773), 40, + ACTIONS(2787), 42, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, sym_preproc_directive, anon_sym___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, @@ -105349,71 +108066,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [36554] = 3, + [36394] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2436), 13, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(2438), 28, - anon_sym_COMMA, + ACTIONS(2781), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2779), 42, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_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, + 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, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [36603] = 3, + [36445] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2771), 1, + ACTIONS(2762), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2769), 40, + ACTIONS(2760), 42, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, sym_preproc_directive, anon_sym___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, @@ -105441,25 +108162,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [36652] = 3, + [36496] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2767), 1, + ACTIONS(2750), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(2765), 40, + anon_sym_RBRACE, + ACTIONS(2748), 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, 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, @@ -105487,25 +108210,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [36701] = 3, + [36547] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2795), 1, + ACTIONS(2746), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(2793), 40, + anon_sym_RBRACE, + ACTIONS(2744), 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, 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, @@ -105533,25 +108258,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [36750] = 3, + [36598] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2803), 1, + ACTIONS(2785), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2801), 40, + ACTIONS(2783), 42, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, sym_preproc_directive, anon_sym___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, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [36649] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2742), 2, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(2740), 41, + 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, @@ -105579,10 +108354,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [36799] = 3, + [36700] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2460), 13, + ACTIONS(2570), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -105596,7 +108371,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2462), 28, + anon_sym_DOT, + ACTIONS(2572), 29, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -105609,6 +108386,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -105622,32 +108400,82 @@ 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, sym_identifier, - [36848] = 3, + [36751] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2889), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(2777), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2887), 34, + ACTIONS(2775), 42, + 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, + 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, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [36802] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2758), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2756), 42, + 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, 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, @@ -105670,29 +108498,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [36896] = 3, + [36853] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1914), 6, + ACTIONS(2714), 1, + anon_sym_EQ, + ACTIONS(2716), 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(1973), 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(1967), 19, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + 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, + [36908] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2754), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1912), 34, + ACTIONS(2752), 42, + 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, 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, @@ -105715,25 +108596,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [36944] = 3, + [36959] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2426), 2, + ACTIONS(2750), 1, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(2424), 38, + ACTIONS(2748), 42, + 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, 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, @@ -105760,29 +108644,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [36992] = 3, + [37010] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1918), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(2746), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1916), 34, + ACTIONS(2744), 42, + 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, 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, @@ -105805,25 +108692,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [37040] = 3, + [37061] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 2, + ACTIONS(2742), 1, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(2420), 38, + ACTIONS(2740), 42, + 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, 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, @@ -105850,25 +108740,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [37088] = 5, + [37112] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2889), 1, + ACTIONS(2738), 1, anon_sym_LBRACK_LBRACK, - STATE(620), 1, - sym_string_literal, - ACTIONS(2891), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2887), 32, + ACTIONS(2736), 42, + 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, anon_sym___declspec, anon_sym_signed, anon_sym_unsigned, @@ -105896,66 +108788,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [37139] = 8, + [37163] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2550), 1, - anon_sym_LBRACK, - ACTIONS(2554), 1, - anon_sym_DASH_GT, - ACTIONS(2805), 1, - anon_sym_LPAREN2, - ACTIONS(2893), 1, - anon_sym_DOT, - STATE(791), 1, - sym_argument_list, - ACTIONS(2578), 13, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(2580), 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, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - 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, - [37196] = 6, + ACTIONS(1470), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1468), 42, + 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, + 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, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [37214] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, + ACTIONS(1454), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1452), 42, + 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__, - STATE(1084), 1, + 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, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [37265] = 7, + ACTIONS(3), 1, + sym_comment, + STATE(1072), 1, sym_attribute_specifier, + ACTIONS(33), 2, + anon_sym___attribute__, + anon_sym___must_hold, ACTIONS(35), 2, anon_sym___scanf, anon_sym___printf, - ACTIONS(2897), 7, + ACTIONS(37), 3, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___init, + ACTIONS(2973), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -105963,7 +108907,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2895), 28, + ACTIONS(2971), 28, anon_sym___extension__, anon_sym_extern, anon_sym___declspec, @@ -105992,17 +108936,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [37249] = 6, + [37324] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - STATE(1090), 1, + STATE(1070), 1, sym_attribute_specifier, + ACTIONS(33), 2, + anon_sym___attribute__, + anon_sym___must_hold, ACTIONS(35), 2, anon_sym___scanf, anon_sym___printf, - ACTIONS(2901), 7, + ACTIONS(37), 3, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___init, + ACTIONS(2977), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -106010,7 +108959,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2899), 28, + ACTIONS(2975), 28, anon_sym___extension__, anon_sym_extern, anon_sym___declspec, @@ -106039,30 +108988,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [37302] = 5, + [37383] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2889), 1, + STATE(1014), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2983), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2981), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - STATE(601), 1, - sym_string_literal, - ACTIONS(2891), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2887), 32, + anon_sym_COLON, + ACTIONS(2979), 31, 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___based, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -106081,21 +109037,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [37353] = 6, + [37438] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - STATE(1093), 1, - sym_attribute_specifier, - ACTIONS(35), 2, - anon_sym___scanf, - anon_sym___printf, - ACTIONS(2905), 7, + ACTIONS(2990), 1, + anon_sym___aligned, + ACTIONS(2988), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -106103,9 +109051,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2903), 28, + ACTIONS(2986), 35, 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_signed, @@ -106132,28 +109087,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [37406] = 3, + [37491] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1431), 2, + ACTIONS(2996), 1, + anon_sym___aligned, + ACTIONS(2994), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(1429), 37, - 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_COLON, + ACTIONS(2992), 35, 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_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -106172,19 +109135,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [37453] = 3, + [37544] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2767), 2, + ACTIONS(1446), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2765), 37, + ACTIONS(1444), 42, 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, @@ -106193,6 +109153,10 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -106220,28 +109184,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [37500] = 3, + [37595] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1443), 2, + ACTIONS(3000), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(1441), 37, - 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_COLON, + ACTIONS(2998), 36, 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_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -106260,19 +109230,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, + anon_sym___aligned, sym_identifier, - [37547] = 3, + [37646] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1451), 2, + ACTIONS(1434), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(1449), 37, + ACTIONS(1432), 42, 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, @@ -106281,6 +109249,10 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -106308,17 +109280,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [37594] = 5, + [37697] = 4, ACTIONS(3), 1, sym_comment, - STATE(1015), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2911), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2909), 7, + ACTIONS(3006), 1, + anon_sym___aligned, + ACTIONS(3004), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -106326,14 +109293,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2907), 27, + ACTIONS(3002), 35, 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_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, anon_sym_static, anon_sym_auto, @@ -106354,78 +109329,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [37645] = 9, + [37750] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2550), 1, - anon_sym_LBRACK, - ACTIONS(2554), 1, - anon_sym_DASH_GT, - ACTIONS(2805), 1, + ACTIONS(3010), 7, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(2893), 1, - anon_sym_DOT, - STATE(791), 1, - sym_argument_list, - ACTIONS(2552), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2624), 13, - anon_sym_DASH, - anon_sym_PLUS, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(2626), 19, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [37704] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2771), 2, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2769), 37, - 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_COLON, + ACTIONS(3008), 36, 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_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -106444,32 +109375,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, + anon_sym___aligned, sym_identifier, - [37751] = 3, + [37801] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2799), 2, + ACTIONS(3016), 1, + anon_sym___aligned, + ACTIONS(3014), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2797), 37, - 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_COLON, + ACTIONS(3012), 35, 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_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -106488,32 +109425,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [37798] = 3, + [37854] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2775), 2, + ACTIONS(3022), 1, + anon_sym___aligned, + ACTIONS(3020), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2773), 37, - 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_COLON, + ACTIONS(3018), 35, 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_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -106532,32 +109474,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [37845] = 3, + [37907] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2759), 2, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2757), 37, - 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, + STATE(1040), 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(3026), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(3024), 28, + 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_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -106576,17 +109526,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [37892] = 3, + [37966] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1463), 2, + ACTIONS(2766), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(1461), 37, + ACTIONS(2764), 41, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -106597,6 +109544,10 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -106624,15 +109575,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [37939] = 3, + [38017] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1467), 2, + ACTIONS(1426), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(1465), 37, + ACTIONS(1424), 42, 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, @@ -106641,6 +109592,10 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -106668,79 +109623,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [37986] = 10, + [38068] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(39), 1, - anon_sym___declspec, - ACTIONS(1301), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(35), 2, - anon_sym___scanf, - anon_sym___printf, - ACTIONS(2914), 3, - anon_sym___based, - anon_sym_LBRACK, - sym_identifier, - ACTIONS(2916), 5, + ACTIONS(3030), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, - STATE(1028), 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(49), 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(47), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - [38047] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2799), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2797), 38, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + anon_sym_COLON, + ACTIONS(3028), 35, 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_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -106759,21 +109669,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [38094] = 6, + [38118] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - STATE(1096), 1, - sym_attribute_specifier, - ACTIONS(35), 2, - anon_sym___scanf, - anon_sym___printf, - ACTIONS(2920), 7, + ACTIONS(3032), 1, + anon_sym_LPAREN2, + ACTIONS(3046), 1, + anon_sym_LBRACK, + STATE(1115), 1, + sym_argument_list, + ACTIONS(3034), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3038), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3040), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3042), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3044), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3048), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3050), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3036), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2558), 4, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ, + ACTIONS(2560), 18, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + sym_identifier, + [38190] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3054), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -106781,9 +109739,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2918), 28, + ACTIONS(3052), 35, 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_signed, @@ -106810,28 +109775,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [38147] = 3, + [38240] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2795), 2, + ACTIONS(3058), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2793), 37, - 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_COLON, + ACTIONS(3056), 35, 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_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -106850,32 +109821,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [38194] = 3, + [38290] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2803), 2, + ACTIONS(3062), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2801), 37, - 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_COLON, + ACTIONS(3060), 35, 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_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -106894,85 +109868,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [38241] = 10, + [38340] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(39), 1, - anon_sym___declspec, - ACTIONS(1301), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(35), 2, - anon_sym___scanf, - anon_sym___printf, - ACTIONS(2922), 3, - anon_sym___based, - anon_sym_LBRACK, - sym_identifier, - ACTIONS(2924), 5, + ACTIONS(3066), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, - STATE(860), 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(49), 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(47), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - [38302] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2889), 1, anon_sym_LBRACK_LBRACK, - STATE(611), 1, - sym_string_literal, - ACTIONS(2891), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2887), 32, + anon_sym_COLON, + ACTIONS(3064), 35, 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_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -106991,21 +109915,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [38353] = 6, + [38390] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - STATE(1087), 1, - sym_attribute_specifier, - ACTIONS(35), 2, - anon_sym___scanf, - anon_sym___printf, - ACTIONS(2928), 7, + STATE(1014), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(3072), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(3070), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -107013,15 +109934,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2926), 28, + ACTIONS(3068), 30, 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_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, anon_sym_LBRACK, anon_sym_static, anon_sym_auto, @@ -107040,80 +109964,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - sym_primitive_type, sym_identifier, - [38406] = 9, + [38444] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2550), 1, - anon_sym_LBRACK, - ACTIONS(2554), 1, - anon_sym_DASH_GT, - ACTIONS(2805), 1, + ACTIONS(3076), 7, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(2893), 1, - anon_sym_DOT, - STATE(791), 1, - sym_argument_list, - ACTIONS(2552), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2544), 13, - anon_sym_DASH, - anon_sym_PLUS, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(2546), 19, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [38465] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2779), 2, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2777), 37, - 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_COLON, + ACTIONS(3074), 35, 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_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -107132,21 +110011,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [38512] = 6, + [38494] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - STATE(1088), 1, - sym_attribute_specifier, - ACTIONS(35), 2, - anon_sym___scanf, - anon_sym___printf, - ACTIONS(2932), 7, + ACTIONS(3080), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -107154,9 +110023,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2930), 28, + ACTIONS(3078), 35, 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_signed, @@ -107183,28 +110059,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [38565] = 3, + [38544] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1509), 2, + ACTIONS(3084), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(1507), 37, - 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_COLON, + ACTIONS(3082), 35, 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_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -107223,32 +110105,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [38612] = 3, + [38594] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2791), 1, + STATE(1083), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(3090), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(3088), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2789), 38, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + anon_sym_COLON, + ACTIONS(3086), 30, 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___based, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -107266,22 +110154,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [38659] = 6, + [38648] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - STATE(1098), 1, - sym_attribute_specifier, - ACTIONS(35), 2, - anon_sym___scanf, - anon_sym___printf, - ACTIONS(2936), 7, + STATE(1084), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(3096), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(3094), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -107289,15 +110173,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2934), 28, + ACTIONS(3092), 30, 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_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, anon_sym_LBRACK, anon_sym_static, anon_sym_auto, @@ -107316,30 +110203,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - sym_primitive_type, sym_identifier, - [38712] = 3, + [38702] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2787), 1, + ACTIONS(2979), 1, + sym_primitive_type, + STATE(1014), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2983), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(3101), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2785), 38, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + ACTIONS(3098), 30, 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___based, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -107357,33 +110253,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [38759] = 3, + [38758] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2783), 1, + ACTIONS(3106), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2781), 38, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + anon_sym_COLON, + ACTIONS(3104), 35, 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_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -107402,134 +110300,142 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [38806] = 10, + [38808] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(39), 1, - anon_sym___declspec, - ACTIONS(1301), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(35), 2, - anon_sym___scanf, - anon_sym___printf, - ACTIONS(2938), 3, - anon_sym___based, - anon_sym_LBRACK, - sym_identifier, - ACTIONS(2940), 5, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3032), 1, anon_sym_LPAREN2, + ACTIONS(3046), 1, + anon_sym_LBRACK, + STATE(1115), 1, + sym_argument_list, + ACTIONS(3050), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2592), 13, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, - anon_sym_SEMI, - STATE(860), 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(49), 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(47), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - [38867] = 10, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(2594), 24, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_identifier, + [38866] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(39), 1, - anon_sym___declspec, - ACTIONS(1301), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(35), 2, - anon_sym___scanf, - anon_sym___printf, - ACTIONS(2942), 3, - anon_sym___based, + ACTIONS(3032), 1, + anon_sym_LPAREN2, + ACTIONS(3046), 1, anon_sym_LBRACK, + STATE(1115), 1, + sym_argument_list, + ACTIONS(3048), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3050), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2596), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(2598), 22, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, sym_identifier, - ACTIONS(2944), 5, + [38926] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3108), 1, + anon_sym_LPAREN2, + STATE(1033), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(1983), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(1981), 6, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, - STATE(1039), 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(49), 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(47), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - [38928] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2759), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2757), 38, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + anon_sym_COLON, + ACTIONS(1965), 30, 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___based, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -107547,33 +110453,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [38975] = 3, + [38982] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2775), 1, + ACTIONS(3113), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2773), 38, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + anon_sym_COLON, + ACTIONS(3111), 35, 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_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -107592,32 +110500,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [39022] = 3, + [39032] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2771), 1, + STATE(1052), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(3119), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(3117), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2769), 38, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + anon_sym_COLON, + ACTIONS(3115), 30, 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___based, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -107635,33 +110549,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [39069] = 3, + [39086] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2767), 1, + ACTIONS(3123), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2765), 38, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + anon_sym_COLON, + ACTIONS(3121), 35, 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_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -107680,32 +110596,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [39116] = 3, + [39136] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2795), 1, + ACTIONS(3127), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2793), 38, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + anon_sym_COLON, + ACTIONS(3125), 35, 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_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -107724,32 +110643,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [39163] = 3, + [39186] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2791), 2, + ACTIONS(3131), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2789), 37, - 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_COLON, + ACTIONS(3129), 35, 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_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -107768,62 +110690,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [39210] = 21, + [39236] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2550), 1, - anon_sym_LBRACK, - ACTIONS(2554), 1, - anon_sym_DASH_GT, - ACTIONS(2703), 1, - anon_sym_EQ, - ACTIONS(2805), 1, + ACTIONS(3032), 1, anon_sym_LPAREN2, - ACTIONS(2893), 1, - anon_sym_DOT, - ACTIONS(2950), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2952), 1, - anon_sym_AMP_AMP, - ACTIONS(2954), 1, - anon_sym_PIPE, - ACTIONS(2956), 1, - anon_sym_CARET, - ACTIONS(2958), 1, - anon_sym_AMP, - ACTIONS(2968), 1, - anon_sym_QMARK, - STATE(791), 1, + ACTIONS(3046), 1, + anon_sym_LBRACK, + STATE(1115), 1, sym_argument_list, - ACTIONS(2552), 2, + ACTIONS(3048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2946), 2, + ACTIONS(3050), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2641), 13, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2960), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2962), 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(2964), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2966), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2948), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2699), 12, - anon_sym_DOT_DOT_DOT, - anon_sym_RBRACK, + anon_sym_EQ, + ACTIONS(2643), 22, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -107834,73 +110742,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [39293] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2803), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2801), 38, - 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___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, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [39340] = 10, + [39296] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2550), 1, - anon_sym_LBRACK, - ACTIONS(2554), 1, - anon_sym_DASH_GT, - ACTIONS(2805), 1, + ACTIONS(3032), 1, anon_sym_LPAREN2, - ACTIONS(2893), 1, - anon_sym_DOT, - STATE(791), 1, + ACTIONS(3046), 1, + anon_sym_LBRACK, + STATE(1115), 1, sym_argument_list, - ACTIONS(2552), 2, + ACTIONS(3048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2948), 3, + ACTIONS(3050), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2576), 13, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2544), 10, - anon_sym_DASH, - anon_sym_PLUS, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -107909,15 +110772,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2546), 19, - anon_sym_DOT_DOT_DOT, + ACTIONS(2578), 22, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -107929,28 +110794,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [39401] = 3, + sym_identifier, + [39356] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2779), 1, + ACTIONS(3135), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2777), 38, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + anon_sym_COLON, + ACTIONS(3133), 35, 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_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -107969,32 +110841,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [39448] = 3, + [39406] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2787), 2, + STATE(1014), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(3072), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(3139), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2785), 37, - 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_COLON, + ACTIONS(3137), 30, 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___based, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -108012,33 +110890,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [39495] = 3, + [39460] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2763), 1, + ACTIONS(3143), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2761), 38, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + anon_sym_COLON, + ACTIONS(3141), 35, 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_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -108057,59 +110937,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [39542] = 19, + [39510] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2544), 1, - anon_sym_EQ, - ACTIONS(2550), 1, - anon_sym_LBRACK, - ACTIONS(2554), 1, - anon_sym_DASH_GT, - ACTIONS(2805), 1, + ACTIONS(3032), 1, anon_sym_LPAREN2, - ACTIONS(2893), 1, - anon_sym_DOT, - ACTIONS(2952), 1, - anon_sym_AMP_AMP, - ACTIONS(2954), 1, - anon_sym_PIPE, - ACTIONS(2956), 1, - anon_sym_CARET, - ACTIONS(2958), 1, - anon_sym_AMP, - STATE(791), 1, + ACTIONS(3046), 1, + anon_sym_LBRACK, + STATE(1115), 1, sym_argument_list, - ACTIONS(2552), 2, + ACTIONS(3048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2946), 2, + ACTIONS(3050), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2584), 13, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2960), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2962), 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(2964), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2966), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2948), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2546), 14, - anon_sym_DOT_DOT_DOT, + anon_sym_EQ, + ACTIONS(2586), 22, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_sym_PIPE_PIPE, - anon_sym_RBRACK, + 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, @@ -108121,55 +110989,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [39621] = 18, + sym_identifier, + [39570] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2544), 1, + ACTIONS(2720), 1, anon_sym_EQ, - ACTIONS(2550), 1, - anon_sym_LBRACK, - ACTIONS(2554), 1, - anon_sym_DASH_GT, - ACTIONS(2805), 1, + ACTIONS(3032), 1, anon_sym_LPAREN2, - ACTIONS(2893), 1, - anon_sym_DOT, - ACTIONS(2954), 1, + ACTIONS(3046), 1, + anon_sym_LBRACK, + ACTIONS(3145), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3147), 1, + anon_sym_AMP_AMP, + ACTIONS(3149), 1, anon_sym_PIPE, - ACTIONS(2956), 1, + ACTIONS(3151), 1, anon_sym_CARET, - ACTIONS(2958), 1, + ACTIONS(3153), 1, anon_sym_AMP, - STATE(791), 1, + ACTIONS(3155), 1, + anon_sym_QMARK, + STATE(1115), 1, sym_argument_list, - ACTIONS(2552), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2946), 2, + ACTIONS(3034), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2960), 2, + ACTIONS(3038), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2962), 2, + ACTIONS(3040), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2964), 2, + ACTIONS(3042), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2966), 2, + ACTIONS(3044), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2948), 3, + ACTIONS(3048), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3050), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3036), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2546), 15, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_RBRACK, - anon_sym_QMARK, + ACTIONS(2718), 15, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -108180,28 +111053,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [39698] = 3, + sym_identifier, + [39654] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2763), 2, + ACTIONS(3159), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2761), 37, - 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_COLON, + ACTIONS(3157), 35, 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_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -108220,58 +111100,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [39745] = 17, + [39704] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2550), 1, - anon_sym_LBRACK, - ACTIONS(2554), 1, - anon_sym_DASH_GT, - ACTIONS(2805), 1, + ACTIONS(3032), 1, anon_sym_LPAREN2, - ACTIONS(2893), 1, - anon_sym_DOT, - ACTIONS(2956), 1, - anon_sym_CARET, - ACTIONS(2958), 1, - anon_sym_AMP, - STATE(791), 1, + ACTIONS(3046), 1, + anon_sym_LBRACK, + STATE(1115), 1, sym_argument_list, - ACTIONS(2544), 2, - anon_sym_PIPE, - anon_sym_EQ, - ACTIONS(2552), 2, + ACTIONS(3048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2946), 2, + ACTIONS(3050), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3036), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2558), 10, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2960), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2962), 2, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(2964), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2966), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2948), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2546), 15, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_RBRACK, - anon_sym_QMARK, + anon_sym_EQ, + ACTIONS(2560), 22, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -108282,52 +111153,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [39820] = 16, + sym_identifier, + [39766] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2550), 1, - anon_sym_LBRACK, - ACTIONS(2554), 1, - anon_sym_DASH_GT, - ACTIONS(2805), 1, + ACTIONS(2558), 1, + anon_sym_EQ, + ACTIONS(3032), 1, anon_sym_LPAREN2, - ACTIONS(2893), 1, - anon_sym_DOT, - ACTIONS(2958), 1, + ACTIONS(3046), 1, + anon_sym_LBRACK, + ACTIONS(3147), 1, + anon_sym_AMP_AMP, + ACTIONS(3149), 1, + anon_sym_PIPE, + ACTIONS(3151), 1, + anon_sym_CARET, + ACTIONS(3153), 1, anon_sym_AMP, - STATE(791), 1, + STATE(1115), 1, sym_argument_list, - ACTIONS(2552), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2946), 2, + ACTIONS(3034), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2960), 2, + ACTIONS(3038), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2962), 2, + ACTIONS(3040), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2964), 2, + ACTIONS(3042), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2966), 2, + ACTIONS(3044), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2544), 3, + ACTIONS(3048), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3050), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3036), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2560), 17, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + 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, + [39846] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2558), 1, + anon_sym_EQ, + ACTIONS(3032), 1, + anon_sym_LPAREN2, + ACTIONS(3046), 1, + anon_sym_LBRACK, + ACTIONS(3149), 1, anon_sym_PIPE, + ACTIONS(3151), 1, anon_sym_CARET, - anon_sym_EQ, - ACTIONS(2948), 3, + ACTIONS(3153), 1, + anon_sym_AMP, + STATE(1115), 1, + sym_argument_list, + ACTIONS(3034), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3038), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3040), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3042), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3044), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3048), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3050), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3036), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2546), 15, - anon_sym_DOT_DOT_DOT, + ACTIONS(2560), 18, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -108339,51 +111276,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [39893] = 15, + sym_identifier, + [39924] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(2550), 1, - anon_sym_LBRACK, - ACTIONS(2554), 1, - anon_sym_DASH_GT, - ACTIONS(2805), 1, + ACTIONS(3032), 1, anon_sym_LPAREN2, - ACTIONS(2893), 1, - anon_sym_DOT, - STATE(791), 1, + ACTIONS(3046), 1, + anon_sym_LBRACK, + ACTIONS(3151), 1, + anon_sym_CARET, + ACTIONS(3153), 1, + anon_sym_AMP, + STATE(1115), 1, sym_argument_list, - ACTIONS(2552), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2946), 2, + ACTIONS(2558), 2, + anon_sym_PIPE, + anon_sym_EQ, + ACTIONS(3034), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2960), 2, + ACTIONS(3038), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2962), 2, + ACTIONS(3040), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2964), 2, + ACTIONS(3042), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2966), 2, + ACTIONS(3044), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2948), 3, + ACTIONS(3048), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3050), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3036), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2544), 4, + ACTIONS(2560), 18, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + sym_identifier, + [40000] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3032), 1, + anon_sym_LPAREN2, + ACTIONS(3046), 1, + anon_sym_LBRACK, + ACTIONS(3153), 1, + anon_sym_AMP, + STATE(1115), 1, + sym_argument_list, + ACTIONS(3034), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3038), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3040), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3042), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3044), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3048), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3050), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2558), 3, anon_sym_PIPE, anon_sym_CARET, - anon_sym_AMP, anon_sym_EQ, - ACTIONS(2546), 15, - anon_sym_DOT_DOT_DOT, + ACTIONS(3036), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2560), 18, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -108395,17 +111395,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [39964] = 6, + sym_identifier, + [40074] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - STATE(1095), 1, - sym_attribute_specifier, - ACTIONS(35), 2, - anon_sym___scanf, - anon_sym___printf, - ACTIONS(2972), 7, + ACTIONS(3163), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -108413,9 +111407,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2970), 28, + ACTIONS(3161), 35, 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_signed, @@ -108442,28 +111443,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [40017] = 3, + [40124] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3032), 1, + anon_sym_LPAREN2, + ACTIONS(3046), 1, + anon_sym_LBRACK, + STATE(1115), 1, + sym_argument_list, + ACTIONS(3034), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3040), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3042), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3044), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3048), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3050), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3036), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2558), 4, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ, + ACTIONS(2560), 20, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + sym_identifier, + [40194] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2783), 2, + ACTIONS(3167), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2781), 37, - 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_COLON, + ACTIONS(3165), 35, 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_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -108482,21 +111546,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [40064] = 6, + [40244] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - STATE(1107), 1, - sym_attribute_specifier, - ACTIONS(35), 2, - anon_sym___scanf, - anon_sym___printf, - ACTIONS(2976), 7, + ACTIONS(3171), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -108504,9 +111558,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2974), 28, + ACTIONS(3169), 35, 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_signed, @@ -108533,103 +111594,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [40117] = 14, + [40294] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2550), 1, - anon_sym_LBRACK, - ACTIONS(2554), 1, - anon_sym_DASH_GT, - ACTIONS(2805), 1, + ACTIONS(3032), 1, anon_sym_LPAREN2, - ACTIONS(2893), 1, - anon_sym_DOT, - STATE(791), 1, + ACTIONS(3046), 1, + anon_sym_LBRACK, + STATE(1115), 1, sym_argument_list, - ACTIONS(2552), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2946), 2, + ACTIONS(3034), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2962), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2964), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2966), 2, + ACTIONS(3044), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2948), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2544), 4, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ, - ACTIONS(2546), 17, - 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, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [40186] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2550), 1, - anon_sym_LBRACK, - ACTIONS(2554), 1, - anon_sym_DASH_GT, - ACTIONS(2805), 1, - anon_sym_LPAREN2, - ACTIONS(2893), 1, - anon_sym_DOT, - STATE(791), 1, - sym_argument_list, - ACTIONS(2552), 2, + ACTIONS(3048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2946), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2966), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2948), 3, + ACTIONS(3050), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3036), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2544), 6, + ACTIONS(2558), 6, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT, anon_sym_EQ, - ACTIONS(2546), 19, - anon_sym_DOT_DOT_DOT, + ACTIONS(2560), 22, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -108641,78 +111648,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [40251] = 9, + sym_identifier, + [40360] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2550), 1, - anon_sym_LBRACK, - ACTIONS(2554), 1, - anon_sym_DASH_GT, - ACTIONS(2805), 1, + ACTIONS(3175), 7, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(2893), 1, - anon_sym_DOT, - STATE(791), 1, - sym_argument_list, - ACTIONS(2552), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2574), 13, - anon_sym_DASH, - anon_sym_PLUS, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(2576), 19, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [40310] = 9, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(3173), 35, + 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_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, + sym_primitive_type, + sym_identifier, + [40410] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2550), 1, - anon_sym_LBRACK, - ACTIONS(2554), 1, - anon_sym_DASH_GT, - ACTIONS(2805), 1, + ACTIONS(3032), 1, anon_sym_LPAREN2, - ACTIONS(2893), 1, - anon_sym_DOT, - STATE(791), 1, + ACTIONS(3046), 1, + anon_sym_LBRACK, + STATE(1115), 1, sym_argument_list, - ACTIONS(2552), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2566), 13, + ACTIONS(3034), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(3048), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3050), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3036), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(2558), 8, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -108721,15 +111727,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2568), 19, - anon_sym_DOT_DOT_DOT, + ACTIONS(2560), 22, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -108741,90 +111749,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [40369] = 19, + sym_identifier, + [40474] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2088), 1, - anon_sym_LPAREN2, - ACTIONS(2090), 1, - anon_sym_STAR, - ACTIONS(2092), 1, - anon_sym___based, - ACTIONS(2978), 1, - sym_identifier, - ACTIONS(2986), 1, - anon_sym_LBRACK, - STATE(1315), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1496), 1, - sym__declarator, - STATE(1660), 1, - sym__abstract_declarator, - STATE(1698), 1, - sym_parameter_list, - STATE(2118), 1, - sym_ms_based_modifier, - ACTIONS(2980), 2, + ACTIONS(3117), 7, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(2984), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(1174), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(1192), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - ACTIONS(2982), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(1701), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - STATE(1548), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - ACTIONS(49), 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, - [40448] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2889), 1, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - STATE(612), 1, - sym_string_literal, - ACTIONS(2891), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2887), 32, + anon_sym_COLON, + ACTIONS(3115), 35, 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_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -108843,32 +111796,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [40499] = 3, + [40524] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1509), 1, + ACTIONS(3179), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(1507), 38, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + anon_sym_COLON, + ACTIONS(3177), 35, 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_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -108887,32 +111843,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [40546] = 3, + [40574] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1467), 1, + ACTIONS(3183), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(1465), 38, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + anon_sym_COLON, + ACTIONS(3181), 35, 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_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -108931,32 +111890,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [40593] = 3, + [40624] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1463), 1, + ACTIONS(3187), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(1461), 38, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + anon_sym_COLON, + ACTIONS(3185), 35, 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_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -108975,164 +111937,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [40640] = 9, + [40674] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2550), 1, - anon_sym_LBRACK, - ACTIONS(2554), 1, - anon_sym_DASH_GT, - ACTIONS(2805), 1, + ACTIONS(2710), 1, + anon_sym_EQ, + ACTIONS(3032), 1, anon_sym_LPAREN2, - ACTIONS(2893), 1, - anon_sym_DOT, - STATE(791), 1, - sym_argument_list, - ACTIONS(2552), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2558), 13, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3046), 1, + anon_sym_LBRACK, + ACTIONS(3145), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3147), 1, + anon_sym_AMP_AMP, + ACTIONS(3149), 1, anon_sym_PIPE, + ACTIONS(3151), 1, anon_sym_CARET, + ACTIONS(3153), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(2560), 19, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(3155), 1, + anon_sym_QMARK, + STATE(1115), 1, + sym_argument_list, + ACTIONS(3034), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3038), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(3040), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3042), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [40699] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2550), 1, - anon_sym_LBRACK, - ACTIONS(2554), 1, - anon_sym_DASH_GT, - ACTIONS(2805), 1, - anon_sym_LPAREN2, - ACTIONS(2893), 1, - anon_sym_DOT, - STATE(791), 1, - sym_argument_list, - ACTIONS(2552), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2946), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2948), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2544), 8, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, + ACTIONS(3044), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(2546), 19, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [40762] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2550), 1, - anon_sym_LBRACK, - ACTIONS(2554), 1, - anon_sym_DASH_GT, - ACTIONS(2721), 1, - anon_sym_EQ, - ACTIONS(2805), 1, - anon_sym_LPAREN2, - ACTIONS(2893), 1, - anon_sym_DOT, - ACTIONS(2950), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2952), 1, - anon_sym_AMP_AMP, - ACTIONS(2954), 1, - anon_sym_PIPE, - ACTIONS(2956), 1, - anon_sym_CARET, - ACTIONS(2958), 1, - anon_sym_AMP, - ACTIONS(2968), 1, - anon_sym_QMARK, - STATE(791), 1, - sym_argument_list, - ACTIONS(2552), 2, + ACTIONS(3048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2946), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2960), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2962), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2964), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2966), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2948), 3, + ACTIONS(3050), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3036), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2719), 12, - anon_sym_DOT_DOT_DOT, - anon_sym_RBRACK, + ACTIONS(2698), 15, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -109143,17 +112001,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [40845] = 6, + sym_identifier, + [40758] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - STATE(1102), 1, - sym_attribute_specifier, - ACTIONS(35), 2, - anon_sym___scanf, - anon_sym___printf, - ACTIONS(2990), 7, + ACTIONS(3191), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -109161,9 +112013,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2988), 28, + ACTIONS(3189), 35, 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_signed, @@ -109190,28 +112049,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [40898] = 3, + [40808] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1451), 1, + ACTIONS(3195), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(1449), 38, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + anon_sym_COLON, + ACTIONS(3193), 35, 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_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -109230,32 +112095,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [40945] = 3, + [40858] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1443), 1, + ACTIONS(3199), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(1441), 38, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + anon_sym_COLON, + ACTIONS(3197), 35, 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_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -109274,32 +112142,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [40992] = 3, + [40908] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1431), 1, + ACTIONS(3203), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(1429), 38, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + anon_sym_COLON, + ACTIONS(3201), 35, 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_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -109318,34 +112189,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [41039] = 5, + [40958] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2889), 1, + ACTIONS(3207), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - STATE(598), 1, - sym_string_literal, - ACTIONS(2891), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2887), 32, + anon_sym_COLON, + ACTIONS(3205), 35, 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_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -109364,62 +112236,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [41090] = 21, + [41008] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2550), 1, - anon_sym_LBRACK, - ACTIONS(2554), 1, - anon_sym_DASH_GT, - ACTIONS(2709), 1, + ACTIONS(2724), 1, anon_sym_EQ, - ACTIONS(2805), 1, + ACTIONS(3032), 1, anon_sym_LPAREN2, - ACTIONS(2893), 1, - anon_sym_DOT, - ACTIONS(2950), 1, + ACTIONS(3046), 1, + anon_sym_LBRACK, + ACTIONS(3145), 1, anon_sym_PIPE_PIPE, - ACTIONS(2952), 1, + ACTIONS(3147), 1, anon_sym_AMP_AMP, - ACTIONS(2954), 1, + ACTIONS(3149), 1, anon_sym_PIPE, - ACTIONS(2956), 1, + ACTIONS(3151), 1, anon_sym_CARET, - ACTIONS(2958), 1, + ACTIONS(3153), 1, anon_sym_AMP, - ACTIONS(2968), 1, + ACTIONS(3155), 1, anon_sym_QMARK, - STATE(791), 1, + STATE(1115), 1, sym_argument_list, - ACTIONS(2552), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2946), 2, + ACTIONS(3034), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2960), 2, + ACTIONS(3038), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2962), 2, + ACTIONS(3040), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2964), 2, + ACTIONS(3042), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2966), 2, + ACTIONS(3044), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2948), 3, + ACTIONS(3048), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3050), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3036), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2707), 12, - anon_sym_DOT_DOT_DOT, - anon_sym_RBRACK, + ACTIONS(2722), 15, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -109430,10 +112300,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [41173] = 3, + sym_identifier, + [41092] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2994), 7, + ACTIONS(3211), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -109441,12 +112312,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2992), 31, + ACTIONS(3209), 35, 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_signed, @@ -109473,10 +112348,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [41219] = 3, + [41142] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2998), 7, + ACTIONS(3215), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -109484,12 +112359,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2996), 31, + ACTIONS(3213), 35, 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_signed, @@ -109516,17 +112395,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [41265] = 5, + [41192] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3032), 1, + anon_sym_LPAREN2, + ACTIONS(3046), 1, + anon_sym_LBRACK, + STATE(1115), 1, + sym_argument_list, + ACTIONS(3048), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3050), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2558), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(2560), 22, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + sym_identifier, + [41252] = 5, ACTIONS(3), 1, sym_comment, - STATE(1103), 1, + STATE(1014), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(3004), 4, + ACTIONS(3072), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(3002), 7, + ACTIONS(3219), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -109534,12 +112465,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(3000), 26, + ACTIONS(3217), 30, 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_LBRACK, @@ -109561,10 +112496,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_identifier, - [41315] = 3, + [41306] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3008), 7, + STATE(1014), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(3072), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(3223), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -109572,18 +112514,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(3006), 31, + ACTIONS(3221), 30, 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_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, anon_sym_LBRACK, anon_sym_static, anon_sym_auto, @@ -109602,31 +112544,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - sym_primitive_type, sym_identifier, - [41361] = 3, + [41360] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3012), 7, + ACTIONS(3225), 1, + sym_identifier, + ACTIONS(3234), 1, + sym_primitive_type, + STATE(1039), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(3232), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(3228), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(3010), 31, + ACTIONS(3230), 29, 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_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, anon_sym_LBRACK, anon_sym_static, anon_sym_auto, @@ -109645,19 +112596,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - sym_primitive_type, - sym_identifier, - [41407] = 5, + [41418] = 3, ACTIONS(3), 1, sym_comment, - STATE(1015), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(3018), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(3016), 7, + ACTIONS(3238), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -109665,14 +112607,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(3014), 26, + ACTIONS(3236), 35, 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_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, anon_sym_static, anon_sym_auto, @@ -109691,11 +112641,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + sym_primitive_type, sym_identifier, - [41457] = 3, + [41468] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3022), 7, + ACTIONS(3242), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -109703,12 +112654,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(3020), 31, + ACTIONS(3240), 35, 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_signed, @@ -109735,53 +112690,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [41503] = 3, + [41518] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3026), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(3024), 31, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, - 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, - sym_primitive_type, - sym_identifier, - [41549] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3030), 7, + ACTIONS(3246), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -109789,12 +112701,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(3028), 31, + ACTIONS(3244), 35, 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_signed, @@ -109821,359 +112737,175 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [41595] = 3, + [41568] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3034), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + ACTIONS(2530), 13, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(3032), 31, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, - 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, - sym_primitive_type, - sym_identifier, - [41641] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3038), 7, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(2532), 28, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(3036), 31, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, + 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_static, - anon_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, - sym_primitive_type, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + 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, sym_identifier, - [41687] = 6, + [41617] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3040), 1, - anon_sym_LPAREN2, - STATE(1085), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(1980), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(1978), 6, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2542), 13, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(1962), 26, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, - 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, - sym_identifier, - [41739] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3045), 7, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(2544), 28, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(3043), 31, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, + 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_static, - anon_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, - sym_primitive_type, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + 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, sym_identifier, - [41785] = 3, + [41666] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3049), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + ACTIONS(2490), 13, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(3047), 31, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, - 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, - sym_primitive_type, - sym_identifier, - [41831] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3053), 7, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(2492), 28, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(3051), 31, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, + 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_static, - anon_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, - sym_primitive_type, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + 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, sym_identifier, - [41877] = 3, + [41715] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3057), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + ACTIONS(2370), 13, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(3055), 31, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, - 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, - sym_primitive_type, - sym_identifier, - [41923] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3061), 7, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(2372), 28, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(3059), 31, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, + 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_static, - anon_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, - sym_primitive_type, - sym_identifier, - [41969] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2729), 1, - anon_sym_EQ, - ACTIONS(2731), 10, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -110184,7 +112916,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1970), 13, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + sym_identifier, + [41764] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2388), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -110197,9 +112937,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(1964), 14, - anon_sym_DOT_DOT_DOT, + anon_sym_EQ, + ACTIONS(2390), 28, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -110208,692 +112951,1067 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + anon_sym_DOT, anon_sym_DASH_GT, - [42019] = 3, + sym_identifier, + [41813] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3065), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + ACTIONS(2494), 13, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(3063), 31, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(2496), 28, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + anon_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_static, - anon_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, - sym_primitive_type, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + 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, sym_identifier, - [42065] = 3, + [41862] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3069), 7, + ACTIONS(2498), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(2500), 28, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(3067), 31, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, + 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_static, - anon_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, - sym_primitive_type, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + 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, sym_identifier, - [42111] = 3, + [41911] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3073), 7, + ACTIONS(2374), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(2376), 28, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(3071), 31, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, + 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_static, - anon_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, - sym_primitive_type, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + 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, sym_identifier, - [42157] = 3, + [41960] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3077), 7, + ACTIONS(2402), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(2404), 28, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(3075), 31, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, + 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_static, - anon_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, - sym_primitive_type, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + 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, sym_identifier, - [42203] = 3, + [42009] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3081), 7, + ACTIONS(2791), 1, + anon_sym_EQ, + ACTIONS(2793), 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(1973), 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(1967), 18, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(3079), 31, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, + 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_static, - anon_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, - sym_primitive_type, + anon_sym_QMARK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, sym_identifier, - [42249] = 5, + [42062] = 3, ACTIONS(3), 1, sym_comment, - STATE(1015), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(3018), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(3085), 7, + ACTIONS(2526), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(2528), 28, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(3083), 26, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, - anon_sym___declspec, - anon_sym___based, + 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_static, - anon_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_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + 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, sym_identifier, - [42299] = 3, + [42111] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3089), 7, + ACTIONS(2424), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(2426), 28, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(3087), 31, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, + 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_static, - anon_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, - sym_primitive_type, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + 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, sym_identifier, - [42345] = 3, + [42160] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3093), 7, + ACTIONS(2406), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(2408), 28, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(3091), 31, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, + 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_static, - anon_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, - sym_primitive_type, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + 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, sym_identifier, - [42391] = 3, + [42209] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3002), 7, + ACTIONS(2546), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(2548), 28, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(3000), 31, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, + 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_static, - anon_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, - sym_primitive_type, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + 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, sym_identifier, - [42437] = 3, + [42258] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3097), 7, + ACTIONS(2514), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(2516), 28, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(3095), 31, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, + 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_static, - anon_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, - sym_primitive_type, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + 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, sym_identifier, - [42483] = 3, + [42307] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3101), 7, + ACTIONS(2482), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(2484), 28, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(3099), 31, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, + 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_static, - anon_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, - sym_primitive_type, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + 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, sym_identifier, - [42529] = 6, + [42356] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2907), 1, - sym_primitive_type, - STATE(1015), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2911), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(3106), 6, + ACTIONS(2338), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(2340), 28, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - ACTIONS(3103), 26, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, - anon_sym___declspec, - anon_sym___based, + 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_static, - anon_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_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + 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, sym_identifier, - [42581] = 5, + [42405] = 3, ACTIONS(3), 1, sym_comment, - STATE(1116), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(3113), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(3111), 7, + ACTIONS(2342), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(2344), 28, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(3109), 26, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, - anon_sym___declspec, - anon_sym___based, + 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_static, - anon_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_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + 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, sym_identifier, - [42631] = 3, + [42454] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3117), 7, + ACTIONS(2518), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(2520), 28, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(3115), 31, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, + 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_static, - anon_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, - sym_primitive_type, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + 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, sym_identifier, - [42677] = 5, + [42503] = 3, ACTIONS(3), 1, sym_comment, - STATE(1015), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(3018), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(3121), 7, + ACTIONS(2364), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(2366), 28, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(3119), 26, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, - 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_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, + sym_identifier, + [42552] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2506), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(2508), 28, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + anon_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, sym_identifier, - [42727] = 7, + [42601] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3123), 1, + ACTIONS(2510), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(2512), 28, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + anon_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, sym_identifier, - ACTIONS(3132), 1, - sym_primitive_type, - STATE(1109), 1, + [42650] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2378), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(2380), 28, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + anon_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, + sym_identifier, + [42699] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2550), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(2552), 28, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + anon_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, + sym_identifier, + [42748] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2534), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(2536), 28, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + anon_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, + sym_identifier, + [42797] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2486), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(2488), 28, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + anon_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, + sym_identifier, + [42846] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2538), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(2540), 28, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + anon_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, + sym_identifier, + [42895] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3108), 1, + anon_sym_LPAREN2, + ACTIONS(3248), 1, + anon_sym_COMMA, + ACTIONS(3251), 1, + anon_sym_RPAREN, + STATE(1033), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(3130), 4, + STATE(1833), 1, + aux_sym__old_style_parameter_list_repeat1, + ACTIONS(1981), 2, + anon_sym_STAR, + anon_sym_LBRACK_LBRACK, + ACTIONS(1983), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(3126), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - ACTIONS(3128), 25, + ACTIONS(1965), 30, 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_LBRACK, @@ -110914,30 +114032,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [42781] = 3, + sym_identifier, + [42956] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3136), 7, + ACTIONS(2502), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(2504), 28, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + 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, + sym_identifier, + [43005] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(41), 1, + anon_sym___declspec, + ACTIONS(1312), 1, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(3134), 31, - anon_sym___extension__, - anon_sym_extern, + ACTIONS(3254), 1, + anon_sym_SEMI, + ACTIONS(33), 2, anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(35), 2, anon_sym___scanf, anon_sym___printf, - anon_sym___declspec, + ACTIONS(2933), 2, anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, + sym_identifier, + ACTIONS(2935), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + ACTIONS(37), 3, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___init, + STATE(975), 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, @@ -110947,6 +114133,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, + [43071] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(41), 1, + anon_sym___declspec, + ACTIONS(1312), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3256), 1, + anon_sym_SEMI, + ACTIONS(33), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(35), 2, + anon_sym___scanf, + anon_sym___printf, + ACTIONS(2933), 2, + anon_sym___based, + sym_identifier, + ACTIONS(2935), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + ACTIONS(37), 3, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___init, + STATE(975), 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, @@ -110955,35 +114176,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - sym_primitive_type, - sym_identifier, - [42827] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(1112), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(3142), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(3140), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(3138), 26, - anon_sym___extension__, + ACTIONS(49), 10, anon_sym_extern, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -110993,42 +114187,38 @@ 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, - sym_identifier, - [42877] = 5, + [43137] = 8, ACTIONS(3), 1, sym_comment, - STATE(1015), 1, + ACTIONS(3261), 1, + anon_sym_LPAREN2, + ACTIONS(3265), 1, + anon_sym_LBRACK, + STATE(1033), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(3018), 4, + ACTIONS(1981), 2, + anon_sym_COMMA, + anon_sym_STAR, + ACTIONS(3258), 2, + anon_sym_RPAREN, + anon_sym_LBRACK_LBRACK, + ACTIONS(1983), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(3146), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(3144), 26, + ACTIONS(1965), 29, 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_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -111047,118 +114237,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_identifier, - [42927] = 3, + [43195] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(3150), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(41), 1, + anon_sym___declspec, + ACTIONS(1312), 1, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(3148), 31, - anon_sym___extension__, - anon_sym_extern, + ACTIONS(3268), 1, + anon_sym_SEMI, + ACTIONS(33), 2, anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(35), 2, anon_sym___scanf, anon_sym___printf, - 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, - sym_primitive_type, - sym_identifier, - [42973] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3040), 1, - anon_sym_LPAREN2, - ACTIONS(3152), 1, - anon_sym_COMMA, - ACTIONS(3155), 1, - anon_sym_RPAREN, - STATE(1085), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1789), 1, - aux_sym__old_style_parameter_list_repeat1, - ACTIONS(1978), 2, - anon_sym_STAR, - anon_sym_LBRACK_LBRACK, - ACTIONS(1980), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(1962), 26, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, - 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, - sym_identifier, - [43030] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(39), 1, - anon_sym___declspec, - ACTIONS(1301), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3158), 1, - anon_sym_SEMI, - ACTIONS(35), 2, - anon_sym___scanf, - anon_sym___printf, - ACTIONS(2942), 2, + ACTIONS(2933), 2, anon_sym___based, sym_identifier, - ACTIONS(2944), 2, + ACTIONS(2935), 2, anon_sym_LPAREN2, anon_sym_STAR, - STATE(1039), 7, + ACTIONS(37), 3, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___init, + STATE(975), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -111166,7 +114270,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(49), 9, + ACTIONS(51), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -111176,7 +114280,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(47), 10, + ACTIONS(49), 10, anon_sym_extern, anon_sym_static, anon_sym_auto, @@ -111187,27 +114291,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [43090] = 11, + [43261] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(39), 1, + ACTIONS(41), 1, anon_sym___declspec, - ACTIONS(1301), 1, + ACTIONS(1312), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3160), 1, + ACTIONS(3270), 1, anon_sym_SEMI, + ACTIONS(33), 2, + anon_sym___attribute__, + anon_sym___must_hold, ACTIONS(35), 2, anon_sym___scanf, anon_sym___printf, - ACTIONS(2942), 2, + ACTIONS(2933), 2, anon_sym___based, sym_identifier, - ACTIONS(2944), 2, + ACTIONS(2935), 2, anon_sym_LPAREN2, anon_sym_STAR, - STATE(1039), 7, + ACTIONS(37), 3, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___init, + STATE(975), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -111215,7 +114324,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(49), 9, + ACTIONS(51), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -111225,7 +114334,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(47), 10, + ACTIONS(49), 10, anon_sym_extern, anon_sym_static, anon_sym_auto, @@ -111236,30 +114345,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [43150] = 7, + [43327] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3040), 1, + ACTIONS(3108), 1, anon_sym_LPAREN2, - STATE(1085), 1, + STATE(1033), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(1978), 2, + ACTIONS(1981), 2, anon_sym_STAR, anon_sym_LBRACK_LBRACK, - ACTIONS(3162), 2, + ACTIONS(3272), 2, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(1980), 4, + ACTIONS(1983), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(1962), 26, + ACTIONS(1965), 30, 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_LBRACK, @@ -111281,27 +114394,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_identifier, - [43202] = 11, + [43383] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(39), 1, + ACTIONS(41), 1, anon_sym___declspec, - ACTIONS(1301), 1, + ACTIONS(1312), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3165), 1, + ACTIONS(3275), 1, anon_sym_SEMI, + ACTIONS(33), 2, + anon_sym___attribute__, + anon_sym___must_hold, ACTIONS(35), 2, anon_sym___scanf, anon_sym___printf, - ACTIONS(2942), 2, + ACTIONS(2933), 2, anon_sym___based, sym_identifier, - ACTIONS(2944), 2, + ACTIONS(2935), 2, anon_sym_LPAREN2, anon_sym_STAR, - STATE(1039), 7, + ACTIONS(37), 3, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___init, + STATE(975), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -111309,7 +114427,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(49), 9, + ACTIONS(51), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -111319,7 +114437,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(47), 10, + ACTIONS(49), 10, anon_sym_extern, anon_sym_static, anon_sym_auto, @@ -111330,75 +114448,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [43262] = 3, + [43449] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1345), 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(1347), 19, + ACTIONS(3290), 1, + anon_sym_LBRACE, + ACTIONS(3292), 1, + anon_sym_COLON, + STATE(1056), 1, + sym_attribute_specifier, + STATE(1168), 1, + sym_enumerator_list, + ACTIONS(3281), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(3284), 2, + anon_sym___scanf, + anon_sym___printf, + ACTIONS(3287), 3, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___init, + ACTIONS(3279), 6, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, anon_sym_STAR, - anon_sym_AMP, anon_sym_SEMI, - anon_sym_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, - [43306] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3170), 1, - anon_sym_LPAREN2, - ACTIONS(3174), 1, - anon_sym_LBRACK, - STATE(1085), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(1978), 2, - anon_sym_COMMA, - anon_sym_STAR, - ACTIONS(3167), 2, - anon_sym_RPAREN, anon_sym_LBRACK_LBRACK, - ACTIONS(1980), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(1962), 25, + ACTIONS(3277), 23, anon_sym___extension__, anon_sym_extern, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, anon_sym___declspec, anon_sym___based, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -111417,35 +114500,166 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_identifier, - [43360] = 11, + [43511] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(39), 1, - anon_sym___declspec, - ACTIONS(1301), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3177), 1, - anon_sym_SEMI, - ACTIONS(35), 2, - anon_sym___scanf, - anon_sym___printf, - ACTIONS(2942), 2, - anon_sym___based, - sym_identifier, - ACTIONS(2944), 2, + ACTIONS(2564), 1, + anon_sym_LBRACK, + ACTIONS(2568), 1, + anon_sym_DASH_GT, + ACTIONS(3032), 1, anon_sym_LPAREN2, + ACTIONS(3294), 1, + anon_sym_DOT, + STATE(821), 1, + sym_argument_list, + ACTIONS(2592), 13, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, - STATE(1039), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(2594), 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, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + 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, + [43568] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2558), 1, + anon_sym_EQ, + ACTIONS(2564), 1, + anon_sym_LBRACK, + ACTIONS(2568), 1, + anon_sym_DASH_GT, + ACTIONS(3032), 1, + anon_sym_LPAREN2, + ACTIONS(3294), 1, + anon_sym_DOT, + ACTIONS(3300), 1, + anon_sym_AMP_AMP, + ACTIONS(3302), 1, + anon_sym_PIPE, + ACTIONS(3304), 1, + anon_sym_CARET, + ACTIONS(3306), 1, + anon_sym_AMP, + STATE(821), 1, + sym_argument_list, + ACTIONS(2566), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3296), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3308), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3310), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3312), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3314), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3298), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2560), 14, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [43647] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2041), 1, + anon_sym_LPAREN2, + ACTIONS(2043), 1, + anon_sym_STAR, + ACTIONS(2045), 1, + anon_sym___based, + ACTIONS(3316), 1, + sym_identifier, + ACTIONS(3324), 1, + anon_sym_LBRACK, + STATE(1331), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1550), 1, + sym__declarator, + STATE(1686), 1, + sym__abstract_declarator, + STATE(1704), 1, + sym_parameter_list, + STATE(2089), 1, + sym_ms_based_modifier, + ACTIONS(3318), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(3322), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(1205), 2, sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(49), 9, + aux_sym__type_definition_type_repeat1, + STATE(1211), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(3320), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(1701), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + STATE(1616), 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, @@ -111455,41 +114669,308 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(47), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - [43420] = 9, + [43726] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(3183), 1, - anon_sym___attribute__, - ACTIONS(3189), 1, + ACTIONS(2564), 1, + anon_sym_LBRACK, + ACTIONS(2568), 1, + anon_sym_DASH_GT, + ACTIONS(3032), 1, + anon_sym_LPAREN2, + ACTIONS(3294), 1, + anon_sym_DOT, + ACTIONS(3304), 1, + anon_sym_CARET, + ACTIONS(3306), 1, + anon_sym_AMP, + STATE(821), 1, + sym_argument_list, + ACTIONS(2558), 2, + anon_sym_PIPE, + anon_sym_EQ, + ACTIONS(2566), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3296), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3308), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3310), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3312), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3314), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3298), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2560), 15, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [43801] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2564), 1, + anon_sym_LBRACK, + ACTIONS(2568), 1, + anon_sym_DASH_GT, + ACTIONS(3032), 1, + anon_sym_LPAREN2, + ACTIONS(3294), 1, + anon_sym_DOT, + STATE(821), 1, + sym_argument_list, + ACTIONS(2566), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3296), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3308), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3310), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3312), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3314), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3298), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2558), 4, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ, + ACTIONS(2560), 15, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [43872] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2564), 1, + anon_sym_LBRACK, + ACTIONS(2568), 1, + anon_sym_DASH_GT, + ACTIONS(3032), 1, + anon_sym_LPAREN2, + ACTIONS(3294), 1, + anon_sym_DOT, + STATE(821), 1, + sym_argument_list, + ACTIONS(2566), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2576), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(2578), 19, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [43931] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2558), 1, + anon_sym_EQ, + ACTIONS(2564), 1, + anon_sym_LBRACK, + ACTIONS(2568), 1, + anon_sym_DASH_GT, + ACTIONS(3032), 1, + anon_sym_LPAREN2, + ACTIONS(3294), 1, + anon_sym_DOT, + ACTIONS(3302), 1, + anon_sym_PIPE, + ACTIONS(3304), 1, + anon_sym_CARET, + ACTIONS(3306), 1, + anon_sym_AMP, + STATE(821), 1, + sym_argument_list, + ACTIONS(2566), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3296), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3308), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3310), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3312), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3314), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3298), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2560), 15, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [44008] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2564), 1, + anon_sym_LBRACK, + ACTIONS(2568), 1, + anon_sym_DASH_GT, + ACTIONS(3032), 1, + anon_sym_LPAREN2, + ACTIONS(3294), 1, + anon_sym_DOT, + STATE(821), 1, + sym_argument_list, + ACTIONS(2566), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3296), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3298), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2558), 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(2560), 19, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [44071] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3290), 1, anon_sym_LBRACE, - ACTIONS(3191), 1, - anon_sym_COLON, - STATE(1114), 1, + STATE(1046), 1, sym_attribute_specifier, - STATE(1161), 1, + STATE(1169), 1, sym_enumerator_list, - ACTIONS(3186), 2, + ACTIONS(3330), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(3333), 2, anon_sym___scanf, anon_sym___printf, - ACTIONS(3181), 6, + ACTIONS(3336), 3, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___init, + ACTIONS(3328), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(3179), 23, + ACTIONS(3326), 23, anon_sym___extension__, anon_sym_extern, anon_sym___declspec, @@ -111513,259 +114994,697 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_identifier, - [43476] = 11, + [44130] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(39), 1, - anon_sym___declspec, - ACTIONS(1301), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3193), 1, - anon_sym_SEMI, - ACTIONS(35), 2, - anon_sym___scanf, - anon_sym___printf, - ACTIONS(2942), 2, - anon_sym___based, - sym_identifier, - ACTIONS(2944), 2, + ACTIONS(2564), 1, + anon_sym_LBRACK, + ACTIONS(2568), 1, + anon_sym_DASH_GT, + ACTIONS(3032), 1, anon_sym_LPAREN2, + ACTIONS(3294), 1, + anon_sym_DOT, + STATE(821), 1, + sym_argument_list, + ACTIONS(2566), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2558), 13, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, - STATE(1039), 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(49), 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(47), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - [43536] = 16, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(2560), 19, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [44189] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2092), 1, - anon_sym___based, - ACTIONS(3195), 1, - sym_identifier, - ACTIONS(3197), 1, + ACTIONS(2564), 1, + anon_sym_LBRACK, + ACTIONS(2568), 1, + anon_sym_DASH_GT, + ACTIONS(3032), 1, anon_sym_LPAREN2, - ACTIONS(3199), 1, + ACTIONS(3294), 1, + anon_sym_DOT, + STATE(821), 1, + sym_argument_list, + ACTIONS(2566), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2641), 13, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, - ACTIONS(3203), 1, - sym_primitive_type, - STATE(1315), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1526), 1, - sym__type_declarator, - STATE(2125), 1, - sym_ms_based_modifier, - ACTIONS(2984), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(1130), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(1270), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(2982), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(3201), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1566), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(49), 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, - [43605] = 16, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(2643), 19, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [44248] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2092), 1, - anon_sym___based, - ACTIONS(3195), 1, - sym_identifier, - ACTIONS(3197), 1, + ACTIONS(2564), 1, + anon_sym_LBRACK, + ACTIONS(2568), 1, + anon_sym_DASH_GT, + ACTIONS(3032), 1, anon_sym_LPAREN2, - ACTIONS(3199), 1, + ACTIONS(3294), 1, + anon_sym_DOT, + STATE(821), 1, + sym_argument_list, + ACTIONS(2566), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3296), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3314), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3298), 3, anon_sym_STAR, - ACTIONS(3203), 1, - sym_primitive_type, - STATE(1315), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1527), 1, - sym__type_declarator, - STATE(2125), 1, - sym_ms_based_modifier, - ACTIONS(2984), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(1131), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(1301), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(2982), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(3201), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1566), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(49), 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, - [43674] = 16, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2558), 6, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_EQ, + ACTIONS(2560), 19, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [44313] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2092), 1, - anon_sym___based, - ACTIONS(3195), 1, - sym_identifier, - ACTIONS(3197), 1, + ACTIONS(2564), 1, + anon_sym_LBRACK, + ACTIONS(2568), 1, + anon_sym_DASH_GT, + ACTIONS(3032), 1, anon_sym_LPAREN2, - ACTIONS(3199), 1, + ACTIONS(3294), 1, + anon_sym_DOT, + STATE(821), 1, + sym_argument_list, + ACTIONS(2566), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2596), 13, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, - ACTIONS(3203), 1, - sym_primitive_type, - STATE(1315), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1523), 1, - sym__type_declarator, - STATE(2125), 1, - sym_ms_based_modifier, - ACTIONS(2984), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(1278), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(1306), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - ACTIONS(2982), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(3201), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1566), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(49), 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, - [43743] = 16, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(2598), 19, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [44372] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2564), 1, + anon_sym_LBRACK, + ACTIONS(2568), 1, + anon_sym_DASH_GT, + ACTIONS(3032), 1, + anon_sym_LPAREN2, + ACTIONS(3294), 1, + anon_sym_DOT, + STATE(821), 1, + sym_argument_list, + ACTIONS(2566), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2584), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(2586), 19, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [44431] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2564), 1, + anon_sym_LBRACK, + ACTIONS(2568), 1, + anon_sym_DASH_GT, + ACTIONS(3032), 1, + anon_sym_LPAREN2, + ACTIONS(3294), 1, + anon_sym_DOT, + ACTIONS(3306), 1, + anon_sym_AMP, + STATE(821), 1, + sym_argument_list, + ACTIONS(2566), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3296), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3308), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3310), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3312), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3314), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2558), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_EQ, + ACTIONS(3298), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2560), 15, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [44504] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2564), 1, + anon_sym_LBRACK, + ACTIONS(2568), 1, + anon_sym_DASH_GT, + ACTIONS(2724), 1, + anon_sym_EQ, + ACTIONS(3032), 1, + anon_sym_LPAREN2, + ACTIONS(3294), 1, + anon_sym_DOT, + ACTIONS(3300), 1, + anon_sym_AMP_AMP, + ACTIONS(3302), 1, + anon_sym_PIPE, + ACTIONS(3304), 1, + anon_sym_CARET, + ACTIONS(3306), 1, + anon_sym_AMP, + ACTIONS(3339), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3341), 1, + anon_sym_QMARK, + STATE(821), 1, + sym_argument_list, + ACTIONS(2566), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3296), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3308), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3310), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3312), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3314), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3298), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2722), 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, + [44587] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2564), 1, + anon_sym_LBRACK, + ACTIONS(2568), 1, + anon_sym_DASH_GT, + ACTIONS(3032), 1, + anon_sym_LPAREN2, + ACTIONS(3294), 1, + anon_sym_DOT, + STATE(821), 1, + sym_argument_list, + ACTIONS(2566), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3296), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3310), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3312), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3314), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3298), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2558), 4, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ, + ACTIONS(2560), 17, + 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, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [44656] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2564), 1, + anon_sym_LBRACK, + ACTIONS(2568), 1, + anon_sym_DASH_GT, + ACTIONS(2710), 1, + anon_sym_EQ, + ACTIONS(3032), 1, + anon_sym_LPAREN2, + ACTIONS(3294), 1, + anon_sym_DOT, + ACTIONS(3300), 1, + anon_sym_AMP_AMP, + ACTIONS(3302), 1, + anon_sym_PIPE, + ACTIONS(3304), 1, + anon_sym_CARET, + ACTIONS(3306), 1, + anon_sym_AMP, + ACTIONS(3339), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3341), 1, + anon_sym_QMARK, + STATE(821), 1, + sym_argument_list, + ACTIONS(2566), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3296), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3308), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3310), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3312), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3314), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3298), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2698), 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, + [44739] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2564), 1, + anon_sym_LBRACK, + ACTIONS(2568), 1, + anon_sym_DASH_GT, + ACTIONS(3032), 1, + anon_sym_LPAREN2, + ACTIONS(3294), 1, + anon_sym_DOT, + STATE(821), 1, + sym_argument_list, + ACTIONS(2566), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3298), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2558), 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(2560), 19, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [44800] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2564), 1, + anon_sym_LBRACK, + ACTIONS(2568), 1, + anon_sym_DASH_GT, + ACTIONS(2720), 1, + anon_sym_EQ, + ACTIONS(3032), 1, + anon_sym_LPAREN2, + ACTIONS(3294), 1, + anon_sym_DOT, + ACTIONS(3300), 1, + anon_sym_AMP_AMP, + ACTIONS(3302), 1, + anon_sym_PIPE, + ACTIONS(3304), 1, + anon_sym_CARET, + ACTIONS(3306), 1, + anon_sym_AMP, + ACTIONS(3339), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3341), 1, + anon_sym_QMARK, + STATE(821), 1, + sym_argument_list, + ACTIONS(2566), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3296), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3308), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3310), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3312), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3314), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3298), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2718), 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, + [44883] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2562), 1, + anon_sym_LPAREN2, + ACTIONS(2564), 1, + anon_sym_LBRACK, + ACTIONS(3347), 1, + anon_sym_SLASH, + ACTIONS(3349), 1, + anon_sym_AMP_AMP, + ACTIONS(3351), 1, + anon_sym_PIPE, + ACTIONS(3353), 1, + anon_sym_CARET, + ACTIONS(3355), 1, + anon_sym_AMP, + STATE(821), 1, + sym_argument_list, + ACTIONS(2566), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2568), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3343), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3345), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3357), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3359), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3361), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3363), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2560), 14, + 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, + [44959] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2092), 1, - anon_sym___based, - ACTIONS(3195), 1, - sym_identifier, - ACTIONS(3197), 1, - anon_sym_LPAREN2, - ACTIONS(3199), 1, - anon_sym_STAR, - ACTIONS(3203), 1, - sym_primitive_type, - STATE(1315), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1526), 1, - sym__type_declarator, - STATE(2125), 1, - sym_ms_based_modifier, - ACTIONS(2984), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(1270), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(1306), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - ACTIONS(2982), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(3201), 4, + ACTIONS(2833), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3365), 1, + anon_sym_typedef, + ACTIONS(2831), 36, + 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, - STATE(1566), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(49), 9, - anon_sym___extension__, + anon_sym_static, + anon_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, @@ -111774,33 +115693,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [43812] = 8, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [45007] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3189), 1, - anon_sym_LBRACE, - ACTIONS(3209), 1, - anon_sym___attribute__, - STATE(1089), 1, - sym_attribute_specifier, - STATE(1165), 1, - sym_enumerator_list, - ACTIONS(3212), 2, - anon_sym___scanf, - anon_sym___printf, - ACTIONS(3207), 6, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2562), 1, anon_sym_LPAREN2, + ACTIONS(2564), 1, + anon_sym_LBRACK, + ACTIONS(3347), 1, + anon_sym_SLASH, + ACTIONS(3349), 1, + anon_sym_AMP_AMP, + ACTIONS(3351), 1, + anon_sym_PIPE, + ACTIONS(3353), 1, + anon_sym_CARET, + ACTIONS(3355), 1, + anon_sym_AMP, + ACTIONS(3367), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3369), 1, + anon_sym_QMARK, + STATE(821), 1, + sym_argument_list, + ACTIONS(2566), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2568), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3343), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3345), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3357), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3359), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3361), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3363), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2718), 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, + [45087] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2833), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3205), 23, + ACTIONS(3371), 1, + anon_sym_typedef, + ACTIONS(2831), 36, 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_LBRACK, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -111818,189 +115797,168 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [43865] = 17, + [45135] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2544), 1, - anon_sym_PIPE, - ACTIONS(2548), 1, + ACTIONS(2562), 1, anon_sym_LPAREN2, - ACTIONS(2550), 1, + ACTIONS(2564), 1, anon_sym_LBRACK, - ACTIONS(3219), 1, + ACTIONS(3347), 1, anon_sym_SLASH, - ACTIONS(3221), 1, + ACTIONS(3349), 1, + anon_sym_AMP_AMP, + ACTIONS(3351), 1, + anon_sym_PIPE, + ACTIONS(3353), 1, anon_sym_CARET, - ACTIONS(3223), 1, + ACTIONS(3355), 1, anon_sym_AMP, - STATE(791), 1, + ACTIONS(3367), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3369), 1, + anon_sym_QMARK, + STATE(821), 1, sym_argument_list, - ACTIONS(2552), 2, + ACTIONS(2566), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2554), 2, + ACTIONS(2568), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3215), 2, + ACTIONS(3343), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3217), 2, + ACTIONS(3345), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3225), 2, + ACTIONS(3357), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3227), 2, + ACTIONS(3359), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3229), 2, + ACTIONS(3361), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3231), 2, + ACTIONS(3363), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2546), 11, + ACTIONS(2722), 12, 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, - [43935] = 14, + [45215] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2548), 1, + ACTIONS(2558), 1, + anon_sym_PIPE, + ACTIONS(2562), 1, anon_sym_LPAREN2, - ACTIONS(2550), 1, + ACTIONS(2564), 1, anon_sym_LBRACK, - ACTIONS(3219), 1, + ACTIONS(3347), 1, anon_sym_SLASH, - STATE(791), 1, - sym_argument_list, - ACTIONS(2544), 2, - anon_sym_PIPE, + ACTIONS(3353), 1, + anon_sym_CARET, + ACTIONS(3355), 1, anon_sym_AMP, - ACTIONS(2552), 2, + STATE(821), 1, + sym_argument_list, + ACTIONS(2566), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2554), 2, + ACTIONS(2568), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3215), 2, + ACTIONS(3343), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3217), 2, + ACTIONS(3345), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3227), 2, + ACTIONS(3357), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3359), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3229), 2, + ACTIONS(3361), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3231), 2, + ACTIONS(3363), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2546), 14, + ACTIONS(2560), 15, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_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, - [43999] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1347), 2, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(1345), 32, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, - 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, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [44041] = 16, + [45289] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(2544), 1, + ACTIONS(2558), 1, anon_sym_PIPE, - ACTIONS(2548), 1, + ACTIONS(2562), 1, anon_sym_LPAREN2, - ACTIONS(2550), 1, + ACTIONS(2564), 1, anon_sym_LBRACK, - ACTIONS(3219), 1, + ACTIONS(3347), 1, anon_sym_SLASH, - ACTIONS(3223), 1, + ACTIONS(3355), 1, anon_sym_AMP, - STATE(791), 1, + STATE(821), 1, sym_argument_list, - ACTIONS(2552), 2, + ACTIONS(2566), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2554), 2, + ACTIONS(2568), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3215), 2, + ACTIONS(3343), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3217), 2, + ACTIONS(3345), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3225), 2, + ACTIONS(3357), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3227), 2, + ACTIONS(3359), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3229), 2, + ACTIONS(3361), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3231), 2, + ACTIONS(3363), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2546), 12, + ACTIONS(2560), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, @@ -112010,115 +115968,237 @@ static const uint16_t ts_small_parse_table[] = { 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, - [44109] = 17, + [45361] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2548), 1, + ACTIONS(2562), 1, anon_sym_LPAREN2, - ACTIONS(2550), 1, + ACTIONS(2564), 1, anon_sym_LBRACK, - ACTIONS(3219), 1, + ACTIONS(3347), 1, anon_sym_SLASH, - ACTIONS(3221), 1, + ACTIONS(3349), 1, + anon_sym_AMP_AMP, + ACTIONS(3351), 1, + anon_sym_PIPE, + ACTIONS(3353), 1, anon_sym_CARET, - ACTIONS(3223), 1, + ACTIONS(3355), 1, anon_sym_AMP, - ACTIONS(3233), 1, - anon_sym_PIPE, - STATE(791), 1, + ACTIONS(3367), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3369), 1, + anon_sym_QMARK, + STATE(821), 1, sym_argument_list, - ACTIONS(2552), 2, + ACTIONS(2566), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2554), 2, + ACTIONS(2568), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3215), 2, + ACTIONS(3343), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3217), 2, + ACTIONS(3345), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3225), 2, + ACTIONS(3357), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3227), 2, + ACTIONS(3359), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3361), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3363), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2698), 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, + [45441] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2881), 1, + anon_sym_EQ, + ACTIONS(2883), 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(1973), 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, - ACTIONS(3229), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(1967), 14, + anon_sym_DOT_DOT_DOT, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3231), 2, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [45491] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2562), 1, + anon_sym_LPAREN2, + ACTIONS(2564), 1, + anon_sym_LBRACK, + ACTIONS(3347), 1, + anon_sym_SLASH, + STATE(821), 1, + sym_argument_list, + ACTIONS(2566), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2568), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3343), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3345), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3363), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2546), 11, + ACTIONS(2558), 4, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2560), 20, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_SEMI, anon_sym___attribute__, anon_sym___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, - [44179] = 4, + [45555] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2717), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3235), 1, - anon_sym_typedef, - ACTIONS(2715), 32, - anon_sym___extension__, - anon_sym_extern, + ACTIONS(2562), 1, + anon_sym_LPAREN2, + ACTIONS(2564), 1, + anon_sym_LBRACK, + ACTIONS(3347), 1, + anon_sym_SLASH, + STATE(821), 1, + sym_argument_list, + ACTIONS(2566), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2568), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3345), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2558), 6, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2560), 22, + 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, anon_sym___printf, - 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, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [44223] = 4, + 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, + [45615] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2717), 1, + ACTIONS(2833), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3237), 1, + ACTIONS(3373), 1, anon_sym_typedef, - ACTIONS(2715), 32, + ACTIONS(2831), 36, 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, @@ -112146,19 +116226,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [44267] = 4, + [45663] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2717), 1, + ACTIONS(3377), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(3239), 1, - anon_sym_typedef, - ACTIONS(2715), 32, + anon_sym_LBRACE, + ACTIONS(3375), 36, 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, @@ -112186,130 +116269,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [44311] = 20, + [45709] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2548), 1, + ACTIONS(2562), 1, anon_sym_LPAREN2, - ACTIONS(2550), 1, + ACTIONS(2564), 1, anon_sym_LBRACK, - ACTIONS(3219), 1, + ACTIONS(3347), 1, anon_sym_SLASH, - ACTIONS(3221), 1, - anon_sym_CARET, - ACTIONS(3223), 1, - anon_sym_AMP, - ACTIONS(3233), 1, - anon_sym_PIPE, - ACTIONS(3241), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3243), 1, - anon_sym_AMP_AMP, - ACTIONS(3245), 1, - anon_sym_QMARK, - STATE(791), 1, + STATE(821), 1, sym_argument_list, - ACTIONS(2552), 2, + ACTIONS(2558), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(2566), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2554), 2, + ACTIONS(2568), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3215), 2, + ACTIONS(3343), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3217), 2, + ACTIONS(3345), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3225), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3227), 2, + ACTIONS(3359), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3229), 2, + ACTIONS(3361), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3231), 2, + ACTIONS(3363), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2707), 8, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, - anon_sym_RBRACE, - anon_sym_COLON, - [44387] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2717), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3247), 1, - anon_sym_typedef, - ACTIONS(2715), 32, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, - 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, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [44431] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2548), 1, - anon_sym_LPAREN2, - ACTIONS(2550), 1, - anon_sym_LBRACK, - ACTIONS(3219), 1, - anon_sym_SLASH, - STATE(791), 1, - sym_argument_list, - ACTIONS(2552), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2554), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3217), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2544), 6, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2546), 18, + ACTIONS(2560), 18, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, @@ -112317,139 +116312,233 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - 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, - [44487] = 18, + [45777] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2548), 1, + ACTIONS(2562), 1, anon_sym_LPAREN2, - ACTIONS(2550), 1, + ACTIONS(2564), 1, anon_sym_LBRACK, - ACTIONS(3219), 1, + ACTIONS(3347), 1, anon_sym_SLASH, - ACTIONS(3221), 1, - anon_sym_CARET, - ACTIONS(3223), 1, - anon_sym_AMP, - ACTIONS(3233), 1, - anon_sym_PIPE, - ACTIONS(3243), 1, - anon_sym_AMP_AMP, - STATE(791), 1, + STATE(821), 1, sym_argument_list, - ACTIONS(2552), 2, + ACTIONS(2558), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(2566), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2554), 2, + ACTIONS(2568), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3215), 2, + ACTIONS(3343), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3217), 2, + ACTIONS(3345), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3225), 2, + ACTIONS(3357), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3227), 2, + ACTIONS(3359), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3229), 2, + ACTIONS(3361), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3231), 2, + ACTIONS(3363), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2546), 10, + ACTIONS(2560), 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, - [44559] = 20, + [45847] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2548), 1, + ACTIONS(2562), 1, anon_sym_LPAREN2, - ACTIONS(2550), 1, + ACTIONS(2564), 1, anon_sym_LBRACK, - ACTIONS(3219), 1, + ACTIONS(3347), 1, anon_sym_SLASH, - ACTIONS(3221), 1, + ACTIONS(3351), 1, + anon_sym_PIPE, + ACTIONS(3353), 1, anon_sym_CARET, - ACTIONS(3223), 1, + ACTIONS(3355), 1, anon_sym_AMP, - ACTIONS(3233), 1, - anon_sym_PIPE, - ACTIONS(3241), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3243), 1, - anon_sym_AMP_AMP, - ACTIONS(3245), 1, - anon_sym_QMARK, - STATE(791), 1, + STATE(821), 1, sym_argument_list, - ACTIONS(2552), 2, + ACTIONS(2566), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2554), 2, + ACTIONS(2568), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3215), 2, + ACTIONS(3343), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3217), 2, + ACTIONS(3345), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3225), 2, + ACTIONS(3357), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3227), 2, + ACTIONS(3359), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3229), 2, + ACTIONS(3361), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3231), 2, + ACTIONS(3363), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2719), 8, + ACTIONS(2560), 15, 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, - [44635] = 3, + anon_sym_QMARK, + [45921] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2833), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3379), 1, + anon_sym_typedef, + ACTIONS(2831), 36, + 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, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [45969] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2833), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3381), 1, + anon_sym_typedef, + ACTIONS(2831), 36, + 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, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [46017] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3251), 2, + ACTIONS(1374), 2, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - ACTIONS(3249), 32, + ACTIONS(1372), 36, 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, @@ -112477,83 +116566,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [44677] = 12, + [46063] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2548), 1, - anon_sym_LPAREN2, - ACTIONS(2550), 1, - anon_sym_LBRACK, - ACTIONS(3219), 1, - anon_sym_SLASH, - STATE(791), 1, - sym_argument_list, - ACTIONS(2552), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2554), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3215), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3217), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3231), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2544), 4, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2546), 16, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, + ACTIONS(3385), 2, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + ACTIONS(3383), 36, + anon_sym___extension__, + anon_sym_extern, anon_sym___attribute__, anon_sym___scanf, anon_sym___printf, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_QMARK, - [44737] = 11, + 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, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [46109] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2548), 1, + ACTIONS(2562), 1, anon_sym_LPAREN2, - ACTIONS(2550), 1, + ACTIONS(2564), 1, anon_sym_LBRACK, - ACTIONS(3219), 1, + ACTIONS(3347), 1, anon_sym_SLASH, - STATE(791), 1, + STATE(821), 1, sym_argument_list, - ACTIONS(2552), 2, + ACTIONS(2566), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2554), 2, + ACTIONS(2568), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3215), 2, + ACTIONS(3343), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3217), 2, + ACTIONS(3345), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2544), 4, + ACTIONS(2558), 4, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(2546), 18, + ACTIONS(2560), 22, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, @@ -112569,21 +116653,29 @@ static const uint16_t ts_small_parse_table[] = { 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, - [44795] = 3, + [46171] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3255), 2, + ACTIONS(3387), 2, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - ACTIONS(3253), 32, + ACTIONS(2841), 36, 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, @@ -112611,18 +116703,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [44837] = 3, + [46217] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3257), 2, + STATE(1067), 1, + sym_attribute_specifier, + ACTIONS(3393), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(3396), 2, + anon_sym___scanf, + anon_sym___printf, + ACTIONS(3399), 3, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___init, + ACTIONS(3391), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(2875), 32, + ACTIONS(3389), 23, + anon_sym___extension__, + anon_sym_extern, + 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, + sym_identifier, + [46270] = 7, + ACTIONS(3), 1, + sym_comment, + STATE(1031), 1, + sym_attribute_specifier, + ACTIONS(3406), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(3409), 2, + anon_sym___scanf, + anon_sym___printf, + ACTIONS(3412), 3, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___init, + ACTIONS(3404), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(3402), 23, + anon_sym___extension__, + anon_sym_extern, + 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, + sym_identifier, + [46323] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3417), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3415), 36, 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, @@ -112650,140 +116837,354 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [44879] = 15, + [46368] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2548), 1, + STATE(1053), 1, + sym_attribute_specifier, + ACTIONS(3423), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(3426), 2, + anon_sym___scanf, + anon_sym___printf, + ACTIONS(3429), 3, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___init, + ACTIONS(3421), 6, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(2550), 1, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(3419), 23, + anon_sym___extension__, + anon_sym_extern, + anon_sym___declspec, + anon_sym___based, anon_sym_LBRACK, - ACTIONS(3219), 1, - anon_sym_SLASH, - STATE(791), 1, - sym_argument_list, - ACTIONS(2544), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(2552), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2554), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3215), 2, + anon_sym_static, + anon_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, + sym_identifier, + [46421] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1372), 17, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3217), 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(1374), 19, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3225), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3227), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3229), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3231), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2546), 12, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, + anon_sym_AMP, anon_sym_SEMI, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_QMARK, - [44945] = 20, + 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, + [46465] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2045), 1, + anon_sym___based, + ACTIONS(3432), 1, + sym_identifier, + ACTIONS(3434), 1, + anon_sym_LPAREN2, + ACTIONS(3436), 1, + anon_sym_STAR, + ACTIONS(3440), 1, + sym_primitive_type, + STATE(1331), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1503), 1, + sym__type_declarator, + STATE(2030), 1, + sym_ms_based_modifier, + ACTIONS(3322), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(1304), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(1327), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(3320), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(3438), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1558), 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, + [46534] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2045), 1, + anon_sym___based, + ACTIONS(3432), 1, + sym_identifier, + ACTIONS(3434), 1, + anon_sym_LPAREN2, + ACTIONS(3436), 1, + anon_sym_STAR, + ACTIONS(3440), 1, + sym_primitive_type, + STATE(1331), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1504), 1, + sym__type_declarator, + STATE(2030), 1, + sym_ms_based_modifier, + ACTIONS(3322), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(1173), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(1326), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3320), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(3438), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1558), 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, + [46603] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2045), 1, + anon_sym___based, + ACTIONS(3432), 1, + sym_identifier, + ACTIONS(3434), 1, + anon_sym_LPAREN2, + ACTIONS(3436), 1, + anon_sym_STAR, + ACTIONS(3440), 1, + sym_primitive_type, + STATE(1331), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1503), 1, + sym__type_declarator, + STATE(2030), 1, + sym_ms_based_modifier, + ACTIONS(3322), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(1177), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(1304), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3320), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(3438), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1558), 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, + [46672] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2548), 1, + ACTIONS(2562), 1, anon_sym_LPAREN2, - ACTIONS(2550), 1, + ACTIONS(2564), 1, anon_sym_LBRACK, - ACTIONS(3219), 1, + ACTIONS(3347), 1, anon_sym_SLASH, - ACTIONS(3221), 1, + ACTIONS(3349), 1, + anon_sym_AMP_AMP, + ACTIONS(3351), 1, + anon_sym_PIPE, + ACTIONS(3353), 1, anon_sym_CARET, - ACTIONS(3223), 1, + ACTIONS(3355), 1, anon_sym_AMP, - ACTIONS(3233), 1, - anon_sym_PIPE, - ACTIONS(3241), 1, + ACTIONS(3367), 1, anon_sym_PIPE_PIPE, - ACTIONS(3243), 1, - anon_sym_AMP_AMP, - ACTIONS(3245), 1, + ACTIONS(3369), 1, anon_sym_QMARK, - STATE(791), 1, + STATE(821), 1, sym_argument_list, - ACTIONS(2552), 2, + ACTIONS(2566), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2554), 2, + ACTIONS(2568), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3215), 2, + ACTIONS(3343), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3217), 2, + ACTIONS(3345), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3225), 2, + ACTIONS(3357), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3227), 2, + ACTIONS(3359), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3229), 2, + ACTIONS(3361), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3231), 2, + ACTIONS(3363), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2699), 8, + ACTIONS(3442), 9, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_SEMI, anon_sym___attribute__, anon_sym___scanf, anon_sym___printf, - anon_sym_RBRACE, - anon_sym_COLON, - [45021] = 4, + anon_sym___read_mostly, + anon_sym___must_hold, + anon_sym___ro_after_init, + anon_sym___init, + [46749] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(2717), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3259), 1, - anon_sym_typedef, - ACTIONS(2715), 32, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, - anon_sym___declspec, + ACTIONS(2045), 1, + anon_sym___based, + ACTIONS(3432), 1, + sym_identifier, + ACTIONS(3434), 1, + anon_sym_LPAREN2, + ACTIONS(3436), 1, + anon_sym_STAR, + ACTIONS(3440), 1, + sym_primitive_type, + STATE(1331), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1507), 1, + sym__type_declarator, + STATE(2030), 1, + sym_ms_based_modifier, + ACTIONS(3322), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(1306), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(1327), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(3320), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(3438), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, + STATE(1558), 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, @@ -112792,104 +117193,140 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [45065] = 21, + [46818] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2548), 1, + ACTIONS(2562), 1, anon_sym_LPAREN2, - ACTIONS(2550), 1, + ACTIONS(2564), 1, anon_sym_LBRACK, - ACTIONS(2709), 1, - aux_sym_preproc_elif_token1, - ACTIONS(3265), 1, + ACTIONS(3448), 1, anon_sym_SLASH, - ACTIONS(3267), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3269), 1, - anon_sym_AMP_AMP, - ACTIONS(3271), 1, - anon_sym_PIPE, - ACTIONS(3273), 1, - anon_sym_CARET, - ACTIONS(3275), 1, - anon_sym_AMP, - ACTIONS(3285), 1, - anon_sym_QMARK, - STATE(791), 1, + STATE(821), 1, sym_argument_list, - ACTIONS(2552), 2, + ACTIONS(2566), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2554), 2, + ACTIONS(2568), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3261), 2, + ACTIONS(3444), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3263), 2, + ACTIONS(3446), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3277), 2, + ACTIONS(3450), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3279), 2, + ACTIONS(3452), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3281), 2, + ACTIONS(3454), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3283), 2, + ACTIONS(3456), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2707), 6, + ACTIONS(2558), 3, + aux_sym_preproc_elif_token1, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(2560), 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, - [45142] = 14, + [46883] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(2548), 1, + ACTIONS(2558), 1, + aux_sym_preproc_elif_token1, + ACTIONS(2562), 1, anon_sym_LPAREN2, - ACTIONS(2550), 1, + ACTIONS(2564), 1, anon_sym_LBRACK, - ACTIONS(3265), 1, + ACTIONS(3448), 1, anon_sym_SLASH, - STATE(791), 1, + ACTIONS(3458), 1, + anon_sym_AMP_AMP, + ACTIONS(3460), 1, + anon_sym_PIPE, + ACTIONS(3462), 1, + anon_sym_CARET, + ACTIONS(3464), 1, + anon_sym_AMP, + STATE(821), 1, sym_argument_list, - ACTIONS(2552), 2, + ACTIONS(2566), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2554), 2, + ACTIONS(2568), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3261), 2, + ACTIONS(3444), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3263), 2, + ACTIONS(3446), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3279), 2, + ACTIONS(3450), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3452), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3281), 2, + ACTIONS(3454), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3283), 2, + ACTIONS(3456), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2544), 3, + ACTIONS(2560), 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, + [46956] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2562), 1, + anon_sym_LPAREN2, + ACTIONS(2564), 1, + anon_sym_LBRACK, + ACTIONS(3448), 1, + anon_sym_SLASH, + STATE(821), 1, + sym_argument_list, + ACTIONS(2566), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2568), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3444), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3446), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2558), 5, aux_sym_preproc_elif_token1, anon_sym_PIPE, anon_sym_AMP, - ACTIONS(2546), 12, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2560), 16, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -112900,97 +117337,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, sym_identifier, - [45205] = 21, + [47013] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2548), 1, + ACTIONS(2562), 1, anon_sym_LPAREN2, - ACTIONS(2550), 1, + ACTIONS(2564), 1, anon_sym_LBRACK, - ACTIONS(2721), 1, + ACTIONS(2720), 1, aux_sym_preproc_elif_token1, - ACTIONS(3265), 1, + ACTIONS(3448), 1, anon_sym_SLASH, - ACTIONS(3267), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3269), 1, + ACTIONS(3458), 1, anon_sym_AMP_AMP, - ACTIONS(3271), 1, + ACTIONS(3460), 1, anon_sym_PIPE, - ACTIONS(3273), 1, + ACTIONS(3462), 1, anon_sym_CARET, - ACTIONS(3275), 1, + ACTIONS(3464), 1, anon_sym_AMP, - ACTIONS(3285), 1, + ACTIONS(3466), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3468), 1, anon_sym_QMARK, - STATE(791), 1, + STATE(821), 1, sym_argument_list, - ACTIONS(2552), 2, + ACTIONS(2566), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2554), 2, + ACTIONS(2568), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3261), 2, + ACTIONS(3444), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3263), 2, + ACTIONS(3446), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3277), 2, + ACTIONS(3450), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3279), 2, + ACTIONS(3452), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3281), 2, + ACTIONS(3454), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3283), 2, + ACTIONS(3456), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2719), 6, + ACTIONS(2718), 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, - [45282] = 12, + [47090] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2548), 1, + ACTIONS(2558), 1, + aux_sym_preproc_elif_token1, + ACTIONS(2562), 1, anon_sym_LPAREN2, - ACTIONS(2550), 1, + ACTIONS(2564), 1, anon_sym_LBRACK, - ACTIONS(3265), 1, + ACTIONS(3448), 1, anon_sym_SLASH, - STATE(791), 1, + ACTIONS(3460), 1, + anon_sym_PIPE, + ACTIONS(3462), 1, + anon_sym_CARET, + ACTIONS(3464), 1, + anon_sym_AMP, + STATE(821), 1, sym_argument_list, - ACTIONS(2552), 2, + ACTIONS(2566), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2554), 2, + ACTIONS(2568), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3261), 2, + ACTIONS(3444), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3263), 2, + ACTIONS(3446), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3283), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2544), 5, - aux_sym_preproc_elif_token1, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(3450), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3452), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2546), 14, + ACTIONS(3454), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3456), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2560), 9, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -112998,257 +117450,219 @@ 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_GT_EQ, - anon_sym_LT_EQ, anon_sym_QMARK, sym_identifier, - [45341] = 16, + [47161] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2548), 1, + ACTIONS(2562), 1, anon_sym_LPAREN2, - ACTIONS(2550), 1, + ACTIONS(2564), 1, anon_sym_LBRACK, - ACTIONS(3265), 1, + ACTIONS(2710), 1, + aux_sym_preproc_elif_token1, + ACTIONS(3448), 1, anon_sym_SLASH, - ACTIONS(3275), 1, + ACTIONS(3458), 1, + anon_sym_AMP_AMP, + ACTIONS(3460), 1, + anon_sym_PIPE, + ACTIONS(3462), 1, + anon_sym_CARET, + ACTIONS(3464), 1, anon_sym_AMP, - STATE(791), 1, + ACTIONS(3466), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3468), 1, + anon_sym_QMARK, + STATE(821), 1, sym_argument_list, - ACTIONS(2544), 2, - aux_sym_preproc_elif_token1, - anon_sym_PIPE, - ACTIONS(2552), 2, + ACTIONS(2566), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2554), 2, + ACTIONS(2568), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3261), 2, + ACTIONS(3444), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3263), 2, + ACTIONS(3446), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3277), 2, + ACTIONS(3450), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3279), 2, + ACTIONS(3452), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3281), 2, + ACTIONS(3454), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3283), 2, + ACTIONS(3456), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2546), 10, + ACTIONS(2698), 6, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_QMARK, sym_identifier, - [45408] = 21, + [47238] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2548), 1, + ACTIONS(2562), 1, anon_sym_LPAREN2, - ACTIONS(2550), 1, + ACTIONS(2564), 1, anon_sym_LBRACK, - ACTIONS(3265), 1, + ACTIONS(3448), 1, anon_sym_SLASH, - ACTIONS(3267), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3269), 1, + ACTIONS(3458), 1, anon_sym_AMP_AMP, - ACTIONS(3271), 1, + ACTIONS(3460), 1, anon_sym_PIPE, - ACTIONS(3273), 1, + ACTIONS(3462), 1, anon_sym_CARET, - ACTIONS(3275), 1, + ACTIONS(3464), 1, anon_sym_AMP, - ACTIONS(3285), 1, + ACTIONS(3466), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3468), 1, anon_sym_QMARK, - ACTIONS(3289), 1, + ACTIONS(3472), 1, aux_sym_preproc_elif_token1, - STATE(791), 1, + STATE(821), 1, sym_argument_list, - ACTIONS(2552), 2, + ACTIONS(2566), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2554), 2, + ACTIONS(2568), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3261), 2, + ACTIONS(3444), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3263), 2, + ACTIONS(3446), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3277), 2, + ACTIONS(3450), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3279), 2, + ACTIONS(3452), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3281), 2, + ACTIONS(3454), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3283), 2, + ACTIONS(3456), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3287), 6, + ACTIONS(3470), 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, - [45485] = 21, + [47315] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2548), 1, + ACTIONS(2562), 1, anon_sym_LPAREN2, - ACTIONS(2550), 1, + ACTIONS(2564), 1, anon_sym_LBRACK, - ACTIONS(2703), 1, + ACTIONS(2724), 1, aux_sym_preproc_elif_token1, - ACTIONS(3265), 1, + ACTIONS(3448), 1, anon_sym_SLASH, - ACTIONS(3267), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3269), 1, + ACTIONS(3458), 1, anon_sym_AMP_AMP, - ACTIONS(3271), 1, + ACTIONS(3460), 1, anon_sym_PIPE, - ACTIONS(3273), 1, + ACTIONS(3462), 1, anon_sym_CARET, - ACTIONS(3275), 1, + ACTIONS(3464), 1, anon_sym_AMP, - ACTIONS(3285), 1, + ACTIONS(3466), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3468), 1, anon_sym_QMARK, - STATE(791), 1, + STATE(821), 1, sym_argument_list, - ACTIONS(2552), 2, + ACTIONS(2566), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2554), 2, + ACTIONS(2568), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3261), 2, + ACTIONS(3444), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3263), 2, + ACTIONS(3446), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3277), 2, + ACTIONS(3450), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3279), 2, + ACTIONS(3452), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3281), 2, + ACTIONS(3454), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3283), 2, + ACTIONS(3456), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2699), 6, + ACTIONS(2722), 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, - [45562] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3295), 1, - anon_sym___attribute__, - STATE(1100), 1, - sym_attribute_specifier, - ACTIONS(3298), 2, - anon_sym___scanf, - anon_sym___printf, - ACTIONS(3293), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - ACTIONS(3291), 23, - anon_sym___extension__, - anon_sym_extern, - 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, - sym_identifier, - [45609] = 15, + [47392] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2548), 1, + ACTIONS(2562), 1, anon_sym_LPAREN2, - ACTIONS(2550), 1, + ACTIONS(2564), 1, anon_sym_LBRACK, - ACTIONS(3265), 1, + ACTIONS(3448), 1, anon_sym_SLASH, - STATE(791), 1, + ACTIONS(3462), 1, + anon_sym_CARET, + ACTIONS(3464), 1, + anon_sym_AMP, + STATE(821), 1, sym_argument_list, - ACTIONS(2552), 2, + ACTIONS(2558), 2, + aux_sym_preproc_elif_token1, + anon_sym_PIPE, + ACTIONS(2566), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2554), 2, + ACTIONS(2568), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3261), 2, + ACTIONS(3444), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3263), 2, + ACTIONS(3446), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3277), 2, + ACTIONS(3450), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3279), 2, + ACTIONS(3452), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3281), 2, + ACTIONS(3454), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3283), 2, + ACTIONS(3456), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2544), 3, - aux_sym_preproc_elif_token1, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(2546), 10, + ACTIONS(2560), 9, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -113256,94 +117670,49 @@ 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, - [45674] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3305), 1, - anon_sym___attribute__, - STATE(1117), 1, - sym_attribute_specifier, - ACTIONS(3308), 2, - anon_sym___scanf, - anon_sym___printf, - ACTIONS(3303), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - ACTIONS(3301), 23, - anon_sym___extension__, - anon_sym_extern, - 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, - sym_identifier, - [45721] = 18, + [47461] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(2544), 1, - aux_sym_preproc_elif_token1, - ACTIONS(2548), 1, + ACTIONS(2562), 1, anon_sym_LPAREN2, - ACTIONS(2550), 1, + ACTIONS(2564), 1, anon_sym_LBRACK, - ACTIONS(3265), 1, + ACTIONS(3448), 1, anon_sym_SLASH, - ACTIONS(3271), 1, - anon_sym_PIPE, - ACTIONS(3273), 1, - anon_sym_CARET, - ACTIONS(3275), 1, + ACTIONS(3464), 1, anon_sym_AMP, - STATE(791), 1, + STATE(821), 1, sym_argument_list, - ACTIONS(2552), 2, + ACTIONS(2558), 2, + aux_sym_preproc_elif_token1, + anon_sym_PIPE, + ACTIONS(2566), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2554), 2, + ACTIONS(2568), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3261), 2, + ACTIONS(3444), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3263), 2, + ACTIONS(3446), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3277), 2, + ACTIONS(3450), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3279), 2, + ACTIONS(3452), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3281), 2, + ACTIONS(3454), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3283), 2, + ACTIONS(3456), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2546), 9, + ACTIONS(2560), 10, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -113351,79 +117720,38 @@ 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, - [45792] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3315), 1, - anon_sym___attribute__, - STATE(1111), 1, - sym_attribute_specifier, - ACTIONS(3318), 2, - anon_sym___scanf, - anon_sym___printf, - ACTIONS(3313), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - ACTIONS(3311), 23, - anon_sym___extension__, - anon_sym_extern, - 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, - sym_identifier, - [45839] = 11, + [47528] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2548), 1, + ACTIONS(2562), 1, anon_sym_LPAREN2, - ACTIONS(2550), 1, + ACTIONS(2564), 1, anon_sym_LBRACK, - ACTIONS(3265), 1, + ACTIONS(3448), 1, anon_sym_SLASH, - STATE(791), 1, + STATE(821), 1, sym_argument_list, - ACTIONS(2552), 2, + ACTIONS(2566), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2554), 2, + ACTIONS(2568), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3261), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3263), 2, + ACTIONS(3446), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2544), 5, + ACTIONS(2558), 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(2546), 16, + ACTIONS(2560), 16, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -113440,89 +117768,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_QMARK, sym_identifier, - [45896] = 19, + [47583] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2544), 1, - aux_sym_preproc_elif_token1, - ACTIONS(2548), 1, + ACTIONS(2562), 1, anon_sym_LPAREN2, - ACTIONS(2550), 1, + ACTIONS(2564), 1, anon_sym_LBRACK, - ACTIONS(3265), 1, + ACTIONS(3448), 1, anon_sym_SLASH, - ACTIONS(3269), 1, - anon_sym_AMP_AMP, - ACTIONS(3271), 1, - anon_sym_PIPE, - ACTIONS(3273), 1, - anon_sym_CARET, - ACTIONS(3275), 1, - anon_sym_AMP, - STATE(791), 1, + STATE(821), 1, sym_argument_list, - ACTIONS(2552), 2, + ACTIONS(2566), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2554), 2, + ACTIONS(2568), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3261), 2, + ACTIONS(3444), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3263), 2, + ACTIONS(3446), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3277), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3279), 2, + ACTIONS(3452), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3281), 2, + ACTIONS(3454), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3283), 2, + ACTIONS(3456), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2546), 8, + ACTIONS(2558), 3, + aux_sym_preproc_elif_token1, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(2560), 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, - [45969] = 10, + [47646] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2548), 1, + ACTIONS(2562), 1, anon_sym_LPAREN2, - ACTIONS(2550), 1, + ACTIONS(2564), 1, anon_sym_LBRACK, - ACTIONS(3265), 1, + ACTIONS(3448), 1, anon_sym_SLASH, - STATE(791), 1, + STATE(821), 1, sym_argument_list, - ACTIONS(2552), 2, + ACTIONS(2566), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2554), 2, + ACTIONS(2568), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3263), 2, + ACTIONS(3444), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3446), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2544), 7, + ACTIONS(3456), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2558), 5, aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(2546), 16, + ACTIONS(2560), 14, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -113535,87 +117862,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_QMARK, sym_identifier, - [46024] = 17, + [47705] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2548), 1, + ACTIONS(3290), 1, + anon_sym_LBRACE, + STATE(1046), 1, + sym_attribute_specifier, + STATE(1214), 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(3328), 6, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(2550), 1, - anon_sym_LBRACK, - ACTIONS(3265), 1, - anon_sym_SLASH, - ACTIONS(3273), 1, - anon_sym_CARET, - ACTIONS(3275), 1, - anon_sym_AMP, - STATE(791), 1, - sym_argument_list, - ACTIONS(2544), 2, - aux_sym_preproc_elif_token1, - anon_sym_PIPE, - ACTIONS(2552), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2554), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3261), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3263), 2, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3277), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3279), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3281), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3283), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2546), 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, + anon_sym_LBRACK, + anon_sym_COLON, + ACTIONS(3326), 16, + 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, + sym_primitive_type, sym_identifier, - [46093] = 3, + [47757] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(3323), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3321), 32, - anon_sym___extension__, - anon_sym_extern, + ACTIONS(3290), 1, + anon_sym_LBRACE, + ACTIONS(3474), 1, + anon_sym_COLON, + STATE(1056), 1, + sym_attribute_specifier, + STATE(1216), 1, + sym_enumerator_list, + ACTIONS(33), 2, anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(35), 2, anon_sym___scanf, anon_sym___printf, - anon_sym___declspec, + ACTIONS(37), 3, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___init, + ACTIONS(3279), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_LBRACK, + ACTIONS(3277), 16, + anon_sym___extension__, + 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, @@ -113625,146 +117950,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [46134] = 18, + [47811] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2805), 1, + ACTIONS(3032), 1, anon_sym_LPAREN2, - ACTIONS(2821), 1, + ACTIONS(3046), 1, anon_sym_LBRACK, - ACTIONS(3329), 1, + ACTIONS(3480), 1, anon_sym_SLASH, - ACTIONS(3331), 1, - anon_sym_AMP_AMP, - ACTIONS(3333), 1, + ACTIONS(3482), 1, anon_sym_PIPE, - ACTIONS(3335), 1, + ACTIONS(3484), 1, anon_sym_CARET, - ACTIONS(3337), 1, + ACTIONS(3486), 1, anon_sym_AMP, - STATE(980), 1, + STATE(1115), 1, sym_argument_list, - ACTIONS(2823), 2, + ACTIONS(3048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2825), 2, + ACTIONS(3050), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3325), 2, + ACTIONS(3476), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3327), 2, + ACTIONS(3478), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3339), 2, + ACTIONS(3488), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3341), 2, + ACTIONS(3490), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3343), 2, + ACTIONS(3492), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3345), 2, + ACTIONS(3494), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2546), 7, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_PIPE_PIPE, - anon_sym_QMARK, - sym_identifier, - [46203] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2805), 1, - anon_sym_LPAREN2, - ACTIONS(2821), 1, - anon_sym_LBRACK, - ACTIONS(3329), 1, - anon_sym_SLASH, - STATE(980), 1, - sym_argument_list, - ACTIONS(2823), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2825), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3327), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2544), 6, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2546), 15, + ACTIONS(2560), 8, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, anon_sym_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, - [46256] = 17, + [47878] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2544), 1, + ACTIONS(2558), 1, anon_sym_PIPE, - ACTIONS(2805), 1, + ACTIONS(3032), 1, anon_sym_LPAREN2, - ACTIONS(2821), 1, + ACTIONS(3046), 1, anon_sym_LBRACK, - ACTIONS(3329), 1, + ACTIONS(3480), 1, anon_sym_SLASH, - ACTIONS(3335), 1, + ACTIONS(3484), 1, anon_sym_CARET, - ACTIONS(3337), 1, + ACTIONS(3486), 1, anon_sym_AMP, - STATE(980), 1, + STATE(1115), 1, sym_argument_list, - ACTIONS(2823), 2, + ACTIONS(3048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2825), 2, + ACTIONS(3050), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3325), 2, + ACTIONS(3476), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3327), 2, + ACTIONS(3478), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3339), 2, + ACTIONS(3488), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3341), 2, + ACTIONS(3490), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3343), 2, + ACTIONS(3492), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3345), 2, + ACTIONS(3494), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2546), 8, + ACTIONS(2560), 8, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -113773,147 +118051,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_QMARK, sym_identifier, - [46323] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2088), 1, - anon_sym_LPAREN2, - ACTIONS(2090), 1, - anon_sym_STAR, - ACTIONS(2092), 1, - anon_sym___based, - ACTIONS(2978), 1, - sym_identifier, - ACTIONS(2986), 1, - anon_sym_LBRACK, - STATE(1495), 1, - sym__declarator, - STATE(1619), 1, - sym__abstract_declarator, - STATE(1698), 1, - sym_parameter_list, - STATE(2118), 1, - sym_ms_based_modifier, - ACTIONS(3347), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(1269), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(1701), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - STATE(1548), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - ACTIONS(49), 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, - [46386] = 20, + [47945] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2805), 1, + ACTIONS(3032), 1, anon_sym_LPAREN2, - ACTIONS(2821), 1, + ACTIONS(3046), 1, anon_sym_LBRACK, - ACTIONS(3329), 1, + ACTIONS(3480), 1, anon_sym_SLASH, - ACTIONS(3331), 1, - anon_sym_AMP_AMP, - ACTIONS(3333), 1, + ACTIONS(3482), 1, anon_sym_PIPE, - ACTIONS(3335), 1, + ACTIONS(3484), 1, anon_sym_CARET, - ACTIONS(3337), 1, + ACTIONS(3486), 1, anon_sym_AMP, - ACTIONS(3349), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3351), 1, - anon_sym_QMARK, - STATE(980), 1, + ACTIONS(3496), 1, + anon_sym_AMP_AMP, + STATE(1115), 1, sym_argument_list, - ACTIONS(2823), 2, + ACTIONS(3048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2825), 2, + ACTIONS(3050), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3325), 2, + ACTIONS(3476), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3327), 2, + ACTIONS(3478), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3339), 2, + ACTIONS(3488), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3341), 2, + ACTIONS(3490), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3343), 2, + ACTIONS(3492), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3345), 2, + ACTIONS(3494), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3287), 5, + ACTIONS(2560), 7, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, + anon_sym_PIPE_PIPE, + anon_sym_QMARK, sym_identifier, - [46459] = 16, + [48014] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2544), 1, - anon_sym_PIPE, - ACTIONS(2805), 1, + ACTIONS(3032), 1, anon_sym_LPAREN2, - ACTIONS(2821), 1, + ACTIONS(3046), 1, anon_sym_LBRACK, - ACTIONS(3329), 1, + ACTIONS(3480), 1, anon_sym_SLASH, - ACTIONS(3337), 1, - anon_sym_AMP, - STATE(980), 1, + STATE(1115), 1, sym_argument_list, - ACTIONS(2823), 2, + ACTIONS(3048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2825), 2, + ACTIONS(3050), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3325), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3327), 2, + ACTIONS(3478), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3339), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3341), 2, + ACTIONS(2558), 6, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(3343), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3345), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2546), 9, + ACTIONS(2560), 15, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -113921,256 +118137,255 @@ 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, - [46524] = 20, + [48067] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2548), 1, + ACTIONS(3032), 1, anon_sym_LPAREN2, - ACTIONS(2550), 1, + ACTIONS(3046), 1, anon_sym_LBRACK, - ACTIONS(3219), 1, + ACTIONS(3480), 1, anon_sym_SLASH, - ACTIONS(3221), 1, + ACTIONS(3482), 1, + anon_sym_PIPE, + ACTIONS(3484), 1, anon_sym_CARET, - ACTIONS(3223), 1, + ACTIONS(3486), 1, anon_sym_AMP, - ACTIONS(3233), 1, - anon_sym_PIPE, - ACTIONS(3241), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3243), 1, + ACTIONS(3496), 1, anon_sym_AMP_AMP, - ACTIONS(3245), 1, + ACTIONS(3498), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3500), 1, anon_sym_QMARK, - STATE(791), 1, + STATE(1115), 1, sym_argument_list, - ACTIONS(2552), 2, + ACTIONS(3048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2554), 2, + ACTIONS(3050), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3215), 2, + ACTIONS(3476), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3217), 2, + ACTIONS(3478), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3225), 2, + ACTIONS(3488), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3227), 2, + ACTIONS(3490), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3229), 2, + ACTIONS(3492), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3231), 2, + ACTIONS(3494), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3353), 5, + ACTIONS(3470), 5, anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, - [46597] = 20, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_identifier, + [48140] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2805), 1, + ACTIONS(3032), 1, anon_sym_LPAREN2, - ACTIONS(2821), 1, + ACTIONS(3046), 1, anon_sym_LBRACK, - ACTIONS(3329), 1, + ACTIONS(3480), 1, anon_sym_SLASH, - ACTIONS(3331), 1, - anon_sym_AMP_AMP, - ACTIONS(3333), 1, + ACTIONS(3482), 1, anon_sym_PIPE, - ACTIONS(3335), 1, + ACTIONS(3484), 1, anon_sym_CARET, - ACTIONS(3337), 1, + ACTIONS(3486), 1, anon_sym_AMP, - ACTIONS(3349), 1, + ACTIONS(3496), 1, + anon_sym_AMP_AMP, + ACTIONS(3498), 1, anon_sym_PIPE_PIPE, - ACTIONS(3351), 1, + ACTIONS(3500), 1, anon_sym_QMARK, - STATE(980), 1, + STATE(1115), 1, sym_argument_list, - ACTIONS(2823), 2, + ACTIONS(3048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2825), 2, + ACTIONS(3050), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3325), 2, + ACTIONS(3476), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3327), 2, + ACTIONS(3478), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3339), 2, + ACTIONS(3488), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3341), 2, + ACTIONS(3490), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3343), 2, + ACTIONS(3492), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3345), 2, + ACTIONS(3494), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2707), 5, + ACTIONS(2722), 5, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, sym_identifier, - [46670] = 17, + [48213] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2805), 1, + ACTIONS(3032), 1, anon_sym_LPAREN2, - ACTIONS(2821), 1, + ACTIONS(3046), 1, anon_sym_LBRACK, - ACTIONS(3329), 1, + ACTIONS(3480), 1, anon_sym_SLASH, - ACTIONS(3333), 1, + ACTIONS(3482), 1, anon_sym_PIPE, - ACTIONS(3335), 1, + ACTIONS(3484), 1, anon_sym_CARET, - ACTIONS(3337), 1, + ACTIONS(3486), 1, anon_sym_AMP, - STATE(980), 1, + ACTIONS(3496), 1, + anon_sym_AMP_AMP, + ACTIONS(3498), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3500), 1, + anon_sym_QMARK, + STATE(1115), 1, sym_argument_list, - ACTIONS(2823), 2, + ACTIONS(3048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2825), 2, + ACTIONS(3050), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3325), 2, + ACTIONS(3476), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3327), 2, + ACTIONS(3478), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3339), 2, + ACTIONS(3488), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3341), 2, + ACTIONS(3490), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3343), 2, + ACTIONS(3492), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3345), 2, + ACTIONS(3494), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2546), 8, + ACTIONS(2718), 5, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_QMARK, sym_identifier, - [46737] = 20, + [48286] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2805), 1, + ACTIONS(3032), 1, anon_sym_LPAREN2, - ACTIONS(2821), 1, + ACTIONS(3046), 1, anon_sym_LBRACK, - ACTIONS(3329), 1, + ACTIONS(3480), 1, anon_sym_SLASH, - ACTIONS(3331), 1, - anon_sym_AMP_AMP, - ACTIONS(3333), 1, + ACTIONS(3482), 1, anon_sym_PIPE, - ACTIONS(3335), 1, + ACTIONS(3484), 1, anon_sym_CARET, - ACTIONS(3337), 1, + ACTIONS(3486), 1, anon_sym_AMP, - ACTIONS(3349), 1, + ACTIONS(3496), 1, + anon_sym_AMP_AMP, + ACTIONS(3498), 1, anon_sym_PIPE_PIPE, - ACTIONS(3351), 1, + ACTIONS(3500), 1, anon_sym_QMARK, - STATE(980), 1, + STATE(1115), 1, sym_argument_list, - ACTIONS(2823), 2, + ACTIONS(3048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2825), 2, + ACTIONS(3050), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3325), 2, + ACTIONS(3476), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3327), 2, + ACTIONS(3478), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3339), 2, + ACTIONS(3488), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3341), 2, + ACTIONS(3490), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3343), 2, + ACTIONS(3492), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3345), 2, + ACTIONS(3494), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2719), 5, + ACTIONS(2698), 5, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, sym_identifier, - [46810] = 15, + [48359] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2805), 1, + ACTIONS(3032), 1, anon_sym_LPAREN2, - ACTIONS(2821), 1, + ACTIONS(3046), 1, anon_sym_LBRACK, - ACTIONS(3329), 1, + ACTIONS(3480), 1, anon_sym_SLASH, - STATE(980), 1, + STATE(1115), 1, sym_argument_list, - ACTIONS(2544), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(2823), 2, + ACTIONS(3048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2825), 2, + ACTIONS(3050), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3325), 2, + ACTIONS(3476), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3327), 2, + ACTIONS(3478), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3339), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3341), 2, + ACTIONS(2558), 4, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(3343), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3345), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2546), 9, + ACTIONS(2560), 15, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -114178,44 +118393,46 @@ 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, - [46873] = 14, + [48414] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2805), 1, + ACTIONS(3032), 1, anon_sym_LPAREN2, - ACTIONS(2821), 1, + ACTIONS(3046), 1, anon_sym_LBRACK, - ACTIONS(3329), 1, + ACTIONS(3480), 1, anon_sym_SLASH, - STATE(980), 1, + STATE(1115), 1, sym_argument_list, - ACTIONS(2544), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(2823), 2, + ACTIONS(3048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2825), 2, + ACTIONS(3050), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3325), 2, + ACTIONS(3476), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3327), 2, + ACTIONS(3478), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3341), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3343), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3345), 2, + ACTIONS(3494), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2546), 11, + ACTIONS(2558), 4, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2560), 13, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -114225,93 +118442,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_QMARK, sym_identifier, - [46934] = 20, + [48471] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2805), 1, + ACTIONS(3032), 1, anon_sym_LPAREN2, - ACTIONS(2821), 1, + ACTIONS(3046), 1, anon_sym_LBRACK, - ACTIONS(3329), 1, + ACTIONS(3480), 1, anon_sym_SLASH, - ACTIONS(3331), 1, - anon_sym_AMP_AMP, - ACTIONS(3333), 1, + STATE(1115), 1, + sym_argument_list, + ACTIONS(2558), 2, anon_sym_PIPE, - ACTIONS(3335), 1, - anon_sym_CARET, - ACTIONS(3337), 1, anon_sym_AMP, - ACTIONS(3349), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3351), 1, - anon_sym_QMARK, - STATE(980), 1, - sym_argument_list, - ACTIONS(2823), 2, + ACTIONS(3048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2825), 2, + ACTIONS(3050), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3325), 2, + ACTIONS(3476), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3327), 2, + ACTIONS(3478), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3339), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3341), 2, + ACTIONS(3490), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3343), 2, + ACTIONS(3492), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3345), 2, + ACTIONS(3494), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2699), 5, + ACTIONS(2560), 11, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK, sym_identifier, - [47007] = 12, + [48532] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2805), 1, + ACTIONS(3032), 1, anon_sym_LPAREN2, - ACTIONS(2821), 1, + ACTIONS(3046), 1, anon_sym_LBRACK, - ACTIONS(3329), 1, + ACTIONS(3480), 1, anon_sym_SLASH, - STATE(980), 1, + STATE(1115), 1, sym_argument_list, - ACTIONS(2823), 2, + ACTIONS(2558), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(3048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2825), 2, + ACTIONS(3050), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3325), 2, + ACTIONS(3476), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3327), 2, + ACTIONS(3478), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3345), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2544), 4, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(3488), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3490), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2546), 13, + ACTIONS(3492), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3494), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2560), 9, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -114319,41 +118539,96 @@ 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_QMARK, sym_identifier, - [47064] = 11, + [48595] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2041), 1, + anon_sym_LPAREN2, + ACTIONS(2043), 1, + anon_sym_STAR, + ACTIONS(2045), 1, + anon_sym___based, + ACTIONS(3316), 1, + sym_identifier, + ACTIONS(3324), 1, + anon_sym_LBRACK, + STATE(1555), 1, + sym__declarator, + STATE(1678), 1, + sym__abstract_declarator, + STATE(1704), 1, + sym_parameter_list, + STATE(2089), 1, + sym_ms_based_modifier, + ACTIONS(3502), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(1308), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(1701), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + STATE(1616), 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, + [48658] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(2805), 1, + ACTIONS(2558), 1, + anon_sym_PIPE, + ACTIONS(3032), 1, anon_sym_LPAREN2, - ACTIONS(2821), 1, + ACTIONS(3046), 1, anon_sym_LBRACK, - ACTIONS(3329), 1, + ACTIONS(3480), 1, anon_sym_SLASH, - STATE(980), 1, + ACTIONS(3486), 1, + anon_sym_AMP, + STATE(1115), 1, sym_argument_list, - ACTIONS(2823), 2, + ACTIONS(3048), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2825), 2, + ACTIONS(3050), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3325), 2, + ACTIONS(3476), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3327), 2, + ACTIONS(3478), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2544), 4, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(3488), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3490), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2546), 15, + ACTIONS(3492), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3494), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2560), 9, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -114361,51 +118636,45 @@ 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, - [47119] = 14, + [48723] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2092), 1, + ACTIONS(2045), 1, anon_sym___based, - ACTIONS(3355), 1, + ACTIONS(3504), 1, sym_identifier, - ACTIONS(3357), 1, + ACTIONS(3506), 1, anon_sym_LPAREN2, - ACTIONS(3359), 1, + ACTIONS(3508), 1, anon_sym_STAR, - STATE(1315), 1, + STATE(1331), 1, sym_ms_unaligned_ptr_modifier, - STATE(1501), 1, + STATE(1488), 1, sym__field_declarator, - STATE(2236), 1, + STATE(2078), 1, sym_ms_based_modifier, - ACTIONS(2984), 2, + ACTIONS(3322), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(1306), 2, + STATE(1327), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(1321), 2, + STATE(1343), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2982), 3, + ACTIONS(3320), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(1560), 5, + STATE(1520), 5, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, sym_function_field_declarator, sym_array_field_declarator, - ACTIONS(49), 9, + ACTIONS(51), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -114415,43 +118684,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [47179] = 14, + [48783] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2092), 1, + ACTIONS(2045), 1, anon_sym___based, - ACTIONS(3355), 1, + ACTIONS(3316), 1, sym_identifier, - ACTIONS(3357), 1, + ACTIONS(3510), 1, anon_sym_LPAREN2, - ACTIONS(3359), 1, + ACTIONS(3512), 1, anon_sym_STAR, - STATE(1315), 1, + STATE(1331), 1, sym_ms_unaligned_ptr_modifier, - STATE(1504), 1, - sym__field_declarator, - STATE(2236), 1, + STATE(1556), 1, + sym__declarator, + STATE(2089), 1, sym_ms_based_modifier, - ACTIONS(2984), 2, + ACTIONS(3322), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(1306), 2, + STATE(1327), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(1326), 2, + STATE(1340), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2982), 3, + ACTIONS(3320), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(1560), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - ACTIONS(49), 9, + STATE(1616), 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, @@ -114461,43 +118730,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [47239] = 14, + [48843] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2092), 1, + ACTIONS(2045), 1, anon_sym___based, - ACTIONS(3355), 1, + ACTIONS(3504), 1, sym_identifier, - ACTIONS(3357), 1, + ACTIONS(3506), 1, anon_sym_LPAREN2, - ACTIONS(3359), 1, + ACTIONS(3508), 1, anon_sym_STAR, - STATE(1315), 1, + STATE(1331), 1, sym_ms_unaligned_ptr_modifier, - STATE(1504), 1, + STATE(1491), 1, sym__field_declarator, - STATE(2236), 1, + STATE(2078), 1, sym_ms_based_modifier, - ACTIONS(2984), 2, + ACTIONS(3322), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(1186), 2, + STATE(1207), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(1326), 2, + STATE(1342), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2982), 3, + ACTIONS(3320), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(1560), 5, + STATE(1520), 5, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, sym_function_field_declarator, sym_array_field_declarator, - ACTIONS(49), 9, + ACTIONS(51), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -114507,43 +118776,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [47299] = 14, + [48903] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2092), 1, + ACTIONS(2045), 1, anon_sym___based, - ACTIONS(2978), 1, + ACTIONS(3504), 1, sym_identifier, - ACTIONS(3361), 1, + ACTIONS(3506), 1, anon_sym_LPAREN2, - ACTIONS(3363), 1, + ACTIONS(3508), 1, anon_sym_STAR, - STATE(1315), 1, + STATE(1331), 1, sym_ms_unaligned_ptr_modifier, - STATE(1496), 1, - sym__declarator, - STATE(2118), 1, + STATE(1491), 1, + sym__field_declarator, + STATE(2078), 1, sym_ms_based_modifier, - ACTIONS(2984), 2, + ACTIONS(3322), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(1192), 2, + STATE(1327), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(1324), 2, + STATE(1342), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2982), 3, + ACTIONS(3320), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(1548), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - ACTIONS(49), 9, + STATE(1520), 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, @@ -114553,44 +118822,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [47359] = 14, + [48963] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2092), 1, + ACTIONS(2045), 1, anon_sym___based, - ACTIONS(3355), 1, + ACTIONS(3316), 1, sym_identifier, - ACTIONS(3357), 1, + ACTIONS(3510), 1, anon_sym_LPAREN2, - ACTIONS(3359), 1, + ACTIONS(3512), 1, anon_sym_STAR, - STATE(1315), 1, + STATE(1331), 1, sym_ms_unaligned_ptr_modifier, - STATE(1500), 1, - sym__field_declarator, - STATE(2236), 1, + STATE(1555), 1, + sym__declarator, + STATE(2089), 1, sym_ms_based_modifier, - ACTIONS(2984), 2, + ACTIONS(3322), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(1187), 2, + STATE(1327), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(1319), 2, + STATE(1341), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2982), 3, + ACTIONS(3320), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(1560), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - ACTIONS(49), 9, + STATE(1616), 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, + [49023] = 7, + ACTIONS(3), 1, + sym_comment, + STATE(1053), 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(3421), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_COLON, + ACTIONS(3419), 16, 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, @@ -114599,44 +118905,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [47419] = 14, + sym_primitive_type, + sym_identifier, + [49069] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2092), 1, + ACTIONS(2045), 1, anon_sym___based, - ACTIONS(2978), 1, + ACTIONS(3316), 1, sym_identifier, - ACTIONS(3361), 1, + ACTIONS(3510), 1, anon_sym_LPAREN2, - ACTIONS(3363), 1, + ACTIONS(3512), 1, anon_sym_STAR, - STATE(1315), 1, + STATE(1331), 1, sym_ms_unaligned_ptr_modifier, - STATE(1495), 1, + STATE(1555), 1, sym__declarator, - STATE(2118), 1, + STATE(2089), 1, sym_ms_based_modifier, - ACTIONS(2984), 2, + ACTIONS(3322), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(1193), 2, + STATE(1208), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(1327), 2, + STATE(1341), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2982), 3, + ACTIONS(3320), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(1548), 5, + STATE(1616), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - ACTIONS(49), 9, + 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, + [49129] = 7, + ACTIONS(3), 1, + sym_comment, + STATE(1031), 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(3404), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_COLON, + ACTIONS(3402), 16, 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, @@ -114645,44 +118990,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [47479] = 14, + sym_primitive_type, + sym_identifier, + [49175] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2092), 1, + ACTIONS(2045), 1, anon_sym___based, - ACTIONS(2978), 1, + ACTIONS(3504), 1, sym_identifier, - ACTIONS(3361), 1, + ACTIONS(3506), 1, anon_sym_LPAREN2, - ACTIONS(3363), 1, + ACTIONS(3508), 1, anon_sym_STAR, - STATE(1315), 1, + STATE(1331), 1, sym_ms_unaligned_ptr_modifier, - STATE(1495), 1, - sym__declarator, - STATE(2118), 1, + STATE(1482), 1, + sym__field_declarator, + STATE(2078), 1, sym_ms_based_modifier, - ACTIONS(2984), 2, + ACTIONS(3322), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(1306), 2, + STATE(1210), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(1327), 2, + STATE(1347), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2982), 3, + ACTIONS(3320), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(1548), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - ACTIONS(49), 9, + STATE(1520), 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, + [49235] = 7, + ACTIONS(3), 1, + sym_comment, + STATE(1067), 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(3391), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_COLON, + ACTIONS(3389), 16, 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, @@ -114691,43 +119075,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [47539] = 14, + sym_primitive_type, + sym_identifier, + [49281] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2092), 1, + ACTIONS(2045), 1, anon_sym___based, - ACTIONS(2978), 1, + ACTIONS(3316), 1, sym_identifier, - ACTIONS(3361), 1, + ACTIONS(3510), 1, anon_sym_LPAREN2, - ACTIONS(3363), 1, + ACTIONS(3512), 1, anon_sym_STAR, - STATE(1315), 1, + STATE(1331), 1, sym_ms_unaligned_ptr_modifier, - STATE(1494), 1, + STATE(1550), 1, sym__declarator, - STATE(2118), 1, + STATE(2089), 1, sym_ms_based_modifier, - ACTIONS(2984), 2, + ACTIONS(3322), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(1306), 2, + STATE(1211), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(1322), 2, + STATE(1345), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2982), 3, + ACTIONS(3320), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(1548), 5, + STATE(1616), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - ACTIONS(49), 9, + ACTIONS(51), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -114737,849 +119123,660 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [47599] = 22, + [49341] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2548), 1, + ACTIONS(2562), 1, anon_sym_LPAREN2, - ACTIONS(2550), 1, + ACTIONS(2564), 1, anon_sym_LBRACK, - ACTIONS(3219), 1, + ACTIONS(3347), 1, anon_sym_SLASH, - ACTIONS(3221), 1, - anon_sym_CARET, - ACTIONS(3223), 1, - anon_sym_AMP, - ACTIONS(3233), 1, - anon_sym_PIPE, - ACTIONS(3241), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3243), 1, + ACTIONS(3349), 1, anon_sym_AMP_AMP, - ACTIONS(3245), 1, - anon_sym_QMARK, - ACTIONS(3365), 1, - anon_sym_COMMA, - ACTIONS(3367), 1, - anon_sym_RBRACE, - STATE(791), 1, - sym_argument_list, - STATE(1803), 1, - aux_sym_initializer_list_repeat1, - ACTIONS(2552), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2554), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3215), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3217), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3225), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3227), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3229), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3231), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [47674] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2548), 1, - anon_sym_LPAREN2, - ACTIONS(2550), 1, - anon_sym_LBRACK, - ACTIONS(3219), 1, - anon_sym_SLASH, - ACTIONS(3221), 1, + ACTIONS(3351), 1, + anon_sym_PIPE, + ACTIONS(3353), 1, anon_sym_CARET, - ACTIONS(3223), 1, + ACTIONS(3355), 1, anon_sym_AMP, - ACTIONS(3233), 1, - anon_sym_PIPE, - ACTIONS(3241), 1, + ACTIONS(3367), 1, anon_sym_PIPE_PIPE, - ACTIONS(3243), 1, - anon_sym_AMP_AMP, - ACTIONS(3245), 1, - anon_sym_QMARK, ACTIONS(3369), 1, + anon_sym_QMARK, + ACTIONS(3514), 1, anon_sym_COMMA, - ACTIONS(3371), 1, + ACTIONS(3516), 1, anon_sym_RPAREN, - STATE(791), 1, + STATE(821), 1, sym_argument_list, - STATE(1761), 1, + STATE(1869), 1, aux_sym_argument_list_repeat1, - ACTIONS(2552), 2, + ACTIONS(2566), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2554), 2, + ACTIONS(2568), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3215), 2, + ACTIONS(3343), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3217), 2, + ACTIONS(3345), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3225), 2, + ACTIONS(3357), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3227), 2, + ACTIONS(3359), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3229), 2, + ACTIONS(3361), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3231), 2, + ACTIONS(3363), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [47749] = 22, + [49416] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2548), 1, + ACTIONS(2562), 1, anon_sym_LPAREN2, - ACTIONS(2550), 1, + ACTIONS(2564), 1, anon_sym_LBRACK, - ACTIONS(3219), 1, + ACTIONS(3347), 1, anon_sym_SLASH, - ACTIONS(3221), 1, + ACTIONS(3349), 1, + anon_sym_AMP_AMP, + ACTIONS(3351), 1, + anon_sym_PIPE, + ACTIONS(3353), 1, anon_sym_CARET, - ACTIONS(3223), 1, + ACTIONS(3355), 1, anon_sym_AMP, - ACTIONS(3233), 1, - anon_sym_PIPE, - ACTIONS(3241), 1, + ACTIONS(3367), 1, anon_sym_PIPE_PIPE, - ACTIONS(3243), 1, - anon_sym_AMP_AMP, - ACTIONS(3245), 1, - anon_sym_QMARK, ACTIONS(3369), 1, + anon_sym_QMARK, + ACTIONS(3514), 1, anon_sym_COMMA, - ACTIONS(3373), 1, + ACTIONS(3518), 1, anon_sym_RPAREN, - STATE(791), 1, + STATE(821), 1, sym_argument_list, - STATE(1847), 1, + STATE(1827), 1, aux_sym_argument_list_repeat1, - ACTIONS(2552), 2, + ACTIONS(2566), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2554), 2, + ACTIONS(2568), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3215), 2, + ACTIONS(3343), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3217), 2, + ACTIONS(3345), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3225), 2, + ACTIONS(3357), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3227), 2, + ACTIONS(3359), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3229), 2, + ACTIONS(3361), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3231), 2, + ACTIONS(3363), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [47824] = 22, + [49491] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2548), 1, + ACTIONS(2562), 1, anon_sym_LPAREN2, - ACTIONS(2550), 1, + ACTIONS(2564), 1, anon_sym_LBRACK, - ACTIONS(3219), 1, + ACTIONS(3347), 1, anon_sym_SLASH, - ACTIONS(3221), 1, + ACTIONS(3349), 1, + anon_sym_AMP_AMP, + ACTIONS(3351), 1, + anon_sym_PIPE, + ACTIONS(3353), 1, anon_sym_CARET, - ACTIONS(3223), 1, + ACTIONS(3355), 1, anon_sym_AMP, - ACTIONS(3233), 1, - anon_sym_PIPE, - ACTIONS(3241), 1, + ACTIONS(3367), 1, anon_sym_PIPE_PIPE, - ACTIONS(3243), 1, - anon_sym_AMP_AMP, - ACTIONS(3245), 1, - anon_sym_QMARK, ACTIONS(3369), 1, + anon_sym_QMARK, + ACTIONS(3514), 1, anon_sym_COMMA, - ACTIONS(3375), 1, + ACTIONS(3520), 1, anon_sym_RPAREN, - STATE(791), 1, + STATE(821), 1, sym_argument_list, - STATE(1788), 1, + STATE(1769), 1, aux_sym_argument_list_repeat1, - ACTIONS(2552), 2, + ACTIONS(2566), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2554), 2, + ACTIONS(2568), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3215), 2, + ACTIONS(3343), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3217), 2, + ACTIONS(3345), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3225), 2, + ACTIONS(3357), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3227), 2, + ACTIONS(3359), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3229), 2, + ACTIONS(3361), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3231), 2, + ACTIONS(3363), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [47899] = 21, + [49566] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2548), 1, + ACTIONS(2562), 1, anon_sym_LPAREN2, - ACTIONS(2550), 1, + ACTIONS(2564), 1, anon_sym_LBRACK, - ACTIONS(3219), 1, + ACTIONS(3347), 1, anon_sym_SLASH, - ACTIONS(3221), 1, + ACTIONS(3349), 1, + anon_sym_AMP_AMP, + ACTIONS(3351), 1, + anon_sym_PIPE, + ACTIONS(3353), 1, anon_sym_CARET, - ACTIONS(3223), 1, + ACTIONS(3355), 1, anon_sym_AMP, - ACTIONS(3233), 1, - anon_sym_PIPE, - ACTIONS(3241), 1, + ACTIONS(3367), 1, anon_sym_PIPE_PIPE, - ACTIONS(3243), 1, - anon_sym_AMP_AMP, - ACTIONS(3245), 1, + ACTIONS(3369), 1, anon_sym_QMARK, - ACTIONS(3377), 1, + ACTIONS(3522), 1, anon_sym_COMMA, - STATE(791), 1, + STATE(821), 1, sym_argument_list, - ACTIONS(2552), 2, + ACTIONS(2566), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2554), 2, + ACTIONS(2568), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3215), 2, + ACTIONS(3343), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3217), 2, + ACTIONS(3345), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3225), 2, + ACTIONS(3357), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3227), 2, + ACTIONS(3359), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3229), 2, + ACTIONS(3361), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3231), 2, + ACTIONS(3363), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3379), 2, + ACTIONS(3524), 2, anon_sym_RPAREN, anon_sym_SEMI, - [47972] = 22, + [49639] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2548), 1, + ACTIONS(2562), 1, anon_sym_LPAREN2, - ACTIONS(2550), 1, + ACTIONS(2564), 1, anon_sym_LBRACK, - ACTIONS(3219), 1, + ACTIONS(3347), 1, anon_sym_SLASH, - ACTIONS(3221), 1, + ACTIONS(3349), 1, + anon_sym_AMP_AMP, + ACTIONS(3351), 1, + anon_sym_PIPE, + ACTIONS(3353), 1, anon_sym_CARET, - ACTIONS(3223), 1, + ACTIONS(3355), 1, anon_sym_AMP, - ACTIONS(3233), 1, - anon_sym_PIPE, - ACTIONS(3241), 1, + ACTIONS(3367), 1, anon_sym_PIPE_PIPE, - ACTIONS(3243), 1, - anon_sym_AMP_AMP, - ACTIONS(3245), 1, + ACTIONS(3369), 1, anon_sym_QMARK, - ACTIONS(3381), 1, + ACTIONS(3514), 1, anon_sym_COMMA, - ACTIONS(3383), 1, + ACTIONS(3526), 1, anon_sym_RPAREN, - STATE(791), 1, + STATE(821), 1, sym_argument_list, - STATE(1840), 1, - aux_sym_generic_expression_repeat1, - ACTIONS(2552), 2, + STATE(1835), 1, + aux_sym_argument_list_repeat1, + ACTIONS(2566), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2554), 2, + ACTIONS(2568), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3215), 2, + ACTIONS(3343), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3217), 2, + ACTIONS(3345), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3225), 2, + ACTIONS(3357), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3227), 2, + ACTIONS(3359), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3229), 2, + ACTIONS(3361), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3231), 2, + ACTIONS(3363), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [48047] = 22, + [49714] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2548), 1, + ACTIONS(2562), 1, anon_sym_LPAREN2, - ACTIONS(2550), 1, + ACTIONS(2564), 1, anon_sym_LBRACK, - ACTIONS(3219), 1, + ACTIONS(3347), 1, anon_sym_SLASH, - ACTIONS(3221), 1, + ACTIONS(3349), 1, + anon_sym_AMP_AMP, + ACTIONS(3351), 1, + anon_sym_PIPE, + ACTIONS(3353), 1, anon_sym_CARET, - ACTIONS(3223), 1, + ACTIONS(3355), 1, anon_sym_AMP, - ACTIONS(3233), 1, - anon_sym_PIPE, - ACTIONS(3241), 1, + ACTIONS(3367), 1, anon_sym_PIPE_PIPE, - ACTIONS(3243), 1, - anon_sym_AMP_AMP, - ACTIONS(3245), 1, - anon_sym_QMARK, ACTIONS(3369), 1, + anon_sym_QMARK, + ACTIONS(3528), 1, anon_sym_COMMA, - ACTIONS(3385), 1, + ACTIONS(3530), 1, anon_sym_RPAREN, - STATE(791), 1, + STATE(821), 1, sym_argument_list, - STATE(1795), 1, - aux_sym_argument_list_repeat1, - ACTIONS(2552), 2, + STATE(1825), 1, + aux_sym_generic_expression_repeat1, + ACTIONS(2566), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2554), 2, + ACTIONS(2568), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3215), 2, + ACTIONS(3343), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3217), 2, + ACTIONS(3345), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3225), 2, + ACTIONS(3357), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3227), 2, + ACTIONS(3359), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3229), 2, + ACTIONS(3361), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3231), 2, + ACTIONS(3363), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [48122] = 22, + [49789] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2548), 1, + ACTIONS(2562), 1, anon_sym_LPAREN2, - ACTIONS(2550), 1, + ACTIONS(2564), 1, anon_sym_LBRACK, - ACTIONS(3219), 1, + ACTIONS(3347), 1, anon_sym_SLASH, - ACTIONS(3221), 1, + ACTIONS(3349), 1, + anon_sym_AMP_AMP, + ACTIONS(3351), 1, + anon_sym_PIPE, + ACTIONS(3353), 1, anon_sym_CARET, - ACTIONS(3223), 1, + ACTIONS(3355), 1, anon_sym_AMP, - ACTIONS(3233), 1, - anon_sym_PIPE, - ACTIONS(3241), 1, + ACTIONS(3367), 1, anon_sym_PIPE_PIPE, - ACTIONS(3243), 1, - anon_sym_AMP_AMP, - ACTIONS(3245), 1, + ACTIONS(3369), 1, anon_sym_QMARK, - ACTIONS(3387), 1, + ACTIONS(3532), 1, anon_sym_COMMA, - ACTIONS(3389), 1, + ACTIONS(3534), 1, anon_sym_RBRACE, - STATE(791), 1, + STATE(821), 1, sym_argument_list, - STATE(1782), 1, + STATE(1866), 1, aux_sym_initializer_list_repeat1, - ACTIONS(2552), 2, + ACTIONS(2566), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2554), 2, + ACTIONS(2568), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3215), 2, + ACTIONS(3343), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3217), 2, + ACTIONS(3345), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3225), 2, + ACTIONS(3357), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3227), 2, + ACTIONS(3359), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3229), 2, + ACTIONS(3361), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3231), 2, + ACTIONS(3363), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [48197] = 22, + [49864] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2548), 1, + ACTIONS(2562), 1, anon_sym_LPAREN2, - ACTIONS(2550), 1, + ACTIONS(2564), 1, anon_sym_LBRACK, - ACTIONS(3219), 1, + ACTIONS(3347), 1, anon_sym_SLASH, - ACTIONS(3221), 1, + ACTIONS(3349), 1, + anon_sym_AMP_AMP, + ACTIONS(3351), 1, + anon_sym_PIPE, + ACTIONS(3353), 1, anon_sym_CARET, - ACTIONS(3223), 1, + ACTIONS(3355), 1, anon_sym_AMP, - ACTIONS(3233), 1, - anon_sym_PIPE, - ACTIONS(3241), 1, + ACTIONS(3367), 1, anon_sym_PIPE_PIPE, - ACTIONS(3243), 1, - anon_sym_AMP_AMP, - ACTIONS(3245), 1, + ACTIONS(3369), 1, anon_sym_QMARK, - ACTIONS(3381), 1, + ACTIONS(3528), 1, anon_sym_COMMA, - ACTIONS(3391), 1, + ACTIONS(3536), 1, anon_sym_RPAREN, - STATE(791), 1, + STATE(821), 1, sym_argument_list, - STATE(1830), 1, + STATE(1838), 1, aux_sym_generic_expression_repeat1, - ACTIONS(2552), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2554), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3215), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3217), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3225), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3227), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3229), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3231), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [48272] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2548), 1, - anon_sym_LPAREN2, - ACTIONS(2550), 1, - anon_sym_LBRACK, - ACTIONS(3219), 1, - anon_sym_SLASH, - ACTIONS(3221), 1, - anon_sym_CARET, - ACTIONS(3223), 1, - anon_sym_AMP, - ACTIONS(3233), 1, - anon_sym_PIPE, - ACTIONS(3241), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3243), 1, - anon_sym_AMP_AMP, - ACTIONS(3245), 1, - anon_sym_QMARK, - ACTIONS(3377), 1, - anon_sym_COMMA, - ACTIONS(3393), 1, - anon_sym_SEMI, - STATE(791), 1, - sym_argument_list, - ACTIONS(2552), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2554), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3215), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3217), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3225), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3227), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3229), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3231), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [48344] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2548), 1, - anon_sym_LPAREN2, - ACTIONS(2550), 1, - anon_sym_LBRACK, - ACTIONS(3219), 1, - anon_sym_SLASH, - ACTIONS(3221), 1, - anon_sym_CARET, - ACTIONS(3223), 1, - anon_sym_AMP, - ACTIONS(3233), 1, - anon_sym_PIPE, - ACTIONS(3241), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3243), 1, - anon_sym_AMP_AMP, - ACTIONS(3245), 1, - anon_sym_QMARK, - STATE(791), 1, - sym_argument_list, - ACTIONS(2552), 2, + ACTIONS(2566), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2554), 2, + ACTIONS(2568), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3215), 2, + ACTIONS(3343), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3217), 2, + ACTIONS(3345), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3225), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3227), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3229), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3231), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3287), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [48414] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - sym_primitive_type, - ACTIONS(55), 1, - anon_sym_struct, - ACTIONS(57), 1, - anon_sym_union, - ACTIONS(2046), 1, - sym_identifier, - ACTIONS(3395), 1, - anon_sym_enum, - STATE(1314), 1, - sym__type_specifier, - STATE(1323), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2155), 1, - sym_type_descriptor, - STATE(1275), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(1922), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1106), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(49), 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, - [48470] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(55), 1, - anon_sym_struct, - ACTIONS(57), 1, - anon_sym_union, - ACTIONS(1924), 1, - anon_sym_enum, - ACTIONS(3397), 1, - sym_identifier, - ACTIONS(3401), 1, - sym_primitive_type, - STATE(1364), 1, - sym__type_specifier, - STATE(1416), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1455), 1, - sym__type_definition_type, - STATE(1291), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3399), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1106), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(49), 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, - [48526] = 18, + ACTIONS(3357), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3359), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3361), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3363), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [49939] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2544), 1, - anon_sym_PIPE, - ACTIONS(2550), 1, - anon_sym_LBRACK, - ACTIONS(2554), 1, - anon_sym_DASH_GT, - ACTIONS(2805), 1, + ACTIONS(2562), 1, anon_sym_LPAREN2, - ACTIONS(2893), 1, - anon_sym_DOT, - ACTIONS(3407), 1, + ACTIONS(2564), 1, + anon_sym_LBRACK, + ACTIONS(3347), 1, anon_sym_SLASH, - ACTIONS(3409), 1, + ACTIONS(3349), 1, + anon_sym_AMP_AMP, + ACTIONS(3351), 1, + anon_sym_PIPE, + ACTIONS(3353), 1, anon_sym_CARET, - ACTIONS(3411), 1, + ACTIONS(3355), 1, anon_sym_AMP, - STATE(791), 1, + ACTIONS(3367), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3369), 1, + anon_sym_QMARK, + ACTIONS(3538), 1, + anon_sym_COMMA, + ACTIONS(3540), 1, + anon_sym_RBRACE, + STATE(821), 1, sym_argument_list, - ACTIONS(2552), 2, + STATE(1853), 1, + aux_sym_initializer_list_repeat1, + ACTIONS(2566), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3403), 2, + ACTIONS(2568), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3343), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3405), 2, + ACTIONS(3345), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3413), 2, + ACTIONS(3357), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3415), 2, + ACTIONS(3359), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3417), 2, + ACTIONS(3361), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3419), 2, + ACTIONS(3363), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2546), 5, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_RBRACK, - anon_sym_QMARK, - [48592] = 21, + [50014] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2548), 1, + ACTIONS(2562), 1, anon_sym_LPAREN2, - ACTIONS(2550), 1, + ACTIONS(2564), 1, anon_sym_LBRACK, - ACTIONS(3219), 1, + ACTIONS(3347), 1, anon_sym_SLASH, - ACTIONS(3221), 1, + ACTIONS(3349), 1, + anon_sym_AMP_AMP, + ACTIONS(3351), 1, + anon_sym_PIPE, + ACTIONS(3353), 1, anon_sym_CARET, - ACTIONS(3223), 1, + ACTIONS(3355), 1, anon_sym_AMP, - ACTIONS(3233), 1, - anon_sym_PIPE, - ACTIONS(3241), 1, + ACTIONS(3367), 1, anon_sym_PIPE_PIPE, - ACTIONS(3243), 1, - anon_sym_AMP_AMP, - ACTIONS(3245), 1, + ACTIONS(3369), 1, anon_sym_QMARK, - ACTIONS(3377), 1, - anon_sym_COMMA, - ACTIONS(3421), 1, - anon_sym_RPAREN, - STATE(791), 1, + STATE(821), 1, sym_argument_list, - ACTIONS(2552), 2, + ACTIONS(2566), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2554), 2, + ACTIONS(2568), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3215), 2, + ACTIONS(3343), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3217), 2, + ACTIONS(3345), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3225), 2, + ACTIONS(3357), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3227), 2, + ACTIONS(3359), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3229), 2, + ACTIONS(3361), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3231), 2, + ACTIONS(3363), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [48664] = 17, + ACTIONS(3542), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [50084] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2544), 1, - anon_sym_PIPE, - ACTIONS(2550), 1, - anon_sym_LBRACK, - ACTIONS(2554), 1, - anon_sym_DASH_GT, - ACTIONS(2805), 1, + ACTIONS(2562), 1, anon_sym_LPAREN2, - ACTIONS(2893), 1, - anon_sym_DOT, - ACTIONS(3407), 1, + ACTIONS(2564), 1, + anon_sym_LBRACK, + ACTIONS(3347), 1, anon_sym_SLASH, - ACTIONS(3411), 1, + ACTIONS(3349), 1, + anon_sym_AMP_AMP, + ACTIONS(3351), 1, + anon_sym_PIPE, + ACTIONS(3353), 1, + anon_sym_CARET, + ACTIONS(3355), 1, anon_sym_AMP, - STATE(791), 1, + ACTIONS(3367), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3369), 1, + anon_sym_QMARK, + ACTIONS(3522), 1, + anon_sym_COMMA, + ACTIONS(3544), 1, + anon_sym_RPAREN, + STATE(821), 1, sym_argument_list, - ACTIONS(2552), 2, + ACTIONS(2566), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3403), 2, + ACTIONS(2568), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3343), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3405), 2, + ACTIONS(3345), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3413), 2, + ACTIONS(3357), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3415), 2, + ACTIONS(3359), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3417), 2, + ACTIONS(3361), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3419), 2, + ACTIONS(3363), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2546), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_RBRACK, - anon_sym_QMARK, - [48728] = 13, + [50156] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - sym_primitive_type, - ACTIONS(55), 1, + ACTIONS(57), 1, anon_sym_struct, + ACTIONS(59), 1, + anon_sym_union, + ACTIONS(1939), 1, + anon_sym_enum, + ACTIONS(3546), 1, + sym_identifier, + ACTIONS(3550), 1, + sym_primitive_type, + STATE(1396), 1, + sym__type_specifier, + STATE(1457), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1483), 1, + sym__type_definition_type, + STATE(1309), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3548), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1069), 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, + [50212] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + sym_primitive_type, ACTIONS(57), 1, + anon_sym_struct, + ACTIONS(59), 1, anon_sym_union, - ACTIONS(2046), 1, + ACTIONS(2009), 1, sym_identifier, - ACTIONS(3395), 1, + ACTIONS(3552), 1, anon_sym_enum, - STATE(1314), 1, + STATE(1333), 1, sym__type_specifier, - STATE(1323), 1, + STATE(1339), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2153), 1, + STATE(2267), 1, sym_type_descriptor, - STATE(1275), 2, + STATE(1301), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(1922), 4, + ACTIONS(1937), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1106), 5, + STATE(1069), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - ACTIONS(49), 9, + ACTIONS(51), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -115589,86 +119786,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [48784] = 16, + [50268] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2550), 1, + ACTIONS(2564), 1, anon_sym_LBRACK, - ACTIONS(2554), 1, + ACTIONS(2568), 1, anon_sym_DASH_GT, - ACTIONS(2805), 1, + ACTIONS(3032), 1, anon_sym_LPAREN2, - ACTIONS(2893), 1, + ACTIONS(3294), 1, anon_sym_DOT, - ACTIONS(3407), 1, + ACTIONS(3558), 1, anon_sym_SLASH, - STATE(791), 1, - sym_argument_list, - ACTIONS(2544), 2, + ACTIONS(3560), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3562), 1, + anon_sym_AMP_AMP, + ACTIONS(3564), 1, anon_sym_PIPE, + ACTIONS(3566), 1, + anon_sym_CARET, + ACTIONS(3568), 1, anon_sym_AMP, - ACTIONS(2552), 2, + ACTIONS(3578), 1, + anon_sym_QMARK, + STATE(821), 1, + sym_argument_list, + ACTIONS(2566), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3403), 2, + ACTIONS(2722), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_RBRACK, + ACTIONS(3554), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3405), 2, + ACTIONS(3556), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3413), 2, + ACTIONS(3570), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3415), 2, + ACTIONS(3572), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3417), 2, + ACTIONS(3574), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3419), 2, + ACTIONS(3576), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2546), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_RBRACK, - anon_sym_QMARK, - [48846] = 13, + [50340] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(55), 1, - anon_sym_struct, + ACTIONS(53), 1, + sym_primitive_type, ACTIONS(57), 1, + anon_sym_struct, + ACTIONS(59), 1, anon_sym_union, - ACTIONS(1924), 1, - anon_sym_enum, - ACTIONS(3397), 1, + ACTIONS(2009), 1, sym_identifier, - ACTIONS(3401), 1, - sym_primitive_type, - STATE(1364), 1, + ACTIONS(3552), 1, + anon_sym_enum, + STATE(1333), 1, sym__type_specifier, - STATE(1416), 1, + STATE(1339), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1457), 1, - sym__type_definition_type, - STATE(1291), 2, + STATE(2228), 1, + sym_type_descriptor, + STATE(1301), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3399), 4, + ACTIONS(1937), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1106), 5, + STATE(1069), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - ACTIONS(49), 9, + ACTIONS(51), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -115678,90 +119880,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [48902] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2548), 1, - anon_sym_LPAREN2, - ACTIONS(2550), 1, - anon_sym_LBRACK, - ACTIONS(3219), 1, - anon_sym_SLASH, - ACTIONS(3221), 1, - anon_sym_CARET, - ACTIONS(3223), 1, - anon_sym_AMP, - ACTIONS(3233), 1, - anon_sym_PIPE, - ACTIONS(3241), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3243), 1, - anon_sym_AMP_AMP, - ACTIONS(3245), 1, - anon_sym_QMARK, - STATE(791), 1, - sym_argument_list, - ACTIONS(2552), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2554), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3215), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3217), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3225), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3227), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3229), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3231), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3423), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [48972] = 13, + [50396] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, + ACTIONS(53), 1, sym_primitive_type, - ACTIONS(55), 1, - anon_sym_struct, ACTIONS(57), 1, + anon_sym_struct, + ACTIONS(59), 1, anon_sym_union, - ACTIONS(2046), 1, - sym_identifier, - ACTIONS(3395), 1, + ACTIONS(1939), 1, anon_sym_enum, - STATE(1314), 1, + ACTIONS(2009), 1, + sym_identifier, + STATE(1333), 1, sym__type_specifier, - STATE(1323), 1, + STATE(1339), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2210), 1, + STATE(2211), 1, sym_type_descriptor, - STATE(1275), 2, + STATE(1299), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(1922), 4, + ACTIONS(1937), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1106), 5, + STATE(1069), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - ACTIONS(49), 9, + ACTIONS(51), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -115771,40 +119923,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [49028] = 13, + [50452] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(55), 1, - anon_sym_struct, ACTIONS(57), 1, + anon_sym_struct, + ACTIONS(59), 1, anon_sym_union, - ACTIONS(1924), 1, + ACTIONS(1939), 1, anon_sym_enum, - ACTIONS(3397), 1, + ACTIONS(3546), 1, sym_identifier, - ACTIONS(3401), 1, + ACTIONS(3550), 1, sym_primitive_type, - STATE(1364), 1, + STATE(1396), 1, sym__type_specifier, - STATE(1416), 1, + STATE(1457), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1459), 1, + STATE(1489), 1, sym__type_definition_type, - STATE(1291), 2, + STATE(1309), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3399), 4, + ACTIONS(3548), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1106), 5, + STATE(1069), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - ACTIONS(49), 9, + ACTIONS(51), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -115814,40 +119966,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [49084] = 13, + [50508] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(55), 1, - anon_sym_struct, ACTIONS(57), 1, + anon_sym_struct, + ACTIONS(59), 1, anon_sym_union, - ACTIONS(1924), 1, + ACTIONS(1939), 1, anon_sym_enum, - ACTIONS(3397), 1, + ACTIONS(3546), 1, sym_identifier, - ACTIONS(3401), 1, + ACTIONS(3550), 1, sym_primitive_type, - STATE(1364), 1, + STATE(1396), 1, sym__type_specifier, - STATE(1416), 1, + STATE(1457), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1462), 1, + STATE(1490), 1, sym__type_definition_type, - STATE(1291), 2, + STATE(1309), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3399), 4, + ACTIONS(3548), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1106), 5, + STATE(1069), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - ACTIONS(49), 9, + ACTIONS(51), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -115857,318 +120009,284 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [49140] = 20, + [50564] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2548), 1, - anon_sym_LPAREN2, - ACTIONS(2550), 1, + ACTIONS(2564), 1, anon_sym_LBRACK, - ACTIONS(3219), 1, + ACTIONS(2568), 1, + anon_sym_DASH_GT, + ACTIONS(3032), 1, + anon_sym_LPAREN2, + ACTIONS(3294), 1, + anon_sym_DOT, + ACTIONS(3558), 1, anon_sym_SLASH, - ACTIONS(3221), 1, - anon_sym_CARET, - ACTIONS(3223), 1, - anon_sym_AMP, - ACTIONS(3233), 1, - anon_sym_PIPE, - ACTIONS(3241), 1, + ACTIONS(3560), 1, anon_sym_PIPE_PIPE, - ACTIONS(3243), 1, + ACTIONS(3562), 1, anon_sym_AMP_AMP, - ACTIONS(3245), 1, + ACTIONS(3564), 1, + anon_sym_PIPE, + ACTIONS(3566), 1, + anon_sym_CARET, + ACTIONS(3568), 1, + anon_sym_AMP, + ACTIONS(3578), 1, anon_sym_QMARK, - STATE(791), 1, + STATE(821), 1, sym_argument_list, - ACTIONS(2552), 2, + ACTIONS(2566), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2554), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3215), 2, + ACTIONS(2698), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_RBRACK, + ACTIONS(3554), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3217), 2, + ACTIONS(3556), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3225), 2, + ACTIONS(3570), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3227), 2, + ACTIONS(3572), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3229), 2, + ACTIONS(3574), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3231), 2, + ACTIONS(3576), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3425), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [49210] = 19, + [50636] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2550), 1, - anon_sym_LBRACK, - ACTIONS(2554), 1, - anon_sym_DASH_GT, - ACTIONS(2805), 1, + ACTIONS(2562), 1, anon_sym_LPAREN2, - ACTIONS(2893), 1, - anon_sym_DOT, - ACTIONS(3407), 1, + ACTIONS(2564), 1, + anon_sym_LBRACK, + ACTIONS(3347), 1, anon_sym_SLASH, - ACTIONS(3409), 1, - anon_sym_CARET, - ACTIONS(3411), 1, - anon_sym_AMP, - ACTIONS(3427), 1, + ACTIONS(3349), 1, anon_sym_AMP_AMP, - ACTIONS(3429), 1, + ACTIONS(3351), 1, anon_sym_PIPE, - STATE(791), 1, + ACTIONS(3353), 1, + anon_sym_CARET, + ACTIONS(3355), 1, + anon_sym_AMP, + ACTIONS(3367), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3369), 1, + anon_sym_QMARK, + STATE(821), 1, sym_argument_list, - ACTIONS(2552), 2, + ACTIONS(2566), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3403), 2, + ACTIONS(2568), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3343), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3405), 2, + ACTIONS(3345), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3413), 2, + ACTIONS(3357), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3415), 2, + ACTIONS(3359), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3417), 2, + ACTIONS(3361), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3419), 2, + ACTIONS(3363), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2546), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - anon_sym_QMARK, - [49278] = 11, + ACTIONS(3580), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [50706] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2550), 1, - anon_sym_LBRACK, - ACTIONS(2554), 1, - anon_sym_DASH_GT, - ACTIONS(2805), 1, + ACTIONS(2562), 1, anon_sym_LPAREN2, - ACTIONS(2893), 1, - anon_sym_DOT, - ACTIONS(3407), 1, + ACTIONS(2564), 1, + anon_sym_LBRACK, + ACTIONS(3347), 1, anon_sym_SLASH, - STATE(791), 1, + ACTIONS(3349), 1, + anon_sym_AMP_AMP, + ACTIONS(3351), 1, + anon_sym_PIPE, + ACTIONS(3353), 1, + anon_sym_CARET, + ACTIONS(3355), 1, + anon_sym_AMP, + ACTIONS(3367), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3369), 1, + anon_sym_QMARK, + ACTIONS(3522), 1, + anon_sym_COMMA, + ACTIONS(3582), 1, + anon_sym_RPAREN, + STATE(821), 1, sym_argument_list, - ACTIONS(2552), 2, + ACTIONS(2566), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3405), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2544), 6, + ACTIONS(2568), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3343), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2546), 12, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, + ACTIONS(3345), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3357), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(3359), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3361), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(3363), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RBRACK, - anon_sym_QMARK, - [49330] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(55), 1, - anon_sym_struct, - ACTIONS(57), 1, - anon_sym_union, - ACTIONS(1924), 1, - anon_sym_enum, - ACTIONS(3397), 1, - sym_identifier, - ACTIONS(3401), 1, - sym_primitive_type, - STATE(1364), 1, - sym__type_specifier, - STATE(1416), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1461), 1, - sym__type_definition_type, - STATE(1291), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3399), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1106), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(49), 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, - [49386] = 21, + [50778] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2548), 1, + ACTIONS(2562), 1, anon_sym_LPAREN2, - ACTIONS(2550), 1, + ACTIONS(2564), 1, anon_sym_LBRACK, - ACTIONS(3219), 1, + ACTIONS(3347), 1, anon_sym_SLASH, - ACTIONS(3221), 1, + ACTIONS(3349), 1, + anon_sym_AMP_AMP, + ACTIONS(3351), 1, + anon_sym_PIPE, + ACTIONS(3353), 1, anon_sym_CARET, - ACTIONS(3223), 1, + ACTIONS(3355), 1, anon_sym_AMP, - ACTIONS(3233), 1, - anon_sym_PIPE, - ACTIONS(3241), 1, + ACTIONS(3367), 1, anon_sym_PIPE_PIPE, - ACTIONS(3243), 1, - anon_sym_AMP_AMP, - ACTIONS(3245), 1, + ACTIONS(3369), 1, anon_sym_QMARK, - ACTIONS(3377), 1, + ACTIONS(3522), 1, anon_sym_COMMA, - ACTIONS(3431), 1, + ACTIONS(3584), 1, anon_sym_SEMI, - STATE(791), 1, + STATE(821), 1, sym_argument_list, - ACTIONS(2552), 2, + ACTIONS(2566), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2554), 2, + ACTIONS(2568), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3215), 2, + ACTIONS(3343), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3217), 2, + ACTIONS(3345), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3225), 2, + ACTIONS(3357), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3227), 2, + ACTIONS(3359), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3229), 2, + ACTIONS(3361), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3231), 2, + ACTIONS(3363), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [49458] = 15, + [50850] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2550), 1, + ACTIONS(2564), 1, anon_sym_LBRACK, - ACTIONS(2554), 1, + ACTIONS(2568), 1, anon_sym_DASH_GT, - ACTIONS(2805), 1, + ACTIONS(3032), 1, anon_sym_LPAREN2, - ACTIONS(2893), 1, + ACTIONS(3294), 1, anon_sym_DOT, - ACTIONS(3407), 1, + ACTIONS(3558), 1, anon_sym_SLASH, - STATE(791), 1, + STATE(821), 1, sym_argument_list, - ACTIONS(2544), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(2552), 2, + ACTIONS(2566), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3403), 2, + ACTIONS(3554), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3405), 2, + ACTIONS(3556), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3415), 2, + ACTIONS(2558), 4, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(3417), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3419), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2546), 8, + ACTIONS(2560), 12, anon_sym_DOT_DOT_DOT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_RBRACK, anon_sym_QMARK, - [49518] = 13, + [50904] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2550), 1, + ACTIONS(2564), 1, anon_sym_LBRACK, - ACTIONS(2554), 1, + ACTIONS(2568), 1, anon_sym_DASH_GT, - ACTIONS(2805), 1, + ACTIONS(3032), 1, anon_sym_LPAREN2, - ACTIONS(2893), 1, + ACTIONS(3294), 1, anon_sym_DOT, - ACTIONS(3407), 1, + ACTIONS(3558), 1, anon_sym_SLASH, - STATE(791), 1, + STATE(821), 1, sym_argument_list, - ACTIONS(2552), 2, + ACTIONS(2566), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3403), 2, + ACTIONS(3554), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3405), 2, + ACTIONS(3556), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3419), 2, + ACTIONS(3576), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2544), 4, + ACTIONS(2558), 4, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(2546), 10, + ACTIONS(2560), 10, anon_sym_DOT_DOT_DOT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -116179,482 +120297,619 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_RBRACK, anon_sym_QMARK, - [49574] = 12, + [50960] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2550), 1, + ACTIONS(2564), 1, anon_sym_LBRACK, - ACTIONS(2554), 1, + ACTIONS(2568), 1, anon_sym_DASH_GT, - ACTIONS(2805), 1, + ACTIONS(3032), 1, anon_sym_LPAREN2, - ACTIONS(2893), 1, + ACTIONS(3294), 1, anon_sym_DOT, - ACTIONS(3407), 1, + ACTIONS(3558), 1, anon_sym_SLASH, - STATE(791), 1, + STATE(821), 1, sym_argument_list, - ACTIONS(2552), 2, + ACTIONS(2558), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(2566), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3403), 2, + ACTIONS(3554), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3405), 2, + ACTIONS(3556), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2544), 4, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(3572), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2546), 12, + ACTIONS(3574), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3576), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2560), 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, + [51020] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2564), 1, + anon_sym_LBRACK, + ACTIONS(2568), 1, + anon_sym_DASH_GT, + ACTIONS(3032), 1, + anon_sym_LPAREN2, + ACTIONS(3294), 1, + anon_sym_DOT, + ACTIONS(3558), 1, + anon_sym_SLASH, + STATE(821), 1, + sym_argument_list, + ACTIONS(2558), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(2566), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3554), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3556), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3570), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3572), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3574), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(3576), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(2560), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_RBRACK, anon_sym_QMARK, - [49628] = 21, + [51082] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2548), 1, - anon_sym_LPAREN2, - ACTIONS(2550), 1, + ACTIONS(2558), 1, + anon_sym_PIPE, + ACTIONS(2564), 1, anon_sym_LBRACK, - ACTIONS(3219), 1, + ACTIONS(2568), 1, + anon_sym_DASH_GT, + ACTIONS(3032), 1, + anon_sym_LPAREN2, + ACTIONS(3294), 1, + anon_sym_DOT, + ACTIONS(3558), 1, anon_sym_SLASH, - ACTIONS(3221), 1, - anon_sym_CARET, - ACTIONS(3223), 1, + ACTIONS(3568), 1, anon_sym_AMP, - ACTIONS(3233), 1, - anon_sym_PIPE, - ACTIONS(3241), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3243), 1, - anon_sym_AMP_AMP, - ACTIONS(3245), 1, - anon_sym_QMARK, - ACTIONS(3377), 1, - anon_sym_COMMA, - ACTIONS(3433), 1, - anon_sym_SEMI, - STATE(791), 1, + STATE(821), 1, sym_argument_list, - ACTIONS(2552), 2, + ACTIONS(2566), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2554), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3215), 2, + ACTIONS(3554), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3217), 2, + ACTIONS(3556), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3225), 2, + ACTIONS(3570), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3227), 2, + ACTIONS(3572), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3229), 2, + ACTIONS(3574), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3231), 2, + ACTIONS(3576), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [49700] = 21, + ACTIONS(2560), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_RBRACK, + anon_sym_QMARK, + [51146] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2548), 1, - anon_sym_LPAREN2, - ACTIONS(2550), 1, + ACTIONS(2558), 1, + anon_sym_PIPE, + ACTIONS(2564), 1, anon_sym_LBRACK, - ACTIONS(3219), 1, + ACTIONS(2568), 1, + anon_sym_DASH_GT, + ACTIONS(3032), 1, + anon_sym_LPAREN2, + ACTIONS(3294), 1, + anon_sym_DOT, + ACTIONS(3558), 1, anon_sym_SLASH, - ACTIONS(3221), 1, + ACTIONS(3566), 1, anon_sym_CARET, - ACTIONS(3223), 1, + ACTIONS(3568), 1, anon_sym_AMP, - ACTIONS(3233), 1, - anon_sym_PIPE, - ACTIONS(3241), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3243), 1, - anon_sym_AMP_AMP, - ACTIONS(3245), 1, - anon_sym_QMARK, - ACTIONS(3377), 1, - anon_sym_COMMA, - ACTIONS(3435), 1, - anon_sym_SEMI, - STATE(791), 1, + STATE(821), 1, sym_argument_list, - ACTIONS(2552), 2, + ACTIONS(2566), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2554), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3215), 2, + ACTIONS(3554), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3217), 2, + ACTIONS(3556), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3225), 2, + ACTIONS(3570), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3227), 2, + ACTIONS(3572), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3229), 2, + ACTIONS(3574), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3231), 2, + ACTIONS(3576), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [49772] = 21, + ACTIONS(2560), 5, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_RBRACK, + anon_sym_QMARK, + [51212] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2548), 1, - anon_sym_LPAREN2, - ACTIONS(2550), 1, + ACTIONS(2564), 1, anon_sym_LBRACK, - ACTIONS(3219), 1, + ACTIONS(2568), 1, + anon_sym_DASH_GT, + ACTIONS(3032), 1, + anon_sym_LPAREN2, + ACTIONS(3294), 1, + anon_sym_DOT, + ACTIONS(3558), 1, anon_sym_SLASH, - ACTIONS(3221), 1, + ACTIONS(3564), 1, + anon_sym_PIPE, + ACTIONS(3566), 1, anon_sym_CARET, - ACTIONS(3223), 1, + ACTIONS(3568), 1, anon_sym_AMP, - ACTIONS(3233), 1, - anon_sym_PIPE, - ACTIONS(3241), 1, + STATE(821), 1, + sym_argument_list, + ACTIONS(2566), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3554), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3556), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3570), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3572), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3574), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3576), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2560), 5, + anon_sym_DOT_DOT_DOT, anon_sym_PIPE_PIPE, - ACTIONS(3243), 1, anon_sym_AMP_AMP, - ACTIONS(3245), 1, + anon_sym_RBRACK, anon_sym_QMARK, - ACTIONS(3377), 1, - anon_sym_COMMA, - ACTIONS(3437), 1, - anon_sym_SEMI, - STATE(791), 1, + [51278] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2564), 1, + anon_sym_LBRACK, + ACTIONS(2568), 1, + anon_sym_DASH_GT, + ACTIONS(3032), 1, + anon_sym_LPAREN2, + ACTIONS(3294), 1, + anon_sym_DOT, + ACTIONS(3558), 1, + anon_sym_SLASH, + ACTIONS(3562), 1, + anon_sym_AMP_AMP, + ACTIONS(3564), 1, + anon_sym_PIPE, + ACTIONS(3566), 1, + anon_sym_CARET, + ACTIONS(3568), 1, + anon_sym_AMP, + STATE(821), 1, sym_argument_list, - ACTIONS(2552), 2, + ACTIONS(2566), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2554), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3215), 2, + ACTIONS(3554), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3217), 2, + ACTIONS(3556), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3225), 2, + ACTIONS(3570), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3227), 2, + ACTIONS(3572), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3229), 2, + ACTIONS(3574), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3231), 2, + ACTIONS(3576), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [49844] = 13, + ACTIONS(2560), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK, + anon_sym_QMARK, + [51346] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - sym_primitive_type, - ACTIONS(55), 1, - anon_sym_struct, - ACTIONS(57), 1, - anon_sym_union, - ACTIONS(1924), 1, - anon_sym_enum, - ACTIONS(2046), 1, - sym_identifier, - STATE(1314), 1, - sym__type_specifier, - STATE(1323), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2077), 1, - sym_type_descriptor, - STATE(1287), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(1922), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1106), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(49), 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, - [49900] = 21, + ACTIONS(2564), 1, + anon_sym_LBRACK, + ACTIONS(2568), 1, + anon_sym_DASH_GT, + ACTIONS(3032), 1, + anon_sym_LPAREN2, + ACTIONS(3294), 1, + anon_sym_DOT, + ACTIONS(3558), 1, + anon_sym_SLASH, + STATE(821), 1, + sym_argument_list, + ACTIONS(2566), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3556), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2558), 6, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2560), 12, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RBRACK, + anon_sym_QMARK, + [51398] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2564), 1, + anon_sym_LBRACK, + ACTIONS(2568), 1, + anon_sym_DASH_GT, + ACTIONS(3032), 1, + anon_sym_LPAREN2, + ACTIONS(3294), 1, + anon_sym_DOT, + ACTIONS(3558), 1, + anon_sym_SLASH, + ACTIONS(3560), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3562), 1, + anon_sym_AMP_AMP, + ACTIONS(3564), 1, + anon_sym_PIPE, + ACTIONS(3566), 1, + anon_sym_CARET, + ACTIONS(3568), 1, + anon_sym_AMP, + ACTIONS(3578), 1, + anon_sym_QMARK, + STATE(821), 1, + sym_argument_list, + ACTIONS(2566), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2718), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_RBRACK, + ACTIONS(3554), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3556), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3570), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3572), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3574), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3576), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [51470] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2548), 1, + ACTIONS(2562), 1, anon_sym_LPAREN2, - ACTIONS(2550), 1, + ACTIONS(2564), 1, anon_sym_LBRACK, - ACTIONS(3219), 1, + ACTIONS(3347), 1, anon_sym_SLASH, - ACTIONS(3221), 1, + ACTIONS(3349), 1, + anon_sym_AMP_AMP, + ACTIONS(3351), 1, + anon_sym_PIPE, + ACTIONS(3353), 1, anon_sym_CARET, - ACTIONS(3223), 1, + ACTIONS(3355), 1, anon_sym_AMP, - ACTIONS(3233), 1, - anon_sym_PIPE, - ACTIONS(3241), 1, + ACTIONS(3367), 1, anon_sym_PIPE_PIPE, - ACTIONS(3243), 1, - anon_sym_AMP_AMP, - ACTIONS(3245), 1, + ACTIONS(3369), 1, anon_sym_QMARK, - ACTIONS(3377), 1, + ACTIONS(3522), 1, anon_sym_COMMA, - ACTIONS(3439), 1, + ACTIONS(3586), 1, anon_sym_SEMI, - STATE(791), 1, + STATE(821), 1, sym_argument_list, - ACTIONS(2552), 2, + ACTIONS(2566), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2554), 2, + ACTIONS(2568), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3215), 2, + ACTIONS(3343), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3217), 2, + ACTIONS(3345), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3225), 2, + ACTIONS(3357), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3227), 2, + ACTIONS(3359), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3229), 2, + ACTIONS(3361), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3231), 2, + ACTIONS(3363), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [49972] = 21, + [51542] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2548), 1, + ACTIONS(2562), 1, anon_sym_LPAREN2, - ACTIONS(2550), 1, + ACTIONS(2564), 1, anon_sym_LBRACK, - ACTIONS(3219), 1, + ACTIONS(3347), 1, anon_sym_SLASH, - ACTIONS(3221), 1, + ACTIONS(3349), 1, + anon_sym_AMP_AMP, + ACTIONS(3351), 1, + anon_sym_PIPE, + ACTIONS(3353), 1, anon_sym_CARET, - ACTIONS(3223), 1, + ACTIONS(3355), 1, anon_sym_AMP, - ACTIONS(3233), 1, - anon_sym_PIPE, - ACTIONS(3241), 1, + ACTIONS(3367), 1, anon_sym_PIPE_PIPE, - ACTIONS(3243), 1, - anon_sym_AMP_AMP, - ACTIONS(3245), 1, + ACTIONS(3369), 1, anon_sym_QMARK, - ACTIONS(3377), 1, + ACTIONS(3522), 1, anon_sym_COMMA, - ACTIONS(3441), 1, + ACTIONS(3588), 1, anon_sym_SEMI, - STATE(791), 1, + STATE(821), 1, sym_argument_list, - ACTIONS(2552), 2, + ACTIONS(2566), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2554), 2, + ACTIONS(2568), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3215), 2, + ACTIONS(3343), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3217), 2, + ACTIONS(3345), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3225), 2, + ACTIONS(3357), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3227), 2, + ACTIONS(3359), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3229), 2, + ACTIONS(3361), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3231), 2, + ACTIONS(3363), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [50044] = 21, + [51614] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2548), 1, + ACTIONS(2562), 1, anon_sym_LPAREN2, - ACTIONS(2550), 1, + ACTIONS(2564), 1, anon_sym_LBRACK, - ACTIONS(3219), 1, + ACTIONS(3347), 1, anon_sym_SLASH, - ACTIONS(3221), 1, + ACTIONS(3349), 1, + anon_sym_AMP_AMP, + ACTIONS(3351), 1, + anon_sym_PIPE, + ACTIONS(3353), 1, anon_sym_CARET, - ACTIONS(3223), 1, + ACTIONS(3355), 1, anon_sym_AMP, - ACTIONS(3233), 1, - anon_sym_PIPE, - ACTIONS(3241), 1, + ACTIONS(3367), 1, anon_sym_PIPE_PIPE, - ACTIONS(3243), 1, - anon_sym_AMP_AMP, - ACTIONS(3245), 1, + ACTIONS(3369), 1, anon_sym_QMARK, - ACTIONS(3377), 1, + ACTIONS(3522), 1, anon_sym_COMMA, - ACTIONS(3443), 1, - anon_sym_RPAREN, - STATE(791), 1, + ACTIONS(3590), 1, + anon_sym_SEMI, + STATE(821), 1, sym_argument_list, - ACTIONS(2552), 2, + ACTIONS(2566), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2554), 2, + ACTIONS(2568), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3215), 2, + ACTIONS(3343), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3217), 2, + ACTIONS(3345), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3225), 2, + ACTIONS(3357), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3227), 2, + ACTIONS(3359), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3229), 2, + ACTIONS(3361), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3231), 2, + ACTIONS(3363), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [50116] = 21, + [51686] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2548), 1, + ACTIONS(2562), 1, anon_sym_LPAREN2, - ACTIONS(2550), 1, + ACTIONS(2564), 1, anon_sym_LBRACK, - ACTIONS(3219), 1, + ACTIONS(3347), 1, anon_sym_SLASH, - ACTIONS(3221), 1, + ACTIONS(3349), 1, + anon_sym_AMP_AMP, + ACTIONS(3351), 1, + anon_sym_PIPE, + ACTIONS(3353), 1, anon_sym_CARET, - ACTIONS(3223), 1, + ACTIONS(3355), 1, anon_sym_AMP, - ACTIONS(3233), 1, - anon_sym_PIPE, - ACTIONS(3241), 1, + ACTIONS(3367), 1, anon_sym_PIPE_PIPE, - ACTIONS(3243), 1, - anon_sym_AMP_AMP, - ACTIONS(3245), 1, + ACTIONS(3369), 1, anon_sym_QMARK, - ACTIONS(3377), 1, + ACTIONS(3522), 1, anon_sym_COMMA, - ACTIONS(3445), 1, + ACTIONS(3592), 1, anon_sym_SEMI, - STATE(791), 1, + STATE(821), 1, sym_argument_list, - ACTIONS(2552), 2, + ACTIONS(2566), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2554), 2, + ACTIONS(2568), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3215), 2, + ACTIONS(3343), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3217), 2, + ACTIONS(3345), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3225), 2, + ACTIONS(3357), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3227), 2, + ACTIONS(3359), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3229), 2, + ACTIONS(3361), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3231), 2, + ACTIONS(3363), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [50188] = 13, + [51758] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(55), 1, - anon_sym_struct, ACTIONS(57), 1, + anon_sym_struct, + ACTIONS(59), 1, anon_sym_union, - ACTIONS(1924), 1, + ACTIONS(1939), 1, anon_sym_enum, - ACTIONS(3397), 1, + ACTIONS(3546), 1, sym_identifier, - ACTIONS(3401), 1, + ACTIONS(3550), 1, sym_primitive_type, - STATE(1364), 1, + STATE(1396), 1, sym__type_specifier, - STATE(1416), 1, + STATE(1457), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1450), 1, + STATE(1486), 1, sym__type_definition_type, - STATE(1291), 2, + STATE(1309), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3399), 4, + ACTIONS(3548), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1106), 5, + STATE(1069), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - ACTIONS(49), 9, + ACTIONS(51), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -116664,139 +120919,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [50244] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2550), 1, - anon_sym_LBRACK, - ACTIONS(2554), 1, - anon_sym_DASH_GT, - ACTIONS(2805), 1, - anon_sym_LPAREN2, - ACTIONS(2893), 1, - anon_sym_DOT, - ACTIONS(3407), 1, - anon_sym_SLASH, - ACTIONS(3409), 1, - anon_sym_CARET, - ACTIONS(3411), 1, - anon_sym_AMP, - ACTIONS(3429), 1, - anon_sym_PIPE, - STATE(791), 1, - sym_argument_list, - ACTIONS(2552), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(3403), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3405), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3413), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3415), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3417), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3419), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2546), 5, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_RBRACK, - anon_sym_QMARK, - [50310] = 21, + [51814] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2548), 1, + ACTIONS(2562), 1, anon_sym_LPAREN2, - ACTIONS(2550), 1, + ACTIONS(2564), 1, anon_sym_LBRACK, - ACTIONS(3219), 1, + ACTIONS(3347), 1, anon_sym_SLASH, - ACTIONS(3221), 1, + ACTIONS(3349), 1, + anon_sym_AMP_AMP, + ACTIONS(3351), 1, + anon_sym_PIPE, + ACTIONS(3353), 1, anon_sym_CARET, - ACTIONS(3223), 1, + ACTIONS(3355), 1, anon_sym_AMP, - ACTIONS(3233), 1, - anon_sym_PIPE, - ACTIONS(3241), 1, + ACTIONS(3367), 1, anon_sym_PIPE_PIPE, - ACTIONS(3243), 1, - anon_sym_AMP_AMP, - ACTIONS(3245), 1, + ACTIONS(3369), 1, anon_sym_QMARK, - ACTIONS(3377), 1, + ACTIONS(3522), 1, anon_sym_COMMA, - ACTIONS(3447), 1, - anon_sym_SEMI, - STATE(791), 1, + ACTIONS(3594), 1, + anon_sym_RPAREN, + STATE(821), 1, sym_argument_list, - ACTIONS(2552), 2, + ACTIONS(2566), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2554), 2, + ACTIONS(2568), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3215), 2, + ACTIONS(3343), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3217), 2, + ACTIONS(3345), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3225), 2, + ACTIONS(3357), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3227), 2, + ACTIONS(3359), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3229), 2, + ACTIONS(3361), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3231), 2, + ACTIONS(3363), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [50382] = 13, + [51886] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(55), 1, - anon_sym_struct, + ACTIONS(53), 1, + sym_primitive_type, ACTIONS(57), 1, + anon_sym_struct, + ACTIONS(59), 1, anon_sym_union, - ACTIONS(1924), 1, + ACTIONS(1939), 1, anon_sym_enum, - ACTIONS(3397), 1, + ACTIONS(2009), 1, sym_identifier, - ACTIONS(3401), 1, - sym_primitive_type, - STATE(1364), 1, + STATE(1333), 1, sym__type_specifier, - STATE(1416), 1, + STATE(1339), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1456), 1, - sym__type_definition_type, - STATE(1291), 2, + STATE(2235), 1, + sym_type_descriptor, + STATE(1299), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3399), 4, + ACTIONS(1937), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1106), 5, + STATE(1069), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - ACTIONS(49), 9, + ACTIONS(51), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -116806,40 +121013,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [50438] = 13, + [51942] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(55), 1, - anon_sym_struct, ACTIONS(57), 1, + anon_sym_struct, + ACTIONS(59), 1, anon_sym_union, - ACTIONS(1924), 1, + ACTIONS(1939), 1, anon_sym_enum, - ACTIONS(3397), 1, + ACTIONS(3546), 1, sym_identifier, - ACTIONS(3401), 1, + ACTIONS(3550), 1, sym_primitive_type, - STATE(1364), 1, + STATE(1396), 1, sym__type_specifier, - STATE(1416), 1, + STATE(1457), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1453), 1, + STATE(1493), 1, sym__type_definition_type, - STATE(1291), 2, + STATE(1309), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3399), 4, + ACTIONS(3548), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1106), 5, + STATE(1069), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - ACTIONS(49), 9, + ACTIONS(51), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -116849,91 +121056,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [50494] = 21, + [51998] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2548), 1, + ACTIONS(2562), 1, anon_sym_LPAREN2, - ACTIONS(2550), 1, + ACTIONS(2564), 1, anon_sym_LBRACK, - ACTIONS(3219), 1, + ACTIONS(3347), 1, anon_sym_SLASH, - ACTIONS(3221), 1, + ACTIONS(3349), 1, + anon_sym_AMP_AMP, + ACTIONS(3351), 1, + anon_sym_PIPE, + ACTIONS(3353), 1, anon_sym_CARET, - ACTIONS(3223), 1, + ACTIONS(3355), 1, anon_sym_AMP, - ACTIONS(3233), 1, - anon_sym_PIPE, - ACTIONS(3241), 1, + ACTIONS(3367), 1, anon_sym_PIPE_PIPE, - ACTIONS(3243), 1, - anon_sym_AMP_AMP, - ACTIONS(3245), 1, + ACTIONS(3369), 1, anon_sym_QMARK, - ACTIONS(3377), 1, + ACTIONS(3522), 1, anon_sym_COMMA, - ACTIONS(3449), 1, + ACTIONS(3596), 1, anon_sym_SEMI, - STATE(791), 1, + STATE(821), 1, sym_argument_list, - ACTIONS(2552), 2, + ACTIONS(2566), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2554), 2, + ACTIONS(2568), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3215), 2, + ACTIONS(3343), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3217), 2, + ACTIONS(3345), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3225), 2, + ACTIONS(3357), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3227), 2, + ACTIONS(3359), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3229), 2, + ACTIONS(3361), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3231), 2, + ACTIONS(3363), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [50566] = 13, + [52070] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(55), 1, - anon_sym_struct, ACTIONS(57), 1, + anon_sym_struct, + ACTIONS(59), 1, anon_sym_union, - ACTIONS(1924), 1, + ACTIONS(1939), 1, anon_sym_enum, - ACTIONS(3397), 1, + ACTIONS(3546), 1, sym_identifier, - ACTIONS(3401), 1, + ACTIONS(3550), 1, sym_primitive_type, - STATE(1364), 1, + STATE(1396), 1, sym__type_specifier, - STATE(1416), 1, + STATE(1457), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1449), 1, + STATE(1492), 1, sym__type_definition_type, - STATE(1291), 2, + STATE(1309), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3399), 4, + ACTIONS(3548), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1106), 5, + STATE(1069), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - ACTIONS(49), 9, + ACTIONS(51), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -116943,339 +121150,373 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [50622] = 21, + [52126] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2550), 1, - anon_sym_LBRACK, - ACTIONS(2554), 1, - anon_sym_DASH_GT, - ACTIONS(2805), 1, - anon_sym_LPAREN2, - ACTIONS(2893), 1, - anon_sym_DOT, - ACTIONS(3407), 1, - anon_sym_SLASH, - ACTIONS(3409), 1, - anon_sym_CARET, - ACTIONS(3411), 1, - anon_sym_AMP, - ACTIONS(3427), 1, - anon_sym_AMP_AMP, - ACTIONS(3429), 1, - anon_sym_PIPE, - ACTIONS(3451), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3453), 1, - anon_sym_QMARK, - STATE(791), 1, - sym_argument_list, - ACTIONS(2552), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2719), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_RBRACK, - ACTIONS(3403), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3405), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3413), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3415), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3417), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3419), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [50694] = 22, + ACTIONS(53), 1, + sym_primitive_type, + ACTIONS(57), 1, + anon_sym_struct, + ACTIONS(59), 1, + anon_sym_union, + ACTIONS(1939), 1, + anon_sym_enum, + ACTIONS(2009), 1, + sym_identifier, + STATE(1333), 1, + sym__type_specifier, + STATE(1339), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2187), 1, + sym_type_descriptor, + STATE(1299), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(1937), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1069), 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, + [52182] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2550), 1, - anon_sym_LBRACK, - ACTIONS(2554), 1, - anon_sym_DASH_GT, - ACTIONS(2805), 1, + ACTIONS(2562), 1, anon_sym_LPAREN2, - ACTIONS(2893), 1, - anon_sym_DOT, - ACTIONS(3407), 1, + ACTIONS(2564), 1, + anon_sym_LBRACK, + ACTIONS(3347), 1, anon_sym_SLASH, - ACTIONS(3409), 1, - anon_sym_CARET, - ACTIONS(3411), 1, - anon_sym_AMP, - ACTIONS(3427), 1, + ACTIONS(3349), 1, anon_sym_AMP_AMP, - ACTIONS(3429), 1, + ACTIONS(3351), 1, anon_sym_PIPE, - ACTIONS(3451), 1, + ACTIONS(3353), 1, + anon_sym_CARET, + ACTIONS(3355), 1, + anon_sym_AMP, + ACTIONS(3367), 1, anon_sym_PIPE_PIPE, - ACTIONS(3453), 1, + ACTIONS(3369), 1, anon_sym_QMARK, - ACTIONS(3455), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(3457), 1, - anon_sym_RBRACK, - STATE(791), 1, + ACTIONS(3522), 1, + anon_sym_COMMA, + ACTIONS(3598), 1, + anon_sym_RPAREN, + STATE(821), 1, sym_argument_list, - ACTIONS(2552), 2, + ACTIONS(2566), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3403), 2, + ACTIONS(2568), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3343), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3405), 2, + ACTIONS(3345), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3413), 2, + ACTIONS(3357), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3415), 2, + ACTIONS(3359), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3417), 2, + ACTIONS(3361), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3419), 2, + ACTIONS(3363), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [50768] = 21, + [52254] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 1, + anon_sym_struct, + ACTIONS(59), 1, + anon_sym_union, + ACTIONS(1939), 1, + anon_sym_enum, + ACTIONS(3546), 1, + sym_identifier, + ACTIONS(3550), 1, + sym_primitive_type, + STATE(1396), 1, + sym__type_specifier, + STATE(1457), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1494), 1, + sym__type_definition_type, + STATE(1309), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3548), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1069), 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, + [52310] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 1, + anon_sym_struct, + ACTIONS(59), 1, + anon_sym_union, + ACTIONS(1939), 1, + anon_sym_enum, + ACTIONS(3546), 1, + sym_identifier, + ACTIONS(3550), 1, + sym_primitive_type, + STATE(1396), 1, + sym__type_specifier, + STATE(1457), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1496), 1, + sym__type_definition_type, + STATE(1309), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3548), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1069), 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, + [52366] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2548), 1, + ACTIONS(2562), 1, anon_sym_LPAREN2, - ACTIONS(2550), 1, + ACTIONS(2564), 1, anon_sym_LBRACK, - ACTIONS(3219), 1, + ACTIONS(3347), 1, anon_sym_SLASH, - ACTIONS(3221), 1, + ACTIONS(3349), 1, + anon_sym_AMP_AMP, + ACTIONS(3351), 1, + anon_sym_PIPE, + ACTIONS(3353), 1, anon_sym_CARET, - ACTIONS(3223), 1, + ACTIONS(3355), 1, anon_sym_AMP, - ACTIONS(3233), 1, - anon_sym_PIPE, - ACTIONS(3241), 1, + ACTIONS(3367), 1, anon_sym_PIPE_PIPE, - ACTIONS(3243), 1, - anon_sym_AMP_AMP, - ACTIONS(3245), 1, + ACTIONS(3369), 1, anon_sym_QMARK, - ACTIONS(3377), 1, + ACTIONS(3522), 1, anon_sym_COMMA, - ACTIONS(3459), 1, + ACTIONS(3600), 1, anon_sym_SEMI, - STATE(791), 1, + STATE(821), 1, sym_argument_list, - ACTIONS(2552), 2, + ACTIONS(2566), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2554), 2, + ACTIONS(2568), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3215), 2, + ACTIONS(3343), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3217), 2, + ACTIONS(3345), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3225), 2, + ACTIONS(3357), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3227), 2, + ACTIONS(3359), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3229), 2, + ACTIONS(3361), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3231), 2, + ACTIONS(3363), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [50840] = 21, + [52438] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2548), 1, + ACTIONS(2562), 1, anon_sym_LPAREN2, - ACTIONS(2550), 1, + ACTIONS(2564), 1, anon_sym_LBRACK, - ACTIONS(3219), 1, + ACTIONS(3347), 1, anon_sym_SLASH, - ACTIONS(3221), 1, + ACTIONS(3349), 1, + anon_sym_AMP_AMP, + ACTIONS(3351), 1, + anon_sym_PIPE, + ACTIONS(3353), 1, anon_sym_CARET, - ACTIONS(3223), 1, + ACTIONS(3355), 1, anon_sym_AMP, - ACTIONS(3233), 1, - anon_sym_PIPE, - ACTIONS(3241), 1, + ACTIONS(3367), 1, anon_sym_PIPE_PIPE, - ACTIONS(3243), 1, - anon_sym_AMP_AMP, - ACTIONS(3245), 1, + ACTIONS(3369), 1, anon_sym_QMARK, - ACTIONS(3377), 1, + ACTIONS(3522), 1, anon_sym_COMMA, - ACTIONS(3461), 1, - anon_sym_RPAREN, - STATE(791), 1, + ACTIONS(3602), 1, + anon_sym_SEMI, + STATE(821), 1, sym_argument_list, - ACTIONS(2552), 2, + ACTIONS(2566), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2554), 2, + ACTIONS(2568), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3215), 2, + ACTIONS(3343), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3217), 2, + ACTIONS(3345), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3225), 2, + ACTIONS(3357), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3227), 2, + ACTIONS(3359), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3229), 2, + ACTIONS(3361), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3231), 2, + ACTIONS(3363), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [50912] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - sym_primitive_type, - ACTIONS(55), 1, - anon_sym_struct, - ACTIONS(57), 1, - anon_sym_union, - ACTIONS(1924), 1, - anon_sym_enum, - ACTIONS(2046), 1, - sym_identifier, - STATE(1314), 1, - sym__type_specifier, - STATE(1323), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2138), 1, - sym_type_descriptor, - STATE(1287), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(1922), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1106), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(49), 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, - [50968] = 21, + [52510] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2548), 1, + ACTIONS(2562), 1, anon_sym_LPAREN2, - ACTIONS(2550), 1, + ACTIONS(2564), 1, anon_sym_LBRACK, - ACTIONS(3219), 1, + ACTIONS(3347), 1, anon_sym_SLASH, - ACTIONS(3221), 1, + ACTIONS(3349), 1, + anon_sym_AMP_AMP, + ACTIONS(3351), 1, + anon_sym_PIPE, + ACTIONS(3353), 1, anon_sym_CARET, - ACTIONS(3223), 1, + ACTIONS(3355), 1, anon_sym_AMP, - ACTIONS(3233), 1, - anon_sym_PIPE, - ACTIONS(3241), 1, + ACTIONS(3367), 1, anon_sym_PIPE_PIPE, - ACTIONS(3243), 1, - anon_sym_AMP_AMP, - ACTIONS(3245), 1, + ACTIONS(3369), 1, anon_sym_QMARK, - ACTIONS(3377), 1, + ACTIONS(3522), 1, anon_sym_COMMA, - ACTIONS(3463), 1, - anon_sym_RPAREN, - STATE(791), 1, + ACTIONS(3604), 1, + anon_sym_SEMI, + STATE(821), 1, sym_argument_list, - ACTIONS(2552), 2, + ACTIONS(2566), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2554), 2, + ACTIONS(2568), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3215), 2, + ACTIONS(3343), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3217), 2, + ACTIONS(3345), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3225), 2, + ACTIONS(3357), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3227), 2, + ACTIONS(3359), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3229), 2, + ACTIONS(3361), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3231), 2, + ACTIONS(3363), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [51040] = 13, + [52582] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, + ACTIONS(53), 1, sym_primitive_type, - ACTIONS(55), 1, - anon_sym_struct, ACTIONS(57), 1, + anon_sym_struct, + ACTIONS(59), 1, anon_sym_union, - ACTIONS(1924), 1, - anon_sym_enum, - ACTIONS(2046), 1, + ACTIONS(2009), 1, sym_identifier, - STATE(1314), 1, + ACTIONS(3552), 1, + anon_sym_enum, + STATE(1333), 1, sym__type_specifier, - STATE(1323), 1, + STATE(1339), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2140), 1, + STATE(2050), 1, sym_type_descriptor, - STATE(1287), 2, + STATE(1301), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(1922), 4, + ACTIONS(1937), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1106), 5, + STATE(1069), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - ACTIONS(49), 9, + ACTIONS(51), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -117285,694 +121526,743 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [51096] = 21, + [52638] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2548), 1, + ACTIONS(2562), 1, anon_sym_LPAREN2, - ACTIONS(2550), 1, + ACTIONS(2564), 1, anon_sym_LBRACK, - ACTIONS(3219), 1, + ACTIONS(3347), 1, anon_sym_SLASH, - ACTIONS(3221), 1, + ACTIONS(3349), 1, + anon_sym_AMP_AMP, + ACTIONS(3351), 1, + anon_sym_PIPE, + ACTIONS(3353), 1, anon_sym_CARET, - ACTIONS(3223), 1, + ACTIONS(3355), 1, anon_sym_AMP, - ACTIONS(3233), 1, - anon_sym_PIPE, - ACTIONS(3241), 1, + ACTIONS(3367), 1, anon_sym_PIPE_PIPE, - ACTIONS(3243), 1, - anon_sym_AMP_AMP, - ACTIONS(3245), 1, + ACTIONS(3369), 1, anon_sym_QMARK, - ACTIONS(3377), 1, + ACTIONS(3522), 1, anon_sym_COMMA, - ACTIONS(3465), 1, + ACTIONS(3606), 1, anon_sym_RPAREN, - STATE(791), 1, + STATE(821), 1, sym_argument_list, - ACTIONS(2552), 2, + ACTIONS(2566), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2554), 2, + ACTIONS(2568), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3215), 2, + ACTIONS(3343), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3217), 2, + ACTIONS(3345), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3225), 2, + ACTIONS(3357), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3227), 2, + ACTIONS(3359), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3229), 2, + ACTIONS(3361), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3231), 2, + ACTIONS(3363), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [51168] = 20, + [52710] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2548), 1, + ACTIONS(2562), 1, anon_sym_LPAREN2, - ACTIONS(2550), 1, + ACTIONS(2564), 1, anon_sym_LBRACK, - ACTIONS(3219), 1, + ACTIONS(3347), 1, anon_sym_SLASH, - ACTIONS(3221), 1, + ACTIONS(3349), 1, + anon_sym_AMP_AMP, + ACTIONS(3351), 1, + anon_sym_PIPE, + ACTIONS(3353), 1, anon_sym_CARET, - ACTIONS(3223), 1, + ACTIONS(3355), 1, anon_sym_AMP, - ACTIONS(3233), 1, - anon_sym_PIPE, - ACTIONS(3241), 1, + ACTIONS(3367), 1, anon_sym_PIPE_PIPE, - ACTIONS(3243), 1, - anon_sym_AMP_AMP, - ACTIONS(3245), 1, + ACTIONS(3369), 1, anon_sym_QMARK, - STATE(791), 1, + ACTIONS(3522), 1, + anon_sym_COMMA, + ACTIONS(3608), 1, + anon_sym_SEMI, + STATE(821), 1, sym_argument_list, - ACTIONS(2552), 2, + ACTIONS(2566), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2554), 2, + ACTIONS(2568), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3215), 2, + ACTIONS(3343), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3217), 2, + ACTIONS(3345), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3225), 2, + ACTIONS(3357), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3227), 2, + ACTIONS(3359), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3229), 2, + ACTIONS(3361), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3231), 2, + ACTIONS(3363), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3467), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [51238] = 21, + [52782] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2548), 1, + ACTIONS(2562), 1, anon_sym_LPAREN2, - ACTIONS(2550), 1, + ACTIONS(2564), 1, anon_sym_LBRACK, - ACTIONS(3219), 1, + ACTIONS(3347), 1, anon_sym_SLASH, - ACTIONS(3221), 1, + ACTIONS(3349), 1, + anon_sym_AMP_AMP, + ACTIONS(3351), 1, + anon_sym_PIPE, + ACTIONS(3353), 1, anon_sym_CARET, - ACTIONS(3223), 1, + ACTIONS(3355), 1, anon_sym_AMP, - ACTIONS(3233), 1, - anon_sym_PIPE, - ACTIONS(3241), 1, + ACTIONS(3367), 1, anon_sym_PIPE_PIPE, - ACTIONS(3243), 1, - anon_sym_AMP_AMP, - ACTIONS(3245), 1, + ACTIONS(3369), 1, anon_sym_QMARK, - ACTIONS(3377), 1, - anon_sym_COMMA, - ACTIONS(3469), 1, - anon_sym_RPAREN, - STATE(791), 1, + STATE(821), 1, sym_argument_list, - ACTIONS(2552), 2, + ACTIONS(2566), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2554), 2, + ACTIONS(2568), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3215), 2, + ACTIONS(3343), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3217), 2, + ACTIONS(3345), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3225), 2, + ACTIONS(3357), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3227), 2, + ACTIONS(3359), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3229), 2, + ACTIONS(3361), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3231), 2, + ACTIONS(3363), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [51310] = 21, + ACTIONS(3610), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [52852] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2548), 1, + ACTIONS(2562), 1, anon_sym_LPAREN2, - ACTIONS(2550), 1, + ACTIONS(2564), 1, anon_sym_LBRACK, - ACTIONS(3219), 1, + ACTIONS(3347), 1, anon_sym_SLASH, - ACTIONS(3221), 1, + ACTIONS(3349), 1, + anon_sym_AMP_AMP, + ACTIONS(3351), 1, + anon_sym_PIPE, + ACTIONS(3353), 1, anon_sym_CARET, - ACTIONS(3223), 1, + ACTIONS(3355), 1, anon_sym_AMP, - ACTIONS(3233), 1, - anon_sym_PIPE, - ACTIONS(3241), 1, + ACTIONS(3367), 1, anon_sym_PIPE_PIPE, - ACTIONS(3243), 1, - anon_sym_AMP_AMP, - ACTIONS(3245), 1, + ACTIONS(3369), 1, anon_sym_QMARK, - ACTIONS(3377), 1, + ACTIONS(3522), 1, anon_sym_COMMA, - ACTIONS(3471), 1, + ACTIONS(3612), 1, anon_sym_SEMI, - STATE(791), 1, + STATE(821), 1, sym_argument_list, - ACTIONS(2552), 2, + ACTIONS(2566), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2554), 2, + ACTIONS(2568), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3215), 2, + ACTIONS(3343), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3217), 2, + ACTIONS(3345), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3225), 2, + ACTIONS(3357), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3227), 2, + ACTIONS(3359), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3229), 2, + ACTIONS(3361), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3231), 2, + ACTIONS(3363), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [51382] = 21, + [52924] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2548), 1, + ACTIONS(2562), 1, anon_sym_LPAREN2, - ACTIONS(2550), 1, + ACTIONS(2564), 1, anon_sym_LBRACK, - ACTIONS(3219), 1, + ACTIONS(3347), 1, anon_sym_SLASH, - ACTIONS(3221), 1, + ACTIONS(3349), 1, + anon_sym_AMP_AMP, + ACTIONS(3351), 1, + anon_sym_PIPE, + ACTIONS(3353), 1, anon_sym_CARET, - ACTIONS(3223), 1, + ACTIONS(3355), 1, anon_sym_AMP, - ACTIONS(3233), 1, - anon_sym_PIPE, - ACTIONS(3241), 1, + ACTIONS(3367), 1, anon_sym_PIPE_PIPE, - ACTIONS(3243), 1, - anon_sym_AMP_AMP, - ACTIONS(3245), 1, + ACTIONS(3369), 1, anon_sym_QMARK, - ACTIONS(3377), 1, + ACTIONS(3522), 1, anon_sym_COMMA, - ACTIONS(3473), 1, + ACTIONS(3614), 1, anon_sym_SEMI, - STATE(791), 1, + STATE(821), 1, sym_argument_list, - ACTIONS(2552), 2, + ACTIONS(2566), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2554), 2, + ACTIONS(2568), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3215), 2, + ACTIONS(3343), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3217), 2, + ACTIONS(3345), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3225), 2, + ACTIONS(3357), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3227), 2, + ACTIONS(3359), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3229), 2, + ACTIONS(3361), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3231), 2, + ACTIONS(3363), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [51454] = 20, + [52996] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2548), 1, + ACTIONS(2562), 1, anon_sym_LPAREN2, - ACTIONS(2550), 1, + ACTIONS(2564), 1, anon_sym_LBRACK, - ACTIONS(3219), 1, + ACTIONS(3347), 1, anon_sym_SLASH, - ACTIONS(3221), 1, + ACTIONS(3349), 1, + anon_sym_AMP_AMP, + ACTIONS(3351), 1, + anon_sym_PIPE, + ACTIONS(3353), 1, anon_sym_CARET, - ACTIONS(3223), 1, + ACTIONS(3355), 1, anon_sym_AMP, - ACTIONS(3233), 1, - anon_sym_PIPE, - ACTIONS(3241), 1, + ACTIONS(3367), 1, anon_sym_PIPE_PIPE, - ACTIONS(3243), 1, - anon_sym_AMP_AMP, - ACTIONS(3245), 1, + ACTIONS(3369), 1, anon_sym_QMARK, - STATE(791), 1, + STATE(821), 1, sym_argument_list, - ACTIONS(2552), 2, + ACTIONS(2566), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2554), 2, + ACTIONS(2568), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3215), 2, + ACTIONS(3343), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3217), 2, + ACTIONS(3345), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3225), 2, + ACTIONS(3357), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3227), 2, + ACTIONS(3359), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3229), 2, + ACTIONS(3361), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3231), 2, + ACTIONS(3363), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3475), 2, + ACTIONS(3470), 2, anon_sym_COMMA, - anon_sym_SEMI, - [51524] = 20, + anon_sym_RBRACE, + [53066] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 1, + anon_sym_struct, + ACTIONS(59), 1, + anon_sym_union, + ACTIONS(1939), 1, + anon_sym_enum, + ACTIONS(3546), 1, + sym_identifier, + ACTIONS(3550), 1, + sym_primitive_type, + STATE(1396), 1, + sym__type_specifier, + STATE(1457), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1487), 1, + sym__type_definition_type, + STATE(1309), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3548), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1069), 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, + [53122] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2548), 1, + ACTIONS(2562), 1, anon_sym_LPAREN2, - ACTIONS(2550), 1, + ACTIONS(2564), 1, anon_sym_LBRACK, - ACTIONS(3219), 1, + ACTIONS(3347), 1, anon_sym_SLASH, - ACTIONS(3221), 1, + ACTIONS(3349), 1, + anon_sym_AMP_AMP, + ACTIONS(3351), 1, + anon_sym_PIPE, + ACTIONS(3353), 1, anon_sym_CARET, - ACTIONS(3223), 1, + ACTIONS(3355), 1, anon_sym_AMP, - ACTIONS(3233), 1, - anon_sym_PIPE, - ACTIONS(3241), 1, + ACTIONS(3367), 1, anon_sym_PIPE_PIPE, - ACTIONS(3243), 1, - anon_sym_AMP_AMP, - ACTIONS(3245), 1, + ACTIONS(3369), 1, anon_sym_QMARK, - STATE(791), 1, + STATE(821), 1, sym_argument_list, - ACTIONS(2552), 2, + ACTIONS(2566), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2554), 2, + ACTIONS(2568), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3215), 2, + ACTIONS(3343), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3217), 2, + ACTIONS(3345), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3225), 2, + ACTIONS(3357), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3227), 2, + ACTIONS(3359), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3229), 2, + ACTIONS(3361), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3231), 2, + ACTIONS(3363), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3477), 2, + ACTIONS(3616), 2, anon_sym_COMMA, - anon_sym_RPAREN, - [51594] = 20, + anon_sym_RBRACE, + [53192] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2548), 1, + ACTIONS(2562), 1, anon_sym_LPAREN2, - ACTIONS(2550), 1, + ACTIONS(2564), 1, anon_sym_LBRACK, - ACTIONS(3219), 1, + ACTIONS(3347), 1, anon_sym_SLASH, - ACTIONS(3221), 1, + ACTIONS(3349), 1, + anon_sym_AMP_AMP, + ACTIONS(3351), 1, + anon_sym_PIPE, + ACTIONS(3353), 1, anon_sym_CARET, - ACTIONS(3223), 1, + ACTIONS(3355), 1, anon_sym_AMP, - ACTIONS(3233), 1, - anon_sym_PIPE, - ACTIONS(3241), 1, + ACTIONS(3367), 1, anon_sym_PIPE_PIPE, - ACTIONS(3243), 1, - anon_sym_AMP_AMP, - ACTIONS(3245), 1, + ACTIONS(3369), 1, anon_sym_QMARK, - STATE(791), 1, + STATE(821), 1, sym_argument_list, - ACTIONS(2552), 2, + ACTIONS(2566), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2554), 2, + ACTIONS(2568), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3215), 2, + ACTIONS(3343), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3217), 2, + ACTIONS(3345), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3225), 2, + ACTIONS(3357), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3227), 2, + ACTIONS(3359), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3229), 2, + ACTIONS(3361), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3231), 2, + ACTIONS(3363), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3479), 2, + ACTIONS(3618), 2, anon_sym_COMMA, anon_sym_RBRACE, - [51664] = 21, + [53262] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2550), 1, - anon_sym_LBRACK, - ACTIONS(2554), 1, - anon_sym_DASH_GT, - ACTIONS(2805), 1, + ACTIONS(2562), 1, anon_sym_LPAREN2, - ACTIONS(2893), 1, - anon_sym_DOT, - ACTIONS(3407), 1, + ACTIONS(2564), 1, + anon_sym_LBRACK, + ACTIONS(3347), 1, anon_sym_SLASH, - ACTIONS(3409), 1, - anon_sym_CARET, - ACTIONS(3411), 1, - anon_sym_AMP, - ACTIONS(3427), 1, + ACTIONS(3349), 1, anon_sym_AMP_AMP, - ACTIONS(3429), 1, + ACTIONS(3351), 1, anon_sym_PIPE, - ACTIONS(3451), 1, + ACTIONS(3353), 1, + anon_sym_CARET, + ACTIONS(3355), 1, + anon_sym_AMP, + ACTIONS(3367), 1, anon_sym_PIPE_PIPE, - ACTIONS(3453), 1, + ACTIONS(3369), 1, anon_sym_QMARK, - STATE(791), 1, + STATE(821), 1, sym_argument_list, - ACTIONS(2552), 2, + ACTIONS(2566), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2707), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_RBRACK, - ACTIONS(3403), 2, + ACTIONS(2568), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3343), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3405), 2, + ACTIONS(3345), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3413), 2, + ACTIONS(3357), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3415), 2, + ACTIONS(3359), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3417), 2, + ACTIONS(3361), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3419), 2, + ACTIONS(3363), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [51736] = 21, + ACTIONS(3620), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [53332] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2550), 1, - anon_sym_LBRACK, - ACTIONS(2554), 1, - anon_sym_DASH_GT, - ACTIONS(2805), 1, + ACTIONS(2562), 1, anon_sym_LPAREN2, - ACTIONS(2893), 1, - anon_sym_DOT, - ACTIONS(3407), 1, + ACTIONS(2564), 1, + anon_sym_LBRACK, + ACTIONS(3347), 1, anon_sym_SLASH, - ACTIONS(3409), 1, - anon_sym_CARET, - ACTIONS(3411), 1, - anon_sym_AMP, - ACTIONS(3427), 1, + ACTIONS(3349), 1, anon_sym_AMP_AMP, - ACTIONS(3429), 1, + ACTIONS(3351), 1, anon_sym_PIPE, - ACTIONS(3451), 1, + ACTIONS(3353), 1, + anon_sym_CARET, + ACTIONS(3355), 1, + anon_sym_AMP, + ACTIONS(3367), 1, anon_sym_PIPE_PIPE, - ACTIONS(3453), 1, + ACTIONS(3369), 1, anon_sym_QMARK, - STATE(791), 1, + ACTIONS(3522), 1, + anon_sym_COMMA, + ACTIONS(3622), 1, + anon_sym_SEMI, + STATE(821), 1, sym_argument_list, - ACTIONS(2552), 2, + ACTIONS(2566), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2699), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_RBRACK, - ACTIONS(3403), 2, + ACTIONS(2568), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3343), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3405), 2, + ACTIONS(3345), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3413), 2, + ACTIONS(3357), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3415), 2, + ACTIONS(3359), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3417), 2, + ACTIONS(3361), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3419), 2, + ACTIONS(3363), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [51808] = 21, + [53404] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2548), 1, + ACTIONS(2562), 1, anon_sym_LPAREN2, - ACTIONS(2550), 1, + ACTIONS(2564), 1, anon_sym_LBRACK, - ACTIONS(3219), 1, + ACTIONS(3347), 1, anon_sym_SLASH, - ACTIONS(3221), 1, + ACTIONS(3349), 1, + anon_sym_AMP_AMP, + ACTIONS(3351), 1, + anon_sym_PIPE, + ACTIONS(3353), 1, anon_sym_CARET, - ACTIONS(3223), 1, + ACTIONS(3355), 1, anon_sym_AMP, - ACTIONS(3233), 1, - anon_sym_PIPE, - ACTIONS(3241), 1, + ACTIONS(3367), 1, anon_sym_PIPE_PIPE, - ACTIONS(3243), 1, - anon_sym_AMP_AMP, - ACTIONS(3245), 1, + ACTIONS(3369), 1, anon_sym_QMARK, - ACTIONS(3377), 1, + ACTIONS(3522), 1, anon_sym_COMMA, - ACTIONS(3481), 1, + ACTIONS(3624), 1, anon_sym_RPAREN, - STATE(791), 1, + STATE(821), 1, sym_argument_list, - ACTIONS(2552), 2, + ACTIONS(2566), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2554), 2, + ACTIONS(2568), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3215), 2, + ACTIONS(3343), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3217), 2, + ACTIONS(3345), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3225), 2, + ACTIONS(3357), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3227), 2, + ACTIONS(3359), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3229), 2, + ACTIONS(3361), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3231), 2, + ACTIONS(3363), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [51880] = 21, + [53476] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2548), 1, - anon_sym_LPAREN2, - ACTIONS(2550), 1, + ACTIONS(2564), 1, anon_sym_LBRACK, - ACTIONS(3219), 1, + ACTIONS(2568), 1, + anon_sym_DASH_GT, + ACTIONS(3032), 1, + anon_sym_LPAREN2, + ACTIONS(3294), 1, + anon_sym_DOT, + ACTIONS(3558), 1, anon_sym_SLASH, - ACTIONS(3221), 1, - anon_sym_CARET, - ACTIONS(3223), 1, - anon_sym_AMP, - ACTIONS(3233), 1, - anon_sym_PIPE, - ACTIONS(3241), 1, + ACTIONS(3560), 1, anon_sym_PIPE_PIPE, - ACTIONS(3243), 1, + ACTIONS(3562), 1, anon_sym_AMP_AMP, - ACTIONS(3245), 1, + ACTIONS(3564), 1, + anon_sym_PIPE, + ACTIONS(3566), 1, + anon_sym_CARET, + ACTIONS(3568), 1, + anon_sym_AMP, + ACTIONS(3578), 1, anon_sym_QMARK, - ACTIONS(3377), 1, - anon_sym_COMMA, - ACTIONS(3483), 1, - anon_sym_RPAREN, - STATE(791), 1, + ACTIONS(3626), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3628), 1, + anon_sym_RBRACK, + STATE(821), 1, sym_argument_list, - ACTIONS(2552), 2, + ACTIONS(2566), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2554), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3215), 2, + ACTIONS(3554), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3217), 2, + ACTIONS(3556), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3225), 2, + ACTIONS(3570), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3227), 2, + ACTIONS(3572), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3229), 2, + ACTIONS(3574), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3231), 2, + ACTIONS(3576), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [51952] = 21, + [53550] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2548), 1, + ACTIONS(2562), 1, anon_sym_LPAREN2, - ACTIONS(2550), 1, + ACTIONS(2564), 1, anon_sym_LBRACK, - ACTIONS(3219), 1, + ACTIONS(3347), 1, anon_sym_SLASH, - ACTIONS(3221), 1, + ACTIONS(3349), 1, + anon_sym_AMP_AMP, + ACTIONS(3351), 1, + anon_sym_PIPE, + ACTIONS(3353), 1, anon_sym_CARET, - ACTIONS(3223), 1, + ACTIONS(3355), 1, anon_sym_AMP, - ACTIONS(3233), 1, - anon_sym_PIPE, - ACTIONS(3241), 1, + ACTIONS(3367), 1, anon_sym_PIPE_PIPE, - ACTIONS(3243), 1, - anon_sym_AMP_AMP, - ACTIONS(3245), 1, + ACTIONS(3369), 1, anon_sym_QMARK, - ACTIONS(3377), 1, + ACTIONS(3522), 1, anon_sym_COMMA, - ACTIONS(3485), 1, + ACTIONS(3630), 1, anon_sym_RPAREN, - STATE(791), 1, + STATE(821), 1, sym_argument_list, - ACTIONS(2552), 2, + ACTIONS(2566), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2554), 2, + ACTIONS(2568), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3215), 2, + ACTIONS(3343), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3217), 2, + ACTIONS(3345), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3225), 2, + ACTIONS(3357), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3227), 2, + ACTIONS(3359), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3229), 2, + ACTIONS(3361), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3231), 2, + ACTIONS(3363), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [52024] = 9, + [53622] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(3189), 1, - anon_sym_LBRACE, - ACTIONS(3487), 1, - anon_sym_COLON, - STATE(1114), 1, - sym_attribute_specifier, - STATE(1305), 1, - sym_enumerator_list, - ACTIONS(35), 2, - anon_sym___scanf, - anon_sym___printf, - ACTIONS(3181), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_LBRACK, - ACTIONS(3179), 16, - anon_sym___extension__, - anon_sym___based, + ACTIONS(53), 1, + sym_primitive_type, + ACTIONS(57), 1, + anon_sym_struct, + ACTIONS(59), 1, + anon_sym_union, + ACTIONS(1939), 1, + anon_sym_enum, + ACTIONS(2009), 1, + sym_identifier, + STATE(1333), 1, + sym__type_specifier, + STATE(1339), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2186), 1, + sym_type_descriptor, + STATE(1299), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(1937), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + STATE(1069), 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, @@ -117981,93 +122271,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - sym_primitive_type, - sym_identifier, - [52072] = 21, + [53678] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2548), 1, + ACTIONS(2562), 1, anon_sym_LPAREN2, - ACTIONS(2550), 1, + ACTIONS(2564), 1, anon_sym_LBRACK, - ACTIONS(3219), 1, + ACTIONS(3347), 1, anon_sym_SLASH, - ACTIONS(3221), 1, + ACTIONS(3349), 1, + anon_sym_AMP_AMP, + ACTIONS(3351), 1, + anon_sym_PIPE, + ACTIONS(3353), 1, anon_sym_CARET, - ACTIONS(3223), 1, + ACTIONS(3355), 1, anon_sym_AMP, - ACTIONS(3233), 1, - anon_sym_PIPE, - ACTIONS(3241), 1, + ACTIONS(3367), 1, anon_sym_PIPE_PIPE, - ACTIONS(3243), 1, - anon_sym_AMP_AMP, - ACTIONS(3245), 1, + ACTIONS(3369), 1, anon_sym_QMARK, - ACTIONS(3377), 1, + ACTIONS(3522), 1, anon_sym_COMMA, - ACTIONS(3489), 1, - anon_sym_SEMI, - STATE(791), 1, + ACTIONS(3632), 1, + anon_sym_RPAREN, + STATE(821), 1, sym_argument_list, - ACTIONS(2552), 2, + ACTIONS(2566), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2554), 2, + ACTIONS(2568), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3215), 2, + ACTIONS(3343), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3217), 2, + ACTIONS(3345), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3225), 2, + ACTIONS(3357), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3227), 2, + ACTIONS(3359), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3229), 2, + ACTIONS(3361), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3231), 2, + ACTIONS(3363), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [52144] = 13, + [53750] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(55), 1, - anon_sym_struct, ACTIONS(57), 1, + anon_sym_struct, + ACTIONS(59), 1, anon_sym_union, - ACTIONS(1924), 1, + ACTIONS(1939), 1, anon_sym_enum, - ACTIONS(3397), 1, + ACTIONS(3546), 1, sym_identifier, - ACTIONS(3401), 1, + ACTIONS(3550), 1, sym_primitive_type, - STATE(1364), 1, + STATE(1396), 1, sym__type_specifier, - STATE(1416), 1, + STATE(1457), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1454), 1, + STATE(1484), 1, sym__type_definition_type, - STATE(1291), 2, + STATE(1309), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3399), 4, + ACTIONS(3548), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1106), 5, + STATE(1069), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - ACTIONS(49), 9, + ACTIONS(51), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -118077,171 +122365,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [52200] = 20, + [53806] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2548), 1, + ACTIONS(2562), 1, anon_sym_LPAREN2, - ACTIONS(2550), 1, + ACTIONS(2564), 1, anon_sym_LBRACK, - ACTIONS(3219), 1, + ACTIONS(3347), 1, anon_sym_SLASH, - ACTIONS(3221), 1, + ACTIONS(3349), 1, + anon_sym_AMP_AMP, + ACTIONS(3351), 1, + anon_sym_PIPE, + ACTIONS(3353), 1, anon_sym_CARET, - ACTIONS(3223), 1, + ACTIONS(3355), 1, anon_sym_AMP, - ACTIONS(3233), 1, - anon_sym_PIPE, - ACTIONS(3241), 1, + ACTIONS(3367), 1, anon_sym_PIPE_PIPE, - ACTIONS(3243), 1, - anon_sym_AMP_AMP, - ACTIONS(3245), 1, + ACTIONS(3369), 1, anon_sym_QMARK, - STATE(791), 1, + ACTIONS(3522), 1, + anon_sym_COMMA, + ACTIONS(3634), 1, + anon_sym_RPAREN, + STATE(821), 1, sym_argument_list, - ACTIONS(2552), 2, + ACTIONS(2566), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2554), 2, + ACTIONS(2568), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3215), 2, + ACTIONS(3343), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3217), 2, + ACTIONS(3345), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3225), 2, + ACTIONS(3357), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3227), 2, + ACTIONS(3359), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3229), 2, + ACTIONS(3361), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3231), 2, + ACTIONS(3363), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3491), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [52270] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(3189), 1, - anon_sym_LBRACE, - STATE(1089), 1, - sym_attribute_specifier, - STATE(1308), 1, - sym_enumerator_list, - ACTIONS(35), 2, - anon_sym___scanf, - anon_sym___printf, - ACTIONS(3207), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_COLON, - ACTIONS(3205), 16, - 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, - sym_primitive_type, - sym_identifier, - [52316] = 13, + [53878] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, + ACTIONS(53), 1, sym_primitive_type, - ACTIONS(55), 1, - anon_sym_struct, ACTIONS(57), 1, - anon_sym_union, - ACTIONS(1924), 1, - anon_sym_enum, - ACTIONS(2046), 1, - sym_identifier, - STATE(1314), 1, - sym__type_specifier, - STATE(1323), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2139), 1, - sym_type_descriptor, - STATE(1287), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(1922), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1106), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(49), 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, - [52372] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - sym_primitive_type, - ACTIONS(55), 1, anon_sym_struct, - ACTIONS(57), 1, + ACTIONS(59), 1, anon_sym_union, - ACTIONS(1924), 1, + ACTIONS(1939), 1, anon_sym_enum, - ACTIONS(2046), 1, + ACTIONS(2009), 1, sym_identifier, - STATE(1314), 1, + STATE(1333), 1, sym__type_specifier, - STATE(1323), 1, + STATE(1339), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2137), 1, + STATE(2225), 1, sym_type_descriptor, - STATE(1287), 2, + STATE(1299), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(1922), 4, + ACTIONS(1937), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1106), 5, + STATE(1069), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - ACTIONS(49), 9, + ACTIONS(51), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -118251,979 +122459,1072 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [52428] = 20, + [53934] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2344), 1, - anon_sym_RBRACK, - ACTIONS(2550), 1, - anon_sym_LBRACK, - ACTIONS(2805), 1, + ACTIONS(2562), 1, anon_sym_LPAREN2, - ACTIONS(3407), 1, + ACTIONS(2564), 1, + anon_sym_LBRACK, + ACTIONS(3347), 1, anon_sym_SLASH, - ACTIONS(3409), 1, - anon_sym_CARET, - ACTIONS(3411), 1, - anon_sym_AMP, - ACTIONS(3427), 1, + ACTIONS(3349), 1, anon_sym_AMP_AMP, - ACTIONS(3429), 1, + ACTIONS(3351), 1, anon_sym_PIPE, - ACTIONS(3451), 1, + ACTIONS(3353), 1, + anon_sym_CARET, + ACTIONS(3355), 1, + anon_sym_AMP, + ACTIONS(3367), 1, anon_sym_PIPE_PIPE, - ACTIONS(3453), 1, + ACTIONS(3369), 1, anon_sym_QMARK, - STATE(791), 1, + ACTIONS(3522), 1, + anon_sym_COMMA, + ACTIONS(3636), 1, + anon_sym_SEMI, + STATE(821), 1, sym_argument_list, - ACTIONS(2552), 2, + ACTIONS(2566), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2554), 2, + ACTIONS(2568), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3403), 2, + ACTIONS(3343), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3405), 2, + ACTIONS(3345), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3413), 2, + ACTIONS(3357), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3415), 2, + ACTIONS(3359), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3417), 2, + ACTIONS(3361), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3419), 2, + ACTIONS(3363), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [52497] = 20, + [54006] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2548), 1, + ACTIONS(2562), 1, anon_sym_LPAREN2, - ACTIONS(2550), 1, + ACTIONS(2564), 1, anon_sym_LBRACK, - ACTIONS(3219), 1, + ACTIONS(3347), 1, anon_sym_SLASH, - ACTIONS(3221), 1, + ACTIONS(3349), 1, + anon_sym_AMP_AMP, + ACTIONS(3351), 1, + anon_sym_PIPE, + ACTIONS(3353), 1, anon_sym_CARET, - ACTIONS(3223), 1, + ACTIONS(3355), 1, anon_sym_AMP, - ACTIONS(3233), 1, - anon_sym_PIPE, - ACTIONS(3241), 1, + ACTIONS(3367), 1, anon_sym_PIPE_PIPE, - ACTIONS(3243), 1, - anon_sym_AMP_AMP, - ACTIONS(3245), 1, + ACTIONS(3369), 1, anon_sym_QMARK, - ACTIONS(3493), 1, - anon_sym_RPAREN, - STATE(791), 1, + STATE(821), 1, sym_argument_list, - ACTIONS(2552), 2, + ACTIONS(2566), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2554), 2, + ACTIONS(2568), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3215), 2, + ACTIONS(3343), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3217), 2, + ACTIONS(3345), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3225), 2, + ACTIONS(3357), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3227), 2, + ACTIONS(3359), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3229), 2, + ACTIONS(3361), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3231), 2, + ACTIONS(3363), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [52566] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(1269), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(2666), 6, + ACTIONS(3638), 2, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_COLON, - ACTIONS(3495), 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(2664), 10, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [52605] = 12, + [54076] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2092), 1, - anon_sym___based, - ACTIONS(3195), 1, - sym_identifier, - ACTIONS(3197), 1, + ACTIONS(2562), 1, anon_sym_LPAREN2, - ACTIONS(3199), 1, + ACTIONS(2564), 1, + anon_sym_LBRACK, + ACTIONS(3347), 1, + anon_sym_SLASH, + ACTIONS(3349), 1, + anon_sym_AMP_AMP, + ACTIONS(3351), 1, + anon_sym_PIPE, + ACTIONS(3353), 1, + anon_sym_CARET, + ACTIONS(3355), 1, + anon_sym_AMP, + ACTIONS(3367), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3369), 1, + anon_sym_QMARK, + ACTIONS(3640), 1, + anon_sym_COLON, + STATE(821), 1, + sym_argument_list, + ACTIONS(2566), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2568), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3343), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3345), 2, anon_sym_STAR, - ACTIONS(3203), 1, - sym_primitive_type, - STATE(1523), 1, - sym__type_declarator, - STATE(2125), 1, - sym_ms_based_modifier, - STATE(1269), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3201), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1566), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(49), 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, - [52658] = 20, + anon_sym_PERCENT, + ACTIONS(3357), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3359), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3361), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3363), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [54145] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2548), 1, - anon_sym_LPAREN2, - ACTIONS(2550), 1, + ACTIONS(2458), 1, + anon_sym_RBRACK, + ACTIONS(2564), 1, anon_sym_LBRACK, - ACTIONS(3219), 1, + ACTIONS(3032), 1, + anon_sym_LPAREN2, + ACTIONS(3558), 1, anon_sym_SLASH, - ACTIONS(3221), 1, - anon_sym_CARET, - ACTIONS(3223), 1, - anon_sym_AMP, - ACTIONS(3233), 1, - anon_sym_PIPE, - ACTIONS(3241), 1, + ACTIONS(3560), 1, anon_sym_PIPE_PIPE, - ACTIONS(3243), 1, + ACTIONS(3562), 1, anon_sym_AMP_AMP, - ACTIONS(3245), 1, + ACTIONS(3564), 1, + anon_sym_PIPE, + ACTIONS(3566), 1, + anon_sym_CARET, + ACTIONS(3568), 1, + anon_sym_AMP, + ACTIONS(3578), 1, anon_sym_QMARK, - ACTIONS(3498), 1, - anon_sym_COLON, - STATE(791), 1, + STATE(821), 1, sym_argument_list, - ACTIONS(2552), 2, + ACTIONS(2566), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2554), 2, + ACTIONS(2568), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3215), 2, + ACTIONS(3554), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3217), 2, + ACTIONS(3556), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3225), 2, + ACTIONS(3570), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3227), 2, + ACTIONS(3572), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3229), 2, + ACTIONS(3574), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3231), 2, + ACTIONS(3576), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [52727] = 20, + [54214] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2548), 1, + ACTIONS(2562), 1, anon_sym_LPAREN2, - ACTIONS(2550), 1, + ACTIONS(2564), 1, anon_sym_LBRACK, - ACTIONS(3219), 1, + ACTIONS(3347), 1, anon_sym_SLASH, - ACTIONS(3221), 1, + ACTIONS(3349), 1, + anon_sym_AMP_AMP, + ACTIONS(3351), 1, + anon_sym_PIPE, + ACTIONS(3353), 1, anon_sym_CARET, - ACTIONS(3223), 1, + ACTIONS(3355), 1, anon_sym_AMP, - ACTIONS(3233), 1, - anon_sym_PIPE, - ACTIONS(3241), 1, + ACTIONS(3367), 1, anon_sym_PIPE_PIPE, - ACTIONS(3243), 1, - anon_sym_AMP_AMP, - ACTIONS(3245), 1, + ACTIONS(3369), 1, anon_sym_QMARK, - ACTIONS(3500), 1, - anon_sym_COLON, - STATE(791), 1, + ACTIONS(3642), 1, + anon_sym_COMMA, + STATE(821), 1, sym_argument_list, - ACTIONS(2552), 2, + ACTIONS(2566), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2554), 2, + ACTIONS(2568), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3215), 2, + ACTIONS(3343), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3217), 2, + ACTIONS(3345), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3225), 2, + ACTIONS(3357), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3227), 2, + ACTIONS(3359), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3229), 2, + ACTIONS(3361), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3231), 2, + ACTIONS(3363), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [52796] = 20, + [54283] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2548), 1, + ACTIONS(2562), 1, anon_sym_LPAREN2, - ACTIONS(2550), 1, + ACTIONS(2564), 1, anon_sym_LBRACK, - ACTIONS(3219), 1, + ACTIONS(3347), 1, anon_sym_SLASH, - ACTIONS(3221), 1, + ACTIONS(3349), 1, + anon_sym_AMP_AMP, + ACTIONS(3351), 1, + anon_sym_PIPE, + ACTIONS(3353), 1, anon_sym_CARET, - ACTIONS(3223), 1, + ACTIONS(3355), 1, anon_sym_AMP, - ACTIONS(3233), 1, - anon_sym_PIPE, - ACTIONS(3241), 1, + ACTIONS(3367), 1, anon_sym_PIPE_PIPE, - ACTIONS(3243), 1, - anon_sym_AMP_AMP, - ACTIONS(3245), 1, + ACTIONS(3369), 1, anon_sym_QMARK, - ACTIONS(3502), 1, + ACTIONS(3644), 1, anon_sym_COLON, - STATE(791), 1, + STATE(821), 1, sym_argument_list, - ACTIONS(2552), 2, + ACTIONS(2566), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2554), 2, + ACTIONS(2568), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3215), 2, + ACTIONS(3343), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3217), 2, + ACTIONS(3345), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3225), 2, + ACTIONS(3357), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3227), 2, + ACTIONS(3359), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3229), 2, + ACTIONS(3361), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3231), 2, + ACTIONS(3363), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [52865] = 20, + [54352] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2550), 1, + ACTIONS(2564), 1, anon_sym_LBRACK, - ACTIONS(2805), 1, + ACTIONS(3032), 1, anon_sym_LPAREN2, - ACTIONS(3407), 1, + ACTIONS(3558), 1, anon_sym_SLASH, - ACTIONS(3409), 1, - anon_sym_CARET, - ACTIONS(3411), 1, - anon_sym_AMP, - ACTIONS(3427), 1, + ACTIONS(3560), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3562), 1, anon_sym_AMP_AMP, - ACTIONS(3429), 1, + ACTIONS(3564), 1, anon_sym_PIPE, - ACTIONS(3451), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3453), 1, + ACTIONS(3566), 1, + anon_sym_CARET, + ACTIONS(3568), 1, + anon_sym_AMP, + ACTIONS(3578), 1, anon_sym_QMARK, - ACTIONS(3504), 1, + ACTIONS(3646), 1, anon_sym_RBRACK, - STATE(791), 1, + STATE(821), 1, sym_argument_list, - ACTIONS(2552), 2, + ACTIONS(2566), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2554), 2, + ACTIONS(2568), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3403), 2, + ACTIONS(3554), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3405), 2, + ACTIONS(3556), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3413), 2, + ACTIONS(3570), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3415), 2, + ACTIONS(3572), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3417), 2, + ACTIONS(3574), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3419), 2, + ACTIONS(3576), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [52934] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - sym_primitive_type, - ACTIONS(55), 1, - anon_sym_struct, - ACTIONS(57), 1, - anon_sym_union, - ACTIONS(2046), 1, - sym_identifier, - ACTIONS(3395), 1, - anon_sym_enum, - STATE(1313), 1, - sym__type_specifier, - STATE(1323), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1269), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(1922), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1106), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(49), 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, - [52987] = 20, + [54421] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2550), 1, - anon_sym_LBRACK, - ACTIONS(2805), 1, + ACTIONS(2562), 1, anon_sym_LPAREN2, - ACTIONS(3407), 1, + ACTIONS(2564), 1, + anon_sym_LBRACK, + ACTIONS(3347), 1, anon_sym_SLASH, - ACTIONS(3409), 1, - anon_sym_CARET, - ACTIONS(3411), 1, - anon_sym_AMP, - ACTIONS(3427), 1, + ACTIONS(3349), 1, anon_sym_AMP_AMP, - ACTIONS(3429), 1, + ACTIONS(3351), 1, anon_sym_PIPE, - ACTIONS(3451), 1, + ACTIONS(3353), 1, + anon_sym_CARET, + ACTIONS(3355), 1, + anon_sym_AMP, + ACTIONS(3367), 1, anon_sym_PIPE_PIPE, - ACTIONS(3453), 1, + ACTIONS(3369), 1, anon_sym_QMARK, - ACTIONS(3506), 1, - anon_sym_RBRACK, - STATE(791), 1, + ACTIONS(3648), 1, + anon_sym_RPAREN, + STATE(821), 1, sym_argument_list, - ACTIONS(2552), 2, + ACTIONS(2566), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2554), 2, + ACTIONS(2568), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3403), 2, + ACTIONS(3343), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3405), 2, + ACTIONS(3345), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3413), 2, + ACTIONS(3357), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3415), 2, + ACTIONS(3359), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3417), 2, + ACTIONS(3361), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3419), 2, + ACTIONS(3363), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [53056] = 20, + [54490] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2548), 1, + ACTIONS(2562), 1, anon_sym_LPAREN2, - ACTIONS(2550), 1, + ACTIONS(2564), 1, anon_sym_LBRACK, - ACTIONS(3219), 1, + ACTIONS(3347), 1, anon_sym_SLASH, - ACTIONS(3221), 1, + ACTIONS(3349), 1, + anon_sym_AMP_AMP, + ACTIONS(3351), 1, + anon_sym_PIPE, + ACTIONS(3353), 1, anon_sym_CARET, - ACTIONS(3223), 1, + ACTIONS(3355), 1, anon_sym_AMP, - ACTIONS(3233), 1, - anon_sym_PIPE, - ACTIONS(3241), 1, + ACTIONS(3367), 1, anon_sym_PIPE_PIPE, - ACTIONS(3243), 1, - anon_sym_AMP_AMP, - ACTIONS(3245), 1, + ACTIONS(3369), 1, anon_sym_QMARK, - ACTIONS(3508), 1, + ACTIONS(3650), 1, anon_sym_COLON, - STATE(791), 1, + STATE(821), 1, sym_argument_list, - ACTIONS(2552), 2, + ACTIONS(2566), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2554), 2, + ACTIONS(2568), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3215), 2, + ACTIONS(3343), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3217), 2, + ACTIONS(3345), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3225), 2, + ACTIONS(3357), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3227), 2, + ACTIONS(3359), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3229), 2, + ACTIONS(3361), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3231), 2, + ACTIONS(3363), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [53125] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2092), 1, - anon_sym___based, - ACTIONS(3195), 1, - sym_identifier, - ACTIONS(3197), 1, - anon_sym_LPAREN2, - ACTIONS(3199), 1, - anon_sym_STAR, - ACTIONS(3203), 1, - sym_primitive_type, - STATE(1520), 1, - sym__type_declarator, - STATE(2125), 1, - sym_ms_based_modifier, - STATE(1269), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3201), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1566), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(49), 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, - [53178] = 20, + [54559] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2548), 1, - anon_sym_LPAREN2, - ACTIONS(2550), 1, + ACTIONS(2434), 1, + anon_sym_RBRACK, + ACTIONS(2564), 1, anon_sym_LBRACK, - ACTIONS(3219), 1, + ACTIONS(3032), 1, + anon_sym_LPAREN2, + ACTIONS(3558), 1, anon_sym_SLASH, - ACTIONS(3221), 1, - anon_sym_CARET, - ACTIONS(3223), 1, - anon_sym_AMP, - ACTIONS(3233), 1, - anon_sym_PIPE, - ACTIONS(3241), 1, + ACTIONS(3560), 1, anon_sym_PIPE_PIPE, - ACTIONS(3243), 1, + ACTIONS(3562), 1, anon_sym_AMP_AMP, - ACTIONS(3245), 1, + ACTIONS(3564), 1, + anon_sym_PIPE, + ACTIONS(3566), 1, + anon_sym_CARET, + ACTIONS(3568), 1, + anon_sym_AMP, + ACTIONS(3578), 1, anon_sym_QMARK, - ACTIONS(3510), 1, - anon_sym_COLON, - STATE(791), 1, + STATE(821), 1, sym_argument_list, - ACTIONS(2552), 2, + ACTIONS(2566), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2554), 2, + ACTIONS(2568), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3215), 2, + ACTIONS(3554), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3217), 2, + ACTIONS(3556), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3225), 2, + ACTIONS(3570), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3227), 2, + ACTIONS(3572), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3229), 2, + ACTIONS(3574), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3231), 2, + ACTIONS(3576), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [53247] = 20, + [54628] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2364), 1, - anon_sym_RBRACK, - ACTIONS(2550), 1, - anon_sym_LBRACK, - ACTIONS(2805), 1, + ACTIONS(2562), 1, anon_sym_LPAREN2, - ACTIONS(3407), 1, + ACTIONS(2564), 1, + anon_sym_LBRACK, + ACTIONS(3347), 1, anon_sym_SLASH, - ACTIONS(3409), 1, - anon_sym_CARET, - ACTIONS(3411), 1, - anon_sym_AMP, - ACTIONS(3427), 1, + ACTIONS(3349), 1, anon_sym_AMP_AMP, - ACTIONS(3429), 1, + ACTIONS(3351), 1, anon_sym_PIPE, - ACTIONS(3451), 1, + ACTIONS(3353), 1, + anon_sym_CARET, + ACTIONS(3355), 1, + anon_sym_AMP, + ACTIONS(3367), 1, anon_sym_PIPE_PIPE, - ACTIONS(3453), 1, + ACTIONS(3369), 1, anon_sym_QMARK, - STATE(791), 1, + ACTIONS(3652), 1, + anon_sym_COLON, + STATE(821), 1, sym_argument_list, - ACTIONS(2552), 2, + ACTIONS(2566), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2554), 2, + ACTIONS(2568), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3403), 2, + ACTIONS(3343), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3405), 2, + ACTIONS(3345), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3413), 2, + ACTIONS(3357), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3415), 2, + ACTIONS(3359), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3417), 2, + ACTIONS(3361), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3419), 2, + ACTIONS(3363), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [53316] = 20, + [54697] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2350), 1, - anon_sym_RBRACK, - ACTIONS(2550), 1, - anon_sym_LBRACK, - ACTIONS(2805), 1, + ACTIONS(2562), 1, anon_sym_LPAREN2, - ACTIONS(3407), 1, + ACTIONS(2564), 1, + anon_sym_LBRACK, + ACTIONS(3347), 1, anon_sym_SLASH, - ACTIONS(3409), 1, - anon_sym_CARET, - ACTIONS(3411), 1, - anon_sym_AMP, - ACTIONS(3427), 1, + ACTIONS(3349), 1, anon_sym_AMP_AMP, - ACTIONS(3429), 1, + ACTIONS(3351), 1, anon_sym_PIPE, - ACTIONS(3451), 1, + ACTIONS(3353), 1, + anon_sym_CARET, + ACTIONS(3355), 1, + anon_sym_AMP, + ACTIONS(3367), 1, anon_sym_PIPE_PIPE, - ACTIONS(3453), 1, + ACTIONS(3369), 1, anon_sym_QMARK, - STATE(791), 1, + ACTIONS(3654), 1, + anon_sym_COLON, + STATE(821), 1, sym_argument_list, - ACTIONS(2552), 2, + ACTIONS(2566), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2554), 2, + ACTIONS(2568), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3403), 2, + ACTIONS(3343), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3405), 2, + ACTIONS(3345), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3413), 2, + ACTIONS(3357), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3415), 2, + ACTIONS(3359), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3417), 2, + ACTIONS(3361), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3419), 2, + ACTIONS(3363), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [53385] = 20, + [54766] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2362), 1, + ACTIONS(53), 1, + sym_primitive_type, + ACTIONS(57), 1, + anon_sym_struct, + ACTIONS(59), 1, + anon_sym_union, + ACTIONS(1939), 1, + anon_sym_enum, + ACTIONS(2009), 1, + sym_identifier, + STATE(1338), 1, + sym__type_specifier, + STATE(1339), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1308), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(1937), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1069), 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, + [54819] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2460), 1, anon_sym_RBRACK, - ACTIONS(2550), 1, + ACTIONS(2564), 1, anon_sym_LBRACK, - ACTIONS(2805), 1, + ACTIONS(3032), 1, anon_sym_LPAREN2, - ACTIONS(3407), 1, + ACTIONS(3558), 1, anon_sym_SLASH, - ACTIONS(3409), 1, - anon_sym_CARET, - ACTIONS(3411), 1, - anon_sym_AMP, - ACTIONS(3427), 1, + ACTIONS(3560), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3562), 1, anon_sym_AMP_AMP, - ACTIONS(3429), 1, + ACTIONS(3564), 1, anon_sym_PIPE, - ACTIONS(3451), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3453), 1, + ACTIONS(3566), 1, + anon_sym_CARET, + ACTIONS(3568), 1, + anon_sym_AMP, + ACTIONS(3578), 1, anon_sym_QMARK, - STATE(791), 1, + STATE(821), 1, sym_argument_list, - ACTIONS(2552), 2, + ACTIONS(2566), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2554), 2, + ACTIONS(2568), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3403), 2, + ACTIONS(3554), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3405), 2, + ACTIONS(3556), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3413), 2, + ACTIONS(3570), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3415), 2, + ACTIONS(3572), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3417), 2, + ACTIONS(3574), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3419), 2, + ACTIONS(3576), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [53454] = 20, + [54888] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2548), 1, - anon_sym_LPAREN2, - ACTIONS(2550), 1, + ACTIONS(53), 1, + sym_primitive_type, + ACTIONS(57), 1, + anon_sym_struct, + ACTIONS(59), 1, + anon_sym_union, + ACTIONS(2009), 1, + sym_identifier, + ACTIONS(3552), 1, + anon_sym_enum, + STATE(1338), 1, + sym__type_specifier, + STATE(1339), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1308), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(1937), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1069), 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, + [54941] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2452), 1, + anon_sym_RBRACK, + ACTIONS(2564), 1, anon_sym_LBRACK, - ACTIONS(3219), 1, + ACTIONS(3032), 1, + anon_sym_LPAREN2, + ACTIONS(3558), 1, anon_sym_SLASH, - ACTIONS(3221), 1, - anon_sym_CARET, - ACTIONS(3223), 1, - anon_sym_AMP, - ACTIONS(3233), 1, - anon_sym_PIPE, - ACTIONS(3241), 1, + ACTIONS(3560), 1, anon_sym_PIPE_PIPE, - ACTIONS(3243), 1, + ACTIONS(3562), 1, anon_sym_AMP_AMP, - ACTIONS(3245), 1, + ACTIONS(3564), 1, + anon_sym_PIPE, + ACTIONS(3566), 1, + anon_sym_CARET, + ACTIONS(3568), 1, + anon_sym_AMP, + ACTIONS(3578), 1, anon_sym_QMARK, - ACTIONS(3512), 1, - anon_sym_COLON, - STATE(791), 1, + STATE(821), 1, sym_argument_list, - ACTIONS(2552), 2, + ACTIONS(2566), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2554), 2, + ACTIONS(2568), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3215), 2, + ACTIONS(3554), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3217), 2, + ACTIONS(3556), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3225), 2, + ACTIONS(3570), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3227), 2, + ACTIONS(3572), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3229), 2, + ACTIONS(3574), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3231), 2, + ACTIONS(3576), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [53523] = 20, + [55010] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2548), 1, + ACTIONS(2562), 1, anon_sym_LPAREN2, - ACTIONS(2550), 1, + ACTIONS(2564), 1, anon_sym_LBRACK, - ACTIONS(3219), 1, + ACTIONS(3347), 1, anon_sym_SLASH, - ACTIONS(3221), 1, + ACTIONS(3349), 1, + anon_sym_AMP_AMP, + ACTIONS(3351), 1, + anon_sym_PIPE, + ACTIONS(3353), 1, anon_sym_CARET, - ACTIONS(3223), 1, + ACTIONS(3355), 1, anon_sym_AMP, - ACTIONS(3233), 1, - anon_sym_PIPE, - ACTIONS(3241), 1, + ACTIONS(3367), 1, anon_sym_PIPE_PIPE, - ACTIONS(3243), 1, - anon_sym_AMP_AMP, - ACTIONS(3245), 1, + ACTIONS(3369), 1, anon_sym_QMARK, - ACTIONS(3514), 1, - anon_sym_COLON, - STATE(791), 1, + ACTIONS(3656), 1, + anon_sym_RPAREN, + STATE(821), 1, sym_argument_list, - ACTIONS(2552), 2, + ACTIONS(2566), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2554), 2, + ACTIONS(2568), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3215), 2, + ACTIONS(3343), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3217), 2, + ACTIONS(3345), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3225), 2, + ACTIONS(3357), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3227), 2, + ACTIONS(3359), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3229), 2, + ACTIONS(3361), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3231), 2, + ACTIONS(3363), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [53592] = 20, + [55079] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2548), 1, + ACTIONS(2045), 1, + anon_sym___based, + ACTIONS(3432), 1, + sym_identifier, + ACTIONS(3434), 1, anon_sym_LPAREN2, - ACTIONS(2550), 1, + ACTIONS(3436), 1, + anon_sym_STAR, + ACTIONS(3440), 1, + sym_primitive_type, + STATE(1507), 1, + sym__type_declarator, + STATE(2030), 1, + sym_ms_based_modifier, + STATE(1308), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3438), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1558), 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, + [55132] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2444), 1, + anon_sym_RBRACK, + ACTIONS(2564), 1, anon_sym_LBRACK, - ACTIONS(3219), 1, + ACTIONS(3032), 1, + anon_sym_LPAREN2, + ACTIONS(3558), 1, anon_sym_SLASH, - ACTIONS(3221), 1, - anon_sym_CARET, - ACTIONS(3223), 1, - anon_sym_AMP, - ACTIONS(3233), 1, - anon_sym_PIPE, - ACTIONS(3241), 1, + ACTIONS(3560), 1, anon_sym_PIPE_PIPE, - ACTIONS(3243), 1, + ACTIONS(3562), 1, anon_sym_AMP_AMP, - ACTIONS(3245), 1, + ACTIONS(3564), 1, + anon_sym_PIPE, + ACTIONS(3566), 1, + anon_sym_CARET, + ACTIONS(3568), 1, + anon_sym_AMP, + ACTIONS(3578), 1, anon_sym_QMARK, - ACTIONS(3516), 1, - anon_sym_COMMA, - STATE(791), 1, + STATE(821), 1, sym_argument_list, - ACTIONS(2552), 2, + ACTIONS(2566), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2554), 2, + ACTIONS(2568), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3215), 2, + ACTIONS(3554), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3217), 2, + ACTIONS(3556), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3225), 2, + ACTIONS(3570), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3227), 2, + ACTIONS(3572), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3229), 2, + ACTIONS(3574), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3231), 2, + ACTIONS(3576), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [53661] = 20, + [55201] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2548), 1, + ACTIONS(2045), 1, + anon_sym___based, + ACTIONS(3432), 1, + sym_identifier, + ACTIONS(3434), 1, anon_sym_LPAREN2, - ACTIONS(2550), 1, + ACTIONS(3436), 1, + anon_sym_STAR, + ACTIONS(3440), 1, + sym_primitive_type, + STATE(1498), 1, + sym__type_declarator, + STATE(2030), 1, + sym_ms_based_modifier, + STATE(1308), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3438), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1558), 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, + [55254] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2440), 1, + anon_sym_RBRACK, + ACTIONS(2564), 1, anon_sym_LBRACK, - ACTIONS(3219), 1, + ACTIONS(3032), 1, + anon_sym_LPAREN2, + ACTIONS(3558), 1, anon_sym_SLASH, - ACTIONS(3221), 1, - anon_sym_CARET, - ACTIONS(3223), 1, - anon_sym_AMP, - ACTIONS(3233), 1, - anon_sym_PIPE, - ACTIONS(3241), 1, + ACTIONS(3560), 1, anon_sym_PIPE_PIPE, - ACTIONS(3243), 1, + ACTIONS(3562), 1, anon_sym_AMP_AMP, - ACTIONS(3245), 1, + ACTIONS(3564), 1, + anon_sym_PIPE, + ACTIONS(3566), 1, + anon_sym_CARET, + ACTIONS(3568), 1, + anon_sym_AMP, + ACTIONS(3578), 1, anon_sym_QMARK, - ACTIONS(3518), 1, - anon_sym_COLON, - STATE(791), 1, + STATE(821), 1, sym_argument_list, - ACTIONS(2552), 2, + ACTIONS(2566), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2554), 2, + ACTIONS(2568), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3215), 2, + ACTIONS(3554), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3217), 2, + ACTIONS(3556), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3225), 2, + ACTIONS(3570), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3227), 2, + ACTIONS(3572), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3229), 2, + ACTIONS(3574), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3231), 2, + ACTIONS(3576), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [53730] = 12, + [55323] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, + STATE(1308), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(2770), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_COLON, + ACTIONS(3658), 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(2768), 10, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, sym_primitive_type, - ACTIONS(55), 1, + anon_sym_enum, anon_sym_struct, + anon_sym_union, + sym_identifier, + [55362] = 12, + ACTIONS(3), 1, + sym_comment, ACTIONS(57), 1, + anon_sym_struct, + ACTIONS(59), 1, anon_sym_union, - ACTIONS(1924), 1, + ACTIONS(1939), 1, anon_sym_enum, - ACTIONS(2046), 1, + ACTIONS(3546), 1, sym_identifier, - STATE(1313), 1, + ACTIONS(3550), 1, + sym_primitive_type, + STATE(1381), 1, sym__type_specifier, - STATE(1323), 1, + STATE(1457), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1269), 2, + STATE(1308), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(1922), 4, + ACTIONS(3548), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1106), 5, + STATE(1069), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - ACTIONS(49), 9, + ACTIONS(51), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -119233,847 +123534,823 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [53783] = 20, + [55415] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2396), 1, - anon_sym_RBRACK, - ACTIONS(2550), 1, + ACTIONS(2564), 1, anon_sym_LBRACK, - ACTIONS(2805), 1, + ACTIONS(3032), 1, anon_sym_LPAREN2, - ACTIONS(3407), 1, + ACTIONS(3558), 1, anon_sym_SLASH, - ACTIONS(3409), 1, - anon_sym_CARET, - ACTIONS(3411), 1, - anon_sym_AMP, - ACTIONS(3427), 1, + ACTIONS(3560), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3562), 1, anon_sym_AMP_AMP, - ACTIONS(3429), 1, + ACTIONS(3564), 1, anon_sym_PIPE, - ACTIONS(3451), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3453), 1, + ACTIONS(3566), 1, + anon_sym_CARET, + ACTIONS(3568), 1, + anon_sym_AMP, + ACTIONS(3578), 1, anon_sym_QMARK, - STATE(791), 1, + ACTIONS(3661), 1, + anon_sym_RBRACK, + STATE(821), 1, sym_argument_list, - ACTIONS(2552), 2, + ACTIONS(2566), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2554), 2, + ACTIONS(2568), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3403), 2, + ACTIONS(3554), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3405), 2, + ACTIONS(3556), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3413), 2, + ACTIONS(3570), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3415), 2, + ACTIONS(3572), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3417), 2, + ACTIONS(3574), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3419), 2, + ACTIONS(3576), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [53852] = 20, + [55484] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2548), 1, - anon_sym_LPAREN2, - ACTIONS(2550), 1, + ACTIONS(2430), 1, + anon_sym_RBRACK, + ACTIONS(2564), 1, anon_sym_LBRACK, - ACTIONS(3219), 1, + ACTIONS(3032), 1, + anon_sym_LPAREN2, + ACTIONS(3558), 1, anon_sym_SLASH, - ACTIONS(3221), 1, - anon_sym_CARET, - ACTIONS(3223), 1, - anon_sym_AMP, - ACTIONS(3233), 1, - anon_sym_PIPE, - ACTIONS(3241), 1, + ACTIONS(3560), 1, anon_sym_PIPE_PIPE, - ACTIONS(3243), 1, + ACTIONS(3562), 1, anon_sym_AMP_AMP, - ACTIONS(3245), 1, + ACTIONS(3564), 1, + anon_sym_PIPE, + ACTIONS(3566), 1, + anon_sym_CARET, + ACTIONS(3568), 1, + anon_sym_AMP, + ACTIONS(3578), 1, anon_sym_QMARK, - ACTIONS(3520), 1, - anon_sym_COLON, - STATE(791), 1, + STATE(821), 1, sym_argument_list, - ACTIONS(2552), 2, + ACTIONS(2566), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2554), 2, + ACTIONS(2568), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3215), 2, + ACTIONS(3554), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3217), 2, + ACTIONS(3556), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3225), 2, + ACTIONS(3570), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3227), 2, + ACTIONS(3572), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3229), 2, + ACTIONS(3574), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3231), 2, + ACTIONS(3576), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [53921] = 20, + [55553] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2548), 1, + ACTIONS(2562), 1, anon_sym_LPAREN2, - ACTIONS(2550), 1, + ACTIONS(2564), 1, anon_sym_LBRACK, - ACTIONS(3219), 1, + ACTIONS(3347), 1, anon_sym_SLASH, - ACTIONS(3221), 1, + ACTIONS(3349), 1, + anon_sym_AMP_AMP, + ACTIONS(3351), 1, + anon_sym_PIPE, + ACTIONS(3353), 1, anon_sym_CARET, - ACTIONS(3223), 1, + ACTIONS(3355), 1, anon_sym_AMP, - ACTIONS(3233), 1, - anon_sym_PIPE, - ACTIONS(3241), 1, + ACTIONS(3367), 1, anon_sym_PIPE_PIPE, - ACTIONS(3243), 1, - anon_sym_AMP_AMP, - ACTIONS(3245), 1, + ACTIONS(3369), 1, anon_sym_QMARK, - ACTIONS(3522), 1, + ACTIONS(3663), 1, anon_sym_COLON, - STATE(791), 1, + STATE(821), 1, sym_argument_list, - ACTIONS(2552), 2, + ACTIONS(2566), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2554), 2, + ACTIONS(2568), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3215), 2, + ACTIONS(3343), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3217), 2, + ACTIONS(3345), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3225), 2, + ACTIONS(3357), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3227), 2, + ACTIONS(3359), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3229), 2, + ACTIONS(3361), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3231), 2, + ACTIONS(3363), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [53990] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(55), 1, - anon_sym_struct, - ACTIONS(57), 1, - anon_sym_union, - ACTIONS(1924), 1, - anon_sym_enum, - ACTIONS(3397), 1, - sym_identifier, - ACTIONS(3401), 1, - sym_primitive_type, - STATE(1374), 1, - sym__type_specifier, - STATE(1416), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1269), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3399), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1106), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(49), 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, - [54043] = 20, + [55622] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2360), 1, - anon_sym_RBRACK, - ACTIONS(2550), 1, + ACTIONS(2564), 1, anon_sym_LBRACK, - ACTIONS(2805), 1, + ACTIONS(3032), 1, anon_sym_LPAREN2, - ACTIONS(3407), 1, + ACTIONS(3558), 1, anon_sym_SLASH, - ACTIONS(3409), 1, - anon_sym_CARET, - ACTIONS(3411), 1, - anon_sym_AMP, - ACTIONS(3427), 1, + ACTIONS(3560), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3562), 1, anon_sym_AMP_AMP, - ACTIONS(3429), 1, + ACTIONS(3564), 1, anon_sym_PIPE, - ACTIONS(3451), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3453), 1, + ACTIONS(3566), 1, + anon_sym_CARET, + ACTIONS(3568), 1, + anon_sym_AMP, + ACTIONS(3578), 1, anon_sym_QMARK, - STATE(791), 1, + ACTIONS(3665), 1, + anon_sym_RBRACK, + STATE(821), 1, sym_argument_list, - ACTIONS(2552), 2, + ACTIONS(2566), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2554), 2, + ACTIONS(2568), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3403), 2, + ACTIONS(3554), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3405), 2, + ACTIONS(3556), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3413), 2, + ACTIONS(3570), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3415), 2, + ACTIONS(3572), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3417), 2, + ACTIONS(3574), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3419), 2, + ACTIONS(3576), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [54112] = 20, + [55691] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2400), 1, + ACTIONS(2438), 1, anon_sym_RBRACK, - ACTIONS(2550), 1, + ACTIONS(2564), 1, anon_sym_LBRACK, - ACTIONS(2805), 1, + ACTIONS(3032), 1, anon_sym_LPAREN2, - ACTIONS(3407), 1, + ACTIONS(3558), 1, anon_sym_SLASH, - ACTIONS(3409), 1, - anon_sym_CARET, - ACTIONS(3411), 1, - anon_sym_AMP, - ACTIONS(3427), 1, + ACTIONS(3560), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3562), 1, anon_sym_AMP_AMP, - ACTIONS(3429), 1, + ACTIONS(3564), 1, anon_sym_PIPE, - ACTIONS(3451), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3453), 1, + ACTIONS(3566), 1, + anon_sym_CARET, + ACTIONS(3568), 1, + anon_sym_AMP, + ACTIONS(3578), 1, anon_sym_QMARK, - STATE(791), 1, + STATE(821), 1, sym_argument_list, - ACTIONS(2552), 2, + ACTIONS(2566), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2554), 2, + ACTIONS(2568), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3403), 2, + ACTIONS(3554), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3405), 2, + ACTIONS(3556), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3413), 2, + ACTIONS(3570), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3415), 2, + ACTIONS(3572), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3417), 2, + ACTIONS(3574), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3419), 2, + ACTIONS(3576), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [54181] = 20, + [55760] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2384), 1, - anon_sym_RBRACK, - ACTIONS(2550), 1, - anon_sym_LBRACK, - ACTIONS(2805), 1, + ACTIONS(2562), 1, anon_sym_LPAREN2, - ACTIONS(3407), 1, + ACTIONS(2564), 1, + anon_sym_LBRACK, + ACTIONS(3347), 1, anon_sym_SLASH, - ACTIONS(3409), 1, - anon_sym_CARET, - ACTIONS(3411), 1, - anon_sym_AMP, - ACTIONS(3427), 1, + ACTIONS(3349), 1, anon_sym_AMP_AMP, - ACTIONS(3429), 1, + ACTIONS(3351), 1, anon_sym_PIPE, - ACTIONS(3451), 1, + ACTIONS(3353), 1, + anon_sym_CARET, + ACTIONS(3355), 1, + anon_sym_AMP, + ACTIONS(3367), 1, anon_sym_PIPE_PIPE, - ACTIONS(3453), 1, + ACTIONS(3369), 1, anon_sym_QMARK, - STATE(791), 1, + ACTIONS(3667), 1, + anon_sym_COLON, + STATE(821), 1, sym_argument_list, - ACTIONS(2552), 2, + ACTIONS(2566), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2554), 2, + ACTIONS(2568), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3403), 2, + ACTIONS(3343), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3405), 2, + ACTIONS(3345), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3413), 2, + ACTIONS(3357), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3415), 2, + ACTIONS(3359), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3417), 2, + ACTIONS(3361), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3419), 2, + ACTIONS(3363), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [54250] = 20, + [55829] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2550), 1, + ACTIONS(2448), 1, + anon_sym_RBRACK, + ACTIONS(2564), 1, anon_sym_LBRACK, - ACTIONS(2805), 1, + ACTIONS(3032), 1, anon_sym_LPAREN2, - ACTIONS(3407), 1, + ACTIONS(3558), 1, anon_sym_SLASH, - ACTIONS(3409), 1, - anon_sym_CARET, - ACTIONS(3411), 1, - anon_sym_AMP, - ACTIONS(3427), 1, + ACTIONS(3560), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3562), 1, anon_sym_AMP_AMP, - ACTIONS(3429), 1, + ACTIONS(3564), 1, anon_sym_PIPE, - ACTIONS(3451), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3453), 1, + ACTIONS(3566), 1, + anon_sym_CARET, + ACTIONS(3568), 1, + anon_sym_AMP, + ACTIONS(3578), 1, anon_sym_QMARK, - ACTIONS(3524), 1, - anon_sym_RBRACK, - STATE(791), 1, + STATE(821), 1, sym_argument_list, - ACTIONS(2552), 2, + ACTIONS(2566), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2554), 2, + ACTIONS(2568), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3403), 2, + ACTIONS(3554), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3405), 2, + ACTIONS(3556), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3413), 2, + ACTIONS(3570), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3415), 2, + ACTIONS(3572), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3417), 2, + ACTIONS(3574), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3419), 2, + ACTIONS(3576), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [54319] = 20, + [55898] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2356), 1, - anon_sym_RBRACK, - ACTIONS(2550), 1, - anon_sym_LBRACK, - ACTIONS(2805), 1, + ACTIONS(2562), 1, anon_sym_LPAREN2, - ACTIONS(3407), 1, + ACTIONS(2564), 1, + anon_sym_LBRACK, + ACTIONS(3347), 1, anon_sym_SLASH, - ACTIONS(3409), 1, - anon_sym_CARET, - ACTIONS(3411), 1, - anon_sym_AMP, - ACTIONS(3427), 1, + ACTIONS(3349), 1, anon_sym_AMP_AMP, - ACTIONS(3429), 1, + ACTIONS(3351), 1, anon_sym_PIPE, - ACTIONS(3451), 1, + ACTIONS(3353), 1, + anon_sym_CARET, + ACTIONS(3355), 1, + anon_sym_AMP, + ACTIONS(3367), 1, anon_sym_PIPE_PIPE, - ACTIONS(3453), 1, + ACTIONS(3369), 1, anon_sym_QMARK, - STATE(791), 1, + ACTIONS(3669), 1, + anon_sym_COLON, + STATE(821), 1, sym_argument_list, - ACTIONS(2552), 2, + ACTIONS(2566), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2554), 2, + ACTIONS(2568), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3403), 2, + ACTIONS(3343), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3405), 2, + ACTIONS(3345), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3413), 2, + ACTIONS(3357), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3415), 2, + ACTIONS(3359), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3417), 2, + ACTIONS(3361), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3419), 2, + ACTIONS(3363), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [54388] = 20, + [55967] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2548), 1, + ACTIONS(2562), 1, anon_sym_LPAREN2, - ACTIONS(2550), 1, + ACTIONS(2564), 1, anon_sym_LBRACK, - ACTIONS(3219), 1, + ACTIONS(3347), 1, anon_sym_SLASH, - ACTIONS(3221), 1, + ACTIONS(3349), 1, + anon_sym_AMP_AMP, + ACTIONS(3351), 1, + anon_sym_PIPE, + ACTIONS(3353), 1, anon_sym_CARET, - ACTIONS(3223), 1, + ACTIONS(3355), 1, anon_sym_AMP, - ACTIONS(3233), 1, - anon_sym_PIPE, - ACTIONS(3241), 1, + ACTIONS(3367), 1, anon_sym_PIPE_PIPE, - ACTIONS(3243), 1, - anon_sym_AMP_AMP, - ACTIONS(3245), 1, + ACTIONS(3369), 1, anon_sym_QMARK, - ACTIONS(3526), 1, + ACTIONS(3671), 1, anon_sym_COMMA, - STATE(791), 1, + STATE(821), 1, sym_argument_list, - ACTIONS(2552), 2, + ACTIONS(2566), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2554), 2, + ACTIONS(2568), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3215), 2, + ACTIONS(3343), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3217), 2, + ACTIONS(3345), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3225), 2, + ACTIONS(3357), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3227), 2, + ACTIONS(3359), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3229), 2, + ACTIONS(3361), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3231), 2, + ACTIONS(3363), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [54457] = 20, + [56036] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2368), 1, - anon_sym_RBRACK, - ACTIONS(2550), 1, - anon_sym_LBRACK, - ACTIONS(2805), 1, + ACTIONS(2562), 1, anon_sym_LPAREN2, - ACTIONS(3407), 1, + ACTIONS(2564), 1, + anon_sym_LBRACK, + ACTIONS(3347), 1, anon_sym_SLASH, - ACTIONS(3409), 1, - anon_sym_CARET, - ACTIONS(3411), 1, - anon_sym_AMP, - ACTIONS(3427), 1, + ACTIONS(3349), 1, anon_sym_AMP_AMP, - ACTIONS(3429), 1, + ACTIONS(3351), 1, anon_sym_PIPE, - ACTIONS(3451), 1, + ACTIONS(3353), 1, + anon_sym_CARET, + ACTIONS(3355), 1, + anon_sym_AMP, + ACTIONS(3367), 1, anon_sym_PIPE_PIPE, - ACTIONS(3453), 1, + ACTIONS(3369), 1, anon_sym_QMARK, - STATE(791), 1, + ACTIONS(3673), 1, + anon_sym_COLON, + STATE(821), 1, sym_argument_list, - ACTIONS(2552), 2, + ACTIONS(2566), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2554), 2, + ACTIONS(2568), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3403), 2, + ACTIONS(3343), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3405), 2, + ACTIONS(3345), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3413), 2, + ACTIONS(3357), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3415), 2, + ACTIONS(3359), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3417), 2, + ACTIONS(3361), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3419), 2, + ACTIONS(3363), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [54526] = 20, + [56105] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2548), 1, + ACTIONS(2562), 1, anon_sym_LPAREN2, - ACTIONS(2550), 1, + ACTIONS(2564), 1, anon_sym_LBRACK, - ACTIONS(3219), 1, + ACTIONS(3347), 1, anon_sym_SLASH, - ACTIONS(3221), 1, + ACTIONS(3349), 1, + anon_sym_AMP_AMP, + ACTIONS(3351), 1, + anon_sym_PIPE, + ACTIONS(3353), 1, anon_sym_CARET, - ACTIONS(3223), 1, + ACTIONS(3355), 1, anon_sym_AMP, - ACTIONS(3233), 1, - anon_sym_PIPE, - ACTIONS(3241), 1, + ACTIONS(3367), 1, anon_sym_PIPE_PIPE, - ACTIONS(3243), 1, - anon_sym_AMP_AMP, - ACTIONS(3245), 1, + ACTIONS(3369), 1, anon_sym_QMARK, - ACTIONS(3528), 1, + ACTIONS(3675), 1, anon_sym_COLON, - STATE(791), 1, + STATE(821), 1, sym_argument_list, - ACTIONS(2552), 2, + ACTIONS(2566), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2554), 2, + ACTIONS(2568), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3215), 2, + ACTIONS(3343), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3217), 2, + ACTIONS(3345), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3225), 2, + ACTIONS(3357), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3227), 2, + ACTIONS(3359), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3229), 2, + ACTIONS(3361), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3231), 2, + ACTIONS(3363), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [54595] = 20, + [56174] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2548), 1, + ACTIONS(2562), 1, anon_sym_LPAREN2, - ACTIONS(2550), 1, + ACTIONS(2564), 1, anon_sym_LBRACK, - ACTIONS(3219), 1, + ACTIONS(3347), 1, anon_sym_SLASH, - ACTIONS(3221), 1, + ACTIONS(3349), 1, + anon_sym_AMP_AMP, + ACTIONS(3351), 1, + anon_sym_PIPE, + ACTIONS(3353), 1, anon_sym_CARET, - ACTIONS(3223), 1, + ACTIONS(3355), 1, anon_sym_AMP, - ACTIONS(3233), 1, - anon_sym_PIPE, - ACTIONS(3241), 1, + ACTIONS(3367), 1, anon_sym_PIPE_PIPE, - ACTIONS(3243), 1, - anon_sym_AMP_AMP, - ACTIONS(3245), 1, + ACTIONS(3369), 1, anon_sym_QMARK, - ACTIONS(3530), 1, + ACTIONS(3677), 1, anon_sym_COLON, - STATE(791), 1, + STATE(821), 1, sym_argument_list, - ACTIONS(2552), 2, + ACTIONS(2566), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2554), 2, + ACTIONS(2568), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3215), 2, + ACTIONS(3343), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3217), 2, + ACTIONS(3345), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3225), 2, + ACTIONS(3357), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3227), 2, + ACTIONS(3359), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3229), 2, + ACTIONS(3361), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3231), 2, + ACTIONS(3363), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [54664] = 12, + [56243] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2092), 1, - anon_sym___based, - ACTIONS(3195), 1, - sym_identifier, - ACTIONS(3197), 1, + ACTIONS(2562), 1, anon_sym_LPAREN2, - ACTIONS(3199), 1, + ACTIONS(2564), 1, + anon_sym_LBRACK, + ACTIONS(3347), 1, + anon_sym_SLASH, + ACTIONS(3349), 1, + anon_sym_AMP_AMP, + ACTIONS(3351), 1, + anon_sym_PIPE, + ACTIONS(3353), 1, + anon_sym_CARET, + ACTIONS(3355), 1, + anon_sym_AMP, + ACTIONS(3367), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3369), 1, + anon_sym_QMARK, + ACTIONS(3679), 1, + anon_sym_COLON, + STATE(821), 1, + sym_argument_list, + ACTIONS(2566), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2568), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3343), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3345), 2, anon_sym_STAR, - ACTIONS(3203), 1, - sym_primitive_type, - STATE(1526), 1, - sym__type_declarator, - STATE(2125), 1, - sym_ms_based_modifier, - STATE(1269), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3201), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1566), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(49), 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, - [54717] = 20, + anon_sym_PERCENT, + ACTIONS(3357), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3359), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3361), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3363), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [56312] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2548), 1, - anon_sym_LPAREN2, - ACTIONS(2550), 1, + ACTIONS(2428), 1, + anon_sym_RBRACK, + ACTIONS(2564), 1, anon_sym_LBRACK, - ACTIONS(3219), 1, + ACTIONS(3032), 1, + anon_sym_LPAREN2, + ACTIONS(3558), 1, anon_sym_SLASH, - ACTIONS(3221), 1, - anon_sym_CARET, - ACTIONS(3223), 1, - anon_sym_AMP, - ACTIONS(3233), 1, - anon_sym_PIPE, - ACTIONS(3241), 1, + ACTIONS(3560), 1, anon_sym_PIPE_PIPE, - ACTIONS(3243), 1, + ACTIONS(3562), 1, anon_sym_AMP_AMP, - ACTIONS(3245), 1, + ACTIONS(3564), 1, + anon_sym_PIPE, + ACTIONS(3566), 1, + anon_sym_CARET, + ACTIONS(3568), 1, + anon_sym_AMP, + ACTIONS(3578), 1, anon_sym_QMARK, - ACTIONS(3532), 1, - anon_sym_RPAREN, - STATE(791), 1, + STATE(821), 1, sym_argument_list, - ACTIONS(2552), 2, + ACTIONS(2566), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2554), 2, + ACTIONS(2568), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3215), 2, + ACTIONS(3554), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3217), 2, + ACTIONS(3556), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3225), 2, + ACTIONS(3570), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3227), 2, + ACTIONS(3572), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3229), 2, + ACTIONS(3574), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3231), 2, + ACTIONS(3576), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [54786] = 20, + [56381] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2548), 1, + ACTIONS(2562), 1, anon_sym_LPAREN2, - ACTIONS(2550), 1, + ACTIONS(2564), 1, anon_sym_LBRACK, - ACTIONS(3219), 1, + ACTIONS(3347), 1, anon_sym_SLASH, - ACTIONS(3221), 1, + ACTIONS(3349), 1, + anon_sym_AMP_AMP, + ACTIONS(3351), 1, + anon_sym_PIPE, + ACTIONS(3353), 1, anon_sym_CARET, - ACTIONS(3223), 1, + ACTIONS(3355), 1, anon_sym_AMP, - ACTIONS(3233), 1, - anon_sym_PIPE, - ACTIONS(3241), 1, + ACTIONS(3367), 1, anon_sym_PIPE_PIPE, - ACTIONS(3243), 1, - anon_sym_AMP_AMP, - ACTIONS(3245), 1, + ACTIONS(3369), 1, anon_sym_QMARK, - ACTIONS(3534), 1, + ACTIONS(3681), 1, anon_sym_COLON, - STATE(791), 1, + STATE(821), 1, sym_argument_list, - ACTIONS(2552), 2, + ACTIONS(2566), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2554), 2, + ACTIONS(2568), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3215), 2, + ACTIONS(3343), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3217), 2, + ACTIONS(3345), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3225), 2, + ACTIONS(3357), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3227), 2, + ACTIONS(3359), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3229), 2, + ACTIONS(3361), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3231), 2, + ACTIONS(3363), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [54855] = 20, + [56450] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2548), 1, + ACTIONS(2562), 1, anon_sym_LPAREN2, - ACTIONS(2550), 1, + ACTIONS(2564), 1, anon_sym_LBRACK, - ACTIONS(3219), 1, + ACTIONS(3347), 1, anon_sym_SLASH, - ACTIONS(3221), 1, + ACTIONS(3349), 1, + anon_sym_AMP_AMP, + ACTIONS(3351), 1, + anon_sym_PIPE, + ACTIONS(3353), 1, anon_sym_CARET, - ACTIONS(3223), 1, + ACTIONS(3355), 1, anon_sym_AMP, - ACTIONS(3233), 1, - anon_sym_PIPE, - ACTIONS(3241), 1, + ACTIONS(3367), 1, anon_sym_PIPE_PIPE, - ACTIONS(3243), 1, - anon_sym_AMP_AMP, - ACTIONS(3245), 1, + ACTIONS(3369), 1, anon_sym_QMARK, - ACTIONS(3536), 1, + ACTIONS(3683), 1, anon_sym_COLON, - STATE(791), 1, + STATE(821), 1, sym_argument_list, - ACTIONS(2552), 2, + ACTIONS(2566), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2554), 2, + ACTIONS(2568), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3215), 2, + ACTIONS(3343), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3217), 2, + ACTIONS(3345), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3225), 2, + ACTIONS(3357), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3227), 2, + ACTIONS(3359), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3229), 2, + ACTIONS(3361), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3231), 2, + ACTIONS(3363), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [54924] = 6, + [56519] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - STATE(1100), 1, - sym_attribute_specifier, - ACTIONS(35), 2, - anon_sym___scanf, - anon_sym___printf, - ACTIONS(3293), 6, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2045), 1, + anon_sym___based, + ACTIONS(3432), 1, + sym_identifier, + ACTIONS(3434), 1, anon_sym_LPAREN2, + ACTIONS(3436), 1, anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_COLON, - ACTIONS(3291), 16, - anon_sym___extension__, - anon_sym___based, + ACTIONS(3440), 1, + sym_primitive_type, + STATE(1503), 1, + sym__type_declarator, + STATE(2030), 1, + sym_ms_based_modifier, + STATE(1308), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3438), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + STATE(1558), 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, @@ -120082,27 +124359,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - sym_primitive_type, - sym_identifier, - [54964] = 7, + [56572] = 7, ACTIONS(3), 1, sym_comment, - STATE(1315), 1, + STATE(1331), 1, sym_ms_unaligned_ptr_modifier, - ACTIONS(3540), 2, + ACTIONS(3687), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(3545), 2, + ACTIONS(3692), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(1306), 2, + STATE(1327), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - ACTIONS(3542), 3, + ACTIONS(3689), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(3538), 16, + ACTIONS(3685), 16, anon_sym___extension__, anon_sym___based, anon_sym_signed, @@ -120119,78 +124394,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [55006] = 19, + [56614] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3695), 1, + anon_sym_SEMI, + ACTIONS(2510), 7, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2512), 18, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [56650] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(2548), 1, + ACTIONS(2562), 1, anon_sym_LPAREN2, - ACTIONS(2550), 1, + ACTIONS(2564), 1, anon_sym_LBRACK, - ACTIONS(3219), 1, + ACTIONS(3347), 1, anon_sym_SLASH, - ACTIONS(3221), 1, + ACTIONS(3349), 1, + anon_sym_AMP_AMP, + ACTIONS(3351), 1, + anon_sym_PIPE, + ACTIONS(3353), 1, anon_sym_CARET, - ACTIONS(3223), 1, + ACTIONS(3355), 1, anon_sym_AMP, - ACTIONS(3233), 1, - anon_sym_PIPE, - ACTIONS(3241), 1, + ACTIONS(3367), 1, anon_sym_PIPE_PIPE, - ACTIONS(3243), 1, - anon_sym_AMP_AMP, - ACTIONS(3245), 1, + ACTIONS(3369), 1, anon_sym_QMARK, - STATE(791), 1, + STATE(821), 1, sym_argument_list, - ACTIONS(2552), 2, + ACTIONS(2566), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2554), 2, + ACTIONS(2568), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3215), 2, + ACTIONS(3343), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3217), 2, + ACTIONS(3345), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3225), 2, + ACTIONS(3357), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3227), 2, + ACTIONS(3359), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3229), 2, + ACTIONS(3361), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3231), 2, + ACTIONS(3363), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [55072] = 6, + [56716] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - STATE(1111), 1, - sym_attribute_specifier, - ACTIONS(35), 2, - anon_sym___scanf, - anon_sym___printf, - ACTIONS(3313), 6, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(51), 1, + anon_sym_const, + ACTIONS(2272), 1, anon_sym_LPAREN2, + ACTIONS(2274), 1, anon_sym_STAR, + ACTIONS(3324), 1, anon_sym_LBRACK, + STATE(1678), 1, + sym__abstract_declarator, + STATE(1704), 1, + sym_parameter_list, + STATE(1308), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3502), 3, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(3311), 16, + STATE(1701), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + ACTIONS(3697), 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, @@ -120198,28 +124509,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - sym_primitive_type, - sym_identifier, - [55112] = 6, + [56763] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - STATE(1117), 1, - sym_attribute_specifier, - ACTIONS(35), 2, - anon_sym___scanf, - anon_sym___printf, - ACTIONS(3303), 6, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3701), 2, anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_COLON, - ACTIONS(3301), 16, + ACTIONS(3699), 21, 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, @@ -120234,57 +124537,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [55152] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3548), 1, - anon_sym_SEMI, - ACTIONS(2480), 7, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2482), 18, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [55188] = 11, + [56794] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, + ACTIONS(51), 1, anon_sym_const, - ACTIONS(2266), 1, + ACTIONS(2272), 1, anon_sym_LPAREN2, - ACTIONS(2268), 1, + ACTIONS(2274), 1, anon_sym_STAR, - ACTIONS(2986), 1, + ACTIONS(3324), 1, anon_sym_LBRACK, - STATE(1619), 1, + STATE(1684), 1, sym__abstract_declarator, - STATE(1698), 1, + STATE(1704), 1, sym_parameter_list, - STATE(1269), 2, + STATE(1308), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3347), 3, + ACTIONS(3703), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, @@ -120293,7 +124564,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - ACTIONS(3550), 8, + ACTIONS(3697), 8, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -120302,25 +124573,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [55235] = 11, + [56841] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, + ACTIONS(51), 1, anon_sym_const, - ACTIONS(2266), 1, + ACTIONS(2272), 1, anon_sym_LPAREN2, - ACTIONS(2268), 1, + ACTIONS(2274), 1, anon_sym_STAR, - ACTIONS(2986), 1, + ACTIONS(3324), 1, anon_sym_LBRACK, - STATE(1641), 1, + STATE(1690), 1, sym__abstract_declarator, - STATE(1698), 1, + STATE(1704), 1, sym_parameter_list, - STATE(1269), 2, + STATE(1335), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3552), 3, + ACTIONS(3705), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, @@ -120329,7 +124600,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - ACTIONS(3550), 8, + ACTIONS(3697), 8, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -120338,25 +124609,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [55282] = 11, + [56888] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, + ACTIONS(51), 1, anon_sym_const, - ACTIONS(2266), 1, + ACTIONS(2272), 1, anon_sym_LPAREN2, - ACTIONS(2268), 1, + ACTIONS(2274), 1, anon_sym_STAR, - ACTIONS(2986), 1, + ACTIONS(3324), 1, anon_sym_LBRACK, - STATE(1621), 1, + STATE(1686), 1, sym__abstract_declarator, - STATE(1698), 1, + STATE(1704), 1, sym_parameter_list, - STATE(1317), 2, + STATE(1330), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3554), 3, + ACTIONS(3318), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, @@ -120365,7 +124636,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - ACTIONS(3550), 8, + ACTIONS(3697), 8, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -120374,25 +124645,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [55329] = 11, + [56935] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, + ACTIONS(51), 1, anon_sym_const, - ACTIONS(2266), 1, + ACTIONS(2272), 1, anon_sym_LPAREN2, - ACTIONS(2268), 1, + ACTIONS(2274), 1, anon_sym_STAR, - ACTIONS(2986), 1, + ACTIONS(3324), 1, anon_sym_LBRACK, - STATE(1655), 1, + STATE(1695), 1, sym__abstract_declarator, - STATE(1698), 1, + STATE(1704), 1, sym_parameter_list, - STATE(1312), 2, + STATE(1308), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3556), 3, + ACTIONS(3707), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, @@ -120401,7 +124672,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - ACTIONS(3550), 8, + ACTIONS(3697), 8, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -120410,25 +124681,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [55376] = 3, + [56982] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(3560), 2, + ACTIONS(3277), 1, + anon_sym_const, + ACTIONS(3290), 1, + anon_sym_LBRACE, + ACTIONS(3715), 1, + anon_sym_COLON, + STATE(1056), 1, + sym_attribute_specifier, + STATE(1216), 1, + sym_enumerator_list, + ACTIONS(3709), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(3711), 2, + anon_sym___scanf, + anon_sym___printf, + ACTIONS(3713), 3, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___init, + ACTIONS(3279), 11, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(3558), 21, 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_LBRACK, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -120436,15 +124716,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - sym_primitive_type, - sym_identifier, - [55407] = 3, + [57027] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3564), 2, + ACTIONS(3720), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(3562), 21, + ACTIONS(3718), 21, anon_sym___extension__, anon_sym___based, sym_ms_restrict_modifier, @@ -120466,25 +124744,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [55438] = 11, + [57058] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, + ACTIONS(51), 1, anon_sym_const, - ACTIONS(2266), 1, + ACTIONS(2272), 1, anon_sym_LPAREN2, - ACTIONS(2268), 1, + ACTIONS(2274), 1, anon_sym_STAR, - ACTIONS(2986), 1, + ACTIONS(3324), 1, anon_sym_LBRACK, - STATE(1671), 1, + STATE(1693), 1, sym__abstract_declarator, - STATE(1698), 1, + STATE(1704), 1, sym_parameter_list, - STATE(1269), 2, + STATE(1332), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3566), 3, + ACTIONS(3722), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, @@ -120493,7 +124771,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - ACTIONS(3550), 8, + ACTIONS(3697), 8, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -120502,35 +124780,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [55485] = 11, + [57105] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_const, - ACTIONS(2266), 1, + ACTIONS(3234), 1, + sym_primitive_type, + ACTIONS(3724), 1, + sym_identifier, + STATE(1346), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(3726), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(3228), 6, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(2268), 1, anon_sym_STAR, - ACTIONS(2986), 1, anon_sym_LBRACK, - STATE(1660), 1, - sym__abstract_declarator, - STATE(1698), 1, - sym_parameter_list, - STATE(1311), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(2980), 3, - anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_COLON, - STATE(1701), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - ACTIONS(3550), 8, + ACTIONS(3230), 9, anon_sym___extension__, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -120538,31 +124811,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [55532] = 10, + [57143] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2092), 1, + ACTIONS(2045), 1, anon_sym___based, - ACTIONS(3355), 1, + ACTIONS(3316), 1, sym_identifier, - ACTIONS(3357), 1, + ACTIONS(3510), 1, anon_sym_LPAREN2, - ACTIONS(3359), 1, + ACTIONS(3512), 1, anon_sym_STAR, - STATE(1504), 1, - sym__field_declarator, - STATE(2236), 1, + STATE(1545), 1, + sym__declarator, + STATE(2089), 1, sym_ms_based_modifier, - STATE(1269), 2, + STATE(1308), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(1560), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - ACTIONS(49), 9, + STATE(1616), 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, @@ -120572,60 +124845,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [55576] = 5, + [57187] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(3570), 1, + ACTIONS(2045), 1, + anon_sym___based, + ACTIONS(3316), 1, + sym_identifier, + ACTIONS(3510), 1, anon_sym_LPAREN2, - STATE(1337), 1, - sym_preproc_argument_list, - ACTIONS(3572), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3568), 15, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(3512), 1, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - [55610] = 10, + STATE(1556), 1, + sym__declarator, + STATE(2089), 1, + sym_ms_based_modifier, + STATE(1308), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(1616), 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, + [57231] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2092), 1, + ACTIONS(2045), 1, anon_sym___based, - ACTIONS(3355), 1, + ACTIONS(3504), 1, sym_identifier, - ACTIONS(3357), 1, + ACTIONS(3506), 1, anon_sym_LPAREN2, - ACTIONS(3359), 1, + ACTIONS(3508), 1, anon_sym_STAR, - STATE(1513), 1, + STATE(1488), 1, sym__field_declarator, - STATE(2236), 1, + STATE(2078), 1, sym_ms_based_modifier, - STATE(1269), 2, + STATE(1308), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(1560), 5, + STATE(1520), 5, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, sym_function_field_declarator, sym_array_field_declarator, - ACTIONS(49), 9, + ACTIONS(51), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -120635,31 +124913,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [55654] = 10, + [57275] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2092), 1, + ACTIONS(2045), 1, anon_sym___based, - ACTIONS(2978), 1, + ACTIONS(3504), 1, sym_identifier, - ACTIONS(3361), 1, + ACTIONS(3506), 1, anon_sym_LPAREN2, - ACTIONS(3363), 1, + ACTIONS(3508), 1, anon_sym_STAR, - STATE(1505), 1, - sym__declarator, - STATE(2118), 1, + STATE(1485), 1, + sym__field_declarator, + STATE(2078), 1, sym_ms_based_modifier, - STATE(1269), 2, + STATE(1308), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(1548), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - ACTIONS(49), 9, + STATE(1520), 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, @@ -120669,62 +124947,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [55698] = 7, + [57319] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3132), 1, - sym_primitive_type, - ACTIONS(3574), 1, - sym_identifier, - STATE(1325), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(3576), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(3126), 6, + ACTIONS(3730), 1, + anon_sym_LPAREN2, + STATE(1420), 1, + sym_preproc_argument_list, + ACTIONS(3732), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3728), 15, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_COLON, - ACTIONS(3128), 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, - [55736] = 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, + [57353] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2092), 1, + ACTIONS(2045), 1, anon_sym___based, - ACTIONS(2978), 1, + ACTIONS(3316), 1, sym_identifier, - ACTIONS(3361), 1, + ACTIONS(3510), 1, anon_sym_LPAREN2, - ACTIONS(3363), 1, + ACTIONS(3512), 1, anon_sym_STAR, - STATE(1495), 1, + STATE(1555), 1, sym__declarator, - STATE(2118), 1, + STATE(2089), 1, sym_ms_based_modifier, - STATE(1269), 2, + STATE(1308), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(1548), 5, + STATE(1616), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - ACTIONS(49), 9, + ACTIONS(51), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -120734,27 +125010,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [55780] = 6, + [57397] = 6, ACTIONS(3), 1, sym_comment, - STATE(1015), 1, + STATE(1014), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(2907), 2, + ACTIONS(2979), 2, sym_primitive_type, sym_identifier, - ACTIONS(2911), 4, + ACTIONS(2983), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(3106), 6, + ACTIONS(3101), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_LBRACK, anon_sym_COLON, - ACTIONS(3103), 9, + ACTIONS(3098), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -120764,31 +125040,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [55816] = 10, + [57433] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2092), 1, + ACTIONS(2045), 1, anon_sym___based, - ACTIONS(3355), 1, + ACTIONS(3504), 1, sym_identifier, - ACTIONS(3357), 1, + ACTIONS(3506), 1, anon_sym_LPAREN2, - ACTIONS(3359), 1, + ACTIONS(3508), 1, anon_sym_STAR, - STATE(1501), 1, + STATE(1491), 1, sym__field_declarator, - STATE(2236), 1, + STATE(2078), 1, sym_ms_based_modifier, - STATE(1269), 2, + STATE(1308), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(1560), 5, + STATE(1520), 5, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, sym_function_field_declarator, sym_array_field_declarator, - ACTIONS(49), 9, + ACTIONS(51), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -120798,99 +125074,248 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [55860] = 10, + [57477] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3734), 1, + sym_identifier, + ACTIONS(3736), 1, + anon_sym_RPAREN, + ACTIONS(3738), 1, + anon_sym_LPAREN2, + ACTIONS(3740), 1, + anon_sym_defined, + ACTIONS(3746), 1, + sym_number_literal, + ACTIONS(3742), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(3744), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3748), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(1351), 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, + [57520] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3734), 1, + sym_identifier, + ACTIONS(3738), 1, + anon_sym_LPAREN2, + ACTIONS(3740), 1, + anon_sym_defined, + ACTIONS(3750), 1, + anon_sym_RPAREN, + ACTIONS(3752), 1, + sym_number_literal, + ACTIONS(3742), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(3744), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3748), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(1355), 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, + [57563] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2092), 1, + ACTIONS(2045), 1, anon_sym___based, - ACTIONS(2978), 1, + ACTIONS(3504), 1, sym_identifier, - ACTIONS(3361), 1, + ACTIONS(3506), 1, anon_sym_LPAREN2, - ACTIONS(3363), 1, + ACTIONS(3508), 1, anon_sym_STAR, - STATE(1494), 1, - sym__declarator, - STATE(2118), 1, + ACTIONS(3754), 1, + anon_sym_SEMI, + STATE(1478), 1, + sym__field_declarator, + STATE(1626), 1, + sym__field_declaration_declarator, + STATE(2078), 1, sym_ms_based_modifier, - STATE(1269), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(1548), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - ACTIONS(49), 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, - [55904] = 10, + STATE(2266), 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(1520), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + [57614] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(3578), 1, - sym_identifier, - ACTIONS(3580), 1, + ACTIONS(3756), 1, + anon_sym_COMMA, + ACTIONS(3758), 1, anon_sym_RPAREN, - ACTIONS(3582), 1, + ACTIONS(3764), 1, + anon_sym_SLASH, + ACTIONS(3766), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3768), 1, + anon_sym_AMP_AMP, + ACTIONS(3770), 1, + anon_sym_PIPE, + ACTIONS(3772), 1, + anon_sym_CARET, + ACTIONS(3774), 1, + anon_sym_AMP, + STATE(1767), 1, + aux_sym_preproc_argument_list_repeat1, + ACTIONS(3760), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3762), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3776), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3778), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3780), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3782), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [57669] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2045), 1, + anon_sym___based, + ACTIONS(3504), 1, + sym_identifier, + ACTIONS(3506), 1, + anon_sym_LPAREN2, + ACTIONS(3508), 1, + anon_sym_STAR, + ACTIONS(3784), 1, + anon_sym_SEMI, + STATE(1478), 1, + sym__field_declarator, + STATE(1618), 1, + sym__field_declaration_declarator, + STATE(2078), 1, + sym_ms_based_modifier, + STATE(2085), 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(1520), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + [57720] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2045), 1, + anon_sym___based, + ACTIONS(3504), 1, + sym_identifier, + ACTIONS(3506), 1, anon_sym_LPAREN2, - ACTIONS(3584), 1, - anon_sym_defined, - ACTIONS(3590), 1, - sym_number_literal, - ACTIONS(3586), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3588), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3592), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1330), 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, - [55947] = 10, + ACTIONS(3508), 1, + anon_sym_STAR, + ACTIONS(3786), 1, + anon_sym_SEMI, + STATE(1478), 1, + sym__field_declarator, + STATE(1620), 1, + sym__field_declaration_declarator, + STATE(2078), 1, + sym_ms_based_modifier, + STATE(2169), 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(1520), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + [57771] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(3578), 1, + ACTIONS(3734), 1, sym_identifier, - ACTIONS(3582), 1, + ACTIONS(3738), 1, anon_sym_LPAREN2, - ACTIONS(3584), 1, + ACTIONS(3740), 1, anon_sym_defined, - ACTIONS(3594), 1, + ACTIONS(3788), 1, anon_sym_RPAREN, - ACTIONS(3596), 1, + ACTIONS(3790), 1, sym_number_literal, - ACTIONS(3586), 2, + ACTIONS(3742), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3588), 2, + ACTIONS(3744), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3592), 5, + ACTIONS(3748), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1333), 7, + STATE(1358), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -120898,94 +125323,92 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [55990] = 16, + [57814] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(3598), 1, + ACTIONS(3756), 1, anon_sym_COMMA, - ACTIONS(3600), 1, - anon_sym_RPAREN, - ACTIONS(3606), 1, + ACTIONS(3764), 1, anon_sym_SLASH, - ACTIONS(3608), 1, + ACTIONS(3766), 1, anon_sym_PIPE_PIPE, - ACTIONS(3610), 1, + ACTIONS(3768), 1, anon_sym_AMP_AMP, - ACTIONS(3612), 1, + ACTIONS(3770), 1, anon_sym_PIPE, - ACTIONS(3614), 1, + ACTIONS(3772), 1, anon_sym_CARET, - ACTIONS(3616), 1, + ACTIONS(3774), 1, anon_sym_AMP, - STATE(1763), 1, + ACTIONS(3792), 1, + anon_sym_RPAREN, + STATE(1837), 1, aux_sym_preproc_argument_list_repeat1, - ACTIONS(3602), 2, + ACTIONS(3760), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3604), 2, + ACTIONS(3762), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3618), 2, + ACTIONS(3776), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3620), 2, + ACTIONS(3778), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3622), 2, + ACTIONS(3780), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3624), 2, + ACTIONS(3782), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [56045] = 16, + [57869] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3598), 1, - anon_sym_COMMA, - ACTIONS(3606), 1, - anon_sym_SLASH, - ACTIONS(3608), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3610), 1, - anon_sym_AMP_AMP, - ACTIONS(3612), 1, - anon_sym_PIPE, - ACTIONS(3614), 1, - anon_sym_CARET, - ACTIONS(3616), 1, - anon_sym_AMP, - ACTIONS(3626), 1, - anon_sym_RPAREN, - STATE(1813), 1, - aux_sym_preproc_argument_list_repeat1, - ACTIONS(3602), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3604), 2, + ACTIONS(2045), 1, + anon_sym___based, + ACTIONS(3504), 1, + sym_identifier, + ACTIONS(3506), 1, + anon_sym_LPAREN2, + ACTIONS(3508), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3618), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3620), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3622), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3624), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [56100] = 5, - ACTIONS(3568), 1, + ACTIONS(3794), 1, + anon_sym_SEMI, + STATE(1478), 1, + sym__field_declarator, + STATE(1628), 1, + sym__field_declaration_declarator, + STATE(2073), 1, + sym_attribute_specifier, + STATE(2078), 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), 3, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___init, + STATE(1520), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + [57920] = 5, + ACTIONS(3728), 1, anon_sym_LF, - ACTIONS(3628), 1, + ACTIONS(3796), 1, anon_sym_LPAREN2, - ACTIONS(3630), 1, + ACTIONS(3798), 1, sym_comment, - STATE(1420), 1, + STATE(1437), 1, sym_preproc_argument_list, - ACTIONS(3572), 18, + ACTIONS(3732), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -121004,71 +125427,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [56133] = 16, + [57953] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(3598), 1, + ACTIONS(3756), 1, anon_sym_COMMA, - ACTIONS(3606), 1, + ACTIONS(3764), 1, anon_sym_SLASH, - ACTIONS(3608), 1, + ACTIONS(3766), 1, anon_sym_PIPE_PIPE, - ACTIONS(3610), 1, + ACTIONS(3768), 1, anon_sym_AMP_AMP, - ACTIONS(3612), 1, + ACTIONS(3770), 1, anon_sym_PIPE, - ACTIONS(3614), 1, + ACTIONS(3772), 1, anon_sym_CARET, - ACTIONS(3616), 1, + ACTIONS(3774), 1, anon_sym_AMP, - ACTIONS(3632), 1, + ACTIONS(3800), 1, anon_sym_RPAREN, - STATE(1843), 1, + STATE(1782), 1, aux_sym_preproc_argument_list_repeat1, - ACTIONS(3602), 2, + ACTIONS(3760), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3604), 2, + ACTIONS(3762), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3618), 2, + ACTIONS(3776), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3620), 2, + ACTIONS(3778), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3622), 2, + ACTIONS(3780), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3624), 2, + ACTIONS(3782), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [56188] = 10, + [58008] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3578), 1, + ACTIONS(3734), 1, sym_identifier, - ACTIONS(3582), 1, + ACTIONS(3738), 1, anon_sym_LPAREN2, - ACTIONS(3584), 1, + ACTIONS(3740), 1, anon_sym_defined, - ACTIONS(3634), 1, - anon_sym_RPAREN, - ACTIONS(3636), 1, + ACTIONS(3802), 1, sym_number_literal, - ACTIONS(3586), 2, + ACTIONS(3742), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3588), 2, + ACTIONS(3744), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3592), 5, + ACTIONS(3748), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1331), 7, + STATE(1410), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -121076,64 +125497,92 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [56231] = 12, + [58048] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3606), 1, - anon_sym_SLASH, - ACTIONS(3614), 1, - anon_sym_CARET, - ACTIONS(3616), 1, - anon_sym_AMP, - ACTIONS(3640), 1, - anon_sym_PIPE, - ACTIONS(3602), 2, + ACTIONS(3804), 1, + sym_identifier, + ACTIONS(3806), 1, + anon_sym_LPAREN2, + ACTIONS(3808), 1, + anon_sym_defined, + ACTIONS(3814), 1, + sym_number_literal, + ACTIONS(3810), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(3812), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3604), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3618), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3620), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3622), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3624), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3638), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - [56277] = 9, + ACTIONS(3816), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(1444), 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, + [58088] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3642), 1, + ACTIONS(3804), 1, sym_identifier, - ACTIONS(3644), 1, + ACTIONS(3806), 1, anon_sym_LPAREN2, - ACTIONS(3646), 1, + ACTIONS(3808), 1, anon_sym_defined, - ACTIONS(3652), 1, + ACTIONS(3818), 1, sym_number_literal, - ACTIONS(3648), 2, + ACTIONS(3810), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3650), 2, + ACTIONS(3812), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3654), 5, + ACTIONS(3816), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1414), 7, + STATE(1431), 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, + [58128] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3804), 1, + sym_identifier, + ACTIONS(3806), 1, + anon_sym_LPAREN2, + ACTIONS(3808), 1, + anon_sym_defined, + ACTIONS(3820), 1, + sym_number_literal, + ACTIONS(3810), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(3812), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3816), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(1452), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -121141,16 +125590,16 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [56317] = 3, + [58168] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3658), 5, + ACTIONS(3824), 5, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(3656), 15, + ACTIONS(3822), 15, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_DASH, @@ -121166,47 +125615,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [56345] = 9, + [58196] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3642), 1, - sym_identifier, - ACTIONS(3644), 1, - anon_sym_LPAREN2, - ACTIONS(3646), 1, - anon_sym_defined, - ACTIONS(3660), 1, - sym_number_literal, - ACTIONS(3648), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3650), 2, + ACTIONS(3828), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3826), 15, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3654), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1422), 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, - [56385] = 3, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + [58224] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3664), 5, + ACTIONS(3832), 5, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(3662), 15, + ACTIONS(3830), 15, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_DASH, @@ -121222,30 +125665,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [56413] = 9, + [58252] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3642), 1, + ACTIONS(3804), 1, sym_identifier, - ACTIONS(3644), 1, + ACTIONS(3806), 1, anon_sym_LPAREN2, - ACTIONS(3646), 1, + ACTIONS(3808), 1, anon_sym_defined, - ACTIONS(3666), 1, + ACTIONS(3834), 1, sym_number_literal, - ACTIONS(3648), 2, + ACTIONS(3810), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3650), 2, + ACTIONS(3812), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3654), 5, + ACTIONS(3816), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1428), 7, + STATE(1468), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -121253,30 +125696,61 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [56453] = 9, + [58292] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3578), 1, + ACTIONS(3734), 1, sym_identifier, - ACTIONS(3582), 1, + ACTIONS(3738), 1, anon_sym_LPAREN2, - ACTIONS(3584), 1, + ACTIONS(3740), 1, + anon_sym_defined, + ACTIONS(3836), 1, + sym_number_literal, + ACTIONS(3742), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(3744), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3748), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(1417), 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, + [58332] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3734), 1, + sym_identifier, + ACTIONS(3738), 1, + anon_sym_LPAREN2, + ACTIONS(3740), 1, anon_sym_defined, - ACTIONS(3668), 1, + ACTIONS(3838), 1, sym_number_literal, - ACTIONS(3586), 2, + ACTIONS(3742), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3588), 2, + ACTIONS(3744), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3592), 5, + ACTIONS(3748), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1385), 7, + STATE(1416), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -121284,30 +125758,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [56493] = 9, + [58372] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3578), 1, + ACTIONS(3734), 1, sym_identifier, - ACTIONS(3582), 1, + ACTIONS(3738), 1, anon_sym_LPAREN2, - ACTIONS(3584), 1, + ACTIONS(3740), 1, anon_sym_defined, - ACTIONS(3670), 1, + ACTIONS(3840), 1, sym_number_literal, - ACTIONS(3586), 2, + ACTIONS(3742), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3588), 2, + ACTIONS(3744), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3592), 5, + ACTIONS(3748), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1386), 7, + STATE(1429), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -121315,30 +125789,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [56533] = 9, + [58412] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3578), 1, + ACTIONS(3804), 1, sym_identifier, - ACTIONS(3582), 1, + ACTIONS(3806), 1, anon_sym_LPAREN2, - ACTIONS(3584), 1, + ACTIONS(3808), 1, anon_sym_defined, - ACTIONS(3672), 1, + ACTIONS(3842), 1, sym_number_literal, - ACTIONS(3586), 2, + ACTIONS(3810), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3588), 2, + ACTIONS(3812), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3592), 5, + ACTIONS(3816), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1389), 7, + STATE(1448), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -121346,65 +125820,123 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [56573] = 13, + [58452] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2088), 1, + ACTIONS(3734), 1, + sym_identifier, + ACTIONS(3738), 1, anon_sym_LPAREN2, - ACTIONS(2090), 1, - anon_sym_STAR, - ACTIONS(2092), 1, - anon_sym___based, - ACTIONS(2978), 1, + ACTIONS(3740), 1, + anon_sym_defined, + ACTIONS(3844), 1, + sym_number_literal, + ACTIONS(3742), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(3744), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3748), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(1414), 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, + [58492] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3734), 1, sym_identifier, - ACTIONS(2986), 1, - anon_sym_LBRACK, - STATE(1594), 1, - sym__declarator, - STATE(1698), 1, - sym_parameter_list, - STATE(1705), 1, - sym__abstract_declarator, - STATE(2118), 1, - sym_ms_based_modifier, - ACTIONS(3674), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(1701), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - STATE(1548), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [56621] = 9, + ACTIONS(3738), 1, + anon_sym_LPAREN2, + ACTIONS(3740), 1, + anon_sym_defined, + ACTIONS(3846), 1, + sym_number_literal, + ACTIONS(3742), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(3744), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3748), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(1413), 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, + [58532] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3642), 1, + ACTIONS(3734), 1, sym_identifier, - ACTIONS(3644), 1, + ACTIONS(3738), 1, anon_sym_LPAREN2, - ACTIONS(3646), 1, + ACTIONS(3740), 1, anon_sym_defined, - ACTIONS(3676), 1, + ACTIONS(3848), 1, sym_number_literal, - ACTIONS(3648), 2, + ACTIONS(3742), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3650), 2, + ACTIONS(3744), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3654), 5, + ACTIONS(3748), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1417), 7, + STATE(1412), 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, + [58572] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3734), 1, + sym_identifier, + ACTIONS(3738), 1, + anon_sym_LPAREN2, + ACTIONS(3740), 1, + anon_sym_defined, + ACTIONS(3850), 1, + sym_number_literal, + ACTIONS(3742), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(3744), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3748), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(1411), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -121412,16 +125944,16 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [56661] = 3, + [58612] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3680), 5, + ACTIONS(3854), 5, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(3678), 15, + ACTIONS(3852), 15, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_DASH, @@ -121437,55 +125969,150 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [56689] = 3, + [58640] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3684), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3682), 15, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3804), 1, + sym_identifier, + ACTIONS(3806), 1, + anon_sym_LPAREN2, + ACTIONS(3808), 1, + anon_sym_defined, + ACTIONS(3856), 1, + sym_number_literal, + ACTIONS(3810), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(3812), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(3816), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(1450), 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, + [58680] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3860), 2, + anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_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, - [56717] = 9, + STATE(1308), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3858), 7, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + 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, + [58712] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3578), 1, + ACTIONS(3734), 1, sym_identifier, - ACTIONS(3582), 1, + ACTIONS(3738), 1, anon_sym_LPAREN2, - ACTIONS(3584), 1, + ACTIONS(3740), 1, anon_sym_defined, - ACTIONS(3686), 1, + ACTIONS(3862), 1, sym_number_literal, - ACTIONS(3586), 2, + ACTIONS(3742), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3588), 2, + ACTIONS(3744), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3592), 5, + ACTIONS(3748), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1411), 7, + STATE(1409), 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, + [58752] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3734), 1, + sym_identifier, + ACTIONS(3738), 1, + anon_sym_LPAREN2, + ACTIONS(3740), 1, + anon_sym_defined, + ACTIONS(3864), 1, + sym_number_literal, + ACTIONS(3742), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(3744), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3748), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(1408), 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, + [58792] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3734), 1, + sym_identifier, + ACTIONS(3738), 1, + anon_sym_LPAREN2, + ACTIONS(3740), 1, + anon_sym_defined, + ACTIONS(3866), 1, + sym_number_literal, + ACTIONS(3742), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(3744), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3748), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(1407), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -121493,16 +126120,43 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [56757] = 3, + [58832] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3870), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + STATE(1418), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3868), 7, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + 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, + [58864] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3690), 5, + ACTIONS(2506), 5, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(3688), 15, + ACTIONS(2508), 15, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_DASH, @@ -121518,30 +126172,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [56785] = 9, + [58892] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3642), 1, + ACTIONS(3804), 1, sym_identifier, - ACTIONS(3644), 1, + ACTIONS(3806), 1, anon_sym_LPAREN2, - ACTIONS(3646), 1, + ACTIONS(3808), 1, anon_sym_defined, - ACTIONS(3692), 1, + ACTIONS(3872), 1, sym_number_literal, - ACTIONS(3648), 2, + ACTIONS(3810), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3650), 2, + ACTIONS(3812), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3654), 5, + ACTIONS(3816), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1443), 7, + STATE(1463), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -121549,30 +126203,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [56825] = 9, + [58932] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3578), 1, + ACTIONS(3804), 1, sym_identifier, - ACTIONS(3582), 1, + ACTIONS(3806), 1, anon_sym_LPAREN2, - ACTIONS(3584), 1, + ACTIONS(3808), 1, anon_sym_defined, - ACTIONS(3694), 1, + ACTIONS(3874), 1, sym_number_literal, - ACTIONS(3586), 2, + ACTIONS(3810), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3588), 2, + ACTIONS(3812), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3592), 5, + ACTIONS(3816), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1369), 7, + STATE(1440), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -121580,30 +126234,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [56865] = 9, + [58972] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3642), 1, + ACTIONS(3804), 1, sym_identifier, - ACTIONS(3644), 1, + ACTIONS(3806), 1, anon_sym_LPAREN2, - ACTIONS(3646), 1, + ACTIONS(3808), 1, anon_sym_defined, - ACTIONS(3696), 1, + ACTIONS(3876), 1, sym_number_literal, - ACTIONS(3648), 2, + ACTIONS(3810), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3650), 2, + ACTIONS(3812), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3654), 5, + ACTIONS(3816), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1431), 7, + STATE(1433), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -121611,30 +126265,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [56905] = 9, + [59012] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3578), 1, + ACTIONS(3804), 1, sym_identifier, - ACTIONS(3582), 1, + ACTIONS(3806), 1, anon_sym_LPAREN2, - ACTIONS(3584), 1, + ACTIONS(3808), 1, anon_sym_defined, - ACTIONS(3698), 1, + ACTIONS(3878), 1, sym_number_literal, - ACTIONS(3586), 2, + ACTIONS(3810), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3588), 2, + ACTIONS(3812), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3592), 5, + ACTIONS(3816), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1371), 7, + STATE(1430), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -121642,30 +126296,65 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [56945] = 9, + [59052] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(3642), 1, + ACTIONS(2041), 1, + anon_sym_LPAREN2, + ACTIONS(2043), 1, + anon_sym_STAR, + ACTIONS(2045), 1, + anon_sym___based, + ACTIONS(3316), 1, sym_identifier, - ACTIONS(3644), 1, + ACTIONS(3324), 1, + anon_sym_LBRACK, + STATE(1650), 1, + sym__declarator, + STATE(1704), 1, + sym_parameter_list, + STATE(1711), 1, + sym__abstract_declarator, + STATE(2089), 1, + sym_ms_based_modifier, + ACTIONS(3880), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(1701), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + STATE(1616), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + [59100] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3804), 1, + sym_identifier, + ACTIONS(3806), 1, anon_sym_LPAREN2, - ACTIONS(3646), 1, + ACTIONS(3808), 1, anon_sym_defined, - ACTIONS(3700), 1, + ACTIONS(3882), 1, sym_number_literal, - ACTIONS(3648), 2, + ACTIONS(3810), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3650), 2, + ACTIONS(3812), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3654), 5, + ACTIONS(3816), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1442), 7, + STATE(1460), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -121673,55 +126362,57 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [56985] = 3, + [59140] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2496), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2498), 15, + ACTIONS(3886), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3889), 1, + anon_sym_LBRACK, + STATE(1389), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(3884), 16, 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, - [57013] = 9, + 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_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + [59172] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3642), 1, + ACTIONS(3804), 1, sym_identifier, - ACTIONS(3644), 1, + ACTIONS(3806), 1, anon_sym_LPAREN2, - ACTIONS(3646), 1, + ACTIONS(3808), 1, anon_sym_defined, - ACTIONS(3702), 1, + ACTIONS(3891), 1, sym_number_literal, - ACTIONS(3648), 2, + ACTIONS(3810), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3650), 2, + ACTIONS(3812), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3654), 5, + ACTIONS(3816), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1426), 7, + STATE(1466), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -121729,30 +126420,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [57053] = 9, + [59212] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3642), 1, + ACTIONS(3804), 1, sym_identifier, - ACTIONS(3644), 1, + ACTIONS(3806), 1, anon_sym_LPAREN2, - ACTIONS(3646), 1, + ACTIONS(3808), 1, anon_sym_defined, - ACTIONS(3704), 1, + ACTIONS(3893), 1, sym_number_literal, - ACTIONS(3648), 2, + ACTIONS(3810), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3650), 2, + ACTIONS(3812), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3654), 5, + ACTIONS(3816), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1440), 7, + STATE(1454), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -121760,30 +126451,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [57093] = 9, + [59252] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3642), 1, + ACTIONS(3734), 1, sym_identifier, - ACTIONS(3644), 1, + ACTIONS(3738), 1, anon_sym_LPAREN2, - ACTIONS(3646), 1, + ACTIONS(3740), 1, anon_sym_defined, - ACTIONS(3706), 1, + ACTIONS(3895), 1, sym_number_literal, - ACTIONS(3648), 2, + ACTIONS(3742), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3650), 2, + ACTIONS(3744), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3654), 5, + ACTIONS(3748), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1427), 7, + STATE(1406), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -121791,55 +126482,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [57133] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3710), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3708), 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, - [57161] = 9, + [59292] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3578), 1, + ACTIONS(3804), 1, sym_identifier, - ACTIONS(3582), 1, + ACTIONS(3806), 1, anon_sym_LPAREN2, - ACTIONS(3584), 1, + ACTIONS(3808), 1, anon_sym_defined, - ACTIONS(3712), 1, + ACTIONS(3897), 1, sym_number_literal, - ACTIONS(3586), 2, + ACTIONS(3810), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3588), 2, + ACTIONS(3812), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3592), 5, + ACTIONS(3816), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1372), 7, + STATE(1447), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -121847,30 +126513,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [57201] = 9, + [59332] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3642), 1, + ACTIONS(3734), 1, sym_identifier, - ACTIONS(3644), 1, + ACTIONS(3738), 1, anon_sym_LPAREN2, - ACTIONS(3646), 1, + ACTIONS(3740), 1, anon_sym_defined, - ACTIONS(3714), 1, + ACTIONS(3899), 1, sym_number_literal, - ACTIONS(3648), 2, + ACTIONS(3742), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3650), 2, + ACTIONS(3744), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3654), 5, + ACTIONS(3748), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1421), 7, + STATE(1438), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -121878,30 +126544,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [57241] = 9, + [59372] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3642), 1, + ACTIONS(3804), 1, sym_identifier, - ACTIONS(3644), 1, + ACTIONS(3806), 1, anon_sym_LPAREN2, - ACTIONS(3646), 1, + ACTIONS(3808), 1, anon_sym_defined, - ACTIONS(3716), 1, + ACTIONS(3901), 1, sym_number_literal, - ACTIONS(3648), 2, + ACTIONS(3810), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3650), 2, + ACTIONS(3812), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3654), 5, + ACTIONS(3816), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1404), 7, + STATE(1428), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -121909,43 +126575,16 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [57281] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3720), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - STATE(1269), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3718), 7, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - sym_identifier, - ACTIONS(49), 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, - [57313] = 5, + [59412] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3724), 2, + ACTIONS(3905), 2, anon_sym_LPAREN2, anon_sym_STAR, - STATE(1363), 2, + STATE(1377), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3722), 7, + ACTIONS(3903), 7, anon_sym___based, anon_sym_signed, anon_sym_unsigned, @@ -121953,7 +126592,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_short, sym_primitive_type, sym_identifier, - ACTIONS(49), 9, + ACTIONS(51), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -121963,16 +126602,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [57345] = 3, + [59444] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3728), 5, + ACTIONS(3909), 5, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(3726), 15, + ACTIONS(3907), 15, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_DASH, @@ -121988,30 +126627,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [57373] = 9, + [59472] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3642), 1, + ACTIONS(3734), 1, sym_identifier, - ACTIONS(3644), 1, + ACTIONS(3738), 1, anon_sym_LPAREN2, - ACTIONS(3646), 1, + ACTIONS(3740), 1, anon_sym_defined, - ACTIONS(3730), 1, + ACTIONS(3911), 1, sym_number_literal, - ACTIONS(3648), 2, + ACTIONS(3742), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3650), 2, + ACTIONS(3744), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3654), 5, + ACTIONS(3748), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1406), 7, + STATE(1365), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -122019,30 +126658,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [57413] = 9, + [59512] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3642), 1, + ACTIONS(3804), 1, sym_identifier, - ACTIONS(3644), 1, + ACTIONS(3806), 1, anon_sym_LPAREN2, - ACTIONS(3646), 1, + ACTIONS(3808), 1, anon_sym_defined, - ACTIONS(3732), 1, + ACTIONS(3913), 1, sym_number_literal, - ACTIONS(3648), 2, + ACTIONS(3810), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3650), 2, + ACTIONS(3812), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3654), 5, + ACTIONS(3816), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1409), 7, + STATE(1446), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -122050,30 +126689,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [57453] = 9, + [59552] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3578), 1, + ACTIONS(3804), 1, sym_identifier, - ACTIONS(3582), 1, + ACTIONS(3806), 1, anon_sym_LPAREN2, - ACTIONS(3584), 1, + ACTIONS(3808), 1, anon_sym_defined, - ACTIONS(3734), 1, + ACTIONS(3915), 1, sym_number_literal, - ACTIONS(3586), 2, + ACTIONS(3810), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3588), 2, + ACTIONS(3812), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3592), 5, + ACTIONS(3816), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1448), 7, + STATE(1427), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -122081,57 +126720,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [57493] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3606), 1, - anon_sym_SLASH, - ACTIONS(3604), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3640), 4, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3638), 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, - [57525] = 9, + [59592] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3642), 1, + ACTIONS(3804), 1, sym_identifier, - ACTIONS(3644), 1, + ACTIONS(3806), 1, anon_sym_LPAREN2, - ACTIONS(3646), 1, + ACTIONS(3808), 1, anon_sym_defined, - ACTIONS(3736), 1, + ACTIONS(3917), 1, sym_number_literal, - ACTIONS(3648), 2, + ACTIONS(3810), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3650), 2, + ACTIONS(3812), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3654), 5, + ACTIONS(3816), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1418), 7, + STATE(1445), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -122139,90 +126751,61 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [57565] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3640), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3638), 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, - [57593] = 13, + [59632] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3606), 1, - anon_sym_SLASH, - ACTIONS(3610), 1, - anon_sym_AMP_AMP, - ACTIONS(3612), 1, - anon_sym_PIPE, - ACTIONS(3614), 1, - anon_sym_CARET, - ACTIONS(3616), 1, - anon_sym_AMP, - ACTIONS(3602), 2, + ACTIONS(3804), 1, + sym_identifier, + ACTIONS(3806), 1, + anon_sym_LPAREN2, + ACTIONS(3808), 1, + anon_sym_defined, + ACTIONS(3919), 1, + sym_number_literal, + ACTIONS(3810), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(3812), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3604), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3618), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3620), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3622), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3624), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3638), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - [57641] = 9, + ACTIONS(3816), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(1469), 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, + [59672] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3642), 1, + ACTIONS(3804), 1, sym_identifier, - ACTIONS(3644), 1, + ACTIONS(3806), 1, anon_sym_LPAREN2, - ACTIONS(3646), 1, + ACTIONS(3808), 1, anon_sym_defined, - ACTIONS(3738), 1, + ACTIONS(3921), 1, sym_number_literal, - ACTIONS(3648), 2, + ACTIONS(3810), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3650), 2, + ACTIONS(3812), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3654), 5, + ACTIONS(3816), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1438), 7, + STATE(1455), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -122230,57 +126813,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [57681] = 5, + [59712] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3742), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - STATE(1393), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3740), 7, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - sym_identifier, - ACTIONS(49), 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, - [57713] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3642), 1, + ACTIONS(3804), 1, sym_identifier, - ACTIONS(3644), 1, + ACTIONS(3806), 1, anon_sym_LPAREN2, - ACTIONS(3646), 1, + ACTIONS(3808), 1, anon_sym_defined, - ACTIONS(3744), 1, + ACTIONS(3923), 1, sym_number_literal, - ACTIONS(3648), 2, + ACTIONS(3810), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3650), 2, + ACTIONS(3812), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3654), 5, + ACTIONS(3816), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1402), 7, + STATE(1451), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -122288,30 +126844,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [57753] = 9, + [59752] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3578), 1, + ACTIONS(3804), 1, sym_identifier, - ACTIONS(3582), 1, + ACTIONS(3806), 1, anon_sym_LPAREN2, - ACTIONS(3584), 1, + ACTIONS(3808), 1, anon_sym_defined, - ACTIONS(3746), 1, + ACTIONS(3925), 1, sym_number_literal, - ACTIONS(3586), 2, + ACTIONS(3810), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3588), 2, + ACTIONS(3812), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3592), 5, + ACTIONS(3816), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1377), 7, + STATE(1459), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -122319,343 +126875,322 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [57793] = 12, + [59792] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3606), 1, + ACTIONS(3764), 1, anon_sym_SLASH, - ACTIONS(3612), 1, + ACTIONS(3766), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3768), 1, + anon_sym_AMP_AMP, + ACTIONS(3770), 1, anon_sym_PIPE, - ACTIONS(3614), 1, + ACTIONS(3772), 1, anon_sym_CARET, - ACTIONS(3616), 1, + ACTIONS(3774), 1, anon_sym_AMP, - ACTIONS(3602), 2, + ACTIONS(3760), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3604), 2, + ACTIONS(3762), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3618), 2, + ACTIONS(3776), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3620), 2, + ACTIONS(3778), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3622), 2, + ACTIONS(3780), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3624), 2, + ACTIONS(3782), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3638), 4, + ACTIONS(3927), 2, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - [57839] = 14, + [59842] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3606), 1, + ACTIONS(3764), 1, anon_sym_SLASH, - ACTIONS(3608), 1, + ACTIONS(3760), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3762), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3931), 4, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3929), 11, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, - ACTIONS(3610), 1, anon_sym_AMP_AMP, - ACTIONS(3612), 1, - anon_sym_PIPE, - ACTIONS(3614), 1, anon_sym_CARET, - ACTIONS(3616), 1, - anon_sym_AMP, - ACTIONS(3602), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + [59876] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3764), 1, + anon_sym_SLASH, + ACTIONS(3760), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3604), 2, + ACTIONS(3762), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3618), 2, + ACTIONS(3782), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3931), 4, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3929), 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, - ACTIONS(3620), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [59912] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3764), 1, + anon_sym_SLASH, + ACTIONS(3760), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3762), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3778), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3622), 2, + ACTIONS(3780), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3624), 2, + ACTIONS(3782), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3748), 2, + ACTIONS(3931), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(3929), 7, anon_sym_COMMA, anon_sym_RPAREN, - [57889] = 11, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [59952] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(3606), 1, + ACTIONS(3764), 1, anon_sym_SLASH, - ACTIONS(3616), 1, - anon_sym_AMP, - ACTIONS(3640), 1, - anon_sym_PIPE, - ACTIONS(3602), 2, + ACTIONS(3760), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3604), 2, + ACTIONS(3762), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3618), 2, + ACTIONS(3776), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3620), 2, + ACTIONS(3778), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3622), 2, + ACTIONS(3780), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3624), 2, + ACTIONS(3782), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3638), 5, + ACTIONS(3931), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(3929), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, - [57933] = 10, + [59994] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(3606), 1, + ACTIONS(3764), 1, anon_sym_SLASH, - ACTIONS(3602), 2, + ACTIONS(3774), 1, + anon_sym_AMP, + ACTIONS(3931), 1, + anon_sym_PIPE, + ACTIONS(3760), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3604), 2, + ACTIONS(3762), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3618), 2, + ACTIONS(3776), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3620), 2, + ACTIONS(3778), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3622), 2, + ACTIONS(3780), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3624), 2, + ACTIONS(3782), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3640), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(3638), 5, + ACTIONS(3929), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, - [57975] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3642), 1, - sym_identifier, - ACTIONS(3644), 1, - anon_sym_LPAREN2, - ACTIONS(3646), 1, - anon_sym_defined, - ACTIONS(3750), 1, - sym_number_literal, - ACTIONS(3648), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3650), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3654), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1433), 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, - [58015] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3642), 1, - sym_identifier, - ACTIONS(3644), 1, - anon_sym_LPAREN2, - ACTIONS(3646), 1, - anon_sym_defined, - ACTIONS(3752), 1, - sym_number_literal, - ACTIONS(3648), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3650), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3654), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1447), 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, - [58055] = 3, + [60038] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(3756), 5, + ACTIONS(3764), 1, anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(3772), 1, + anon_sym_CARET, + ACTIONS(3774), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3754), 15, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3931), 1, + anon_sym_PIPE, + ACTIONS(3760), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(3762), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, + ACTIONS(3776), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(3778), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3780), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(3782), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [58083] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3578), 1, - sym_identifier, - ACTIONS(3582), 1, - anon_sym_LPAREN2, - ACTIONS(3584), 1, - anon_sym_defined, - ACTIONS(3758), 1, - sym_number_literal, - ACTIONS(3586), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3588), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3592), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1335), 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, - [58123] = 9, + ACTIONS(3929), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + [60084] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(3606), 1, + ACTIONS(3764), 1, anon_sym_SLASH, - ACTIONS(3602), 2, + ACTIONS(3770), 1, + anon_sym_PIPE, + ACTIONS(3772), 1, + anon_sym_CARET, + ACTIONS(3774), 1, + anon_sym_AMP, + ACTIONS(3760), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3604), 2, + ACTIONS(3762), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3620), 2, + ACTIONS(3776), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3778), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3622), 2, + ACTIONS(3780), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3624), 2, + ACTIONS(3782), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3640), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(3638), 7, + ACTIONS(3929), 4, 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, - [58163] = 7, + [60130] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(3606), 1, + ACTIONS(3764), 1, anon_sym_SLASH, - ACTIONS(3602), 2, + ACTIONS(3768), 1, + anon_sym_AMP_AMP, + ACTIONS(3770), 1, + anon_sym_PIPE, + ACTIONS(3772), 1, + anon_sym_CARET, + ACTIONS(3774), 1, + anon_sym_AMP, + ACTIONS(3760), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3604), 2, + ACTIONS(3762), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3624), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3640), 4, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(3776), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3778), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3638), 9, + ACTIONS(3780), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3782), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3929), 3, 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, - [58199] = 9, + [60178] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3642), 1, + ACTIONS(3804), 1, sym_identifier, - ACTIONS(3644), 1, + ACTIONS(3806), 1, anon_sym_LPAREN2, - ACTIONS(3646), 1, + ACTIONS(3808), 1, anon_sym_defined, - ACTIONS(3760), 1, + ACTIONS(3933), 1, sym_number_literal, - ACTIONS(3648), 2, + ACTIONS(3810), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3650), 2, + ACTIONS(3812), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3654), 5, + ACTIONS(3816), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1408), 7, + STATE(1461), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -122663,56 +127198,49 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [58239] = 9, + [60218] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3642), 1, - sym_identifier, - ACTIONS(3644), 1, - anon_sym_LPAREN2, - ACTIONS(3646), 1, - anon_sym_defined, - ACTIONS(3762), 1, - sym_number_literal, - ACTIONS(3648), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3650), 2, + ACTIONS(3931), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3929), 15, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3654), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1419), 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, - [58279] = 6, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + [60246] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3606), 1, + ACTIONS(3764), 1, anon_sym_SLASH, - ACTIONS(3602), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3604), 2, + ACTIONS(3762), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3640), 4, + ACTIONS(3931), 4, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(3638), 11, + ACTIONS(3929), 13, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, @@ -122722,109 +127250,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [58313] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3578), 1, - sym_identifier, - ACTIONS(3582), 1, - anon_sym_LPAREN2, - ACTIONS(3584), 1, - anon_sym_defined, - ACTIONS(3764), 1, - sym_number_literal, - ACTIONS(3586), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3588), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3592), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1379), 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, - [58353] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3642), 1, - sym_identifier, - ACTIONS(3644), 1, - anon_sym_LPAREN2, - ACTIONS(3646), 1, - anon_sym_defined, - ACTIONS(3766), 1, - sym_number_literal, - ACTIONS(3648), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3650), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3654), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1403), 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, - [58393] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3578), 1, - sym_identifier, - ACTIONS(3582), 1, - anon_sym_LPAREN2, - ACTIONS(3584), 1, - anon_sym_defined, - ACTIONS(3768), 1, - sym_number_literal, - ACTIONS(3586), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3588), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3592), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1380), 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, - [58433] = 5, + [60278] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3772), 2, + ACTIONS(3937), 2, anon_sym_LPAREN2, anon_sym_STAR, - STATE(1269), 2, + STATE(1308), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3770), 7, + ACTIONS(3935), 7, anon_sym___based, anon_sym_signed, anon_sym_unsigned, @@ -122832,7 +127267,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_short, sym_primitive_type, sym_identifier, - ACTIONS(49), 9, + ACTIONS(51), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -122842,30 +127277,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [58465] = 9, + [60310] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3642), 1, + ACTIONS(3804), 1, sym_identifier, - ACTIONS(3644), 1, + ACTIONS(3806), 1, anon_sym_LPAREN2, - ACTIONS(3646), 1, + ACTIONS(3808), 1, anon_sym_defined, - ACTIONS(3774), 1, + ACTIONS(3939), 1, sym_number_literal, - ACTIONS(3648), 2, + ACTIONS(3810), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3650), 2, + ACTIONS(3812), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3654), 5, + ACTIONS(3816), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1425), 7, + STATE(1465), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -122873,61 +127308,55 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [58505] = 9, + [60350] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3578), 1, - sym_identifier, - ACTIONS(3582), 1, - anon_sym_LPAREN2, - ACTIONS(3584), 1, - anon_sym_defined, - ACTIONS(3776), 1, - sym_number_literal, - ACTIONS(3586), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3588), 2, + ACTIONS(3943), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3941), 15, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3592), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1378), 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, - [58545] = 9, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_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, + [60378] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3642), 1, + ACTIONS(3804), 1, sym_identifier, - ACTIONS(3644), 1, + ACTIONS(3806), 1, anon_sym_LPAREN2, - ACTIONS(3646), 1, + ACTIONS(3808), 1, anon_sym_defined, - ACTIONS(3778), 1, + ACTIONS(3945), 1, sym_number_literal, - ACTIONS(3648), 2, + ACTIONS(3810), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3650), 2, + ACTIONS(3812), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3654), 5, + ACTIONS(3816), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1412), 7, + STATE(1434), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -122935,30 +127364,61 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [58585] = 9, + [60418] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3642), 1, + ACTIONS(3949), 1, + anon_sym_LBRACK, + STATE(1471), 1, + sym_gnu_asm_expression, + ACTIONS(3709), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(3711), 2, + anon_sym___scanf, + anon_sym___printf, + ACTIONS(3951), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(1474), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + ACTIONS(3713), 3, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___init, + ACTIONS(3947), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + [60458] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3804), 1, sym_identifier, - ACTIONS(3644), 1, + ACTIONS(3806), 1, anon_sym_LPAREN2, - ACTIONS(3646), 1, + ACTIONS(3808), 1, anon_sym_defined, - ACTIONS(3780), 1, + ACTIONS(3953), 1, sym_number_literal, - ACTIONS(3648), 2, + ACTIONS(3810), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3650), 2, + ACTIONS(3812), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3654), 5, + ACTIONS(3816), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1439), 7, + STATE(1473), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -122966,92 +127426,80 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [58625] = 9, + [60498] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3578), 1, - sym_identifier, - ACTIONS(3582), 1, - anon_sym_LPAREN2, - ACTIONS(3584), 1, - anon_sym_defined, - ACTIONS(3782), 1, - sym_number_literal, - ACTIONS(3586), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3588), 2, + ACTIONS(3957), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3955), 15, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3592), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1347), 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, - [58665] = 9, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_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, + [60526] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3642), 1, - sym_identifier, - ACTIONS(3644), 1, - anon_sym_LPAREN2, - ACTIONS(3646), 1, - anon_sym_defined, - ACTIONS(3784), 1, - sym_number_literal, - ACTIONS(3648), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3650), 2, + ACTIONS(3961), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3959), 15, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3654), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1424), 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, - [58705] = 9, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_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, + [60554] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3642), 1, + ACTIONS(3804), 1, sym_identifier, - ACTIONS(3644), 1, + ACTIONS(3806), 1, anon_sym_LPAREN2, - ACTIONS(3646), 1, + ACTIONS(3808), 1, anon_sym_defined, - ACTIONS(3786), 1, + ACTIONS(3963), 1, sym_number_literal, - ACTIONS(3648), 2, + ACTIONS(3810), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3650), 2, + ACTIONS(3812), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3654), 5, + ACTIONS(3816), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1430), 7, + STATE(1477), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -123059,21 +127507,184 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [58745] = 6, + [60594] = 12, + ACTIONS(3798), 1, + sym_comment, + ACTIONS(3965), 1, + anon_sym_LF, + ACTIONS(3971), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3973), 1, + anon_sym_AMP_AMP, + ACTIONS(3975), 1, + anon_sym_PIPE, + ACTIONS(3977), 1, + anon_sym_CARET, + ACTIONS(3979), 1, + anon_sym_AMP, + ACTIONS(3967), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3981), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3985), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3969), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3983), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [60639] = 12, + ACTIONS(3798), 1, + sym_comment, + ACTIONS(3971), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3973), 1, + anon_sym_AMP_AMP, + ACTIONS(3975), 1, + anon_sym_PIPE, + ACTIONS(3977), 1, + anon_sym_CARET, + ACTIONS(3979), 1, + anon_sym_AMP, + ACTIONS(3987), 1, + anon_sym_LF, + ACTIONS(3967), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3981), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3985), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3969), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3983), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [60684] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1978), 1, + ACTIONS(3764), 1, + anon_sym_SLASH, + ACTIONS(3766), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3768), 1, + anon_sym_AMP_AMP, + ACTIONS(3770), 1, + anon_sym_PIPE, + ACTIONS(3772), 1, + anon_sym_CARET, + ACTIONS(3774), 1, + anon_sym_AMP, + ACTIONS(3989), 1, + anon_sym_RPAREN, + ACTIONS(3760), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3762), 2, anon_sym_STAR, - ACTIONS(3040), 1, - anon_sym_LPAREN2, - STATE(1407), 1, + anon_sym_PERCENT, + ACTIONS(3776), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3778), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3780), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3782), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [60733] = 9, + ACTIONS(3798), 1, + sym_comment, + ACTIONS(3929), 1, + anon_sym_LF, + ACTIONS(3979), 1, + anon_sym_AMP, + ACTIONS(3967), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3981), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3985), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3969), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3931), 4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(3983), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [60772] = 12, + ACTIONS(3798), 1, + sym_comment, + ACTIONS(3971), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3973), 1, + anon_sym_AMP_AMP, + ACTIONS(3975), 1, + anon_sym_PIPE, + ACTIONS(3977), 1, + anon_sym_CARET, + ACTIONS(3979), 1, + anon_sym_AMP, + ACTIONS(3991), 1, + anon_sym_LF, + ACTIONS(3967), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3981), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3985), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3969), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3983), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [60817] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(1014), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(3788), 4, + ACTIONS(3070), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + ACTIONS(3993), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(1962), 12, + ACTIONS(3068), 12, anon_sym___extension__, anon_sym___based, anon_sym_const, @@ -123086,106 +127697,180 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [58778] = 9, - ACTIONS(3630), 1, + [60848] = 10, + ACTIONS(3798), 1, sym_comment, - ACTIONS(3638), 1, + ACTIONS(3929), 1, anon_sym_LF, - ACTIONS(3795), 1, + ACTIONS(3977), 1, + anon_sym_CARET, + ACTIONS(3979), 1, anon_sym_AMP, - ACTIONS(3791), 2, + ACTIONS(3967), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3797), 2, + ACTIONS(3981), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3801), 2, + ACTIONS(3985), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3793), 3, + ACTIONS(3931), 3, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + ACTIONS(3969), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3983), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [60889] = 5, + ACTIONS(3798), 1, + sym_comment, + ACTIONS(3929), 1, + anon_sym_LF, + ACTIONS(3967), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3969), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3640), 4, + ACTIONS(3931), 13, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_CARET, - ACTIONS(3799), 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, - [58817] = 10, - ACTIONS(3630), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + [60920] = 7, + ACTIONS(3), 1, sym_comment, - ACTIONS(3638), 1, + ACTIONS(4007), 1, + anon_sym_LBRACK, + ACTIONS(3998), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(4001), 2, + anon_sym___scanf, + anon_sym___printf, + STATE(1435), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + ACTIONS(4004), 3, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___init, + ACTIONS(3996), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + [60955] = 3, + ACTIONS(3798), 1, + sym_comment, + ACTIONS(3959), 1, anon_sym_LF, - ACTIONS(3795), 1, - anon_sym_AMP, - ACTIONS(3803), 1, - anon_sym_CARET, - ACTIONS(3791), 2, + ACTIONS(3961), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3797), 2, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3801), 2, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3640), 3, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - ACTIONS(3793), 3, + [60982] = 3, + ACTIONS(3798), 1, + sym_comment, + ACTIONS(3941), 1, + anon_sym_LF, + ACTIONS(3943), 18, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3799), 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, - [58858] = 12, - ACTIONS(3630), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + [61009] = 14, + ACTIONS(3), 1, sym_comment, - ACTIONS(3795), 1, - anon_sym_AMP, - ACTIONS(3803), 1, - anon_sym_CARET, - ACTIONS(3805), 1, - anon_sym_LF, - ACTIONS(3807), 1, + ACTIONS(3764), 1, + anon_sym_SLASH, + ACTIONS(3766), 1, anon_sym_PIPE_PIPE, - ACTIONS(3809), 1, + ACTIONS(3768), 1, anon_sym_AMP_AMP, - ACTIONS(3811), 1, + ACTIONS(3770), 1, anon_sym_PIPE, - ACTIONS(3791), 2, + ACTIONS(3772), 1, + anon_sym_CARET, + ACTIONS(3774), 1, + anon_sym_AMP, + ACTIONS(4009), 1, + anon_sym_RPAREN, + ACTIONS(3760), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3797), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3801), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3793), 3, + ACTIONS(3762), 2, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3799), 4, + ACTIONS(3776), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3778), 2, anon_sym_GT, + anon_sym_LT, + ACTIONS(3780), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LT, - [58903] = 3, - ACTIONS(3630), 1, + ACTIONS(3782), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [61058] = 3, + ACTIONS(3798), 1, sym_comment, - ACTIONS(3726), 1, + ACTIONS(3822), 1, anon_sym_LF, - ACTIONS(3728), 18, + ACTIONS(3824), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -123204,19 +127889,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [58930] = 5, - ACTIONS(3630), 1, + [61085] = 11, + ACTIONS(3798), 1, sym_comment, - ACTIONS(3638), 1, + ACTIONS(3929), 1, + anon_sym_LF, + ACTIONS(3975), 1, + anon_sym_PIPE, + ACTIONS(3977), 1, + anon_sym_CARET, + ACTIONS(3979), 1, + anon_sym_AMP, + ACTIONS(3931), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(3967), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3981), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3985), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3969), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3983), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [61128] = 3, + ACTIONS(3798), 1, + sym_comment, + ACTIONS(3852), 1, anon_sym_LF, - ACTIONS(3791), 2, + ACTIONS(3854), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3793), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3640), 13, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -123230,20 +127945,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [58961] = 5, + [61155] = 5, ACTIONS(3), 1, sym_comment, - STATE(1015), 1, + STATE(1014), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(3016), 2, + ACTIONS(3223), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(3813), 4, + ACTIONS(4011), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(3014), 12, + ACTIONS(3221), 12, anon_sym___extension__, anon_sym___based, anon_sym_const, @@ -123256,72 +127971,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [58992] = 4, - ACTIONS(3630), 1, - sym_comment, - ACTIONS(3638), 1, - anon_sym_LF, - ACTIONS(3793), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3640), 15, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - [59021] = 6, - ACTIONS(3630), 1, - sym_comment, - ACTIONS(3638), 1, - anon_sym_LF, - ACTIONS(3791), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3801), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3793), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3640), 11, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [59054] = 5, + [61186] = 5, ACTIONS(3), 1, sym_comment, - STATE(1015), 1, + STATE(1014), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(3085), 2, + ACTIONS(3219), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(3816), 4, + ACTIONS(4014), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(3083), 12, + ACTIONS(3217), 12, anon_sym___extension__, anon_sym___based, anon_sym_const, @@ -123334,145 +127997,176 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [59085] = 14, - ACTIONS(3), 1, + [61217] = 12, + ACTIONS(3798), 1, sym_comment, - ACTIONS(3606), 1, - anon_sym_SLASH, - ACTIONS(3608), 1, + ACTIONS(3971), 1, anon_sym_PIPE_PIPE, - ACTIONS(3610), 1, + ACTIONS(3973), 1, anon_sym_AMP_AMP, - ACTIONS(3612), 1, + ACTIONS(3975), 1, anon_sym_PIPE, - ACTIONS(3614), 1, + ACTIONS(3977), 1, anon_sym_CARET, - ACTIONS(3616), 1, + ACTIONS(3979), 1, anon_sym_AMP, - ACTIONS(3819), 1, - anon_sym_RPAREN, - ACTIONS(3602), 2, + ACTIONS(4017), 1, + anon_sym_LF, + ACTIONS(3967), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3604), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3618), 2, + ACTIONS(3981), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3620), 2, + ACTIONS(3985), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3969), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3983), 4, anon_sym_GT, - anon_sym_LT, - ACTIONS(3622), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3624), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [59134] = 12, - ACTIONS(3630), 1, + anon_sym_LT, + [61262] = 12, + ACTIONS(3798), 1, sym_comment, - ACTIONS(3795), 1, - anon_sym_AMP, - ACTIONS(3803), 1, - anon_sym_CARET, - ACTIONS(3807), 1, + ACTIONS(3971), 1, anon_sym_PIPE_PIPE, - ACTIONS(3809), 1, + ACTIONS(3973), 1, anon_sym_AMP_AMP, - ACTIONS(3811), 1, + ACTIONS(3975), 1, anon_sym_PIPE, - ACTIONS(3821), 1, + ACTIONS(3977), 1, + anon_sym_CARET, + ACTIONS(3979), 1, + anon_sym_AMP, + ACTIONS(4019), 1, anon_sym_LF, - ACTIONS(3791), 2, + ACTIONS(3967), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3797), 2, + ACTIONS(3981), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3801), 2, + ACTIONS(3985), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3793), 3, + ACTIONS(3969), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3799), 4, + ACTIONS(3983), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [59179] = 3, - ACTIONS(3630), 1, + [61307] = 12, + ACTIONS(3798), 1, sym_comment, - ACTIONS(3678), 1, - anon_sym_LF, - ACTIONS(3680), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3971), 1, anon_sym_PIPE_PIPE, + ACTIONS(3973), 1, anon_sym_AMP_AMP, + ACTIONS(3975), 1, anon_sym_PIPE, + ACTIONS(3977), 1, anon_sym_CARET, + ACTIONS(3979), 1, anon_sym_AMP, + ACTIONS(4021), 1, + anon_sym_LF, + ACTIONS(3967), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3981), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(3985), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3969), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3983), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - [59206] = 12, - ACTIONS(3630), 1, + [61352] = 12, + ACTIONS(3798), 1, sym_comment, - ACTIONS(3795), 1, - anon_sym_AMP, - ACTIONS(3803), 1, - anon_sym_CARET, - ACTIONS(3807), 1, + ACTIONS(3971), 1, anon_sym_PIPE_PIPE, - ACTIONS(3809), 1, + ACTIONS(3973), 1, anon_sym_AMP_AMP, - ACTIONS(3811), 1, + ACTIONS(3975), 1, anon_sym_PIPE, - ACTIONS(3823), 1, + ACTIONS(3977), 1, + anon_sym_CARET, + ACTIONS(3979), 1, + anon_sym_AMP, + ACTIONS(4023), 1, anon_sym_LF, - ACTIONS(3791), 2, + ACTIONS(3967), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3797), 2, + ACTIONS(3981), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3801), 2, + ACTIONS(3985), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3793), 3, + ACTIONS(3969), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3983), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [61397] = 3, + ACTIONS(3798), 1, + sym_comment, + ACTIONS(3929), 1, + anon_sym_LF, + ACTIONS(3931), 18, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3799), 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, - [59251] = 5, + anon_sym_LT_LT, + anon_sym_GT_GT, + [61424] = 5, ACTIONS(3), 1, sym_comment, - STATE(1435), 1, + STATE(1464), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(3111), 2, + ACTIONS(3117), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(3825), 4, + ACTIONS(4025), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(3109), 12, + ACTIONS(3115), 12, anon_sym___extension__, anon_sym___based, anon_sym_const, @@ -123485,88 +128179,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [59282] = 7, - ACTIONS(3), 1, + [61455] = 4, + ACTIONS(3798), 1, sym_comment, - ACTIONS(3828), 1, - sym_identifier, - ACTIONS(3834), 1, - sym_primitive_type, - STATE(1444), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(3126), 2, - anon_sym_LPAREN2, + ACTIONS(3929), 1, + anon_sym_LF, + ACTIONS(3969), 3, anon_sym_STAR, - ACTIONS(3831), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(3128), 10, - 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, - [59317] = 12, - ACTIONS(3630), 1, - sym_comment, - ACTIONS(3795), 1, - anon_sym_AMP, - ACTIONS(3803), 1, - anon_sym_CARET, - ACTIONS(3807), 1, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3931), 15, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_PIPE_PIPE, - ACTIONS(3809), 1, anon_sym_AMP_AMP, - ACTIONS(3811), 1, anon_sym_PIPE, - ACTIONS(3837), 1, - anon_sym_LF, - ACTIONS(3791), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3797), 2, + anon_sym_CARET, + anon_sym_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3801), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3793), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3799), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [59362] = 7, - ACTIONS(3630), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + [61484] = 3, + ACTIONS(3798), 1, sym_comment, - ACTIONS(3638), 1, + ACTIONS(3830), 1, anon_sym_LF, - ACTIONS(3791), 2, + ACTIONS(3832), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3801), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3793), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3799), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(3640), 7, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -123574,36 +128222,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [59397] = 3, - ACTIONS(3630), 1, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + [61511] = 12, + ACTIONS(3798), 1, sym_comment, - ACTIONS(3638), 1, - anon_sym_LF, - ACTIONS(3640), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3971), 1, anon_sym_PIPE_PIPE, + ACTIONS(3973), 1, anon_sym_AMP_AMP, + ACTIONS(3975), 1, anon_sym_PIPE, + ACTIONS(3977), 1, anon_sym_CARET, + ACTIONS(3979), 1, anon_sym_AMP, + ACTIONS(4028), 1, + anon_sym_LF, + ACTIONS(3967), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3981), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(3985), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3969), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3983), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - [59424] = 3, - ACTIONS(3630), 1, + [61556] = 3, + ACTIONS(3798), 1, sym_comment, - ACTIONS(3656), 1, + ACTIONS(3955), 1, anon_sym_LF, - ACTIONS(3658), 18, + ACTIONS(3957), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -123622,95 +128285,121 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [59451] = 12, - ACTIONS(3630), 1, + [61583] = 12, + ACTIONS(3798), 1, sym_comment, - ACTIONS(3795), 1, - anon_sym_AMP, - ACTIONS(3803), 1, - anon_sym_CARET, - ACTIONS(3807), 1, + ACTIONS(3971), 1, anon_sym_PIPE_PIPE, - ACTIONS(3809), 1, + ACTIONS(3973), 1, anon_sym_AMP_AMP, - ACTIONS(3811), 1, + ACTIONS(3975), 1, anon_sym_PIPE, - ACTIONS(3839), 1, + ACTIONS(3977), 1, + anon_sym_CARET, + ACTIONS(3979), 1, + anon_sym_AMP, + ACTIONS(4030), 1, anon_sym_LF, - ACTIONS(3791), 2, + ACTIONS(3967), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3797), 2, + ACTIONS(3981), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3801), 2, + ACTIONS(3985), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3793), 3, + ACTIONS(3969), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3799), 4, + ACTIONS(3983), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [59496] = 12, - ACTIONS(3630), 1, + [61628] = 12, + ACTIONS(3798), 1, sym_comment, - ACTIONS(3795), 1, - anon_sym_AMP, - ACTIONS(3803), 1, - anon_sym_CARET, - ACTIONS(3807), 1, + ACTIONS(3971), 1, anon_sym_PIPE_PIPE, - ACTIONS(3809), 1, + ACTIONS(3973), 1, anon_sym_AMP_AMP, - ACTIONS(3811), 1, + ACTIONS(3975), 1, anon_sym_PIPE, - ACTIONS(3841), 1, + ACTIONS(3977), 1, + anon_sym_CARET, + ACTIONS(3979), 1, + anon_sym_AMP, + ACTIONS(4032), 1, anon_sym_LF, - ACTIONS(3791), 2, + ACTIONS(3967), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3797), 2, + ACTIONS(3981), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3801), 2, + ACTIONS(3985), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3793), 3, + ACTIONS(3969), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3799), 4, + ACTIONS(3983), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [59541] = 9, + [61673] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3179), 1, - anon_sym_const, - ACTIONS(3189), 1, - anon_sym_LBRACE, - ACTIONS(3843), 1, + ACTIONS(4036), 1, + anon_sym_LBRACK, + ACTIONS(3709), 2, anon_sym___attribute__, - ACTIONS(3847), 1, - anon_sym_COLON, - STATE(1114), 1, - sym_attribute_specifier, - STATE(1305), 1, - sym_enumerator_list, - ACTIONS(3845), 2, + anon_sym___must_hold, + ACTIONS(3711), 2, anon_sym___scanf, anon_sym___printf, - ACTIONS(3181), 11, + STATE(1435), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + ACTIONS(3713), 3, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___init, + ACTIONS(4034), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + [61708] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4038), 1, + sym_identifier, + ACTIONS(4044), 1, + sym_primitive_type, + STATE(1475), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(3228), 2, anon_sym_LPAREN2, anon_sym_STAR, + ACTIONS(4041), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(3230), 10, anon_sym___extension__, - anon_sym_LBRACK, + anon_sym___based, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -123718,176 +128407,131 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [59580] = 12, - ACTIONS(3630), 1, + [61743] = 3, + ACTIONS(3798), 1, sym_comment, - ACTIONS(3638), 1, + ACTIONS(3907), 1, anon_sym_LF, - ACTIONS(3640), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3795), 1, - anon_sym_AMP, - ACTIONS(3803), 1, - anon_sym_CARET, - ACTIONS(3809), 1, - anon_sym_AMP_AMP, - ACTIONS(3811), 1, - anon_sym_PIPE, - ACTIONS(3791), 2, + ACTIONS(3909), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3797), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3801), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3793), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3799), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [59625] = 11, - ACTIONS(3630), 1, - sym_comment, - ACTIONS(3638), 1, - anon_sym_LF, - ACTIONS(3795), 1, - anon_sym_AMP, - ACTIONS(3803), 1, - anon_sym_CARET, - ACTIONS(3811), 1, - anon_sym_PIPE, - ACTIONS(3640), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(3791), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3797), 2, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3801), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3793), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3799), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [59668] = 12, - ACTIONS(3630), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + [61770] = 12, + ACTIONS(3798), 1, sym_comment, - ACTIONS(3795), 1, - anon_sym_AMP, - ACTIONS(3803), 1, - anon_sym_CARET, - ACTIONS(3807), 1, + ACTIONS(3971), 1, anon_sym_PIPE_PIPE, - ACTIONS(3809), 1, + ACTIONS(3973), 1, anon_sym_AMP_AMP, - ACTIONS(3811), 1, + ACTIONS(3975), 1, anon_sym_PIPE, - ACTIONS(3850), 1, + ACTIONS(3977), 1, + anon_sym_CARET, + ACTIONS(3979), 1, + anon_sym_AMP, + ACTIONS(4047), 1, anon_sym_LF, - ACTIONS(3791), 2, + ACTIONS(3967), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3797), 2, + ACTIONS(3981), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3801), 2, + ACTIONS(3985), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3793), 3, + ACTIONS(3969), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3799), 4, + ACTIONS(3983), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [59713] = 12, - ACTIONS(3630), 1, + [61815] = 8, + ACTIONS(3798), 1, sym_comment, - ACTIONS(3795), 1, - anon_sym_AMP, - ACTIONS(3803), 1, - anon_sym_CARET, - ACTIONS(3807), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3809), 1, - anon_sym_AMP_AMP, - ACTIONS(3811), 1, - anon_sym_PIPE, - ACTIONS(3852), 1, + ACTIONS(3929), 1, anon_sym_LF, - ACTIONS(3791), 2, + ACTIONS(3967), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3797), 2, + ACTIONS(3981), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3801), 2, + ACTIONS(3985), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3793), 3, + ACTIONS(3969), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3799), 4, + ACTIONS(3983), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [59758] = 12, - ACTIONS(3630), 1, - sym_comment, - ACTIONS(3795), 1, - anon_sym_AMP, - ACTIONS(3803), 1, + ACTIONS(3931), 5, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_CARET, - ACTIONS(3807), 1, + anon_sym_AMP, + [61852] = 12, + ACTIONS(3798), 1, + sym_comment, + ACTIONS(3971), 1, anon_sym_PIPE_PIPE, - ACTIONS(3809), 1, + ACTIONS(3973), 1, anon_sym_AMP_AMP, - ACTIONS(3811), 1, + ACTIONS(3975), 1, anon_sym_PIPE, - ACTIONS(3854), 1, + ACTIONS(3977), 1, + anon_sym_CARET, + ACTIONS(3979), 1, + anon_sym_AMP, + ACTIONS(4049), 1, anon_sym_LF, - ACTIONS(3791), 2, + ACTIONS(3967), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3797), 2, + ACTIONS(3981), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3801), 2, + ACTIONS(3985), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3793), 3, + ACTIONS(3969), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3799), 4, + ACTIONS(3983), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [59803] = 3, - ACTIONS(2498), 1, - anon_sym_LF, - ACTIONS(3630), 1, + [61897] = 3, + ACTIONS(3798), 1, sym_comment, - ACTIONS(2496), 18, + ACTIONS(3826), 1, + anon_sym_LF, + ACTIONS(3828), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -123906,86 +128550,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [59830] = 12, - ACTIONS(3630), 1, + [61924] = 12, + ACTIONS(3798), 1, sym_comment, - ACTIONS(3795), 1, - anon_sym_AMP, - ACTIONS(3803), 1, - anon_sym_CARET, - ACTIONS(3807), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3809), 1, - anon_sym_AMP_AMP, - ACTIONS(3811), 1, - anon_sym_PIPE, - ACTIONS(3856), 1, + ACTIONS(3929), 1, anon_sym_LF, - ACTIONS(3791), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3797), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3801), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3793), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3799), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [59875] = 12, - ACTIONS(3630), 1, - sym_comment, - ACTIONS(3795), 1, - anon_sym_AMP, - ACTIONS(3803), 1, - anon_sym_CARET, - ACTIONS(3807), 1, + ACTIONS(3931), 1, anon_sym_PIPE_PIPE, - ACTIONS(3809), 1, + ACTIONS(3973), 1, anon_sym_AMP_AMP, - ACTIONS(3811), 1, + ACTIONS(3975), 1, anon_sym_PIPE, - ACTIONS(3858), 1, - anon_sym_LF, - ACTIONS(3791), 2, + ACTIONS(3977), 1, + anon_sym_CARET, + ACTIONS(3979), 1, + anon_sym_AMP, + ACTIONS(3967), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3797), 2, + ACTIONS(3981), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3801), 2, + ACTIONS(3985), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3793), 3, + ACTIONS(3969), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3799), 4, + ACTIONS(3983), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [59920] = 5, + [61969] = 5, ACTIONS(3), 1, sym_comment, - STATE(1410), 1, + STATE(1014), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(3002), 2, + ACTIONS(3139), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(3860), 4, + ACTIONS(4051), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(3000), 12, + ACTIONS(3137), 12, anon_sym___extension__, anon_sym___based, anon_sym_const, @@ -123998,102 +128609,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [59951] = 12, - ACTIONS(3630), 1, + [62000] = 7, + ACTIONS(3798), 1, sym_comment, - ACTIONS(3795), 1, - anon_sym_AMP, - ACTIONS(3803), 1, - anon_sym_CARET, - ACTIONS(3807), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3809), 1, - anon_sym_AMP_AMP, - ACTIONS(3811), 1, - anon_sym_PIPE, - ACTIONS(3863), 1, + ACTIONS(3929), 1, anon_sym_LF, - ACTIONS(3791), 2, + ACTIONS(3967), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3797), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3801), 2, + ACTIONS(3985), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3793), 3, + ACTIONS(3969), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3799), 4, + ACTIONS(3983), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [59996] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(1015), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(3121), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - ACTIONS(3865), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(3119), 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, - sym_primitive_type, - sym_identifier, - [60027] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(1015), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(3146), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - ACTIONS(3868), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(3144), 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, - sym_primitive_type, - sym_identifier, - [60058] = 3, - ACTIONS(3630), 1, - sym_comment, - ACTIONS(3754), 1, - anon_sym_LF, - ACTIONS(3756), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3931), 7, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -124101,142 +128637,115 @@ 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, - [60085] = 3, - ACTIONS(3630), 1, + [62035] = 12, + ACTIONS(3798), 1, sym_comment, - ACTIONS(3662), 1, - anon_sym_LF, - ACTIONS(3664), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3971), 1, anon_sym_PIPE_PIPE, + ACTIONS(3973), 1, anon_sym_AMP_AMP, + ACTIONS(3975), 1, anon_sym_PIPE, + ACTIONS(3977), 1, anon_sym_CARET, + ACTIONS(3979), 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, - [60112] = 8, - ACTIONS(3630), 1, - sym_comment, - ACTIONS(3638), 1, + ACTIONS(4054), 1, anon_sym_LF, - ACTIONS(3791), 2, + ACTIONS(3967), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3797), 2, + ACTIONS(3981), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3801), 2, + ACTIONS(3985), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3793), 3, + ACTIONS(3969), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3799), 4, + ACTIONS(3983), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(3640), 5, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - [60149] = 12, - ACTIONS(3630), 1, + [62080] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(3795), 1, - anon_sym_AMP, - ACTIONS(3803), 1, - anon_sym_CARET, - ACTIONS(3807), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3809), 1, - anon_sym_AMP_AMP, - ACTIONS(3811), 1, - anon_sym_PIPE, - ACTIONS(3871), 1, - anon_sym_LF, - ACTIONS(3791), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3797), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3801), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3793), 3, + ACTIONS(1981), 1, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3799), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [60194] = 12, - ACTIONS(3630), 1, + ACTIONS(3108), 1, + anon_sym_LPAREN2, + STATE(1432), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(4056), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(1965), 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, + sym_primitive_type, + sym_identifier, + [62113] = 12, + ACTIONS(3798), 1, sym_comment, - ACTIONS(3795), 1, - anon_sym_AMP, - ACTIONS(3803), 1, - anon_sym_CARET, - ACTIONS(3807), 1, + ACTIONS(3971), 1, anon_sym_PIPE_PIPE, - ACTIONS(3809), 1, + ACTIONS(3973), 1, anon_sym_AMP_AMP, - ACTIONS(3811), 1, + ACTIONS(3975), 1, anon_sym_PIPE, - ACTIONS(3873), 1, + ACTIONS(3977), 1, + anon_sym_CARET, + ACTIONS(3979), 1, + anon_sym_AMP, + ACTIONS(4059), 1, anon_sym_LF, - ACTIONS(3791), 2, + ACTIONS(3967), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3797), 2, + ACTIONS(3981), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3801), 2, + ACTIONS(3985), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3793), 3, + ACTIONS(3969), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3799), 4, + ACTIONS(3983), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [60239] = 3, - ACTIONS(3630), 1, + [62158] = 6, + ACTIONS(3798), 1, sym_comment, - ACTIONS(3688), 1, + ACTIONS(3929), 1, anon_sym_LF, - ACTIONS(3690), 18, + ACTIONS(3967), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(3985), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3969), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3931), 11, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -124248,47 +128757,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - [60266] = 12, - ACTIONS(3630), 1, - sym_comment, - ACTIONS(3795), 1, - anon_sym_AMP, - ACTIONS(3803), 1, - anon_sym_CARET, - ACTIONS(3807), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3809), 1, - anon_sym_AMP_AMP, - ACTIONS(3811), 1, - anon_sym_PIPE, - ACTIONS(3875), 1, + [62191] = 3, + ACTIONS(2508), 1, anon_sym_LF, - ACTIONS(3791), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3797), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3801), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3793), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3799), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [60311] = 3, - ACTIONS(3630), 1, + ACTIONS(3798), 1, sym_comment, - ACTIONS(3682), 1, - anon_sym_LF, - ACTIONS(3684), 18, + ACTIONS(2506), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -124307,20 +128781,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [60338] = 5, + [62218] = 7, ACTIONS(3), 1, sym_comment, - STATE(1015), 1, + ACTIONS(4063), 1, + anon_sym_LBRACK, + ACTIONS(3709), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(3711), 2, + anon_sym___scanf, + anon_sym___printf, + STATE(1456), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + ACTIONS(3713), 3, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___init, + ACTIONS(4061), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + [62253] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(1443), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(3106), 2, + ACTIONS(3088), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(3877), 4, + ACTIONS(4065), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(3103), 12, + ACTIONS(3086), 12, anon_sym___extension__, anon_sym___based, anon_sym_const, @@ -124333,44 +128835,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [60369] = 3, - ACTIONS(3630), 1, + [62284] = 12, + ACTIONS(3798), 1, sym_comment, - ACTIONS(3708), 1, - anon_sym_LF, - ACTIONS(3710), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3971), 1, anon_sym_PIPE_PIPE, + ACTIONS(3973), 1, anon_sym_AMP_AMP, + ACTIONS(3975), 1, anon_sym_PIPE, + ACTIONS(3977), 1, anon_sym_CARET, + ACTIONS(3979), 1, anon_sym_AMP, + ACTIONS(4068), 1, + anon_sym_LF, + ACTIONS(3967), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3981), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(3985), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3969), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3983), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - [60396] = 5, + [62329] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4063), 1, + anon_sym_LBRACK, + ACTIONS(3709), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(3711), 2, + anon_sym___scanf, + anon_sym___printf, + STATE(1435), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + ACTIONS(3713), 3, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___init, + ACTIONS(4061), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + [62364] = 5, ACTIONS(3), 1, sym_comment, - STATE(1434), 1, + STATE(1014), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(3140), 2, + ACTIONS(3101), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(3881), 4, + ACTIONS(4070), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(3138), 12, + ACTIONS(3098), 12, anon_sym___extension__, anon_sym___based, anon_sym_const, @@ -124383,1053 +128922,1203 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [60427] = 12, - ACTIONS(3630), 1, + [62395] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(3795), 1, - anon_sym_AMP, - ACTIONS(3803), 1, - anon_sym_CARET, - ACTIONS(3807), 1, + STATE(1442), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(3094), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + ACTIONS(4074), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(3092), 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, + sym_primitive_type, + sym_identifier, + [62426] = 12, + ACTIONS(3798), 1, + sym_comment, + ACTIONS(3971), 1, anon_sym_PIPE_PIPE, - ACTIONS(3809), 1, + ACTIONS(3973), 1, anon_sym_AMP_AMP, - ACTIONS(3811), 1, + ACTIONS(3975), 1, anon_sym_PIPE, - ACTIONS(3884), 1, + ACTIONS(3977), 1, + anon_sym_CARET, + ACTIONS(3979), 1, + anon_sym_AMP, + ACTIONS(4077), 1, anon_sym_LF, - ACTIONS(3791), 2, + ACTIONS(3967), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3797), 2, + ACTIONS(3981), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3801), 2, + ACTIONS(3985), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3793), 3, + ACTIONS(3969), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3799), 4, + ACTIONS(3983), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [60472] = 14, + [62471] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(3606), 1, - anon_sym_SLASH, - ACTIONS(3608), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3610), 1, - anon_sym_AMP_AMP, - ACTIONS(3612), 1, - anon_sym_PIPE, - ACTIONS(3614), 1, - anon_sym_CARET, - ACTIONS(3616), 1, - anon_sym_AMP, - ACTIONS(3886), 1, + ACTIONS(39), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4079), 1, + anon_sym_COMMA, + ACTIONS(4081), 1, + anon_sym_LPAREN2, + ACTIONS(4085), 1, + anon_sym_LBRACK, + ACTIONS(4087), 1, + anon_sym_COLON, + STATE(1521), 1, + sym_parameter_list, + STATE(1610), 1, + sym_bitfield_clause, + STATE(1611), 1, + aux_sym__field_declaration_declarator_repeat1, + STATE(1502), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(4083), 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, + [62513] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4091), 1, + anon_sym_LBRACK, + ACTIONS(4089), 17, + anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(3602), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3604), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3618), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3620), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3622), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3624), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [60521] = 11, + 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, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + [62539] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2851), 1, + anon_sym_LBRACK, + ACTIONS(2843), 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___init, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + [62565] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2829), 1, + anon_sym_LBRACK, + ACTIONS(2821), 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___init, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + [62591] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(39), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4081), 1, + anon_sym_LPAREN2, + ACTIONS(4085), 1, + anon_sym_LBRACK, + STATE(1521), 1, + sym_parameter_list, + STATE(1502), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(4093), 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___init, + anon_sym_COLON, + [62624] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2092), 1, + ACTIONS(2045), 1, anon_sym___based, - ACTIONS(3195), 1, + ACTIONS(3432), 1, sym_identifier, - ACTIONS(3197), 1, + ACTIONS(3434), 1, anon_sym_LPAREN2, - ACTIONS(3199), 1, + ACTIONS(3436), 1, anon_sym_STAR, - ACTIONS(3203), 1, + ACTIONS(3440), 1, sym_primitive_type, - STATE(1518), 1, + STATE(1500), 1, sym__type_declarator, - STATE(1659), 1, + STATE(1612), 1, sym__type_definition_declarators, - STATE(2125), 1, + STATE(2030), 1, sym_ms_based_modifier, - ACTIONS(3201), 4, + ACTIONS(3438), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1566), 5, + STATE(1558), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [60562] = 11, + [62665] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2092), 1, + ACTIONS(2045), 1, anon_sym___based, - ACTIONS(3195), 1, + ACTIONS(3432), 1, sym_identifier, - ACTIONS(3197), 1, + ACTIONS(3434), 1, anon_sym_LPAREN2, - ACTIONS(3199), 1, + ACTIONS(3436), 1, anon_sym_STAR, - ACTIONS(3203), 1, + ACTIONS(3440), 1, sym_primitive_type, - STATE(1518), 1, + STATE(1500), 1, sym__type_declarator, - STATE(1643), 1, + STATE(1603), 1, sym__type_definition_declarators, - STATE(2125), 1, + STATE(2030), 1, sym_ms_based_modifier, - ACTIONS(3201), 4, + ACTIONS(3438), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1566), 5, + STATE(1558), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [60603] = 13, + [62706] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(2092), 1, - anon_sym___based, - ACTIONS(3355), 1, - sym_identifier, - ACTIONS(3357), 1, + ACTIONS(39), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4081), 1, anon_sym_LPAREN2, - ACTIONS(3359), 1, - anon_sym_STAR, - ACTIONS(3888), 1, + ACTIONS(4085), 1, + anon_sym_LBRACK, + STATE(1521), 1, + sym_parameter_list, + STATE(1502), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(4095), 11, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, - STATE(1485), 1, - sym__field_declarator, - STATE(1704), 1, - sym__field_declaration_declarator, - STATE(2069), 1, - sym_attribute_specifier, - STATE(2236), 1, - sym_ms_based_modifier, - ACTIONS(35), 2, - anon_sym___scanf, - anon_sym___printf, - STATE(1560), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - [60648] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, anon_sym___attribute__, - ACTIONS(2092), 1, - anon_sym___based, - ACTIONS(3355), 1, - sym_identifier, - ACTIONS(3357), 1, - anon_sym_LPAREN2, - ACTIONS(3359), 1, - anon_sym_STAR, - ACTIONS(3890), 1, - anon_sym_SEMI, - STATE(1485), 1, - sym__field_declarator, - STATE(1685), 1, - sym__field_declaration_declarator, - STATE(2023), 1, - sym_attribute_specifier, - STATE(2236), 1, - sym_ms_based_modifier, - ACTIONS(35), 2, anon_sym___scanf, anon_sym___printf, - STATE(1560), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - [60693] = 11, + anon_sym___read_mostly, + anon_sym___must_hold, + anon_sym___ro_after_init, + anon_sym___init, + anon_sym_COLON, + [62739] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2092), 1, + ACTIONS(2045), 1, anon_sym___based, - ACTIONS(3195), 1, + ACTIONS(3432), 1, sym_identifier, - ACTIONS(3197), 1, + ACTIONS(3434), 1, anon_sym_LPAREN2, - ACTIONS(3199), 1, + ACTIONS(3436), 1, anon_sym_STAR, - ACTIONS(3203), 1, + ACTIONS(3440), 1, sym_primitive_type, - STATE(1518), 1, + STATE(1500), 1, sym__type_declarator, - STATE(1635), 1, + STATE(1598), 1, sym__type_definition_declarators, - STATE(2125), 1, + STATE(2030), 1, sym_ms_based_modifier, - ACTIONS(3201), 4, + ACTIONS(3438), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1566), 5, + STATE(1558), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [60734] = 11, + [62780] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2092), 1, + ACTIONS(2045), 1, anon_sym___based, - ACTIONS(3195), 1, + ACTIONS(3432), 1, sym_identifier, - ACTIONS(3197), 1, + ACTIONS(3434), 1, anon_sym_LPAREN2, - ACTIONS(3199), 1, + ACTIONS(3436), 1, anon_sym_STAR, - ACTIONS(3203), 1, + ACTIONS(3440), 1, sym_primitive_type, - STATE(1518), 1, + STATE(1500), 1, sym__type_declarator, - STATE(1622), 1, + STATE(1613), 1, sym__type_definition_declarators, - STATE(2125), 1, + STATE(2030), 1, sym_ms_based_modifier, - ACTIONS(3201), 4, + ACTIONS(3438), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1566), 5, + STATE(1558), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [60775] = 11, + [62821] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(39), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4081), 1, + anon_sym_LPAREN2, + ACTIONS(4085), 1, + anon_sym_LBRACK, + STATE(1521), 1, + sym_parameter_list, + STATE(1502), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(4097), 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___init, + anon_sym_COLON, + [62854] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2092), 1, + ACTIONS(2045), 1, anon_sym___based, - ACTIONS(3195), 1, + ACTIONS(3432), 1, sym_identifier, - ACTIONS(3197), 1, + ACTIONS(3434), 1, anon_sym_LPAREN2, - ACTIONS(3199), 1, + ACTIONS(3436), 1, anon_sym_STAR, - ACTIONS(3203), 1, + ACTIONS(3440), 1, sym_primitive_type, - STATE(1518), 1, + STATE(1500), 1, sym__type_declarator, - STATE(1630), 1, + STATE(1605), 1, sym__type_definition_declarators, - STATE(2125), 1, + STATE(2030), 1, sym_ms_based_modifier, - ACTIONS(3201), 4, + ACTIONS(3438), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1566), 5, + STATE(1558), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [60816] = 11, + [62895] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2092), 1, + ACTIONS(2045), 1, anon_sym___based, - ACTIONS(3195), 1, + ACTIONS(3432), 1, sym_identifier, - ACTIONS(3197), 1, + ACTIONS(3434), 1, anon_sym_LPAREN2, - ACTIONS(3199), 1, + ACTIONS(3436), 1, anon_sym_STAR, - ACTIONS(3203), 1, + ACTIONS(3440), 1, sym_primitive_type, - STATE(1518), 1, + STATE(1500), 1, sym__type_declarator, - STATE(1623), 1, + STATE(1614), 1, sym__type_definition_declarators, - STATE(2125), 1, + STATE(2030), 1, sym_ms_based_modifier, - ACTIONS(3201), 4, + ACTIONS(3438), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1566), 5, + STATE(1558), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [60857] = 11, + [62936] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(39), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4081), 1, + anon_sym_LPAREN2, + ACTIONS(4085), 1, + anon_sym_LBRACK, + STATE(1521), 1, + sym_parameter_list, + STATE(1502), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(4099), 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___init, + anon_sym_COLON, + [62969] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2092), 1, + ACTIONS(2045), 1, anon_sym___based, - ACTIONS(3195), 1, + ACTIONS(3432), 1, sym_identifier, - ACTIONS(3197), 1, + ACTIONS(3434), 1, anon_sym_LPAREN2, - ACTIONS(3199), 1, + ACTIONS(3436), 1, anon_sym_STAR, - ACTIONS(3203), 1, + ACTIONS(3440), 1, sym_primitive_type, - STATE(1518), 1, + STATE(1500), 1, sym__type_declarator, - STATE(1636), 1, + STATE(1609), 1, sym__type_definition_declarators, - STATE(2125), 1, + STATE(2030), 1, sym_ms_based_modifier, - ACTIONS(3201), 4, + ACTIONS(3438), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1566), 5, + STATE(1558), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [60898] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(2092), 1, - anon_sym___based, - ACTIONS(3355), 1, - sym_identifier, - ACTIONS(3357), 1, - anon_sym_LPAREN2, - ACTIONS(3359), 1, - anon_sym_STAR, - ACTIONS(3892), 1, - anon_sym_SEMI, - STATE(1485), 1, - sym__field_declarator, - STATE(1680), 1, - sym__field_declaration_declarator, - STATE(2236), 1, - sym_ms_based_modifier, - STATE(2238), 1, - sym_attribute_specifier, - ACTIONS(35), 2, - anon_sym___scanf, - anon_sym___printf, - STATE(1560), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - [60943] = 11, + [63010] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2092), 1, + ACTIONS(2045), 1, anon_sym___based, - ACTIONS(3195), 1, + ACTIONS(3432), 1, sym_identifier, - ACTIONS(3197), 1, + ACTIONS(3434), 1, anon_sym_LPAREN2, - ACTIONS(3199), 1, + ACTIONS(3436), 1, anon_sym_STAR, - ACTIONS(3203), 1, + ACTIONS(3440), 1, sym_primitive_type, - STATE(1518), 1, + STATE(1500), 1, sym__type_declarator, - STATE(1661), 1, + STATE(1589), 1, sym__type_definition_declarators, - STATE(2125), 1, + STATE(2030), 1, sym_ms_based_modifier, - ACTIONS(3201), 4, + ACTIONS(3438), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1566), 5, + STATE(1558), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [60984] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(2092), 1, - anon_sym___based, - ACTIONS(3355), 1, - sym_identifier, - ACTIONS(3357), 1, - anon_sym_LPAREN2, - ACTIONS(3359), 1, - anon_sym_STAR, - ACTIONS(3894), 1, - anon_sym_SEMI, - STATE(1485), 1, - sym__field_declarator, - STATE(1678), 1, - sym__field_declaration_declarator, - STATE(1984), 1, - sym_attribute_specifier, - STATE(2236), 1, - sym_ms_based_modifier, - ACTIONS(35), 2, - anon_sym___scanf, - anon_sym___printf, - STATE(1560), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - [61029] = 11, + [63051] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2092), 1, + ACTIONS(2045), 1, anon_sym___based, - ACTIONS(3195), 1, + ACTIONS(3432), 1, sym_identifier, - ACTIONS(3197), 1, + ACTIONS(3434), 1, anon_sym_LPAREN2, - ACTIONS(3199), 1, + ACTIONS(3436), 1, anon_sym_STAR, - ACTIONS(3203), 1, + ACTIONS(3440), 1, sym_primitive_type, - STATE(1518), 1, + STATE(1500), 1, sym__type_declarator, - STATE(1665), 1, + STATE(1590), 1, sym__type_definition_declarators, - STATE(2125), 1, + STATE(2030), 1, sym_ms_based_modifier, - ACTIONS(3201), 4, + ACTIONS(3438), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1566), 5, + STATE(1558), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [61070] = 11, + [63092] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(39), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4081), 1, + anon_sym_LPAREN2, + ACTIONS(4085), 1, + anon_sym_LBRACK, + ACTIONS(4087), 1, + anon_sym_COLON, + STATE(1521), 1, + sym_parameter_list, + STATE(1629), 1, + sym_bitfield_clause, + STATE(1502), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(4101), 9, + 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, + [63129] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2092), 1, + ACTIONS(2045), 1, anon_sym___based, - ACTIONS(3195), 1, + ACTIONS(3432), 1, sym_identifier, - ACTIONS(3197), 1, + ACTIONS(3434), 1, anon_sym_LPAREN2, - ACTIONS(3199), 1, + ACTIONS(3436), 1, anon_sym_STAR, - ACTIONS(3203), 1, + ACTIONS(3440), 1, sym_primitive_type, - STATE(1518), 1, + STATE(1500), 1, sym__type_declarator, - STATE(1652), 1, + STATE(1594), 1, sym__type_definition_declarators, - STATE(2125), 1, + STATE(2030), 1, sym_ms_based_modifier, - ACTIONS(3201), 4, + ACTIONS(3438), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1566), 5, + STATE(1558), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [61111] = 15, + [63170] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(37), 1, + ACTIONS(39), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(43), 1, + ACTIONS(511), 1, anon_sym_LBRACE, - ACTIONS(3896), 1, + ACTIONS(4103), 1, anon_sym_COMMA, - ACTIONS(3898), 1, + ACTIONS(4105), 1, anon_sym_LPAREN2, - ACTIONS(3900), 1, + ACTIONS(4107), 1, anon_sym_SEMI, - ACTIONS(3902), 1, + ACTIONS(4109), 1, anon_sym_LBRACK, - ACTIONS(3904), 1, + ACTIONS(4111), 1, anon_sym_EQ, - STATE(432), 1, + STATE(397), 1, sym_compound_statement, - STATE(1146), 1, + STATE(1158), 1, sym__old_style_parameter_list, - STATE(1464), 1, + STATE(1422), 1, sym_parameter_list, - STATE(1775), 1, - aux_sym__declaration_declarator_repeat1, - STATE(1776), 1, + STATE(1768), 1, sym_gnu_asm_expression, - ACTIONS(3906), 2, + STATE(1818), 1, + aux_sym__declaration_declarator_repeat1, + ACTIONS(3951), 2, anon_sym_asm, anon_sym___asm__, - STATE(1519), 2, + STATE(1562), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [61159] = 8, + [63218] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3843), 1, - anon_sym___attribute__, - ACTIONS(3910), 1, + ACTIONS(39), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4081), 1, + anon_sym_LPAREN2, + ACTIONS(4115), 1, anon_sym_LBRACK, - STATE(1479), 1, - sym_gnu_asm_expression, - ACTIONS(3845), 2, - anon_sym___scanf, - anon_sym___printf, - ACTIONS(3906), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(1478), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - ACTIONS(3908), 7, + STATE(1559), 1, + sym_parameter_list, + STATE(1516), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(4113), 10, 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, + [63250] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2045), 1, + anon_sym___based, + ACTIONS(3432), 1, + sym_identifier, + ACTIONS(3434), 1, + anon_sym_LPAREN2, + ACTIONS(3436), 1, + anon_sym_STAR, + ACTIONS(3440), 1, + sym_primitive_type, + STATE(1667), 1, + sym__type_declarator, + STATE(2030), 1, + sym_ms_based_modifier, + ACTIONS(3438), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1558), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + [63288] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(39), 1, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - [61193] = 15, + ACTIONS(4081), 1, + anon_sym_LPAREN2, + ACTIONS(4115), 1, + anon_sym_LBRACK, + ACTIONS(4117), 1, + anon_sym_COMMA, + STATE(1559), 1, + sym_parameter_list, + STATE(1597), 1, + aux_sym__type_definition_declarators_repeat1, + STATE(1516), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(4119), 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, + [63324] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(37), 1, + ACTIONS(39), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(656), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(3896), 1, + ACTIONS(4103), 1, anon_sym_COMMA, - ACTIONS(3898), 1, + ACTIONS(4105), 1, anon_sym_LPAREN2, - ACTIONS(3900), 1, + ACTIONS(4107), 1, anon_sym_SEMI, - ACTIONS(3902), 1, + ACTIONS(4109), 1, anon_sym_LBRACK, - ACTIONS(3904), 1, + ACTIONS(4111), 1, anon_sym_EQ, - STATE(397), 1, + STATE(143), 1, sym_compound_statement, - STATE(1146), 1, + STATE(1158), 1, sym__old_style_parameter_list, - STATE(1464), 1, + STATE(1422), 1, sym_parameter_list, - STATE(1775), 1, - aux_sym__declaration_declarator_repeat1, - STATE(1776), 1, + STATE(1768), 1, sym_gnu_asm_expression, - ACTIONS(3906), 2, + STATE(1818), 1, + aux_sym__declaration_declarator_repeat1, + ACTIONS(3951), 2, anon_sym_asm, anon_sym___asm__, - STATE(1519), 2, + STATE(1562), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [61241] = 15, + [63372] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(37), 1, + ACTIONS(39), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(504), 1, - anon_sym_LBRACE, - ACTIONS(3896), 1, + ACTIONS(4123), 1, + anon_sym_LBRACK, + STATE(1389), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(4121), 12, anon_sym_COMMA, - ACTIONS(3898), 1, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(3900), 1, anon_sym_SEMI, - ACTIONS(3902), 1, + 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_COLON, + [63400] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(39), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4081), 1, + anon_sym_LPAREN2, + ACTIONS(4115), 1, anon_sym_LBRACK, - ACTIONS(3904), 1, - anon_sym_EQ, - STATE(353), 1, - sym_compound_statement, - STATE(1146), 1, - sym__old_style_parameter_list, - STATE(1464), 1, + STATE(1559), 1, + sym_parameter_list, + STATE(1516), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(4125), 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, + anon_sym___init, + [63432] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(39), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4081), 1, + anon_sym_LPAREN2, + ACTIONS(4115), 1, + anon_sym_LBRACK, + STATE(1559), 1, sym_parameter_list, - STATE(1775), 1, - aux_sym__declaration_declarator_repeat1, - STATE(1776), 1, - sym_gnu_asm_expression, - ACTIONS(3906), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(1519), 2, + STATE(1516), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [61289] = 15, + ACTIONS(4127), 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, + anon_sym___init, + [63464] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(37), 1, + ACTIONS(39), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(131), 1, + ACTIONS(45), 1, anon_sym_LBRACE, - ACTIONS(3896), 1, + ACTIONS(4103), 1, anon_sym_COMMA, - ACTIONS(3898), 1, + ACTIONS(4105), 1, anon_sym_LPAREN2, - ACTIONS(3900), 1, + ACTIONS(4107), 1, anon_sym_SEMI, - ACTIONS(3902), 1, + ACTIONS(4109), 1, anon_sym_LBRACK, - ACTIONS(3904), 1, + ACTIONS(4111), 1, anon_sym_EQ, - STATE(134), 1, + STATE(423), 1, sym_compound_statement, - STATE(1146), 1, + STATE(1158), 1, sym__old_style_parameter_list, - STATE(1464), 1, + STATE(1422), 1, sym_parameter_list, - STATE(1775), 1, - aux_sym__declaration_declarator_repeat1, - STATE(1776), 1, + STATE(1768), 1, sym_gnu_asm_expression, - ACTIONS(3906), 2, + STATE(1818), 1, + aux_sym__declaration_declarator_repeat1, + ACTIONS(3951), 2, anon_sym_asm, anon_sym___asm__, - STATE(1519), 2, + STATE(1562), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [61337] = 15, + [63512] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(37), 1, + ACTIONS(39), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(203), 1, + ACTIONS(631), 1, anon_sym_LBRACE, - ACTIONS(3896), 1, + ACTIONS(4103), 1, anon_sym_COMMA, - ACTIONS(3898), 1, + ACTIONS(4105), 1, anon_sym_LPAREN2, - ACTIONS(3900), 1, + ACTIONS(4107), 1, anon_sym_SEMI, - ACTIONS(3902), 1, + ACTIONS(4109), 1, anon_sym_LBRACK, - ACTIONS(3904), 1, + ACTIONS(4111), 1, anon_sym_EQ, - STATE(212), 1, + STATE(375), 1, sym_compound_statement, - STATE(1146), 1, + STATE(1158), 1, sym__old_style_parameter_list, - STATE(1464), 1, + STATE(1422), 1, sym_parameter_list, - STATE(1775), 1, - aux_sym__declaration_declarator_repeat1, - STATE(1776), 1, + STATE(1768), 1, sym_gnu_asm_expression, - ACTIONS(3906), 2, + STATE(1818), 1, + aux_sym__declaration_declarator_repeat1, + ACTIONS(3951), 2, anon_sym_asm, anon_sym___asm__, - STATE(1519), 2, + STATE(1562), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [61385] = 5, + [63560] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3914), 1, + ACTIONS(39), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3917), 1, + ACTIONS(4081), 1, + anon_sym_LPAREN2, + ACTIONS(4115), 1, anon_sym_LBRACK, - STATE(1469), 2, + STATE(1559), 1, + sym_parameter_list, + STATE(1516), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3912), 12, + ACTIONS(4129), 10, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym___scanf, anon_sym___printf, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - [61413] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2092), 1, - anon_sym___based, - ACTIONS(3195), 1, - sym_identifier, - ACTIONS(3197), 1, - anon_sym_LPAREN2, - ACTIONS(3199), 1, - anon_sym_STAR, - ACTIONS(3203), 1, - sym_primitive_type, - STATE(1617), 1, - sym__type_declarator, - STATE(2125), 1, - sym_ms_based_modifier, - ACTIONS(3201), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1566), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - [61451] = 10, + anon_sym___read_mostly, + anon_sym___must_hold, + anon_sym___ro_after_init, + anon_sym___init, + [63592] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2092), 1, + ACTIONS(2045), 1, anon_sym___based, - ACTIONS(3195), 1, + ACTIONS(3432), 1, sym_identifier, - ACTIONS(3197), 1, + ACTIONS(3434), 1, anon_sym_LPAREN2, - ACTIONS(3199), 1, + ACTIONS(3436), 1, anon_sym_STAR, - ACTIONS(3203), 1, + ACTIONS(3440), 1, sym_primitive_type, - STATE(1535), 1, + STATE(1511), 1, sym__type_declarator, - STATE(2125), 1, + STATE(2030), 1, sym_ms_based_modifier, - ACTIONS(3201), 4, + ACTIONS(3438), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1566), 5, + STATE(1558), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [61489] = 14, + [63630] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(37), 1, + ACTIONS(39), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(203), 1, + ACTIONS(205), 1, anon_sym_LBRACE, - ACTIONS(3896), 1, + ACTIONS(4103), 1, anon_sym_COMMA, - ACTIONS(3900), 1, + ACTIONS(4105), 1, + anon_sym_LPAREN2, + ACTIONS(4107), 1, anon_sym_SEMI, - ACTIONS(3902), 1, + ACTIONS(4109), 1, anon_sym_LBRACK, - ACTIONS(3904), 1, + ACTIONS(4111), 1, anon_sym_EQ, - ACTIONS(3919), 1, - anon_sym_LPAREN2, - STATE(212), 1, + STATE(229), 1, sym_compound_statement, - STATE(1464), 1, + STATE(1158), 1, + sym__old_style_parameter_list, + STATE(1422), 1, sym_parameter_list, - STATE(1775), 1, - aux_sym__declaration_declarator_repeat1, - STATE(1776), 1, + STATE(1768), 1, sym_gnu_asm_expression, - ACTIONS(3906), 2, + STATE(1818), 1, + aux_sym__declaration_declarator_repeat1, + ACTIONS(3951), 2, anon_sym_asm, anon_sym___asm__, - STATE(1519), 2, + STATE(1562), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [61534] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3843), 1, - anon_sym___attribute__, - ACTIONS(3923), 1, - anon_sym_LBRACK, - ACTIONS(3845), 2, - anon_sym___scanf, - anon_sym___printf, - STATE(1480), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - ACTIONS(3921), 9, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - [61563] = 14, + [63678] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(37), 1, + ACTIONS(39), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(504), 1, + ACTIONS(45), 1, anon_sym_LBRACE, - ACTIONS(3896), 1, + ACTIONS(4081), 1, + anon_sym_LPAREN2, + ACTIONS(4103), 1, anon_sym_COMMA, - ACTIONS(3900), 1, + ACTIONS(4107), 1, anon_sym_SEMI, - ACTIONS(3902), 1, + ACTIONS(4109), 1, anon_sym_LBRACK, - ACTIONS(3904), 1, + ACTIONS(4111), 1, anon_sym_EQ, - ACTIONS(3919), 1, - anon_sym_LPAREN2, - STATE(353), 1, + STATE(423), 1, sym_compound_statement, - STATE(1464), 1, + STATE(1422), 1, sym_parameter_list, - STATE(1775), 1, - aux_sym__declaration_declarator_repeat1, - STATE(1776), 1, + STATE(1768), 1, sym_gnu_asm_expression, - ACTIONS(3906), 2, + STATE(1818), 1, + aux_sym__declaration_declarator_repeat1, + ACTIONS(3951), 2, anon_sym_asm, anon_sym___asm__, - STATE(1519), 2, + STATE(1562), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [61608] = 14, + [63723] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(37), 1, + ACTIONS(39), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(656), 1, - anon_sym_LBRACE, - ACTIONS(3896), 1, - anon_sym_COMMA, - ACTIONS(3900), 1, - anon_sym_SEMI, - ACTIONS(3902), 1, - anon_sym_LBRACK, - ACTIONS(3904), 1, - anon_sym_EQ, - ACTIONS(3919), 1, + ACTIONS(4081), 1, anon_sym_LPAREN2, - STATE(397), 1, - sym_compound_statement, - STATE(1464), 1, + ACTIONS(4115), 1, + anon_sym_LBRACK, + STATE(1559), 1, sym_parameter_list, - STATE(1775), 1, - aux_sym__declaration_declarator_repeat1, - STATE(1776), 1, - sym_gnu_asm_expression, - ACTIONS(3906), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(1519), 2, + STATE(1516), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [61653] = 14, + ACTIONS(4131), 9, + 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, + [63754] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(37), 1, + ACTIONS(39), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(3896), 1, + ACTIONS(4081), 1, + anon_sym_LPAREN2, + ACTIONS(4103), 1, anon_sym_COMMA, - ACTIONS(3900), 1, + ACTIONS(4107), 1, anon_sym_SEMI, - ACTIONS(3902), 1, + ACTIONS(4109), 1, anon_sym_LBRACK, - ACTIONS(3904), 1, + ACTIONS(4111), 1, anon_sym_EQ, - ACTIONS(3919), 1, - anon_sym_LPAREN2, - STATE(134), 1, + STATE(143), 1, sym_compound_statement, - STATE(1464), 1, + STATE(1422), 1, sym_parameter_list, - STATE(1775), 1, - aux_sym__declaration_declarator_repeat1, - STATE(1776), 1, + STATE(1768), 1, sym_gnu_asm_expression, - ACTIONS(3906), 2, + STATE(1818), 1, + aux_sym__declaration_declarator_repeat1, + ACTIONS(3951), 2, anon_sym_asm, anon_sym___asm__, - STATE(1519), 2, + STATE(1562), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [61698] = 11, + [63799] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(3925), 1, + ACTIONS(4133), 1, sym_identifier, - ACTIONS(3927), 1, + ACTIONS(4135), 1, aux_sym_preproc_if_token2, - ACTIONS(3929), 1, + ACTIONS(4137), 1, aux_sym_preproc_else_token1, - ACTIONS(3931), 1, + ACTIONS(4139), 1, aux_sym_preproc_elif_token1, - STATE(1541), 1, + STATE(1579), 1, aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(1544), 1, + STATE(1580), 1, aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(1616), 1, + STATE(1668), 1, sym_enumerator, - ACTIONS(3933), 2, + ACTIONS(4141), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(2221), 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(2222), 3, + STATE(1990), 3, sym_preproc_else_in_enumerator_list, sym_preproc_elif_in_enumerator_list, sym_preproc_elifdef_in_enumerator_list, - [61737] = 6, + STATE(1991), 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, + [63838] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3843), 1, - anon_sym___attribute__, - ACTIONS(3937), 1, - anon_sym_LBRACK, - ACTIONS(3845), 2, - anon_sym___scanf, - anon_sym___printf, - STATE(1480), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - ACTIONS(3935), 9, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, + ACTIONS(39), 1, anon_sym_LBRACK_LBRACK, + ACTIONS(631), 1, anon_sym_LBRACE, + ACTIONS(4081), 1, + anon_sym_LPAREN2, + ACTIONS(4103), 1, + anon_sym_COMMA, + ACTIONS(4107), 1, + anon_sym_SEMI, + ACTIONS(4109), 1, + anon_sym_LBRACK, + ACTIONS(4111), 1, anon_sym_EQ, + STATE(375), 1, + sym_compound_statement, + STATE(1422), 1, + sym_parameter_list, + STATE(1768), 1, + sym_gnu_asm_expression, + STATE(1818), 1, + aux_sym__declaration_declarator_repeat1, + ACTIONS(3951), 2, anon_sym_asm, anon_sym___asm__, - [61766] = 6, + STATE(1562), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [63883] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3843), 1, - anon_sym___attribute__, - ACTIONS(3937), 1, - anon_sym_LBRACK, - ACTIONS(3845), 2, - anon_sym___scanf, - anon_sym___printf, - STATE(1473), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - ACTIONS(3935), 9, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, + ACTIONS(39), 1, anon_sym_LBRACK_LBRACK, + ACTIONS(205), 1, anon_sym_LBRACE, + ACTIONS(4081), 1, + anon_sym_LPAREN2, + ACTIONS(4103), 1, + anon_sym_COMMA, + ACTIONS(4107), 1, + anon_sym_SEMI, + ACTIONS(4109), 1, + anon_sym_LBRACK, + ACTIONS(4111), 1, anon_sym_EQ, + STATE(229), 1, + sym_compound_statement, + STATE(1422), 1, + sym_parameter_list, + STATE(1768), 1, + sym_gnu_asm_expression, + STATE(1818), 1, + aux_sym__declaration_declarator_repeat1, + ACTIONS(3951), 2, anon_sym_asm, anon_sym___asm__, - [61795] = 6, + STATE(1562), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [63928] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3941), 1, - anon_sym___attribute__, - ACTIONS(3947), 1, + ACTIONS(39), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4145), 1, anon_sym_LBRACK, - ACTIONS(3944), 2, - anon_sym___scanf, - anon_sym___printf, - STATE(1480), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - ACTIONS(3939), 9, + STATE(1389), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(4143), 11, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - [61824] = 14, + 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, + [63955] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(37), 1, + ACTIONS(39), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(43), 1, + ACTIONS(511), 1, anon_sym_LBRACE, - ACTIONS(3896), 1, + ACTIONS(4081), 1, + anon_sym_LPAREN2, + ACTIONS(4103), 1, anon_sym_COMMA, - ACTIONS(3900), 1, + ACTIONS(4107), 1, anon_sym_SEMI, - ACTIONS(3902), 1, + ACTIONS(4109), 1, anon_sym_LBRACK, - ACTIONS(3904), 1, + ACTIONS(4111), 1, anon_sym_EQ, - ACTIONS(3919), 1, - anon_sym_LPAREN2, - STATE(432), 1, + STATE(397), 1, sym_compound_statement, - STATE(1464), 1, + STATE(1422), 1, sym_parameter_list, - STATE(1775), 1, - aux_sym__declaration_declarator_repeat1, - STATE(1776), 1, + STATE(1768), 1, sym_gnu_asm_expression, - ACTIONS(3906), 2, + STATE(1818), 1, + aux_sym__declaration_declarator_repeat1, + ACTIONS(3951), 2, anon_sym_asm, anon_sym___asm__, - STATE(1519), 2, + STATE(1562), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [61869] = 3, + [64000] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2885), 1, + ACTIONS(4149), 1, anon_sym_LBRACK, - ACTIONS(2877), 13, + ACTIONS(4147), 13, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -125437,45 +130126,37 @@ static const uint16_t ts_small_parse_table[] = { 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, - anon_sym_LBRACE, - anon_sym_EQ, anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - [61891] = 11, + [64022] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2092), 1, - anon_sym___based, - ACTIONS(2978), 1, - sym_identifier, - ACTIONS(3361), 1, + ACTIONS(4153), 1, + anon_sym_LBRACK, + ACTIONS(4151), 13, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(3363), 1, - anon_sym_STAR, - STATE(804), 1, - sym__old_style_function_declarator, - STATE(1466), 1, - sym__declarator, - STATE(1783), 1, - sym_init_declarator, - STATE(2087), 1, - sym__declaration_declarator, - STATE(2118), 1, - sym_ms_based_modifier, - STATE(1548), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [61929] = 3, + 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, + anon_sym_COLON, + [64044] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3951), 1, + ACTIONS(4157), 1, anon_sym_LBRACK, - ACTIONS(3949), 13, + ACTIONS(4155), 13, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -125483,126 +130164,110 @@ static const uint16_t ts_small_parse_table[] = { 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, - anon_sym_LBRACE, - anon_sym_EQ, anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - [61951] = 11, + [64066] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(37), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3919), 1, - anon_sym_LPAREN2, - ACTIONS(3953), 1, - anon_sym_COMMA, - ACTIONS(3957), 1, + ACTIONS(4161), 1, anon_sym_LBRACK, - ACTIONS(3959), 1, - anon_sym_COLON, - STATE(1556), 1, - sym_parameter_list, - STATE(1662), 1, - aux_sym__field_declaration_declarator_repeat1, - STATE(1667), 1, - sym_bitfield_clause, - STATE(1525), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(3955), 4, + ACTIONS(4159), 13, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym___scanf, anon_sym___printf, - [61989] = 11, + anon_sym___read_mostly, + anon_sym___must_hold, + anon_sym___ro_after_init, + anon_sym___init, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + [64088] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2092), 1, - anon_sym___based, - ACTIONS(2978), 1, - sym_identifier, - ACTIONS(3361), 1, + ACTIONS(4165), 1, + anon_sym_LBRACK, + ACTIONS(4163), 13, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(3363), 1, - anon_sym_STAR, - STATE(813), 1, - sym__old_style_function_declarator, - STATE(1463), 1, - sym__declarator, - STATE(1783), 1, - sym_init_declarator, - STATE(2117), 1, - sym__declaration_declarator, - STATE(2118), 1, - sym_ms_based_modifier, - STATE(1548), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [62027] = 11, + 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, + anon_sym_COLON, + [64110] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2092), 1, + ACTIONS(2045), 1, anon_sym___based, - ACTIONS(2978), 1, + ACTIONS(3316), 1, sym_identifier, - ACTIONS(3361), 1, + ACTIONS(3510), 1, anon_sym_LPAREN2, - ACTIONS(3363), 1, + ACTIONS(3512), 1, anon_sym_STAR, - STATE(822), 1, + STATE(800), 1, sym__old_style_function_declarator, - STATE(1468), 1, + STATE(1509), 1, sym__declarator, - STATE(1783), 1, + STATE(1855), 1, sym_init_declarator, - STATE(1951), 1, + STATE(1994), 1, sym__declaration_declarator, - STATE(2118), 1, + STATE(2089), 1, sym_ms_based_modifier, - STATE(1548), 5, + STATE(1616), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [62065] = 11, + [64148] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2092), 1, + ACTIONS(2045), 1, anon_sym___based, - ACTIONS(2978), 1, + ACTIONS(3316), 1, sym_identifier, - ACTIONS(3361), 1, + ACTIONS(3510), 1, anon_sym_LPAREN2, - ACTIONS(3363), 1, + ACTIONS(3512), 1, anon_sym_STAR, - STATE(803), 1, + STATE(799), 1, sym__old_style_function_declarator, - STATE(1465), 1, + STATE(1506), 1, sym__declarator, - STATE(1783), 1, + STATE(1855), 1, sym_init_declarator, - STATE(1956), 1, - sym__declaration_declarator, - STATE(2118), 1, + STATE(2089), 1, sym_ms_based_modifier, - STATE(1548), 5, + STATE(2191), 1, + sym__declaration_declarator, + STATE(1616), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [62103] = 3, + [64186] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2873), 1, + ACTIONS(4169), 1, anon_sym_LBRACK, - ACTIONS(2865), 13, + ACTIONS(4167), 13, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -125610,848 +130275,751 @@ static const uint16_t ts_small_parse_table[] = { 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, - anon_sym_LBRACE, - anon_sym_EQ, anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - [62125] = 11, + [64208] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2092), 1, + ACTIONS(2045), 1, anon_sym___based, - ACTIONS(2978), 1, + ACTIONS(3316), 1, sym_identifier, - ACTIONS(3361), 1, + ACTIONS(3510), 1, anon_sym_LPAREN2, - ACTIONS(3363), 1, + ACTIONS(3512), 1, anon_sym_STAR, - STATE(806), 1, + STATE(793), 1, sym__old_style_function_declarator, - STATE(1467), 1, - sym__declarator, - STATE(1783), 1, - sym_init_declarator, - STATE(2034), 1, - sym__declaration_declarator, - STATE(2118), 1, - sym_ms_based_modifier, - STATE(1548), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [62163] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2092), 1, - anon_sym___based, - ACTIONS(2978), 1, - sym_identifier, - ACTIONS(3361), 1, - anon_sym_LPAREN2, - ACTIONS(3363), 1, - anon_sym_STAR, - STATE(1476), 1, - sym__declarator, - STATE(1783), 1, - sym_init_declarator, - STATE(2034), 1, - sym__declaration_declarator, - STATE(2118), 1, - sym_ms_based_modifier, - STATE(1548), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [62198] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2092), 1, - anon_sym___based, - ACTIONS(2978), 1, - sym_identifier, - ACTIONS(3361), 1, - anon_sym_LPAREN2, - ACTIONS(3363), 1, - anon_sym_STAR, - STATE(1508), 1, - sym__declarator, - STATE(1783), 1, - sym_init_declarator, - STATE(1972), 1, - sym__declaration_declarator, - STATE(2118), 1, - sym_ms_based_modifier, - STATE(1548), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [62233] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2092), 1, - anon_sym___based, - ACTIONS(2978), 1, - sym_identifier, - ACTIONS(3361), 1, - anon_sym_LPAREN2, - ACTIONS(3363), 1, - anon_sym_STAR, - STATE(1474), 1, + STATE(1497), 1, sym__declarator, - STATE(1783), 1, + STATE(1855), 1, sym_init_declarator, - STATE(2087), 1, + STATE(2004), 1, sym__declaration_declarator, - STATE(2118), 1, + STATE(2089), 1, sym_ms_based_modifier, - STATE(1548), 5, + STATE(1616), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [62268] = 7, + [64246] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(37), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3902), 1, + ACTIONS(4173), 1, anon_sym_LBRACK, - ACTIONS(3919), 1, - anon_sym_LPAREN2, - STATE(1464), 1, - sym_parameter_list, - STATE(1519), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(3961), 7, + ACTIONS(4171), 13, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - [62297] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(37), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3902), 1, - anon_sym_LBRACK, - ACTIONS(3919), 1, anon_sym_LPAREN2, - STATE(1464), 1, - sym_parameter_list, - STATE(1519), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(3963), 7, - anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - [62326] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(37), 1, + 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, - ACTIONS(3902), 1, - anon_sym_LBRACK, - ACTIONS(3919), 1, - anon_sym_LPAREN2, - STATE(1464), 1, - sym_parameter_list, - STATE(1519), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(3965), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - [62355] = 10, + anon_sym_COLON, + [64268] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2092), 1, + ACTIONS(2045), 1, anon_sym___based, - ACTIONS(2978), 1, + ACTIONS(3316), 1, sym_identifier, - ACTIONS(3361), 1, + ACTIONS(3510), 1, anon_sym_LPAREN2, - ACTIONS(3363), 1, + ACTIONS(3512), 1, anon_sym_STAR, - STATE(1508), 1, + STATE(822), 1, + sym__old_style_function_declarator, + STATE(1505), 1, sym__declarator, - STATE(1783), 1, + STATE(1855), 1, sym_init_declarator, - STATE(1951), 1, - sym__declaration_declarator, - STATE(2118), 1, + STATE(2089), 1, sym_ms_based_modifier, - STATE(1548), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [62390] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2092), 1, - anon_sym___based, - ACTIONS(2978), 1, - sym_identifier, - ACTIONS(3361), 1, - anon_sym_LPAREN2, - ACTIONS(3363), 1, - anon_sym_STAR, - STATE(1508), 1, - sym__declarator, - STATE(1783), 1, - sym_init_declarator, - STATE(2034), 1, + STATE(2090), 1, sym__declaration_declarator, - STATE(2118), 1, - sym_ms_based_modifier, - STATE(1548), 5, + STATE(1616), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [62425] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(17), 1, - sym_preproc_directive, - ACTIONS(3967), 1, - sym_identifier, - ACTIONS(3969), 1, - aux_sym_preproc_if_token1, - ACTIONS(3973), 1, - anon_sym_RBRACE, - ACTIONS(3971), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - STATE(1884), 2, - sym_preproc_call, - sym_enumerator, - STATE(2239), 2, - sym_preproc_if_in_enumerator_list_no_comma, - sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(1542), 3, - sym_preproc_if_in_enumerator_list, - sym_preproc_ifdef_in_enumerator_list, - aux_sym_enumerator_list_repeat1, - [62458] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(37), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3919), 1, - anon_sym_LPAREN2, - ACTIONS(3957), 1, - anon_sym_LBRACK, - STATE(1556), 1, - sym_parameter_list, - STATE(1525), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(3975), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, - anon_sym_COLON, - [62487] = 7, + [64306] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(37), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3919), 1, - anon_sym_LPAREN2, - ACTIONS(3957), 1, - anon_sym_LBRACK, - STATE(1556), 1, - sym_parameter_list, - STATE(1525), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(3977), 7, + ACTIONS(4177), 1, + anon_sym_LBRACK, + ACTIONS(4175), 13, 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, anon_sym_COLON, - [62516] = 10, + [64328] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2092), 1, + ACTIONS(2045), 1, anon_sym___based, - ACTIONS(2978), 1, + ACTIONS(3316), 1, sym_identifier, - ACTIONS(3361), 1, + ACTIONS(3510), 1, anon_sym_LPAREN2, - ACTIONS(3363), 1, + ACTIONS(3512), 1, anon_sym_STAR, - STATE(1508), 1, + STATE(807), 1, + sym__old_style_function_declarator, + STATE(1501), 1, sym__declarator, - STATE(1783), 1, + STATE(1855), 1, sym_init_declarator, - STATE(2117), 1, - sym__declaration_declarator, - STATE(2118), 1, + STATE(2089), 1, sym_ms_based_modifier, - STATE(1548), 5, + STATE(2226), 1, + sym__declaration_declarator, + STATE(1616), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [62551] = 10, + [64366] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2092), 1, + ACTIONS(2045), 1, anon_sym___based, - ACTIONS(2978), 1, + ACTIONS(3316), 1, sym_identifier, - ACTIONS(3361), 1, + ACTIONS(3510), 1, anon_sym_LPAREN2, - ACTIONS(3363), 1, + ACTIONS(3512), 1, anon_sym_STAR, - STATE(1472), 1, + STATE(1539), 1, sym__declarator, - STATE(1783), 1, + STATE(1855), 1, sym_init_declarator, - STATE(1951), 1, + STATE(2012), 1, sym__declaration_declarator, - STATE(2118), 1, + STATE(2089), 1, sym_ms_based_modifier, - STATE(1548), 5, + STATE(1616), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [62586] = 7, + [64401] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(37), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3919), 1, - anon_sym_LPAREN2, - ACTIONS(3957), 1, + ACTIONS(4181), 1, anon_sym_LBRACK, - STATE(1556), 1, - sym_parameter_list, - STATE(1525), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(3979), 7, + ACTIONS(4179), 12, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym___scanf, anon_sym___printf, - anon_sym_COLON, - [62615] = 7, + anon_sym___read_mostly, + anon_sym___must_hold, + anon_sym___ro_after_init, + anon_sym___init, + anon_sym_LBRACK_LBRACK, + [64422] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(37), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3902), 1, - anon_sym_LBRACK, - ACTIONS(3919), 1, + ACTIONS(2045), 1, + anon_sym___based, + ACTIONS(3316), 1, + sym_identifier, + ACTIONS(3510), 1, anon_sym_LPAREN2, - STATE(1464), 1, - sym_parameter_list, - STATE(1519), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(3981), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, + ACTIONS(3512), 1, + anon_sym_STAR, + STATE(1539), 1, + sym__declarator, + STATE(1855), 1, + sym_init_declarator, + STATE(2089), 1, + sym_ms_based_modifier, + STATE(2226), 1, + sym__declaration_declarator, + STATE(1616), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + [64457] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(41), 1, + anon_sym___declspec, + ACTIONS(2799), 1, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - [62644] = 10, + ACTIONS(4183), 1, + sym_identifier, + STATE(939), 1, + sym_field_declaration_list, + STATE(1714), 1, + sym_attribute_specifier, + STATE(1847), 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, + [64492] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2092), 1, + ACTIONS(2045), 1, anon_sym___based, - ACTIONS(2978), 1, + ACTIONS(3316), 1, sym_identifier, - ACTIONS(3361), 1, + ACTIONS(3510), 1, anon_sym_LPAREN2, - ACTIONS(3363), 1, + ACTIONS(3512), 1, anon_sym_STAR, - STATE(1508), 1, + STATE(1514), 1, sym__declarator, - STATE(1783), 1, + STATE(1855), 1, sym_init_declarator, - STATE(2087), 1, + STATE(2089), 1, + sym_ms_based_modifier, + STATE(2191), 1, sym__declaration_declarator, - STATE(2118), 1, + STATE(1616), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + [64527] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2045), 1, + anon_sym___based, + ACTIONS(3316), 1, + sym_identifier, + ACTIONS(3510), 1, + anon_sym_LPAREN2, + ACTIONS(3512), 1, + anon_sym_STAR, + STATE(1539), 1, + sym__declarator, + STATE(1855), 1, + sym_init_declarator, + STATE(2089), 1, sym_ms_based_modifier, - STATE(1548), 5, + STATE(2191), 1, + sym__declaration_declarator, + STATE(1616), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [62679] = 9, + [64562] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(37), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3919), 1, + ACTIONS(2045), 1, + anon_sym___based, + ACTIONS(3316), 1, + sym_identifier, + ACTIONS(3510), 1, anon_sym_LPAREN2, - ACTIONS(3957), 1, + ACTIONS(3512), 1, + anon_sym_STAR, + STATE(1517), 1, + sym__declarator, + STATE(1855), 1, + sym_init_declarator, + STATE(2004), 1, + sym__declaration_declarator, + STATE(2089), 1, + sym_ms_based_modifier, + STATE(1616), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + [64597] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4187), 1, anon_sym_LBRACK, - ACTIONS(3959), 1, - anon_sym_COLON, - STATE(1556), 1, - sym_parameter_list, - STATE(1676), 1, - sym_bitfield_clause, - STATE(1525), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(3983), 5, + ACTIONS(4185), 12, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym___scanf, anon_sym___printf, - [62712] = 12, + anon_sym___read_mostly, + anon_sym___must_hold, + anon_sym___ro_after_init, + anon_sym___init, + anon_sym_LBRACK_LBRACK, + [64618] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(37), 1, + ACTIONS(39), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3896), 1, + ACTIONS(4081), 1, + anon_sym_LPAREN2, + ACTIONS(4103), 1, anon_sym_COMMA, - ACTIONS(3900), 1, + ACTIONS(4107), 1, anon_sym_SEMI, - ACTIONS(3902), 1, + ACTIONS(4109), 1, anon_sym_LBRACK, - ACTIONS(3904), 1, + ACTIONS(4111), 1, anon_sym_EQ, - ACTIONS(3919), 1, - anon_sym_LPAREN2, - STATE(1464), 1, + STATE(1422), 1, sym_parameter_list, - STATE(1775), 1, - aux_sym__declaration_declarator_repeat1, - STATE(1776), 1, + STATE(1768), 1, sym_gnu_asm_expression, - ACTIONS(3906), 2, + STATE(1818), 1, + aux_sym__declaration_declarator_repeat1, + ACTIONS(3951), 2, anon_sym_asm, anon_sym___asm__, - STATE(1519), 2, + STATE(1562), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [62751] = 10, + [64657] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2092), 1, + ACTIONS(2045), 1, anon_sym___based, - ACTIONS(2978), 1, + ACTIONS(3316), 1, sym_identifier, - ACTIONS(3361), 1, + ACTIONS(3510), 1, anon_sym_LPAREN2, - ACTIONS(3363), 1, + ACTIONS(3512), 1, anon_sym_STAR, - STATE(1508), 1, + STATE(1539), 1, sym__declarator, - STATE(1783), 1, + STATE(1855), 1, sym_init_declarator, - STATE(2005), 1, - sym__declaration_declarator, - STATE(2118), 1, + STATE(2089), 1, sym_ms_based_modifier, - STATE(1548), 5, + STATE(2090), 1, + sym__declaration_declarator, + STATE(1616), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [62786] = 9, + [64692] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(17), 1, sym_preproc_directive, - ACTIONS(3967), 1, + ACTIONS(4189), 1, sym_identifier, - ACTIONS(3969), 1, + ACTIONS(4191), 1, aux_sym_preproc_if_token1, - ACTIONS(3985), 1, + ACTIONS(4195), 1, anon_sym_RBRACE, - ACTIONS(3971), 2, + ACTIONS(4193), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(1871), 2, + STATE(1888), 2, sym_preproc_call, sym_enumerator, - STATE(2131), 2, + STATE(2097), 2, sym_preproc_if_in_enumerator_list_no_comma, sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(1499), 3, + STATE(1551), 3, sym_preproc_if_in_enumerator_list, sym_preproc_ifdef_in_enumerator_list, aux_sym_enumerator_list_repeat1, - [62819] = 10, + [64725] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2092), 1, + ACTIONS(2045), 1, anon_sym___based, - ACTIONS(2978), 1, + ACTIONS(3316), 1, sym_identifier, - ACTIONS(3361), 1, + ACTIONS(3510), 1, anon_sym_LPAREN2, - ACTIONS(3363), 1, + ACTIONS(3512), 1, anon_sym_STAR, - STATE(1508), 1, + STATE(1512), 1, sym__declarator, - STATE(1783), 1, + STATE(1855), 1, sym_init_declarator, - STATE(1956), 1, - sym__declaration_declarator, - STATE(2118), 1, + STATE(2089), 1, sym_ms_based_modifier, - STATE(1548), 5, + STATE(2226), 1, + sym__declaration_declarator, + STATE(1616), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [62854] = 10, + [64760] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4199), 1, + anon_sym_LBRACK, + ACTIONS(4197), 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___init, + anon_sym_LBRACK_LBRACK, + [64781] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2092), 1, + ACTIONS(2045), 1, anon_sym___based, - ACTIONS(2978), 1, + ACTIONS(3316), 1, sym_identifier, - ACTIONS(3361), 1, + ACTIONS(3510), 1, anon_sym_LPAREN2, - ACTIONS(3363), 1, + ACTIONS(3512), 1, anon_sym_STAR, - STATE(1481), 1, + STATE(1539), 1, sym__declarator, - STATE(1783), 1, + STATE(1855), 1, sym_init_declarator, - STATE(2117), 1, - sym__declaration_declarator, - STATE(2118), 1, + STATE(2089), 1, sym_ms_based_modifier, - STATE(1548), 5, + STATE(2104), 1, + sym__declaration_declarator, + STATE(1616), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [62889] = 7, + [64816] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(37), 1, + ACTIONS(39), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3919), 1, + ACTIONS(4081), 1, anon_sym_LPAREN2, - ACTIONS(3957), 1, + ACTIONS(4109), 1, anon_sym_LBRACK, - STATE(1556), 1, + STATE(1422), 1, sym_parameter_list, - STATE(1525), 2, + STATE(1562), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3987), 7, + ACTIONS(4201), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + [64845] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4205), 1, + anon_sym_LBRACK, + ACTIONS(4203), 12, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym___scanf, anon_sym___printf, - anon_sym_COLON, - [62918] = 10, + anon_sym___read_mostly, + anon_sym___must_hold, + anon_sym___ro_after_init, + anon_sym___init, + anon_sym_LBRACK_LBRACK, + [64866] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2092), 1, + ACTIONS(2045), 1, anon_sym___based, - ACTIONS(2978), 1, + ACTIONS(3316), 1, sym_identifier, - ACTIONS(3361), 1, + ACTIONS(3510), 1, anon_sym_LPAREN2, - ACTIONS(3363), 1, + ACTIONS(3512), 1, anon_sym_STAR, - STATE(1475), 1, + STATE(1515), 1, sym__declarator, - STATE(1783), 1, + STATE(1855), 1, sym_init_declarator, - STATE(1956), 1, + STATE(1994), 1, sym__declaration_declarator, - STATE(2118), 1, - sym_ms_based_modifier, - STATE(1548), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [62953] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2092), 1, - anon_sym___based, - ACTIONS(2978), 1, - sym_identifier, - ACTIONS(3361), 1, - anon_sym_LPAREN2, - ACTIONS(3363), 1, - anon_sym_STAR, - STATE(825), 1, - sym__old_style_function_declarator, - STATE(1564), 1, - sym__declarator, - STATE(2118), 1, + STATE(2089), 1, sym_ms_based_modifier, - STATE(1548), 5, + STATE(1616), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [62985] = 9, + [64901] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2092), 1, + ACTIONS(2045), 1, anon_sym___based, - ACTIONS(2978), 1, + ACTIONS(3316), 1, sym_identifier, - ACTIONS(3361), 1, + ACTIONS(3510), 1, anon_sym_LPAREN2, - ACTIONS(3363), 1, + ACTIONS(3512), 1, anon_sym_STAR, - STATE(823), 1, - sym__old_style_function_declarator, - STATE(1577), 1, + STATE(1510), 1, sym__declarator, - STATE(2118), 1, + STATE(1855), 1, + sym_init_declarator, + STATE(2089), 1, sym_ms_based_modifier, - STATE(1548), 5, + STATE(2090), 1, + sym__declaration_declarator, + STATE(1616), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [63017] = 9, + [64936] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2092), 1, + ACTIONS(2045), 1, anon_sym___based, - ACTIONS(2978), 1, + ACTIONS(3316), 1, sym_identifier, - ACTIONS(3361), 1, + ACTIONS(3510), 1, anon_sym_LPAREN2, - ACTIONS(3363), 1, + ACTIONS(3512), 1, anon_sym_STAR, - STATE(807), 1, - sym__old_style_function_declarator, - STATE(1584), 1, + STATE(1539), 1, sym__declarator, - STATE(2118), 1, + STATE(1855), 1, + sym_init_declarator, + STATE(1994), 1, + sym__declaration_declarator, + STATE(2089), 1, sym_ms_based_modifier, - STATE(1548), 5, + STATE(1616), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [63049] = 9, + [64971] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(37), 1, + ACTIONS(39), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3919), 1, + ACTIONS(4081), 1, anon_sym_LPAREN2, - ACTIONS(3989), 1, - anon_sym_COMMA, - ACTIONS(3993), 1, + ACTIONS(4109), 1, anon_sym_LBRACK, - STATE(1576), 1, + STATE(1422), 1, sym_parameter_list, - STATE(1649), 1, - aux_sym__type_definition_declarators_repeat1, - STATE(1531), 2, + STATE(1562), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3991), 4, + ACTIONS(4207), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + [65000] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17), 1, + sym_preproc_directive, + ACTIONS(4189), 1, + sym_identifier, + ACTIONS(4191), 1, + aux_sym_preproc_if_token1, + ACTIONS(4209), 1, + anon_sym_RBRACE, + ACTIONS(4193), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(1901), 2, + sym_preproc_call, + sym_enumerator, + STATE(2086), 2, + sym_preproc_if_in_enumerator_list_no_comma, + sym_preproc_ifdef_in_enumerator_list_no_comma, + STATE(1576), 3, + sym_preproc_if_in_enumerator_list, + sym_preproc_ifdef_in_enumerator_list, + aux_sym_enumerator_list_repeat1, + [65033] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4213), 1, + anon_sym_LBRACK, + ACTIONS(4211), 12, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym___scanf, anon_sym___printf, - [63081] = 5, + anon_sym___read_mostly, + anon_sym___must_hold, + anon_sym___ro_after_init, + anon_sym___init, + anon_sym_LBRACK_LBRACK, + [65054] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(37), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3997), 1, + ACTIONS(4217), 1, anon_sym_LBRACK, - STATE(1469), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(3995), 8, + ACTIONS(4215), 12, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - [63105] = 7, + 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, + [65075] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(37), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3919), 1, - anon_sym_LPAREN2, - ACTIONS(3993), 1, + ACTIONS(4221), 1, anon_sym_LBRACK, - STATE(1576), 1, - sym_parameter_list, - STATE(1531), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(3999), 6, + ACTIONS(4219), 12, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym___scanf, anon_sym___printf, - [63133] = 10, + anon_sym___read_mostly, + anon_sym___must_hold, + anon_sym___ro_after_init, + anon_sym___init, + anon_sym_LBRACK_LBRACK, + [65096] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(37), 1, + ACTIONS(39), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3902), 1, - anon_sym_LBRACK, - ACTIONS(3904), 1, - anon_sym_EQ, - ACTIONS(3919), 1, + ACTIONS(4081), 1, anon_sym_LPAREN2, - STATE(1464), 1, + ACTIONS(4109), 1, + anon_sym_LBRACK, + STATE(1422), 1, sym_parameter_list, - STATE(1897), 1, - sym_gnu_asm_expression, - ACTIONS(3906), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(4001), 2, - anon_sym_COMMA, - anon_sym_SEMI, - STATE(1519), 2, + STATE(1562), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [63167] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2092), 1, - anon_sym___based, - ACTIONS(2978), 1, - sym_identifier, - ACTIONS(3361), 1, - anon_sym_LPAREN2, - ACTIONS(3363), 1, - anon_sym_STAR, - STATE(810), 1, - sym__old_style_function_declarator, - STATE(1578), 1, - sym__declarator, - STATE(2118), 1, - sym_ms_based_modifier, - STATE(1548), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [63199] = 7, + ACTIONS(4223), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + [65125] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(37), 1, + ACTIONS(39), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3919), 1, + ACTIONS(4081), 1, anon_sym_LPAREN2, - ACTIONS(3993), 1, + ACTIONS(4109), 1, anon_sym_LBRACK, - STATE(1576), 1, + STATE(1422), 1, sym_parameter_list, - STATE(1531), 2, + STATE(1562), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(4003), 6, + ACTIONS(4225), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, - [63227] = 9, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + [65154] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2092), 1, + ACTIONS(2045), 1, anon_sym___based, - ACTIONS(2978), 1, + ACTIONS(3316), 1, sym_identifier, - ACTIONS(3361), 1, + ACTIONS(3510), 1, anon_sym_LPAREN2, - ACTIONS(3363), 1, + ACTIONS(3512), 1, anon_sym_STAR, - STATE(1521), 1, + STATE(1539), 1, sym__declarator, - STATE(1913), 1, + STATE(1855), 1, sym_init_declarator, - STATE(2118), 1, + STATE(2004), 1, + sym__declaration_declarator, + STATE(2089), 1, sym_ms_based_modifier, - STATE(1548), 5, + STATE(1616), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [63259] = 5, + [65189] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(37), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(4007), 1, + ACTIONS(4229), 1, anon_sym_LBRACK, - STATE(1469), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(4005), 8, + ACTIONS(4227), 12, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -126459,439 +131027,539 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym___scanf, anon_sym___printf, - anon_sym_COLON, - [63283] = 7, + anon_sym___read_mostly, + anon_sym___must_hold, + anon_sym___ro_after_init, + anon_sym___init, + anon_sym_LBRACK_LBRACK, + [65210] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(37), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3919), 1, - anon_sym_LPAREN2, - ACTIONS(3993), 1, + ACTIONS(4233), 1, anon_sym_LBRACK, - STATE(1576), 1, - sym_parameter_list, - STATE(1531), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(4009), 6, + ACTIONS(4231), 12, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym___scanf, anon_sym___printf, - [63311] = 7, + anon_sym___read_mostly, + anon_sym___must_hold, + anon_sym___ro_after_init, + anon_sym___init, + anon_sym_LBRACK_LBRACK, + [65231] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(37), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3919), 1, + ACTIONS(2045), 1, + anon_sym___based, + ACTIONS(3316), 1, + sym_identifier, + ACTIONS(3510), 1, + anon_sym_LPAREN2, + ACTIONS(3512), 1, + anon_sym_STAR, + STATE(820), 1, + sym__old_style_function_declarator, + STATE(1623), 1, + sym__declarator, + STATE(2089), 1, + sym_ms_based_modifier, + STATE(1616), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + [65263] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2045), 1, + anon_sym___based, + ACTIONS(3316), 1, + sym_identifier, + ACTIONS(3510), 1, anon_sym_LPAREN2, - ACTIONS(3993), 1, + ACTIONS(3512), 1, + anon_sym_STAR, + STATE(1566), 1, + sym__declarator, + STATE(1949), 1, + sym_init_declarator, + STATE(2089), 1, + sym_ms_based_modifier, + STATE(1616), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + [65295] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(39), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4237), 1, anon_sym_LBRACK, - STATE(1576), 1, - sym_parameter_list, - STATE(1531), 2, + STATE(1389), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(4011), 6, + ACTIONS(4235), 8, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, - [63339] = 9, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + [65319] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2092), 1, + ACTIONS(2045), 1, anon_sym___based, - ACTIONS(2978), 1, + ACTIONS(3316), 1, sym_identifier, - ACTIONS(3361), 1, + ACTIONS(3510), 1, anon_sym_LPAREN2, - ACTIONS(3363), 1, + ACTIONS(3512), 1, anon_sym_STAR, - STATE(814), 1, + STATE(827), 1, sym__old_style_function_declarator, - STATE(1570), 1, + STATE(1635), 1, sym__declarator, - STATE(2118), 1, + STATE(2089), 1, sym_ms_based_modifier, - STATE(1548), 5, + STATE(1616), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [63371] = 8, + [65351] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2092), 1, + ACTIONS(2045), 1, anon_sym___based, - ACTIONS(2978), 1, + ACTIONS(3316), 1, sym_identifier, - ACTIONS(3361), 1, + ACTIONS(3510), 1, anon_sym_LPAREN2, - ACTIONS(3363), 1, + ACTIONS(3512), 1, anon_sym_STAR, - STATE(1607), 1, + STATE(805), 1, + sym__old_style_function_declarator, + STATE(1622), 1, sym__declarator, - STATE(2118), 1, + STATE(2089), 1, sym_ms_based_modifier, - STATE(1548), 5, + STATE(1616), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [63400] = 10, + [65383] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3929), 1, - aux_sym_preproc_else_token1, - ACTIONS(4013), 1, + ACTIONS(2045), 1, + anon_sym___based, + ACTIONS(3316), 1, sym_identifier, - ACTIONS(4015), 1, - aux_sym_preproc_if_token2, - ACTIONS(4017), 1, - aux_sym_preproc_elif_token1, - STATE(1589), 1, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(1595), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(1689), 1, - sym_enumerator, - STATE(2166), 2, - sym_preproc_else_in_enumerator_list_no_comma, - sym_preproc_elif_in_enumerator_list_no_comma, - STATE(2167), 2, - sym_preproc_else_in_enumerator_list, - sym_preproc_elif_in_enumerator_list, - [63433] = 5, + ACTIONS(3510), 1, + anon_sym_LPAREN2, + ACTIONS(3512), 1, + anon_sym_STAR, + STATE(795), 1, + sym__old_style_function_declarator, + STATE(1617), 1, + sym__declarator, + STATE(2089), 1, + sym_ms_based_modifier, + STATE(1616), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + [65415] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(37), 1, + ACTIONS(39), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4021), 1, + ACTIONS(4081), 1, + anon_sym_LPAREN2, + ACTIONS(4109), 1, anon_sym_LBRACK, - STATE(1469), 2, + ACTIONS(4111), 1, + anon_sym_EQ, + STATE(1422), 1, + sym_parameter_list, + STATE(1931), 1, + sym_gnu_asm_expression, + ACTIONS(3951), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(4239), 2, + anon_sym_COMMA, + anon_sym_SEMI, + STATE(1562), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(4019), 7, - anon_sym_COMMA, - anon_sym_RPAREN, + [65449] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2045), 1, + anon_sym___based, + ACTIONS(3316), 1, + sym_identifier, + ACTIONS(3510), 1, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, - [63456] = 8, + ACTIONS(3512), 1, + anon_sym_STAR, + STATE(812), 1, + sym__old_style_function_declarator, + STATE(1627), 1, + sym__declarator, + STATE(2089), 1, + sym_ms_based_modifier, + STATE(1616), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + [65481] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2092), 1, + ACTIONS(2045), 1, anon_sym___based, - ACTIONS(2978), 1, + ACTIONS(3316), 1, sym_identifier, - ACTIONS(3361), 1, + ACTIONS(3510), 1, anon_sym_LPAREN2, - ACTIONS(3363), 1, + ACTIONS(3512), 1, anon_sym_STAR, - STATE(1591), 1, + STATE(1652), 1, sym__declarator, - STATE(2118), 1, + STATE(2089), 1, sym_ms_based_modifier, - STATE(1548), 5, + STATE(1616), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [63485] = 8, + [65510] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4137), 1, + aux_sym_preproc_else_token1, + ACTIONS(4241), 1, + sym_identifier, + ACTIONS(4243), 1, + aux_sym_preproc_if_token2, + ACTIONS(4245), 1, + aux_sym_preproc_elif_token1, + STATE(1640), 1, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + STATE(1646), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(1720), 1, + sym_enumerator, + STATE(2091), 2, + sym_preproc_else_in_enumerator_list, + sym_preproc_elif_in_enumerator_list, + STATE(2093), 2, + sym_preproc_else_in_enumerator_list_no_comma, + sym_preproc_elif_in_enumerator_list_no_comma, + [65543] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2092), 1, + ACTIONS(2045), 1, anon_sym___based, - ACTIONS(2978), 1, + ACTIONS(3316), 1, sym_identifier, - ACTIONS(3361), 1, + ACTIONS(3510), 1, anon_sym_LPAREN2, - ACTIONS(3363), 1, + ACTIONS(3512), 1, anon_sym_STAR, - STATE(1603), 1, + STATE(1642), 1, sym__declarator, - STATE(2118), 1, + STATE(2089), 1, sym_ms_based_modifier, - STATE(1548), 5, + STATE(1616), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [63514] = 8, + [65572] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2092), 1, + ACTIONS(2045), 1, anon_sym___based, - ACTIONS(2978), 1, + ACTIONS(3316), 1, sym_identifier, - ACTIONS(3361), 1, + ACTIONS(3510), 1, anon_sym_LPAREN2, - ACTIONS(3363), 1, + ACTIONS(3512), 1, anon_sym_STAR, - STATE(1604), 1, + STATE(1644), 1, sym__declarator, - STATE(2118), 1, + STATE(2089), 1, sym_ms_based_modifier, - STATE(1548), 5, + STATE(1616), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [63543] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(37), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3919), 1, - anon_sym_LPAREN2, - ACTIONS(3993), 1, - anon_sym_LBRACK, - STATE(1576), 1, - sym_parameter_list, - STATE(1531), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(4023), 5, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, - [63570] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3929), 1, - aux_sym_preproc_else_token1, - ACTIONS(4013), 1, - sym_identifier, - ACTIONS(4017), 1, - aux_sym_preproc_elif_token1, - ACTIONS(4025), 1, - aux_sym_preproc_if_token2, - STATE(1593), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(1598), 1, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(1689), 1, - sym_enumerator, - STATE(2177), 2, - sym_preproc_else_in_enumerator_list_no_comma, - sym_preproc_elif_in_enumerator_list_no_comma, - STATE(2178), 2, - sym_preproc_else_in_enumerator_list, - sym_preproc_elif_in_enumerator_list, - [63603] = 8, + [65601] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2092), 1, + ACTIONS(2045), 1, anon_sym___based, - ACTIONS(3355), 1, + ACTIONS(3504), 1, sym_identifier, - ACTIONS(3357), 1, + ACTIONS(3506), 1, anon_sym_LPAREN2, - ACTIONS(3359), 1, + ACTIONS(3508), 1, anon_sym_STAR, - STATE(1613), 1, + STATE(1664), 1, sym__field_declarator, - STATE(2236), 1, + STATE(2078), 1, sym_ms_based_modifier, - STATE(1560), 5, + STATE(1520), 5, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, sym_function_field_declarator, sym_array_field_declarator, - [63632] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3929), 1, - aux_sym_preproc_else_token1, - ACTIONS(4013), 1, - sym_identifier, - ACTIONS(4017), 1, - aux_sym_preproc_elif_token1, - ACTIONS(4027), 1, - aux_sym_preproc_if_token2, - STATE(1601), 1, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(1606), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(1689), 1, - sym_enumerator, - STATE(2203), 2, - sym_preproc_else_in_enumerator_list_no_comma, - sym_preproc_elif_in_enumerator_list_no_comma, - STATE(2204), 2, - sym_preproc_else_in_enumerator_list, - sym_preproc_elif_in_enumerator_list, - [63665] = 9, + [65630] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3967), 1, + ACTIONS(4189), 1, sym_identifier, - ACTIONS(4029), 1, + ACTIONS(4247), 1, aux_sym_preproc_if_token2, - ACTIONS(4031), 1, + ACTIONS(4249), 1, aux_sym_preproc_else_token1, - ACTIONS(4033), 1, + ACTIONS(4251), 1, aux_sym_preproc_elif_token1, - STATE(1544), 1, + STATE(1580), 1, aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(2199), 1, + STATE(2101), 1, sym_enumerator, - ACTIONS(4035), 2, + ACTIONS(4253), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(2222), 3, + STATE(1990), 3, sym_preproc_else_in_enumerator_list, sym_preproc_elif_in_enumerator_list, sym_preproc_elifdef_in_enumerator_list, - [63696] = 8, + [65661] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2092), 1, + ACTIONS(2045), 1, anon_sym___based, - ACTIONS(2978), 1, + ACTIONS(3504), 1, sym_identifier, - ACTIONS(3361), 1, + ACTIONS(3506), 1, anon_sym_LPAREN2, - ACTIONS(3363), 1, + ACTIONS(3508), 1, anon_sym_STAR, - STATE(1618), 1, + STATE(1495), 1, + sym__field_declarator, + STATE(2078), 1, + sym_ms_based_modifier, + STATE(1520), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + [65690] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2045), 1, + anon_sym___based, + ACTIONS(3316), 1, + sym_identifier, + ACTIONS(3510), 1, + anon_sym_LPAREN2, + ACTIONS(3512), 1, + anon_sym_STAR, + STATE(1663), 1, sym__declarator, - STATE(2118), 1, + STATE(2089), 1, sym_ms_based_modifier, - STATE(1548), 5, + STATE(1616), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [63725] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3925), 1, - sym_identifier, - ACTIONS(4037), 1, - aux_sym_preproc_if_token2, - ACTIONS(4039), 1, - aux_sym_preproc_else_token1, - ACTIONS(4041), 1, - aux_sym_preproc_elif_token1, - ACTIONS(4043), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(1610), 2, - sym_enumerator, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(2196), 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, - [63754] = 8, + [65719] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4045), 1, + ACTIONS(4255), 1, sym_identifier, - ACTIONS(4048), 1, + ACTIONS(4258), 1, aux_sym_preproc_if_token1, - ACTIONS(4054), 1, + ACTIONS(4264), 1, sym_preproc_directive, - ACTIONS(4057), 1, + ACTIONS(4267), 1, anon_sym_RBRACE, - ACTIONS(4051), 2, + ACTIONS(4261), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(2219), 2, + STATE(2002), 2, sym_preproc_call, sym_enumerator, - STATE(1542), 3, + STATE(1576), 3, sym_preproc_if_in_enumerator_list, sym_preproc_ifdef_in_enumerator_list, aux_sym_enumerator_list_repeat1, - [63783] = 8, + [65748] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2092), 1, + ACTIONS(2045), 1, anon_sym___based, - ACTIONS(3355), 1, + ACTIONS(3316), 1, sym_identifier, - ACTIONS(3357), 1, + ACTIONS(3510), 1, anon_sym_LPAREN2, - ACTIONS(3359), 1, + ACTIONS(3512), 1, anon_sym_STAR, - STATE(1507), 1, - sym__field_declarator, - STATE(2236), 1, + STATE(1641), 1, + sym__declarator, + STATE(2089), 1, sym_ms_based_modifier, - STATE(1560), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - [63812] = 9, + STATE(1616), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + [65777] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2045), 1, + anon_sym___based, + ACTIONS(3316), 1, + sym_identifier, + ACTIONS(3510), 1, + anon_sym_LPAREN2, + ACTIONS(3512), 1, + anon_sym_STAR, + STATE(1658), 1, + sym__declarator, + STATE(2089), 1, + sym_ms_based_modifier, + STATE(1616), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + [65806] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3967), 1, + ACTIONS(4133), 1, sym_identifier, - ACTIONS(4031), 1, + ACTIONS(4269), 1, + aux_sym_preproc_if_token2, + ACTIONS(4271), 1, aux_sym_preproc_else_token1, - ACTIONS(4033), 1, + ACTIONS(4273), 1, aux_sym_preproc_elif_token1, - ACTIONS(4059), 1, + ACTIONS(4275), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(1643), 2, + sym_enumerator, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + STATE(2112), 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, + [65835] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4189), 1, + sym_identifier, + ACTIONS(4249), 1, + aux_sym_preproc_else_token1, + ACTIONS(4251), 1, + aux_sym_preproc_elif_token1, + ACTIONS(4277), 1, aux_sym_preproc_if_token2, - STATE(1609), 1, + STATE(1647), 1, aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(2199), 1, + STATE(2101), 1, sym_enumerator, - ACTIONS(4035), 2, + ACTIONS(4253), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(2200), 3, + STATE(2117), 3, sym_preproc_else_in_enumerator_list, sym_preproc_elif_in_enumerator_list, sym_preproc_elifdef_in_enumerator_list, - [63843] = 8, + [65866] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2092), 1, - anon_sym___based, - ACTIONS(2978), 1, + ACTIONS(4137), 1, + aux_sym_preproc_else_token1, + ACTIONS(4241), 1, sym_identifier, - ACTIONS(3361), 1, - anon_sym_LPAREN2, - ACTIONS(3363), 1, - anon_sym_STAR, - STATE(1605), 1, - sym__declarator, - STATE(2118), 1, - sym_ms_based_modifier, - STATE(1548), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [63872] = 3, + ACTIONS(4245), 1, + aux_sym_preproc_elif_token1, + ACTIONS(4279), 1, + aux_sym_preproc_if_token2, + STATE(1657), 1, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + STATE(1660), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(1720), 1, + sym_enumerator, + STATE(2241), 2, + sym_preproc_else_in_enumerator_list, + sym_preproc_elif_in_enumerator_list, + STATE(2242), 2, + sym_preproc_else_in_enumerator_list_no_comma, + sym_preproc_elif_in_enumerator_list_no_comma, + [65899] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(4063), 1, + ACTIONS(4137), 1, + aux_sym_preproc_else_token1, + ACTIONS(4241), 1, + sym_identifier, + ACTIONS(4245), 1, + aux_sym_preproc_elif_token1, + ACTIONS(4281), 1, + aux_sym_preproc_if_token2, + STATE(1636), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(1645), 1, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + STATE(1720), 1, + sym_enumerator, + STATE(2199), 2, + sym_preproc_else_in_enumerator_list, + sym_preproc_elif_in_enumerator_list, + STATE(2204), 2, + sym_preproc_else_in_enumerator_list_no_comma, + sym_preproc_elif_in_enumerator_list_no_comma, + [65932] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4285), 1, anon_sym_LBRACK, - ACTIONS(4061), 9, + ACTIONS(4283), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -126901,27 +131569,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - [63890] = 3, + [65950] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4287), 1, + anon_sym_SEMI, + ACTIONS(3709), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(3711), 2, + anon_sym___scanf, + anon_sym___printf, + STATE(1435), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + ACTIONS(3713), 3, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___init, + [65974] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4067), 1, + ACTIONS(4291), 1, anon_sym_LBRACK, - ACTIONS(4065), 9, - anon_sym_COMMA, + STATE(1730), 1, + sym_gnu_asm_output_operand, + STATE(2053), 1, + sym_string_literal, + ACTIONS(4289), 2, anon_sym_RPAREN, - anon_sym_LPAREN2, + anon_sym_COLON, + ACTIONS(99), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [65998] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4293), 1, + anon_sym_COMMA, + STATE(1586), 1, + aux_sym__type_definition_declarators_repeat1, + ACTIONS(4296), 8, anon_sym_SEMI, anon_sym___attribute__, anon_sym___scanf, anon_sym___printf, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - [63908] = 3, + anon_sym___read_mostly, + anon_sym___must_hold, + anon_sym___ro_after_init, + anon_sym___init, + [66018] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4298), 1, + anon_sym_SEMI, + ACTIONS(3709), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(3711), 2, + anon_sym___scanf, + anon_sym___printf, + STATE(1435), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + ACTIONS(3713), 3, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___init, + [66042] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4071), 1, + ACTIONS(4302), 1, anon_sym_LBRACK, - ACTIONS(4069), 9, + ACTIONS(4300), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -126931,42 +131654,136 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - [63926] = 3, + [66060] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4075), 1, - anon_sym_LBRACK, - ACTIONS(4073), 9, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + ACTIONS(4304), 1, anon_sym_SEMI, + ACTIONS(3709), 2, anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(3711), 2, anon_sym___scanf, anon_sym___printf, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - [63944] = 3, + STATE(1602), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + ACTIONS(3713), 3, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___init, + [66084] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4306), 1, + anon_sym_SEMI, + ACTIONS(3709), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(3711), 2, + anon_sym___scanf, + anon_sym___printf, + STATE(1607), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + ACTIONS(3713), 3, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___init, + [66108] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4308), 1, + anon_sym_SEMI, + ACTIONS(3709), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(3711), 2, + anon_sym___scanf, + anon_sym___printf, + STATE(1435), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + ACTIONS(3713), 3, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___init, + [66132] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(4079), 1, - anon_sym_LBRACK, - ACTIONS(4077), 9, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + STATE(1599), 1, + aux_sym__field_declaration_declarator_repeat1, + ACTIONS(4310), 8, anon_sym_SEMI, anon_sym___attribute__, anon_sym___scanf, anon_sym___printf, - anon_sym_LBRACK_LBRACK, + anon_sym___read_mostly, + anon_sym___must_hold, + anon_sym___ro_after_init, + anon_sym___init, + [66152] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4312), 1, + anon_sym_SEMI, + ACTIONS(3709), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(3711), 2, + anon_sym___scanf, + anon_sym___printf, + STATE(1435), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + ACTIONS(3713), 3, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___init, + [66176] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4314), 1, + anon_sym_SEMI, + ACTIONS(3709), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(3711), 2, + anon_sym___scanf, + anon_sym___printf, + STATE(1584), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + ACTIONS(3713), 3, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___init, + [66200] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4318), 1, + anon_sym_LBRACK, + STATE(1754), 1, + sym_gnu_asm_input_operand, + STATE(2168), 1, + sym_string_literal, + ACTIONS(4316), 2, + anon_sym_RPAREN, anon_sym_COLON, - [63962] = 3, + ACTIONS(99), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [66224] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4083), 1, + ACTIONS(4322), 1, anon_sym_LBRACK, - ACTIONS(4081), 9, + ACTIONS(4320), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -126976,42 +131793,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - [63980] = 3, + [66242] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4087), 1, - anon_sym_LBRACK, - ACTIONS(4085), 9, + ACTIONS(4117), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + STATE(1586), 1, + aux_sym__type_definition_declarators_repeat1, + ACTIONS(4324), 8, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - [63998] = 3, + 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, + [66262] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4091), 1, - anon_sym_LBRACK, - ACTIONS(4089), 9, + ACTIONS(4326), 1, + anon_sym_SEMI, + ACTIONS(3709), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(3711), 2, + anon_sym___scanf, + anon_sym___printf, + STATE(1606), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + ACTIONS(3713), 3, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___init, + [66286] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4328), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + STATE(1599), 1, + aux_sym__field_declaration_declarator_repeat1, + ACTIONS(4331), 8, anon_sym_SEMI, anon_sym___attribute__, anon_sym___scanf, anon_sym___printf, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - [64016] = 3, + anon_sym___read_mostly, + anon_sym___must_hold, + anon_sym___ro_after_init, + anon_sym___init, + [66306] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4095), 1, + ACTIONS(4335), 1, anon_sym_LBRACK, - ACTIONS(4093), 9, + ACTIONS(4333), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -127021,108 +131858,260 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - [64034] = 6, + [66324] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4099), 1, - anon_sym_LBRACK, - STATE(1713), 1, - sym_gnu_asm_output_operand, - STATE(2208), 1, - sym_string_literal, - ACTIONS(4097), 2, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(97), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [64058] = 3, + ACTIONS(4337), 1, + anon_sym_SEMI, + ACTIONS(3709), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(3711), 2, + anon_sym___scanf, + anon_sym___printf, + STATE(1435), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + ACTIONS(3713), 3, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___init, + [66348] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4103), 1, - anon_sym_LBRACK, - ACTIONS(4101), 9, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + ACTIONS(4339), 1, anon_sym_SEMI, + ACTIONS(3709), 2, anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(3711), 2, anon_sym___scanf, anon_sym___printf, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - [64076] = 3, + STATE(1435), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + ACTIONS(3713), 3, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___init, + [66372] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4107), 1, - anon_sym_LBRACK, - ACTIONS(4105), 9, + ACTIONS(4341), 1, + anon_sym_SEMI, + ACTIONS(3709), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(3711), 2, + anon_sym___scanf, + anon_sym___printf, + STATE(1608), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + ACTIONS(3713), 3, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___init, + [66396] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4343), 1, + anon_sym_SEMI, + ACTIONS(3709), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(3711), 2, + anon_sym___scanf, + anon_sym___printf, + STATE(1435), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + ACTIONS(3713), 3, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___init, + [66420] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4345), 1, + anon_sym_SEMI, + ACTIONS(3709), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(3711), 2, + anon_sym___scanf, + anon_sym___printf, + STATE(1591), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + ACTIONS(3713), 3, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___init, + [66444] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4347), 1, + anon_sym_SEMI, + ACTIONS(3709), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(3711), 2, + anon_sym___scanf, + anon_sym___printf, + STATE(1435), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + ACTIONS(3713), 3, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___init, + [66468] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4349), 1, + anon_sym_SEMI, + ACTIONS(3709), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(3711), 2, + anon_sym___scanf, + anon_sym___printf, + STATE(1435), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + ACTIONS(3713), 3, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___init, + [66492] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4351), 1, + anon_sym_SEMI, + ACTIONS(3709), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(3711), 2, + anon_sym___scanf, + anon_sym___printf, + STATE(1435), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + ACTIONS(3713), 3, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___init, + [66516] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4353), 1, + anon_sym_SEMI, + ACTIONS(3709), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(3711), 2, + anon_sym___scanf, + anon_sym___printf, + STATE(1601), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + ACTIONS(3713), 3, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___init, + [66540] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4079), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + STATE(1592), 1, + aux_sym__field_declaration_declarator_repeat1, + ACTIONS(4355), 8, anon_sym_SEMI, anon_sym___attribute__, anon_sym___scanf, anon_sym___printf, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - [64094] = 3, + anon_sym___read_mostly, + anon_sym___must_hold, + anon_sym___ro_after_init, + anon_sym___init, + [66560] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4111), 1, - anon_sym_LBRACK, - ACTIONS(4109), 9, + ACTIONS(4079), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + STATE(1599), 1, + aux_sym__field_declaration_declarator_repeat1, + ACTIONS(4357), 8, anon_sym_SEMI, anon_sym___attribute__, anon_sym___scanf, anon_sym___printf, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - [64112] = 6, + anon_sym___read_mostly, + anon_sym___must_hold, + anon_sym___ro_after_init, + anon_sym___init, + [66580] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4115), 1, - anon_sym_LBRACK, - STATE(1710), 1, - sym_gnu_asm_input_operand, - STATE(2185), 1, - sym_string_literal, - ACTIONS(4113), 2, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(97), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [64136] = 3, + ACTIONS(4359), 1, + anon_sym_SEMI, + ACTIONS(3709), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(3711), 2, + anon_sym___scanf, + anon_sym___printf, + STATE(1604), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + ACTIONS(3713), 3, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___init, + [66604] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4119), 1, - anon_sym_LBRACK, - ACTIONS(4117), 9, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + ACTIONS(4361), 1, anon_sym_SEMI, + ACTIONS(3709), 2, anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(3711), 2, anon_sym___scanf, anon_sym___printf, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - [64154] = 3, + STATE(1593), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + ACTIONS(3713), 3, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___init, + [66628] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4123), 1, + ACTIONS(4363), 1, + anon_sym_SEMI, + ACTIONS(3709), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(3711), 2, + anon_sym___scanf, + anon_sym___printf, + STATE(1587), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + ACTIONS(3713), 3, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___init, + [66652] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4367), 1, anon_sym_LBRACK, - ACTIONS(4121), 9, + ACTIONS(4365), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -127132,7096 +132121,7029 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - [64172] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(39), 1, - anon_sym___declspec, - ACTIONS(2845), 1, - anon_sym_LBRACE, - ACTIONS(4125), 1, - sym_identifier, - STATE(1061), 1, - sym_field_declaration_list, - STATE(1683), 1, - sym_attribute_specifier, - STATE(1747), 1, - sym_ms_declspec_modifier, - ACTIONS(35), 2, - anon_sym___scanf, - anon_sym___printf, - [64201] = 3, + [66670] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4129), 1, + ACTIONS(4371), 1, anon_sym_LBRACK, - ACTIONS(4127), 8, + ACTIONS(4369), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, anon_sym_LBRACK_LBRACK, - [64218] = 9, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + [66688] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(37), 1, + ACTIONS(39), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(656), 1, + ACTIONS(205), 1, anon_sym_LBRACE, - ACTIONS(3898), 1, + ACTIONS(4105), 1, anon_sym_LPAREN2, - ACTIONS(3902), 1, + ACTIONS(4109), 1, anon_sym_LBRACK, - STATE(389), 1, + STATE(216), 1, sym_compound_statement, - STATE(1146), 1, + STATE(1158), 1, sym__old_style_parameter_list, - STATE(1464), 1, + STATE(1422), 1, sym_parameter_list, - STATE(1519), 2, + STATE(1562), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [64247] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4133), 1, - anon_sym_LBRACK, - ACTIONS(4131), 8, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, - anon_sym_LBRACK_LBRACK, - [64264] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4137), 1, - anon_sym_LBRACK, - ACTIONS(4135), 8, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + [66717] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4373), 1, anon_sym_SEMI, + STATE(2021), 1, + sym_attribute_specifier, + ACTIONS(3709), 2, anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(3711), 2, anon_sym___scanf, anon_sym___printf, - anon_sym_LBRACK_LBRACK, - [64281] = 6, + ACTIONS(3713), 3, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___init, + [66740] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4139), 1, - anon_sym_RPAREN, - ACTIONS(4141), 1, - anon_sym_COLON, - STATE(610), 1, + ACTIONS(4375), 1, + sym_identifier, + ACTIONS(4379), 1, + sym_system_lib_string, + STATE(2129), 2, + sym_preproc_call_expression, sym_string_literal, - STATE(1835), 1, - sym_gnu_asm_output_operand_list, - ACTIONS(97), 5, + ACTIONS(4377), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [64304] = 6, + [66761] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4141), 1, - anon_sym_COLON, - ACTIONS(4143), 1, - anon_sym_RPAREN, - STATE(610), 1, - sym_string_literal, - STATE(1809), 1, - sym_gnu_asm_output_operand_list, - ACTIONS(97), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [64327] = 6, + ACTIONS(4381), 1, + anon_sym_SEMI, + STATE(2150), 1, + sym_attribute_specifier, + ACTIONS(3709), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(3711), 2, + anon_sym___scanf, + anon_sym___printf, + ACTIONS(3713), 3, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___init, + [66784] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4141), 1, - anon_sym_COLON, - ACTIONS(4145), 1, - anon_sym_RPAREN, - STATE(610), 1, + ACTIONS(4383), 1, + sym_identifier, + ACTIONS(4385), 1, + sym_system_lib_string, + STATE(2259), 2, + sym_preproc_call_expression, sym_string_literal, - STATE(1794), 1, - sym_gnu_asm_output_operand_list, - ACTIONS(97), 5, + ACTIONS(4377), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [64350] = 9, + [66805] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(37), 1, + ACTIONS(39), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(504), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(3898), 1, + ACTIONS(4105), 1, anon_sym_LPAREN2, - ACTIONS(3902), 1, + ACTIONS(4109), 1, anon_sym_LBRACK, - STATE(370), 1, + STATE(152), 1, sym_compound_statement, - STATE(1146), 1, + STATE(1158), 1, sym__old_style_parameter_list, - STATE(1464), 1, + STATE(1422), 1, + sym_parameter_list, + STATE(1562), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [66834] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(39), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(45), 1, + anon_sym_LBRACE, + ACTIONS(4105), 1, + anon_sym_LPAREN2, + ACTIONS(4109), 1, + anon_sym_LBRACK, + STATE(414), 1, + sym_compound_statement, + STATE(1158), 1, + sym__old_style_parameter_list, + STATE(1422), 1, sym_parameter_list, - STATE(1519), 2, + STATE(1562), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [64379] = 5, + [66863] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4147), 1, + ACTIONS(4387), 1, sym_identifier, - ACTIONS(4151), 1, + ACTIONS(4389), 1, sym_system_lib_string, - STATE(2012), 2, + STATE(2028), 2, sym_preproc_call_expression, sym_string_literal, - ACTIONS(4149), 5, + ACTIONS(4377), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [64400] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4155), 1, - anon_sym_LBRACK, - ACTIONS(4153), 8, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, - anon_sym_LBRACK_LBRACK, - [64417] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4159), 1, - anon_sym_LBRACK, - ACTIONS(4157), 8, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, - anon_sym_LBRACK_LBRACK, - [64434] = 3, + [66884] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4163), 1, - anon_sym_LBRACK, - ACTIONS(4161), 8, - anon_sym_COMMA, + ACTIONS(4391), 1, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, - anon_sym_LBRACK_LBRACK, - [64451] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4165), 1, - sym_identifier, - ACTIONS(4167), 1, - sym_system_lib_string, - STATE(2096), 2, - sym_preproc_call_expression, + ACTIONS(4393), 1, + anon_sym_COLON, + STATE(567), 1, sym_string_literal, - ACTIONS(4149), 5, + STATE(1870), 1, + sym_gnu_asm_output_operand_list, + ACTIONS(99), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [64472] = 3, + [66907] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4171), 1, - anon_sym_LBRACK, - ACTIONS(4169), 8, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + ACTIONS(4395), 1, anon_sym_SEMI, + STATE(2291), 1, + sym_attribute_specifier, + ACTIONS(3709), 2, anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(3711), 2, anon_sym___scanf, anon_sym___printf, - anon_sym_LBRACK_LBRACK, - [64489] = 9, + ACTIONS(3713), 3, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___init, + [66930] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(37), 1, + ACTIONS(39), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(203), 1, + ACTIONS(511), 1, anon_sym_LBRACE, - ACTIONS(3898), 1, + ACTIONS(4105), 1, anon_sym_LPAREN2, - ACTIONS(3902), 1, + ACTIONS(4109), 1, anon_sym_LBRACK, - STATE(221), 1, + STATE(364), 1, sym_compound_statement, - STATE(1146), 1, + STATE(1158), 1, sym__old_style_parameter_list, - STATE(1464), 1, + STATE(1422), 1, sym_parameter_list, - STATE(1519), 2, + STATE(1562), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [64518] = 9, + [66959] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(37), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(131), 1, - anon_sym_LBRACE, - ACTIONS(3898), 1, - anon_sym_LPAREN2, - ACTIONS(3902), 1, - anon_sym_LBRACK, - STATE(155), 1, - sym_compound_statement, - STATE(1146), 1, - sym__old_style_parameter_list, - STATE(1464), 1, - sym_parameter_list, - STATE(1519), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [64547] = 3, + ACTIONS(4397), 1, + anon_sym_SEMI, + STATE(2057), 1, + sym_attribute_specifier, + ACTIONS(3709), 2, + anon_sym___attribute__, + anon_sym___must_hold, + ACTIONS(3711), 2, + anon_sym___scanf, + anon_sym___printf, + ACTIONS(3713), 3, + anon_sym___read_mostly, + anon_sym___ro_after_init, + anon_sym___init, + [66982] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4175), 1, - anon_sym_LBRACK, - ACTIONS(4173), 8, + ACTIONS(4399), 9, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym___scanf, anon_sym___printf, - anon_sym_LBRACK_LBRACK, - [64564] = 5, + anon_sym___read_mostly, + anon_sym___must_hold, + anon_sym___ro_after_init, + anon_sym___init, + [66997] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4177), 1, - sym_identifier, - ACTIONS(4179), 1, - sym_system_lib_string, - STATE(2044), 2, - sym_preproc_call_expression, + ACTIONS(4393), 1, + anon_sym_COLON, + ACTIONS(4401), 1, + anon_sym_RPAREN, + STATE(567), 1, sym_string_literal, - ACTIONS(4149), 5, + STATE(1773), 1, + sym_gnu_asm_output_operand_list, + ACTIONS(99), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [64585] = 6, + [67020] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4141), 1, + ACTIONS(4393), 1, anon_sym_COLON, - ACTIONS(4181), 1, + ACTIONS(4403), 1, anon_sym_RPAREN, - STATE(610), 1, + STATE(567), 1, sym_string_literal, - STATE(1792), 1, + STATE(1816), 1, sym_gnu_asm_output_operand_list, - ACTIONS(97), 5, + ACTIONS(99), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [64608] = 3, + [67043] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4185), 1, - anon_sym_LBRACK, - ACTIONS(4183), 8, - anon_sym_COMMA, + ACTIONS(4393), 1, + anon_sym_COLON, + ACTIONS(4405), 1, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, - anon_sym_LBRACK_LBRACK, - [64625] = 5, + STATE(567), 1, + sym_string_literal, + STATE(1831), 1, + sym_gnu_asm_output_operand_list, + ACTIONS(99), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [67066] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4187), 1, + ACTIONS(4407), 1, sym_identifier, - ACTIONS(4189), 1, + ACTIONS(4409), 1, + sym_system_lib_string, + STATE(2262), 2, + sym_preproc_call_expression, + sym_string_literal, + ACTIONS(4377), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [67087] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4411), 1, + sym_identifier, + ACTIONS(4413), 1, sym_system_lib_string, - STATE(2104), 2, + STATE(2126), 2, sym_preproc_call_expression, sym_string_literal, - ACTIONS(4149), 5, + ACTIONS(4377), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [64646] = 9, + [67108] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(37), 1, + ACTIONS(39), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(43), 1, + ACTIONS(631), 1, anon_sym_LBRACE, - ACTIONS(3898), 1, + ACTIONS(4105), 1, anon_sym_LPAREN2, - ACTIONS(3902), 1, + ACTIONS(4109), 1, anon_sym_LBRACK, - STATE(444), 1, + STATE(402), 1, sym_compound_statement, - STATE(1146), 1, + STATE(1158), 1, sym__old_style_parameter_list, - STATE(1464), 1, + STATE(1422), 1, sym_parameter_list, - STATE(1519), 2, + STATE(1562), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [64675] = 5, + [67137] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4191), 1, + ACTIONS(4189), 1, sym_identifier, - ACTIONS(4193), 1, - sym_system_lib_string, - STATE(1981), 2, - sym_preproc_call_expression, - sym_string_literal, - ACTIONS(4149), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [64696] = 5, + ACTIONS(4249), 1, + aux_sym_preproc_else_token1, + ACTIONS(4415), 1, + aux_sym_preproc_if_token2, + ACTIONS(4417), 1, + aux_sym_preproc_elif_token1, + STATE(1687), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(2137), 1, + sym_enumerator, + STATE(2246), 2, + sym_preproc_else_in_enumerator_list, + sym_preproc_elif_in_enumerator_list, + [67163] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4195), 1, + ACTIONS(4189), 1, sym_identifier, - STATE(1581), 1, - sym_string_literal, - STATE(1838), 1, - sym_concatenated_string, - ACTIONS(97), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [64716] = 8, + ACTIONS(4249), 1, + aux_sym_preproc_else_token1, + ACTIONS(4281), 1, + aux_sym_preproc_if_token2, + ACTIONS(4417), 1, + aux_sym_preproc_elif_token1, + STATE(1636), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(2137), 1, + sym_enumerator, + STATE(2199), 2, + sym_preproc_else_in_enumerator_list, + sym_preproc_elif_in_enumerator_list, + [67189] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3967), 1, + ACTIONS(4189), 1, sym_identifier, - ACTIONS(4025), 1, - aux_sym_preproc_if_token2, - ACTIONS(4031), 1, + ACTIONS(4249), 1, aux_sym_preproc_else_token1, - ACTIONS(4197), 1, + ACTIONS(4417), 1, aux_sym_preproc_elif_token1, - STATE(1593), 1, + ACTIONS(4419), 1, + aux_sym_preproc_if_token2, + STATE(1646), 1, aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(2136), 1, + STATE(2137), 1, sym_enumerator, - STATE(2178), 2, + STATE(2091), 2, sym_preproc_else_in_enumerator_list, sym_preproc_elif_in_enumerator_list, - [64742] = 5, + [67215] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4195), 1, + ACTIONS(4421), 1, sym_identifier, - STATE(1569), 1, + STATE(1625), 1, sym_string_literal, - STATE(1814), 1, + STATE(1772), 1, sym_concatenated_string, - ACTIONS(97), 5, + ACTIONS(99), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [64762] = 7, + [67235] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4013), 1, + ACTIONS(4241), 1, sym_identifier, - ACTIONS(4039), 1, + ACTIONS(4271), 1, aux_sym_preproc_else_token1, - ACTIONS(4199), 1, + ACTIONS(4423), 1, aux_sym_preproc_if_token2, - ACTIONS(4201), 1, + ACTIONS(4425), 1, aux_sym_preproc_elif_token1, - STATE(1654), 2, + STATE(1681), 2, sym_enumerator, aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(2156), 2, + STATE(2197), 2, sym_preproc_else_in_enumerator_list_no_comma, sym_preproc_elif_in_enumerator_list_no_comma, - [64786] = 8, + [67259] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(39), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(133), 1, + anon_sym_LBRACE, + ACTIONS(4081), 1, + anon_sym_LPAREN2, + ACTIONS(4109), 1, + anon_sym_LBRACK, + STATE(152), 1, + sym_compound_statement, + STATE(1422), 1, + sym_parameter_list, + STATE(1562), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [67285] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(39), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(631), 1, + anon_sym_LBRACE, + ACTIONS(4081), 1, + anon_sym_LPAREN2, + ACTIONS(4109), 1, + anon_sym_LBRACK, + STATE(402), 1, + sym_compound_statement, + STATE(1422), 1, + sym_parameter_list, + STATE(1562), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [67311] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3967), 1, + ACTIONS(4427), 1, sym_identifier, - ACTIONS(4015), 1, - aux_sym_preproc_if_token2, - ACTIONS(4031), 1, - aux_sym_preproc_else_token1, - ACTIONS(4197), 1, + ACTIONS(4432), 1, aux_sym_preproc_elif_token1, - STATE(1595), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(2136), 1, + STATE(1643), 2, sym_enumerator, - STATE(2167), 2, - sym_preproc_else_in_enumerator_list, - sym_preproc_elif_in_enumerator_list, - [64812] = 8, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + ACTIONS(4430), 4, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + [67331] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(37), 1, + ACTIONS(39), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(203), 1, + ACTIONS(511), 1, anon_sym_LBRACE, - ACTIONS(3902), 1, - anon_sym_LBRACK, - ACTIONS(3919), 1, + ACTIONS(4081), 1, anon_sym_LPAREN2, - STATE(221), 1, + ACTIONS(4109), 1, + anon_sym_LBRACK, + STATE(364), 1, sym_compound_statement, - STATE(1464), 1, + STATE(1422), 1, sym_parameter_list, - STATE(1519), 2, + STATE(1562), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [64838] = 7, + [67357] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4013), 1, + ACTIONS(4241), 1, sym_identifier, - ACTIONS(4039), 1, + ACTIONS(4271), 1, aux_sym_preproc_else_token1, - ACTIONS(4201), 1, + ACTIONS(4425), 1, aux_sym_preproc_elif_token1, - ACTIONS(4203), 1, + ACTIONS(4434), 1, aux_sym_preproc_if_token2, - STATE(1589), 2, + STATE(1681), 2, sym_enumerator, aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(2166), 2, + STATE(2247), 2, sym_preproc_else_in_enumerator_list_no_comma, sym_preproc_elif_in_enumerator_list_no_comma, - [64862] = 8, + [67381] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3967), 1, + ACTIONS(4189), 1, sym_identifier, - ACTIONS(4031), 1, + ACTIONS(4249), 1, aux_sym_preproc_else_token1, - ACTIONS(4197), 1, + ACTIONS(4417), 1, aux_sym_preproc_elif_token1, - ACTIONS(4205), 1, + ACTIONS(4436), 1, aux_sym_preproc_if_token2, - STATE(1653), 1, + STATE(1687), 1, aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(2136), 1, + STATE(2137), 1, sym_enumerator, - STATE(2165), 2, + STATE(2195), 2, sym_preproc_else_in_enumerator_list, sym_preproc_elif_in_enumerator_list, - [64888] = 7, + [67407] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(37), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3902), 1, - anon_sym_LBRACK, - ACTIONS(3919), 1, - anon_sym_LPAREN2, - STATE(1464), 1, - sym_parameter_list, - ACTIONS(4207), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(1519), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [64912] = 8, + ACTIONS(4438), 1, + sym_identifier, + ACTIONS(4443), 1, + aux_sym_preproc_elif_token1, + STATE(1647), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(2101), 1, + sym_enumerator, + ACTIONS(4441), 4, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + [67429] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3967), 1, + ACTIONS(4241), 1, sym_identifier, - ACTIONS(4031), 1, + ACTIONS(4271), 1, aux_sym_preproc_else_token1, - ACTIONS(4197), 1, + ACTIONS(4425), 1, aux_sym_preproc_elif_token1, - ACTIONS(4209), 1, + ACTIONS(4445), 1, aux_sym_preproc_if_token2, - STATE(1653), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(2136), 1, + STATE(1657), 2, sym_enumerator, - STATE(2157), 2, - sym_preproc_else_in_enumerator_list, - sym_preproc_elif_in_enumerator_list, - [64938] = 5, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + STATE(2242), 2, + sym_preproc_else_in_enumerator_list_no_comma, + sym_preproc_elif_in_enumerator_list_no_comma, + [67453] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4195), 1, - sym_identifier, - STATE(1568), 1, + ACTIONS(4318), 1, + anon_sym_LBRACK, + STATE(1862), 1, + sym_gnu_asm_input_operand, + STATE(2168), 1, sym_string_literal, - STATE(1793), 1, - sym_concatenated_string, - ACTIONS(97), 5, + ACTIONS(99), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [64958] = 5, + [67473] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4195), 1, + ACTIONS(39), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4081), 1, + anon_sym_LPAREN2, + ACTIONS(4109), 1, + anon_sym_LBRACK, + STATE(1422), 1, + sym_parameter_list, + ACTIONS(4447), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(1562), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [67497] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4421), 1, sym_identifier, - STATE(1567), 1, + STATE(1632), 1, sym_string_literal, - STATE(1758), 1, + STATE(1812), 1, sym_concatenated_string, - ACTIONS(97), 5, + ACTIONS(99), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [64978] = 7, + [67517] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4013), 1, - sym_identifier, - ACTIONS(4039), 1, - aux_sym_preproc_else_token1, - ACTIONS(4201), 1, - aux_sym_preproc_elif_token1, - ACTIONS(4211), 1, - aux_sym_preproc_if_token2, - STATE(1654), 2, - sym_enumerator, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(2163), 2, - sym_preproc_else_in_enumerator_list_no_comma, - sym_preproc_elif_in_enumerator_list_no_comma, - [65002] = 5, + ACTIONS(39), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(45), 1, + anon_sym_LBRACE, + ACTIONS(4081), 1, + anon_sym_LPAREN2, + ACTIONS(4109), 1, + anon_sym_LBRACK, + STATE(414), 1, + sym_compound_statement, + STATE(1422), 1, + sym_parameter_list, + STATE(1562), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [67543] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4115), 1, + ACTIONS(4291), 1, anon_sym_LBRACK, - STATE(1837), 1, - sym_gnu_asm_input_operand, - STATE(2185), 1, + STATE(1801), 1, + sym_gnu_asm_output_operand, + STATE(2053), 1, sym_string_literal, - ACTIONS(97), 5, + ACTIONS(99), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [65022] = 5, + [67563] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4099), 1, - anon_sym_LBRACK, - STATE(1854), 1, - sym_gnu_asm_output_operand, - STATE(2208), 1, + ACTIONS(4421), 1, + sym_identifier, + STATE(1631), 1, sym_string_literal, - ACTIONS(97), 5, + STATE(1788), 1, + sym_concatenated_string, + ACTIONS(99), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [65042] = 7, + [67583] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4013), 1, + ACTIONS(4421), 1, sym_identifier, - ACTIONS(4039), 1, - aux_sym_preproc_else_token1, - ACTIONS(4201), 1, - aux_sym_preproc_elif_token1, - ACTIONS(4213), 1, - aux_sym_preproc_if_token2, - STATE(1654), 2, - sym_enumerator, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(2179), 2, - sym_preproc_else_in_enumerator_list_no_comma, - sym_preproc_elif_in_enumerator_list_no_comma, - [65066] = 4, - ACTIONS(3), 1, - sym_comment, - STATE(1736), 1, + STATE(1630), 1, sym_string_literal, - ACTIONS(4215), 2, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(97), 5, + STATE(1802), 1, + sym_concatenated_string, + ACTIONS(99), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [65084] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(37), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(131), 1, - anon_sym_LBRACE, - ACTIONS(3902), 1, - anon_sym_LBRACK, - ACTIONS(3919), 1, - anon_sym_LPAREN2, - STATE(155), 1, - sym_compound_statement, - STATE(1464), 1, - sym_parameter_list, - STATE(1519), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [65110] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(37), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(504), 1, - anon_sym_LBRACE, - ACTIONS(3902), 1, - anon_sym_LBRACK, - ACTIONS(3919), 1, - anon_sym_LPAREN2, - STATE(370), 1, - sym_compound_statement, - STATE(1464), 1, - sym_parameter_list, - STATE(1519), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [65136] = 8, + [67603] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(37), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(656), 1, - anon_sym_LBRACE, - ACTIONS(3902), 1, - anon_sym_LBRACK, - ACTIONS(3919), 1, - anon_sym_LPAREN2, - STATE(389), 1, - sym_compound_statement, - STATE(1464), 1, - sym_parameter_list, - STATE(1519), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [65162] = 8, + ACTIONS(4241), 1, + sym_identifier, + ACTIONS(4271), 1, + aux_sym_preproc_else_token1, + ACTIONS(4425), 1, + aux_sym_preproc_elif_token1, + ACTIONS(4449), 1, + aux_sym_preproc_if_token2, + STATE(1645), 2, + sym_enumerator, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + STATE(2204), 2, + sym_preproc_else_in_enumerator_list_no_comma, + sym_preproc_elif_in_enumerator_list_no_comma, + [67627] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3967), 1, + ACTIONS(4241), 1, sym_identifier, - ACTIONS(4031), 1, + ACTIONS(4271), 1, aux_sym_preproc_else_token1, - ACTIONS(4197), 1, + ACTIONS(4425), 1, aux_sym_preproc_elif_token1, - ACTIONS(4217), 1, + ACTIONS(4451), 1, aux_sym_preproc_if_token2, - STATE(1653), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(2136), 1, + STATE(1681), 2, sym_enumerator, - STATE(2182), 2, - sym_preproc_else_in_enumerator_list, - sym_preproc_elif_in_enumerator_list, - [65188] = 8, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + STATE(2270), 2, + sym_preproc_else_in_enumerator_list_no_comma, + sym_preproc_elif_in_enumerator_list_no_comma, + [67651] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(37), 1, + ACTIONS(39), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(43), 1, + ACTIONS(205), 1, anon_sym_LBRACE, - ACTIONS(3902), 1, - anon_sym_LBRACK, - ACTIONS(3919), 1, + ACTIONS(4081), 1, anon_sym_LPAREN2, - STATE(444), 1, + ACTIONS(4109), 1, + anon_sym_LBRACK, + STATE(216), 1, sym_compound_statement, - STATE(1464), 1, + STATE(1422), 1, sym_parameter_list, - STATE(1519), 2, + STATE(1562), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [65214] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4221), 1, - aux_sym_preproc_elif_token1, - ACTIONS(4223), 1, - anon_sym_EQ, - ACTIONS(4219), 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, - [65232] = 6, + [67677] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4225), 1, + ACTIONS(4189), 1, sym_identifier, - ACTIONS(4230), 1, - aux_sym_preproc_elif_token1, - STATE(1609), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(2199), 1, - sym_enumerator, - ACTIONS(4228), 4, - aux_sym_preproc_if_token2, + ACTIONS(4249), 1, aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - [65254] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4232), 1, - sym_identifier, - ACTIONS(4237), 1, - aux_sym_preproc_elif_token1, - STATE(1610), 2, - sym_enumerator, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - ACTIONS(4235), 4, + ACTIONS(4279), 1, aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - [65274] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4013), 1, - sym_identifier, - ACTIONS(4039), 1, - aux_sym_preproc_else_token1, - ACTIONS(4201), 1, + ACTIONS(4417), 1, aux_sym_preproc_elif_token1, - ACTIONS(4239), 1, - aux_sym_preproc_if_token2, - STATE(1598), 2, + STATE(1660), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(2137), 1, sym_enumerator, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(2177), 2, - sym_preproc_else_in_enumerator_list_no_comma, - sym_preproc_elif_in_enumerator_list_no_comma, - [65298] = 8, + STATE(2241), 2, + sym_preproc_else_in_enumerator_list, + sym_preproc_elif_in_enumerator_list, + [67703] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3967), 1, + ACTIONS(4189), 1, sym_identifier, - ACTIONS(4031), 1, + ACTIONS(4249), 1, aux_sym_preproc_else_token1, - ACTIONS(4197), 1, + ACTIONS(4417), 1, aux_sym_preproc_elif_token1, - ACTIONS(4241), 1, + ACTIONS(4453), 1, aux_sym_preproc_if_token2, - STATE(1606), 1, + STATE(1687), 1, aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(2136), 1, + STATE(2137), 1, sym_enumerator, - STATE(2204), 2, + STATE(2271), 2, sym_preproc_else_in_enumerator_list, - sym_preproc_elif_in_enumerator_list, - [65324] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(37), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3919), 1, - anon_sym_LPAREN2, - ACTIONS(3957), 1, - anon_sym_LBRACK, - ACTIONS(4243), 1, - anon_sym_RPAREN, - STATE(1556), 1, - sym_parameter_list, - STATE(1525), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [65347] = 5, + sym_preproc_elif_in_enumerator_list, + [67729] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2076), 1, - anon_sym_LBRACK, - ACTIONS(4245), 1, - anon_sym_EQ, - ACTIONS(4247), 1, - anon_sym_DOT, - STATE(1615), 4, - sym_subscript_designator, - sym_subscript_range_designator, - sym_field_designator, - aux_sym_initializer_pair_repeat1, - [65366] = 5, + STATE(1758), 1, + sym_string_literal, + ACTIONS(4455), 2, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(99), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [67747] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4249), 1, - anon_sym_LBRACK, - ACTIONS(4252), 1, + ACTIONS(4459), 1, + aux_sym_preproc_elif_token1, + ACTIONS(4461), 1, anon_sym_EQ, - ACTIONS(4254), 1, - anon_sym_DOT, - STATE(1615), 4, - sym_subscript_designator, - sym_subscript_range_designator, - sym_field_designator, - aux_sym_initializer_pair_repeat1, - [65385] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4259), 1, + ACTIONS(4457), 6, anon_sym_COMMA, - ACTIONS(4261), 1, - aux_sym_preproc_elif_token1, - ACTIONS(4257), 5, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, sym_identifier, - [65402] = 7, + [67765] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(37), 1, + ACTIONS(39), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3919), 1, + ACTIONS(4081), 1, anon_sym_LPAREN2, - ACTIONS(3993), 1, + ACTIONS(4109), 1, anon_sym_LBRACK, - ACTIONS(4263), 1, + ACTIONS(4463), 1, anon_sym_RPAREN, - STATE(1576), 1, + STATE(1422), 1, sym_parameter_list, - STATE(1531), 2, + STATE(1562), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [65425] = 7, + [67788] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(37), 1, + ACTIONS(39), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3902), 1, - anon_sym_LBRACK, - ACTIONS(3919), 1, + ACTIONS(4081), 1, anon_sym_LPAREN2, - ACTIONS(4265), 1, + ACTIONS(4085), 1, + anon_sym_LBRACK, + ACTIONS(4465), 1, anon_sym_RPAREN, - STATE(1464), 1, + STATE(1521), 1, sym_parameter_list, - STATE(1519), 2, + STATE(1502), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [65448] = 5, + [67811] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3919), 1, - anon_sym_LPAREN2, - ACTIONS(4269), 1, + ACTIONS(4467), 1, anon_sym_LBRACK, - STATE(1675), 1, - sym_parameter_list, - ACTIONS(4267), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [65466] = 4, + ACTIONS(4470), 1, + anon_sym_EQ, + ACTIONS(4472), 1, + anon_sym_DOT, + STATE(1665), 4, + sym_subscript_designator, + sym_subscript_range_designator, + sym_field_designator, + aux_sym_initializer_pair_repeat1, + [67830] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4271), 1, - anon_sym_LPAREN2, - STATE(1642), 2, - sym_gnu_asm_qualifier, - aux_sym_gnu_asm_expression_repeat1, - ACTIONS(4273), 3, - anon_sym_inline, - anon_sym_volatile, - anon_sym_goto, - [65482] = 5, + ACTIONS(2194), 1, + anon_sym_LBRACK, + ACTIONS(4475), 1, + anon_sym_EQ, + ACTIONS(4477), 1, + anon_sym_DOT, + STATE(1665), 4, + sym_subscript_designator, + sym_subscript_range_designator, + sym_field_designator, + aux_sym_initializer_pair_repeat1, + [67849] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3919), 1, + ACTIONS(39), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4081), 1, anon_sym_LPAREN2, - ACTIONS(4269), 1, + ACTIONS(4115), 1, anon_sym_LBRACK, - STATE(1675), 1, - sym_parameter_list, - ACTIONS(4275), 3, - anon_sym_COMMA, + ACTIONS(4479), 1, anon_sym_RPAREN, - anon_sym_COLON, - [65500] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3843), 1, - anon_sym___attribute__, - ACTIONS(4277), 1, - anon_sym_SEMI, - ACTIONS(3845), 2, - anon_sym___scanf, - anon_sym___printf, - STATE(1631), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [65518] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3843), 1, - anon_sym___attribute__, - ACTIONS(4279), 1, - anon_sym_SEMI, - ACTIONS(3845), 2, - anon_sym___scanf, - anon_sym___printf, - STATE(1626), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [65536] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3843), 1, - anon_sym___attribute__, - ACTIONS(4281), 1, - anon_sym_SEMI, - ACTIONS(3845), 2, - anon_sym___scanf, - anon_sym___printf, - STATE(1480), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [65554] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3843), 1, - anon_sym___attribute__, - ACTIONS(4283), 1, - anon_sym_SEMI, - ACTIONS(3845), 2, - anon_sym___scanf, - anon_sym___printf, - STATE(1480), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [65572] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3843), 1, - anon_sym___attribute__, - ACTIONS(4285), 1, - anon_sym_SEMI, - ACTIONS(3845), 2, - anon_sym___scanf, - anon_sym___printf, - STATE(1480), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [65590] = 3, + STATE(1559), 1, + sym_parameter_list, + STATE(1516), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [67872] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4287), 1, - anon_sym_EQ, - ACTIONS(4219), 5, + ACTIONS(4483), 1, anon_sym_COMMA, + ACTIONS(4485), 1, + aux_sym_preproc_elif_token1, + ACTIONS(4481), 5, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, sym_identifier, - [65604] = 4, + [67889] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4289), 1, + ACTIONS(4487), 1, anon_sym_LPAREN2, - STATE(1620), 2, + STATE(1669), 2, sym_gnu_asm_qualifier, aux_sym_gnu_asm_expression_repeat1, - ACTIONS(4273), 3, + ACTIONS(4489), 3, anon_sym_inline, anon_sym_volatile, anon_sym_goto, - [65620] = 3, + [67905] = 3, + ACTIONS(3), 1, + sym_comment, + STATE(1784), 1, + sym_string_literal, + ACTIONS(99), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [67919] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4291), 2, + ACTIONS(4492), 2, anon_sym_RBRACE, sym_identifier, - ACTIONS(4293), 4, + ACTIONS(4494), 4, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, - [65634] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3843), 1, - anon_sym___attribute__, - ACTIONS(4295), 1, - anon_sym_SEMI, - ACTIONS(3845), 2, - anon_sym___scanf, - anon_sym___printf, - STATE(1672), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [65652] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3843), 1, - anon_sym___attribute__, - ACTIONS(4297), 1, - anon_sym_SEMI, - ACTIONS(3845), 2, - anon_sym___scanf, - anon_sym___printf, - STATE(1480), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [65670] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3843), 1, - anon_sym___attribute__, - ACTIONS(4299), 1, - anon_sym_SEMI, - ACTIONS(3845), 2, - anon_sym___scanf, - anon_sym___printf, - STATE(1480), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [65688] = 4, + [67933] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4301), 1, + ACTIONS(4496), 1, anon_sym_LPAREN2, - STATE(1642), 2, + STATE(1696), 2, sym_gnu_asm_qualifier, aux_sym_gnu_asm_expression_repeat1, - ACTIONS(4273), 3, + ACTIONS(4498), 3, anon_sym_inline, anon_sym_volatile, anon_sym_goto, - [65704] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3843), 1, - anon_sym___attribute__, - ACTIONS(4303), 1, - anon_sym_SEMI, - ACTIONS(3845), 2, - anon_sym___scanf, - anon_sym___printf, - STATE(1480), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [65722] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3843), 1, - anon_sym___attribute__, - ACTIONS(4305), 1, - anon_sym_SEMI, - ACTIONS(3845), 2, - anon_sym___scanf, - anon_sym___printf, - STATE(1632), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [65740] = 5, + [67949] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3843), 1, - anon_sym___attribute__, - ACTIONS(4307), 1, - anon_sym_SEMI, - ACTIONS(3845), 2, - anon_sym___scanf, - anon_sym___printf, - STATE(1625), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [65758] = 3, + ACTIONS(4500), 1, + anon_sym_LPAREN2, + STATE(1698), 2, + sym_gnu_asm_qualifier, + aux_sym_gnu_asm_expression_repeat1, + ACTIONS(4498), 3, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, + [67965] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4309), 2, + ACTIONS(4502), 2, anon_sym_RBRACE, sym_identifier, - ACTIONS(4311), 4, + ACTIONS(4504), 4, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, - [65772] = 5, + [67979] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3843), 1, - anon_sym___attribute__, - ACTIONS(4313), 1, - anon_sym_SEMI, - ACTIONS(3845), 2, - anon_sym___scanf, - anon_sym___printf, - STATE(1480), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [65790] = 3, + ACTIONS(4502), 2, + anon_sym_RBRACE, + sym_identifier, + ACTIONS(4504), 4, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + [67993] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4315), 2, + ACTIONS(4506), 2, anon_sym_RBRACE, sym_identifier, - ACTIONS(4317), 4, + ACTIONS(4508), 4, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, - [65804] = 3, + [68007] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4230), 1, + ACTIONS(4443), 1, aux_sym_preproc_elif_token1, - ACTIONS(4228), 5, + ACTIONS(4441), 5, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, sym_identifier, - [65818] = 5, + [68021] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3919), 1, + ACTIONS(4081), 1, anon_sym_LPAREN2, - ACTIONS(4269), 1, + ACTIONS(4512), 1, anon_sym_LBRACK, - STATE(1675), 1, + STATE(1723), 1, sym_parameter_list, - ACTIONS(4319), 3, + ACTIONS(4510), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - [65836] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4321), 1, - anon_sym_LPAREN2, - STATE(1642), 2, - sym_gnu_asm_qualifier, - aux_sym_gnu_asm_expression_repeat1, - ACTIONS(4323), 3, - anon_sym_inline, - anon_sym_volatile, - anon_sym_goto, - [65852] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3843), 1, - anon_sym___attribute__, - ACTIONS(4326), 1, - anon_sym_SEMI, - ACTIONS(3845), 2, - anon_sym___scanf, - anon_sym___printf, - STATE(1634), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [65870] = 3, - ACTIONS(3), 1, - sym_comment, - STATE(610), 1, - sym_string_literal, - ACTIONS(97), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [65884] = 3, + [68039] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4328), 2, + ACTIONS(4514), 2, anon_sym_RBRACE, sym_identifier, - ACTIONS(4330), 4, + ACTIONS(4516), 4, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, - [65898] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3953), 1, - anon_sym_COMMA, - STATE(1647), 1, - aux_sym__field_declaration_declarator_repeat1, - ACTIONS(4332), 4, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, - [65914] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4334), 1, - anon_sym_COMMA, - STATE(1647), 1, - aux_sym__field_declaration_declarator_repeat1, - ACTIONS(4337), 4, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, - [65930] = 3, + [68053] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4339), 2, + ACTIONS(4518), 2, anon_sym_RBRACE, sym_identifier, - ACTIONS(4341), 4, + ACTIONS(4520), 4, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, - [65944] = 4, + [68067] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3989), 1, - anon_sym_COMMA, - STATE(1651), 1, - aux_sym__type_definition_declarators_repeat1, - ACTIONS(4343), 4, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, - [65960] = 3, + ACTIONS(4522), 1, + sym_identifier, + STATE(1681), 2, + sym_enumerator, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + ACTIONS(4430), 3, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + [68083] = 3, ACTIONS(3), 1, sym_comment, - STATE(1762), 1, + STATE(2264), 1, sym_string_literal, - ACTIONS(97), 5, + ACTIONS(99), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [65974] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4345), 1, - anon_sym_COMMA, - STATE(1651), 1, - aux_sym__type_definition_declarators_repeat1, - ACTIONS(4348), 4, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, - [65990] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3843), 1, - anon_sym___attribute__, - ACTIONS(4350), 1, - anon_sym_SEMI, - ACTIONS(3845), 2, - anon_sym___scanf, - anon_sym___printf, - STATE(1624), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [66008] = 5, + [68097] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4225), 1, - sym_identifier, - STATE(1653), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(2136), 1, - sym_enumerator, - ACTIONS(4228), 3, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - [66026] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4352), 1, - sym_identifier, - STATE(1654), 2, - sym_enumerator, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - ACTIONS(4235), 3, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - [66042] = 5, + STATE(2299), 1, + sym_string_literal, + ACTIONS(99), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [68111] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3919), 1, + ACTIONS(4081), 1, anon_sym_LPAREN2, - ACTIONS(4269), 1, + ACTIONS(4512), 1, anon_sym_LBRACK, - STATE(1675), 1, + STATE(1723), 1, sym_parameter_list, - ACTIONS(4355), 3, + ACTIONS(4525), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - [66060] = 3, - ACTIONS(3), 1, - sym_comment, - STATE(2151), 1, - sym_string_literal, - ACTIONS(97), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [66074] = 3, + [68129] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4309), 2, + ACTIONS(4527), 2, anon_sym_RBRACE, sym_identifier, - ACTIONS(4311), 4, + ACTIONS(4529), 4, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, - [66088] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4357), 1, - anon_sym_LPAREN2, - STATE(1633), 2, - sym_gnu_asm_qualifier, - aux_sym_gnu_asm_expression_repeat1, - ACTIONS(4273), 3, - anon_sym_inline, - anon_sym_volatile, - anon_sym_goto, - [66104] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3843), 1, - anon_sym___attribute__, - ACTIONS(4359), 1, - anon_sym_SEMI, - ACTIONS(3845), 2, - anon_sym___scanf, - anon_sym___printf, - STATE(1666), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [66122] = 5, + [68143] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3919), 1, + ACTIONS(4081), 1, anon_sym_LPAREN2, - ACTIONS(4269), 1, + ACTIONS(4512), 1, anon_sym_LBRACK, - STATE(1675), 1, + STATE(1723), 1, sym_parameter_list, - ACTIONS(4361), 3, + ACTIONS(4531), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - [66140] = 5, + [68161] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3843), 1, - anon_sym___attribute__, - ACTIONS(4363), 1, - anon_sym_SEMI, - ACTIONS(3845), 2, - anon_sym___scanf, - anon_sym___printf, - STATE(1638), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [66158] = 4, + ACTIONS(4438), 1, + sym_identifier, + STATE(1687), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(2137), 1, + sym_enumerator, + ACTIONS(4441), 3, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + [68179] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3953), 1, + ACTIONS(4533), 1, + anon_sym_EQ, + ACTIONS(4457), 5, anon_sym_COMMA, - STATE(1647), 1, - aux_sym__field_declaration_declarator_repeat1, - ACTIONS(4365), 4, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, - [66174] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4367), 2, - anon_sym_RBRACE, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, sym_identifier, - ACTIONS(4369), 4, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - [66188] = 3, + [68193] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4371), 2, + ACTIONS(4267), 2, anon_sym_RBRACE, sym_identifier, - ACTIONS(4373), 4, + ACTIONS(4535), 4, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, - [66202] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3843), 1, - anon_sym___attribute__, - ACTIONS(4375), 1, - anon_sym_SEMI, - ACTIONS(3845), 2, - anon_sym___scanf, - anon_sym___printf, - STATE(1674), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [66220] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3843), 1, - anon_sym___attribute__, - ACTIONS(4377), 1, - anon_sym_SEMI, - ACTIONS(3845), 2, - anon_sym___scanf, - anon_sym___printf, - STATE(1480), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [66238] = 4, + [68207] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3953), 1, + ACTIONS(4081), 1, + anon_sym_LPAREN2, + ACTIONS(4512), 1, + anon_sym_LBRACK, + STATE(1723), 1, + sym_parameter_list, + ACTIONS(4537), 3, anon_sym_COMMA, - STATE(1646), 1, - aux_sym__field_declaration_declarator_repeat1, - ACTIONS(4379), 4, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, - [66254] = 3, + anon_sym_RPAREN, + anon_sym_COLON, + [68225] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4057), 2, + ACTIONS(4492), 2, anon_sym_RBRACE, sym_identifier, - ACTIONS(4381), 4, + ACTIONS(4494), 4, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, - [66268] = 3, + [68239] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4383), 2, + ACTIONS(4539), 2, anon_sym_RBRACE, sym_identifier, - ACTIONS(4385), 4, + ACTIONS(4541), 4, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, - [66282] = 3, - ACTIONS(3), 1, - sym_comment, - STATE(2159), 1, - sym_string_literal, - ACTIONS(97), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [66296] = 5, + [68253] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3919), 1, + ACTIONS(4081), 1, anon_sym_LPAREN2, - ACTIONS(4269), 1, + ACTIONS(4512), 1, anon_sym_LBRACK, - STATE(1675), 1, + STATE(1723), 1, sym_parameter_list, - ACTIONS(4387), 3, + ACTIONS(4543), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - [66314] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3843), 1, - anon_sym___attribute__, - ACTIONS(4389), 1, - anon_sym_SEMI, - ACTIONS(3845), 2, - anon_sym___scanf, - anon_sym___printf, - STATE(1480), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [66332] = 3, + [68271] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4291), 2, + ACTIONS(4545), 2, anon_sym_RBRACE, sym_identifier, - ACTIONS(4293), 4, + ACTIONS(4547), 4, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, - [66346] = 5, + [68285] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3843), 1, - anon_sym___attribute__, - ACTIONS(4391), 1, - anon_sym_SEMI, - ACTIONS(3845), 2, - anon_sym___scanf, - anon_sym___printf, - STATE(1480), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [66364] = 2, + ACTIONS(4081), 1, + anon_sym_LPAREN2, + ACTIONS(4512), 1, + anon_sym_LBRACK, + STATE(1723), 1, + sym_parameter_list, + ACTIONS(4549), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + [68303] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4551), 1, + anon_sym_LPAREN2, + STATE(1669), 2, + sym_gnu_asm_qualifier, + aux_sym_gnu_asm_expression_repeat1, + ACTIONS(4498), 3, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, + [68319] = 3, + ACTIONS(3), 1, + sym_comment, + STATE(567), 1, + sym_string_literal, + ACTIONS(99), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [68333] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4553), 1, + anon_sym_LPAREN2, + STATE(1669), 2, + sym_gnu_asm_qualifier, + aux_sym_gnu_asm_expression_repeat1, + ACTIONS(4498), 3, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, + [68349] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4393), 5, + ACTIONS(4555), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [66375] = 2, + [68360] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4395), 5, + ACTIONS(4557), 5, anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym___scanf, - anon_sym___printf, - [66386] = 6, - ACTIONS(3630), 1, - sym_comment, - ACTIONS(4397), 1, - aux_sym_preproc_include_token2, - ACTIONS(4399), 1, - anon_sym_LPAREN, - ACTIONS(4401), 1, - aux_sym_preproc_arg_token1, - STATE(1850), 1, - sym_preproc_params, - STATE(2084), 1, - sym_preproc_arg, - [66405] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3843), 1, - anon_sym___attribute__, - ACTIONS(4403), 1, - anon_sym_SEMI, - STATE(1988), 1, - sym_attribute_specifier, - ACTIONS(3845), 2, - anon_sym___scanf, - anon_sym___printf, - [66422] = 2, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK, + anon_sym_COLON, + [68371] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4405), 5, + ACTIONS(4559), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [66433] = 5, - ACTIONS(3), 1, + [68382] = 6, + ACTIONS(3798), 1, sym_comment, - ACTIONS(3843), 1, - anon_sym___attribute__, - ACTIONS(4407), 1, - anon_sym_SEMI, - STATE(2216), 1, - sym_attribute_specifier, - ACTIONS(3845), 2, - anon_sym___scanf, - anon_sym___printf, - [66450] = 2, + ACTIONS(4561), 1, + aux_sym_preproc_include_token2, + ACTIONS(4563), 1, + anon_sym_LPAREN, + ACTIONS(4565), 1, + aux_sym_preproc_arg_token1, + STATE(1839), 1, + sym_preproc_params, + STATE(2063), 1, + sym_preproc_arg, + [68401] = 6, + ACTIONS(3798), 1, + sym_comment, + ACTIONS(4563), 1, + anon_sym_LPAREN, + ACTIONS(4565), 1, + aux_sym_preproc_arg_token1, + ACTIONS(4567), 1, + aux_sym_preproc_include_token2, + STATE(1776), 1, + sym_preproc_params, + STATE(1996), 1, + sym_preproc_arg, + [68420] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4409), 5, + ACTIONS(4569), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [66461] = 6, - ACTIONS(3630), 1, + [68431] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4571), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK, + anon_sym_COLON, + [68442] = 6, + ACTIONS(3798), 1, sym_comment, - ACTIONS(4399), 1, + ACTIONS(4563), 1, anon_sym_LPAREN, - ACTIONS(4401), 1, + ACTIONS(4565), 1, aux_sym_preproc_arg_token1, - ACTIONS(4411), 1, + ACTIONS(4573), 1, aux_sym_preproc_include_token2, - STATE(1821), 1, + STATE(1814), 1, sym_preproc_params, - STATE(1971), 1, + STATE(2201), 1, sym_preproc_arg, - [66480] = 6, - ACTIONS(3), 1, + [68461] = 6, + ACTIONS(3798), 1, sym_comment, - ACTIONS(39), 1, - anon_sym___declspec, - ACTIONS(2845), 1, - anon_sym_LBRACE, - ACTIONS(4413), 1, - sym_identifier, - STATE(1030), 1, - sym_field_declaration_list, - STATE(1851), 1, - sym_ms_declspec_modifier, - [66499] = 6, - ACTIONS(3630), 1, - sym_comment, - ACTIONS(4399), 1, + ACTIONS(4563), 1, anon_sym_LPAREN, - ACTIONS(4401), 1, + ACTIONS(4565), 1, aux_sym_preproc_arg_token1, - ACTIONS(4415), 1, + ACTIONS(4575), 1, aux_sym_preproc_include_token2, - STATE(1753), 1, + STATE(1807), 1, sym_preproc_params, - STATE(1961), 1, + STATE(2216), 1, sym_preproc_arg, - [66518] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3843), 1, - anon_sym___attribute__, - ACTIONS(4417), 1, - anon_sym_SEMI, - STATE(2019), 1, - sym_attribute_specifier, - ACTIONS(3845), 2, - anon_sym___scanf, - anon_sym___printf, - [66535] = 6, - ACTIONS(3630), 1, + [68480] = 6, + ACTIONS(3798), 1, sym_comment, - ACTIONS(4399), 1, + ACTIONS(4563), 1, anon_sym_LPAREN, - ACTIONS(4401), 1, + ACTIONS(4565), 1, aux_sym_preproc_arg_token1, - ACTIONS(4419), 1, + ACTIONS(4577), 1, aux_sym_preproc_include_token2, - STATE(1757), 1, + STATE(1791), 1, sym_preproc_params, - STATE(1957), 1, + STATE(2006), 1, sym_preproc_arg, - [66554] = 6, - ACTIONS(3630), 1, + [68499] = 6, + ACTIONS(3798), 1, sym_comment, - ACTIONS(4399), 1, + ACTIONS(4563), 1, anon_sym_LPAREN, - ACTIONS(4401), 1, + ACTIONS(4565), 1, aux_sym_preproc_arg_token1, - ACTIONS(4421), 1, + ACTIONS(4579), 1, aux_sym_preproc_include_token2, - STATE(1765), 1, + STATE(1799), 1, sym_preproc_params, - STATE(1952), 1, + STATE(2013), 1, sym_preproc_arg, - [66573] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2548), 1, - anon_sym_LPAREN2, - ACTIONS(4425), 1, - anon_sym_COLON_COLON, - STATE(1877), 1, - sym_argument_list, - ACTIONS(4423), 2, - anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [66590] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4427), 1, - anon_sym_COMMA, - ACTIONS(4257), 4, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_identifier, - [66603] = 2, + [68518] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4429), 5, + ACTIONS(4581), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [66614] = 2, + [68529] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4431), 5, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(4081), 1, anon_sym_LPAREN2, + ACTIONS(4512), 1, anon_sym_LBRACK, - anon_sym_COLON, - [66625] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4433), 5, + STATE(1723), 1, + sym_parameter_list, + ACTIONS(4447), 2, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_LBRACK, - anon_sym_COLON, - [66636] = 6, + [68546] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 1, + ACTIONS(41), 1, anon_sym___declspec, - ACTIONS(2845), 1, + ACTIONS(2799), 1, anon_sym_LBRACE, - ACTIONS(4435), 1, + ACTIONS(4583), 1, sym_identifier, - STATE(1059), 1, + STATE(978), 1, sym_field_declaration_list, - STATE(1750), 1, + STATE(1821), 1, sym_ms_declspec_modifier, - [66655] = 6, - ACTIONS(3630), 1, - sym_comment, - ACTIONS(4399), 1, - anon_sym_LPAREN, - ACTIONS(4401), 1, - aux_sym_preproc_arg_token1, - ACTIONS(4437), 1, - aux_sym_preproc_include_token2, - STATE(1801), 1, - sym_preproc_params, - STATE(1964), 1, - sym_preproc_arg, - [66674] = 2, + [68565] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4439), 5, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2562), 1, anon_sym_LPAREN2, - anon_sym_LBRACK, - anon_sym_COLON, - [66685] = 2, + ACTIONS(4587), 1, + anon_sym_COLON_COLON, + STATE(1918), 1, + sym_argument_list, + ACTIONS(4585), 2, + anon_sym_COMMA, + anon_sym_RBRACK_RBRACK, + [68582] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4441), 5, + ACTIONS(41), 1, + anon_sym___declspec, + ACTIONS(2799), 1, + anon_sym_LBRACE, + ACTIONS(4589), 1, + sym_identifier, + STATE(938), 1, + sym_field_declaration_list, + STATE(1854), 1, + sym_ms_declspec_modifier, + [68601] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4591), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [66696] = 2, + [68612] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4443), 5, + ACTIONS(4593), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [66707] = 2, + [68623] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4445), 5, + ACTIONS(4595), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [66718] = 6, - ACTIONS(3630), 1, + [68634] = 6, + ACTIONS(3798), 1, sym_comment, - ACTIONS(4399), 1, + ACTIONS(4563), 1, anon_sym_LPAREN, - ACTIONS(4401), 1, + ACTIONS(4565), 1, aux_sym_preproc_arg_token1, - ACTIONS(4447), 1, + ACTIONS(4597), 1, aux_sym_preproc_include_token2, - STATE(1785), 1, + STATE(1808), 1, sym_preproc_params, - STATE(2033), 1, + STATE(1978), 1, sym_preproc_arg, - [66737] = 6, + [68653] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3925), 1, + ACTIONS(4133), 1, sym_identifier, - ACTIONS(4449), 1, + ACTIONS(4599), 1, aux_sym_preproc_if_token2, - STATE(1616), 1, + STATE(1668), 1, sym_enumerator, - STATE(1725), 1, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(1727), 1, + STATE(1735), 1, aux_sym_preproc_if_in_enumerator_list_repeat1, - [66756] = 2, + STATE(1736), 1, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + [68672] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4451), 5, + ACTIONS(4601), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_LBRACK, - anon_sym_COLON, - [66767] = 6, - ACTIONS(3630), 1, + ACTIONS(4481), 4, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_identifier, + [68685] = 6, + ACTIONS(3798), 1, sym_comment, - ACTIONS(4399), 1, + ACTIONS(4563), 1, anon_sym_LPAREN, - ACTIONS(4401), 1, + ACTIONS(4565), 1, aux_sym_preproc_arg_token1, - ACTIONS(4453), 1, + ACTIONS(4603), 1, aux_sym_preproc_include_token2, - STATE(1816), 1, + STATE(1786), 1, sym_preproc_params, - STATE(2004), 1, + STATE(2001), 1, sym_preproc_arg, - [66786] = 6, - ACTIONS(3630), 1, + [68704] = 6, + ACTIONS(3798), 1, sym_comment, - ACTIONS(4399), 1, + ACTIONS(4563), 1, anon_sym_LPAREN, - ACTIONS(4401), 1, + ACTIONS(4565), 1, aux_sym_preproc_arg_token1, - ACTIONS(4455), 1, + ACTIONS(4605), 1, aux_sym_preproc_include_token2, - STATE(1800), 1, + STATE(1865), 1, sym_preproc_params, - STATE(2122), 1, + STATE(2095), 1, sym_preproc_arg, - [66805] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3843), 1, - anon_sym___attribute__, - ACTIONS(4457), 1, - anon_sym_SEMI, - STATE(2064), 1, - sym_attribute_specifier, - ACTIONS(3845), 2, - anon_sym___scanf, - anon_sym___printf, - [66822] = 5, + [68723] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3919), 1, - anon_sym_LPAREN2, - ACTIONS(4269), 1, - anon_sym_LBRACK, - STATE(1675), 1, - sym_parameter_list, - ACTIONS(4207), 2, + ACTIONS(4607), 5, anon_sym_COMMA, anon_sym_RPAREN, - [66839] = 2, + anon_sym_LPAREN2, + anon_sym_LBRACK, + anon_sym_COLON, + [68734] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4459), 5, + ACTIONS(4609), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [66850] = 4, + [68745] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4461), 1, + ACTIONS(4611), 5, anon_sym_COMMA, - STATE(1714), 1, - aux_sym_gnu_asm_output_operand_list_repeat1, - ACTIONS(4463), 2, anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK, anon_sym_COLON, - [66864] = 5, - ACTIONS(3630), 1, + [68756] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(4465), 1, - anon_sym_DQUOTE, - ACTIONS(4467), 1, - aux_sym_string_literal_token1, - ACTIONS(4469), 1, - sym_escape_sequence, - STATE(1726), 1, - aux_sym_string_literal_repeat1, - [66880] = 4, - ACTIONS(3630), 1, + ACTIONS(4613), 1, + anon_sym___except, + ACTIONS(4615), 1, + anon_sym___finally, + STATE(344), 2, + sym_seh_except_clause, + sym_seh_finally_clause, + [68770] = 4, + ACTIONS(3798), 1, sym_comment, - ACTIONS(4471), 1, + ACTIONS(4617), 1, anon_sym_SQUOTE, - STATE(1724), 1, + STATE(1750), 1, aux_sym_char_literal_repeat1, - ACTIONS(4473), 2, + ACTIONS(4619), 2, aux_sym_char_literal_token1, sym_escape_sequence, - [66894] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4475), 1, - anon_sym_COMMA, - STATE(1738), 1, - aux_sym_gnu_asm_input_operand_list_repeat1, - ACTIONS(4477), 2, - anon_sym_RPAREN, - anon_sym_COLON, - [66908] = 2, + [68784] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4228), 4, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_identifier, - [66918] = 4, + ACTIONS(4621), 1, + anon_sym___except, + ACTIONS(4623), 1, + anon_sym___finally, + STATE(350), 2, + sym_seh_except_clause, + sym_seh_finally_clause, + [68798] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4479), 1, + ACTIONS(4625), 1, anon_sym_COMMA, - STATE(1733), 1, - aux_sym_gnu_asm_clobber_list_repeat1, - ACTIONS(4481), 2, + ACTIONS(4627), 1, anon_sym_RPAREN, - anon_sym_COLON, - [66932] = 4, + STATE(1770), 1, + aux_sym_parameter_list_repeat1, + STATE(1833), 1, + aux_sym__old_style_parameter_list_repeat1, + [68814] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4461), 1, + ACTIONS(4629), 1, anon_sym_COMMA, - STATE(1707), 1, + STATE(1753), 1, aux_sym_gnu_asm_output_operand_list_repeat1, - ACTIONS(4483), 2, + ACTIONS(4631), 2, anon_sym_RPAREN, anon_sym_COLON, - [66946] = 4, + [68828] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4485), 1, + ACTIONS(4633), 1, + anon_sym___except, + ACTIONS(4635), 1, + anon_sym___finally, + STATE(296), 2, + sym_seh_except_clause, + sym_seh_finally_clause, + [68842] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4637), 1, + anon_sym___except, + ACTIONS(4639), 1, + anon_sym___finally, + STATE(296), 2, + sym_seh_except_clause, + sym_seh_finally_clause, + [68856] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4641), 1, + anon_sym___except, + ACTIONS(4643), 1, + anon_sym___finally, + STATE(174), 2, + sym_seh_except_clause, + sym_seh_finally_clause, + [68870] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2562), 1, + anon_sym_LPAREN2, + STATE(1977), 1, + sym_argument_list, + ACTIONS(4645), 2, anon_sym_COMMA, - STATE(1714), 1, - aux_sym_gnu_asm_output_operand_list_repeat1, - ACTIONS(4488), 2, - anon_sym_RPAREN, - anon_sym_COLON, - [66960] = 4, + anon_sym_RBRACK_RBRACK, + [68884] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3925), 1, + ACTIONS(4189), 1, sym_identifier, - ACTIONS(4490), 1, + ACTIONS(4647), 1, aux_sym_preproc_if_token2, - STATE(1725), 2, + STATE(1647), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(2101), 1, sym_enumerator, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - [66974] = 2, + [68900] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4492), 4, - anon_sym_LPAREN2, - anon_sym_inline, - anon_sym_volatile, - anon_sym_goto, - [66984] = 5, + ACTIONS(4133), 1, + sym_identifier, + ACTIONS(4649), 1, + aux_sym_preproc_if_token2, + STATE(1643), 2, + sym_enumerator, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + [68914] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3967), 1, + ACTIONS(4189), 1, sym_identifier, - ACTIONS(4449), 1, + ACTIONS(4599), 1, aux_sym_preproc_if_token2, - STATE(1727), 1, + STATE(1735), 1, aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(2199), 1, + STATE(2101), 1, sym_enumerator, - [67000] = 5, - ACTIONS(3630), 1, + [68930] = 5, + ACTIONS(3798), 1, sym_comment, - ACTIONS(4494), 1, + ACTIONS(4651), 1, anon_sym_DQUOTE, - ACTIONS(4496), 1, + ACTIONS(4653), 1, aux_sym_string_literal_token1, - ACTIONS(4498), 1, + ACTIONS(4655), 1, sym_escape_sequence, - STATE(1732), 1, + STATE(1759), 1, aux_sym_string_literal_repeat1, - [67016] = 4, - ACTIONS(3630), 1, + [68946] = 4, + ACTIONS(3798), 1, sym_comment, - ACTIONS(4500), 1, + ACTIONS(4657), 1, anon_sym_SQUOTE, - STATE(1724), 1, + STATE(1750), 1, aux_sym_char_literal_repeat1, - ACTIONS(4473), 2, + ACTIONS(4619), 2, aux_sym_char_literal_token1, sym_escape_sequence, - [67030] = 5, - ACTIONS(3630), 1, + [68960] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(4502), 1, - anon_sym_DQUOTE, - ACTIONS(4504), 1, - aux_sym_string_literal_token1, - ACTIONS(4506), 1, - sym_escape_sequence, - STATE(1728), 1, - aux_sym_string_literal_repeat1, - [67046] = 4, + ACTIONS(4133), 1, + sym_identifier, + ACTIONS(4659), 1, + aux_sym_preproc_if_token2, + STATE(1736), 2, + sym_enumerator, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + [68974] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4508), 1, + ACTIONS(4661), 1, anon_sym_COMMA, - STATE(1721), 1, + STATE(1741), 1, aux_sym_gnu_asm_input_operand_list_repeat1, - ACTIONS(4511), 2, + ACTIONS(4664), 2, anon_sym_RPAREN, anon_sym_COLON, - [67060] = 4, - ACTIONS(3), 1, + [68988] = 5, + ACTIONS(3798), 1, sym_comment, - ACTIONS(4513), 1, - anon_sym___except, - ACTIONS(4515), 1, - anon_sym___finally, - STATE(267), 2, - sym_seh_except_clause, - sym_seh_finally_clause, - [67074] = 5, + ACTIONS(4653), 1, + aux_sym_string_literal_token1, + ACTIONS(4655), 1, + sym_escape_sequence, + ACTIONS(4666), 1, + anon_sym_DQUOTE, + STATE(1759), 1, + aux_sym_string_literal_repeat1, + [69004] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3919), 1, - anon_sym_LPAREN2, - ACTIONS(4269), 1, - anon_sym_LBRACK, - ACTIONS(4517), 1, + ACTIONS(4668), 1, + anon_sym_COMMA, + STATE(1756), 1, + aux_sym_gnu_asm_clobber_list_repeat1, + ACTIONS(4670), 2, anon_sym_RPAREN, - STATE(1675), 1, - sym_parameter_list, - [67090] = 4, - ACTIONS(3630), 1, + anon_sym_COLON, + [69018] = 4, + ACTIONS(3798), 1, sym_comment, - ACTIONS(4519), 1, + ACTIONS(4672), 1, anon_sym_SQUOTE, - STATE(1724), 1, + STATE(1750), 1, aux_sym_char_literal_repeat1, - ACTIONS(4521), 2, + ACTIONS(4619), 2, aux_sym_char_literal_token1, sym_escape_sequence, - [67104] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3925), 1, - sym_identifier, - ACTIONS(4524), 1, - aux_sym_preproc_if_token2, - STATE(1610), 2, - sym_enumerator, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - [67118] = 5, - ACTIONS(3630), 1, + [69032] = 5, + ACTIONS(3798), 1, sym_comment, - ACTIONS(4504), 1, + ACTIONS(4674), 1, + anon_sym_DQUOTE, + ACTIONS(4676), 1, aux_sym_string_literal_token1, - ACTIONS(4506), 1, + ACTIONS(4678), 1, sym_escape_sequence, - ACTIONS(4526), 1, + STATE(1757), 1, + aux_sym_string_literal_repeat1, + [69048] = 5, + ACTIONS(3798), 1, + sym_comment, + ACTIONS(4680), 1, anon_sym_DQUOTE, - STATE(1728), 1, + ACTIONS(4682), 1, + aux_sym_string_literal_token1, + ACTIONS(4684), 1, + sym_escape_sequence, + STATE(1738), 1, aux_sym_string_literal_repeat1, - [67134] = 5, + [69064] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3967), 1, - sym_identifier, - ACTIONS(4528), 1, + ACTIONS(4686), 4, + anon_sym_LPAREN2, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, + [69074] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4441), 4, aux_sym_preproc_if_token2, - STATE(1609), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(2199), 1, - sym_enumerator, - [67150] = 5, - ACTIONS(3630), 1, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_identifier, + [69084] = 5, + ACTIONS(3798), 1, sym_comment, - ACTIONS(4530), 1, - anon_sym_DQUOTE, - ACTIONS(4532), 1, + ACTIONS(4653), 1, aux_sym_string_literal_token1, - ACTIONS(4535), 1, + ACTIONS(4655), 1, sym_escape_sequence, - STATE(1728), 1, + ACTIONS(4688), 1, + anon_sym_DQUOTE, + STATE(1759), 1, aux_sym_string_literal_repeat1, - [67166] = 5, - ACTIONS(3630), 1, + [69100] = 4, + ACTIONS(3798), 1, + sym_comment, + ACTIONS(4690), 1, + anon_sym_SQUOTE, + STATE(1750), 1, + aux_sym_char_literal_repeat1, + ACTIONS(4692), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [69114] = 5, + ACTIONS(3798), 1, sym_comment, - ACTIONS(4538), 1, + ACTIONS(4695), 1, anon_sym_DQUOTE, - ACTIONS(4540), 1, + ACTIONS(4697), 1, aux_sym_string_literal_token1, - ACTIONS(4542), 1, + ACTIONS(4699), 1, sym_escape_sequence, - STATE(1720), 1, + STATE(1749), 1, aux_sym_string_literal_repeat1, - [67182] = 5, + [69130] = 4, + ACTIONS(3798), 1, + sym_comment, + ACTIONS(4701), 1, + anon_sym_SQUOTE, + STATE(1750), 1, + aux_sym_char_literal_repeat1, + ACTIONS(4619), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [69144] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4544), 1, + ACTIONS(4629), 1, anon_sym_COMMA, - ACTIONS(4546), 1, + STATE(1762), 1, + aux_sym_gnu_asm_output_operand_list_repeat1, + ACTIONS(4703), 2, anon_sym_RPAREN, - STATE(1789), 1, - aux_sym__old_style_parameter_list_repeat1, - STATE(1806), 1, - aux_sym_parameter_list_repeat1, - [67198] = 4, + anon_sym_COLON, + [69158] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4705), 1, + anon_sym_COMMA, + STATE(1761), 1, + aux_sym_gnu_asm_input_operand_list_repeat1, + ACTIONS(4707), 2, + anon_sym_RPAREN, + anon_sym_COLON, + [69172] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4548), 1, + ACTIONS(4709), 1, anon_sym___except, - ACTIONS(4550), 1, + ACTIONS(4711), 1, anon_sym___finally, - STATE(175), 2, + STATE(114), 2, sym_seh_except_clause, sym_seh_finally_clause, - [67212] = 5, - ACTIONS(3630), 1, + [69186] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(4504), 1, + ACTIONS(4713), 1, + anon_sym_COMMA, + STATE(1756), 1, + aux_sym_gnu_asm_clobber_list_repeat1, + ACTIONS(4716), 2, + anon_sym_RPAREN, + anon_sym_COLON, + [69200] = 5, + ACTIONS(3798), 1, + sym_comment, + ACTIONS(4653), 1, aux_sym_string_literal_token1, - ACTIONS(4506), 1, + ACTIONS(4655), 1, sym_escape_sequence, - ACTIONS(4552), 1, + ACTIONS(4718), 1, anon_sym_DQUOTE, - STATE(1728), 1, + STATE(1759), 1, aux_sym_string_literal_repeat1, - [67228] = 4, + [69216] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4554), 1, + ACTIONS(4668), 1, anon_sym_COMMA, - STATE(1733), 1, + STATE(1743), 1, aux_sym_gnu_asm_clobber_list_repeat1, - ACTIONS(4557), 2, + ACTIONS(4720), 2, anon_sym_RPAREN, anon_sym_COLON, - [67242] = 4, + [69230] = 5, + ACTIONS(3798), 1, + sym_comment, + ACTIONS(4722), 1, + anon_sym_DQUOTE, + ACTIONS(4724), 1, + aux_sym_string_literal_token1, + ACTIONS(4727), 1, + sym_escape_sequence, + STATE(1759), 1, + aux_sym_string_literal_repeat1, + [69246] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2548), 1, + ACTIONS(4081), 1, anon_sym_LPAREN2, - STATE(1896), 1, - sym_argument_list, - ACTIONS(4559), 2, - anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [67256] = 4, - ACTIONS(3630), 1, - sym_comment, - ACTIONS(4561), 1, - anon_sym_SQUOTE, - STATE(1724), 1, - aux_sym_char_literal_repeat1, - ACTIONS(4473), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [67270] = 4, + ACTIONS(4512), 1, + anon_sym_LBRACK, + ACTIONS(4730), 1, + anon_sym_RPAREN, + STATE(1723), 1, + sym_parameter_list, + [69262] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4479), 1, + ACTIONS(4705), 1, anon_sym_COMMA, - STATE(1712), 1, - aux_sym_gnu_asm_clobber_list_repeat1, - ACTIONS(4563), 2, + STATE(1741), 1, + aux_sym_gnu_asm_input_operand_list_repeat1, + ACTIONS(4732), 2, anon_sym_RPAREN, anon_sym_COLON, - [67284] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4565), 1, - anon_sym___except, - ACTIONS(4567), 1, - anon_sym___finally, - STATE(119), 2, - sym_seh_except_clause, - sym_seh_finally_clause, - [67298] = 4, + [69276] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4475), 1, + ACTIONS(4734), 1, anon_sym_COMMA, - STATE(1721), 1, - aux_sym_gnu_asm_input_operand_list_repeat1, - ACTIONS(4569), 2, + STATE(1762), 1, + aux_sym_gnu_asm_output_operand_list_repeat1, + ACTIONS(4737), 2, anon_sym_RPAREN, anon_sym_COLON, - [67312] = 5, - ACTIONS(3630), 1, + [69290] = 5, + ACTIONS(3798), 1, sym_comment, - ACTIONS(4504), 1, + ACTIONS(4739), 1, + anon_sym_DQUOTE, + ACTIONS(4741), 1, aux_sym_string_literal_token1, - ACTIONS(4506), 1, + ACTIONS(4743), 1, sym_escape_sequence, - ACTIONS(4571), 1, - anon_sym_DQUOTE, - STATE(1728), 1, + STATE(1742), 1, aux_sym_string_literal_repeat1, - [67328] = 4, - ACTIONS(3630), 1, + [69306] = 3, + ACTIONS(3798), 1, sym_comment, - ACTIONS(4573), 1, - anon_sym_SQUOTE, - STATE(1724), 1, + STATE(1739), 1, aux_sym_char_literal_repeat1, - ACTIONS(4473), 2, + ACTIONS(4745), 2, aux_sym_char_literal_token1, sym_escape_sequence, - [67342] = 4, - ACTIONS(3), 1, + [69317] = 4, + ACTIONS(3798), 1, sym_comment, - ACTIONS(4575), 1, - anon_sym___except, - ACTIONS(4577), 1, - anon_sym___finally, - STATE(243), 2, - sym_seh_except_clause, - sym_seh_finally_clause, - [67356] = 4, + ACTIONS(4747), 1, + aux_sym_preproc_include_token2, + ACTIONS(4749), 1, + anon_sym_LPAREN2, + STATE(2077), 1, + sym_preproc_argument_list, + [69330] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4579), 1, - anon_sym___except, - ACTIONS(4581), 1, - anon_sym___finally, - STATE(243), 2, - sym_seh_except_clause, - sym_seh_finally_clause, - [67370] = 4, + ACTIONS(4751), 1, + anon_sym_COMMA, + ACTIONS(4754), 1, + anon_sym_RPAREN, + STATE(1766), 1, + aux_sym_attribute_specifier_repeat1, + [69343] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4583), 1, - anon_sym___except, - ACTIONS(4585), 1, - anon_sym___finally, - STATE(336), 2, - sym_seh_except_clause, - sym_seh_finally_clause, - [67384] = 5, - ACTIONS(3630), 1, - sym_comment, - ACTIONS(4587), 1, - anon_sym_DQUOTE, - ACTIONS(4589), 1, - aux_sym_string_literal_token1, - ACTIONS(4591), 1, - sym_escape_sequence, - STATE(1739), 1, - aux_sym_string_literal_repeat1, - [67400] = 4, - ACTIONS(3630), 1, + ACTIONS(3756), 1, + anon_sym_COMMA, + ACTIONS(4756), 1, + anon_sym_RPAREN, + STATE(1844), 1, + aux_sym_preproc_argument_list_repeat1, + [69356] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(4401), 1, - aux_sym_preproc_arg_token1, - ACTIONS(4593), 1, - aux_sym_preproc_include_token2, - STATE(1979), 1, - sym_preproc_arg, - [67413] = 4, + ACTIONS(4103), 1, + anon_sym_COMMA, + ACTIONS(4758), 1, + anon_sym_SEMI, + STATE(1805), 1, + aux_sym__declaration_declarator_repeat1, + [69369] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4595), 1, + ACTIONS(3514), 1, anon_sym_COMMA, - ACTIONS(4597), 1, - anon_sym_RBRACK_RBRACK, - STATE(1852), 1, - aux_sym_attribute_declaration_repeat1, - [67426] = 4, + ACTIONS(3516), 1, + anon_sym_RPAREN, + STATE(1836), 1, + aux_sym_argument_list_repeat1, + [69382] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2845), 1, - anon_sym_LBRACE, - ACTIONS(4599), 1, - sym_identifier, - STATE(1030), 1, - sym_field_declaration_list, - [67439] = 4, + ACTIONS(4760), 1, + anon_sym_COMMA, + ACTIONS(4762), 1, + anon_sym_RPAREN, + STATE(1848), 1, + aux_sym_parameter_list_repeat1, + [69395] = 4, + ACTIONS(3798), 1, + sym_comment, + ACTIONS(4565), 1, + aux_sym_preproc_arg_token1, + ACTIONS(4764), 1, + aux_sym_preproc_include_token2, + STATE(2258), 1, + sym_preproc_arg, + [69408] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3748), 1, + ACTIONS(4391), 1, anon_sym_RPAREN, - ACTIONS(4601), 1, - anon_sym_COMMA, - STATE(1748), 1, - aux_sym_preproc_argument_list_repeat1, - [67452] = 4, + ACTIONS(4393), 1, + anon_sym_COLON, + STATE(1870), 1, + sym_gnu_asm_output_operand_list, + [69421] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4604), 1, - anon_sym_COMMA, - ACTIONS(4606), 1, + ACTIONS(4766), 1, anon_sym_RPAREN, - STATE(1774), 1, - aux_sym_preproc_params_repeat1, - [67465] = 4, + ACTIONS(4768), 1, + anon_sym_COLON, + STATE(1819), 1, + sym_gnu_asm_input_operand_list, + [69434] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2845), 1, + ACTIONS(3290), 1, anon_sym_LBRACE, - ACTIONS(4608), 1, + ACTIONS(4770), 1, sym_identifier, - STATE(1036), 1, - sym_field_declaration_list, - [67478] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4595), 1, - anon_sym_COMMA, - ACTIONS(4610), 1, - anon_sym_RBRACK_RBRACK, - STATE(1771), 1, - aux_sym_attribute_declaration_repeat1, - [67491] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3425), 1, - anon_sym_RPAREN, - ACTIONS(4612), 1, - anon_sym_COMMA, - STATE(1752), 1, - aux_sym_argument_list_repeat1, - [67504] = 4, - ACTIONS(3630), 1, + STATE(1212), 1, + sym_enumerator_list, + [69447] = 4, + ACTIONS(3798), 1, sym_comment, - ACTIONS(4401), 1, + ACTIONS(4565), 1, aux_sym_preproc_arg_token1, - ACTIONS(4615), 1, + ACTIONS(4772), 1, aux_sym_preproc_include_token2, - STATE(1962), 1, + STATE(1992), 1, sym_preproc_arg, - [67517] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3365), 1, - anon_sym_COMMA, - ACTIONS(3367), 1, - anon_sym_RBRACE, - STATE(1803), 1, - aux_sym_initializer_list_repeat1, - [67530] = 4, - ACTIONS(3630), 1, + [69460] = 4, + ACTIONS(3798), 1, sym_comment, - ACTIONS(4401), 1, + ACTIONS(4565), 1, aux_sym_preproc_arg_token1, - ACTIONS(4617), 1, + ACTIONS(4774), 1, aux_sym_preproc_include_token2, - STATE(1960), 1, + STATE(1998), 1, sym_preproc_arg, - [67543] = 3, - ACTIONS(3630), 1, + [69473] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4776), 1, + anon_sym_COMMA, + ACTIONS(4778), 1, + anon_sym_RPAREN, + STATE(1846), 1, + aux_sym_preproc_params_repeat1, + [69486] = 3, + ACTIONS(3798), 1, sym_comment, - STATE(1740), 1, + STATE(1744), 1, aux_sym_char_literal_repeat1, - ACTIONS(4619), 2, + ACTIONS(4780), 2, aux_sym_char_literal_token1, sym_escape_sequence, - [67554] = 4, - ACTIONS(3630), 1, - sym_comment, - ACTIONS(4401), 1, - aux_sym_preproc_arg_token1, - ACTIONS(4621), 1, - aux_sym_preproc_include_token2, - STATE(1959), 1, - sym_preproc_arg, - [67567] = 4, + [69497] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4139), 1, - anon_sym_RPAREN, - ACTIONS(4141), 1, - anon_sym_COLON, - STATE(1835), 1, - sym_gnu_asm_output_operand_list, - [67580] = 4, + ACTIONS(4782), 3, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_DOT, + [69506] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4623), 1, + ACTIONS(4776), 1, anon_sym_COMMA, - ACTIONS(4626), 1, + ACTIONS(4784), 1, anon_sym_RPAREN, - STATE(1759), 1, + STATE(1777), 1, aux_sym_preproc_params_repeat1, - [67593] = 4, - ACTIONS(3630), 1, - sym_comment, - ACTIONS(4401), 1, - aux_sym_preproc_arg_token1, - ACTIONS(4628), 1, - aux_sym_preproc_include_token2, - STATE(1955), 1, - sym_preproc_arg, - [67606] = 4, + [69519] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3369), 1, + ACTIONS(4786), 1, anon_sym_COMMA, - ACTIONS(3375), 1, + ACTIONS(4789), 1, anon_sym_RPAREN, - STATE(1752), 1, - aux_sym_argument_list_repeat1, - [67619] = 2, + STATE(1781), 1, + aux_sym_generic_expression_repeat1, + [69532] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4630), 3, + ACTIONS(3756), 1, anon_sym_COMMA, + ACTIONS(4791), 1, anon_sym_RPAREN, - anon_sym_COLON, - [67628] = 4, + STATE(1844), 1, + aux_sym_preproc_argument_list_repeat1, + [69545] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3598), 1, + ACTIONS(4793), 3, anon_sym_COMMA, - ACTIONS(4632), 1, anon_sym_RPAREN, - STATE(1748), 1, - aux_sym_preproc_argument_list_repeat1, - [67641] = 4, + anon_sym_COLON, + [69554] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4634), 1, + ACTIONS(4795), 3, anon_sym_COMMA, - ACTIONS(4637), 1, anon_sym_RPAREN, - STATE(1764), 1, - aux_sym_parameter_list_repeat1, - [67654] = 4, - ACTIONS(3630), 1, + anon_sym_COLON, + [69563] = 4, + ACTIONS(3798), 1, sym_comment, - ACTIONS(4401), 1, + ACTIONS(4749), 1, + anon_sym_LPAREN2, + ACTIONS(4797), 1, + aux_sym_preproc_include_token2, + STATE(2077), 1, + sym_preproc_argument_list, + [69576] = 4, + ACTIONS(3798), 1, + sym_comment, + ACTIONS(4565), 1, aux_sym_preproc_arg_token1, - ACTIONS(4639), 1, + ACTIONS(4799), 1, aux_sym_preproc_include_token2, - STATE(1954), 1, + STATE(1987), 1, sym_preproc_arg, - [67667] = 4, + [69589] = 4, + ACTIONS(3798), 1, + sym_comment, + ACTIONS(4749), 1, + anon_sym_LPAREN2, + ACTIONS(4801), 1, + aux_sym_preproc_include_token2, + STATE(2077), 1, + sym_preproc_argument_list, + [69602] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4641), 1, - anon_sym_COMMA, - ACTIONS(4644), 1, + ACTIONS(4393), 1, + anon_sym_COLON, + ACTIONS(4403), 1, anon_sym_RPAREN, - STATE(1766), 1, - aux_sym__old_style_parameter_list_repeat1, - [67680] = 4, + STATE(1816), 1, + sym_gnu_asm_output_operand_list, + [69615] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3369), 1, + ACTIONS(4803), 1, anon_sym_COMMA, - ACTIONS(3371), 1, + ACTIONS(4805), 1, anon_sym_RPAREN, - STATE(1761), 1, - aux_sym_argument_list_repeat1, - [67693] = 4, - ACTIONS(3), 1, + STATE(1793), 1, + aux_sym_gnu_asm_goto_list_repeat1, + [69628] = 4, + ACTIONS(3798), 1, sym_comment, - ACTIONS(4646), 1, - anon_sym_COMMA, - ACTIONS(4649), 1, - anon_sym_SEMI, - STATE(1768), 1, - aux_sym__declaration_declarator_repeat1, - [67706] = 4, - ACTIONS(3), 1, + ACTIONS(4565), 1, + aux_sym_preproc_arg_token1, + ACTIONS(4807), 1, + aux_sym_preproc_include_token2, + STATE(2003), 1, + sym_preproc_arg, + [69641] = 4, + ACTIONS(3798), 1, sym_comment, - ACTIONS(3896), 1, - anon_sym_COMMA, - ACTIONS(4651), 1, - anon_sym_SEMI, - STATE(1768), 1, - aux_sym__declaration_declarator_repeat1, - [67719] = 4, + ACTIONS(4565), 1, + aux_sym_preproc_arg_token1, + ACTIONS(4809), 1, + aux_sym_preproc_include_token2, + STATE(2008), 1, + sym_preproc_arg, + [69654] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4595), 1, + ACTIONS(4811), 1, anon_sym_COMMA, - ACTIONS(4653), 1, + ACTIONS(4813), 1, anon_sym_RBRACK_RBRACK, - STATE(1746), 1, + STATE(1815), 1, aux_sym_attribute_declaration_repeat1, - [67732] = 4, + [69667] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4595), 1, + ACTIONS(4815), 1, anon_sym_COMMA, - ACTIONS(4655), 1, - anon_sym_RBRACK_RBRACK, - STATE(1852), 1, - aux_sym_attribute_declaration_repeat1, - [67745] = 4, + ACTIONS(4818), 1, + anon_sym_RPAREN, + STATE(1793), 1, + aux_sym_gnu_asm_goto_list_repeat1, + [69680] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3896), 1, + ACTIONS(4820), 3, anon_sym_COMMA, - ACTIONS(4657), 1, - anon_sym_SEMI, - STATE(1768), 1, - aux_sym__declaration_declarator_repeat1, - [67758] = 3, - ACTIONS(3630), 1, - sym_comment, - STATE(1709), 1, - aux_sym_char_literal_repeat1, - ACTIONS(4659), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [67769] = 4, + anon_sym_RPAREN, + anon_sym_COLON, + [69689] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4604), 1, + ACTIONS(4822), 3, anon_sym_COMMA, - ACTIONS(4661), 1, anon_sym_RPAREN, - STATE(1759), 1, - aux_sym_preproc_params_repeat1, - [67782] = 4, - ACTIONS(3), 1, + anon_sym_COLON, + [69698] = 3, + ACTIONS(4824), 1, + aux_sym_preproc_include_token2, + STATE(1813), 1, + aux_sym_preproc_arg_repeat1, + ACTIONS(4826), 2, + aux_sym_preproc_arg_token2, sym_comment, - ACTIONS(3896), 1, - anon_sym_COMMA, - ACTIONS(4657), 1, - anon_sym_SEMI, - STATE(1768), 1, - aux_sym__declaration_declarator_repeat1, - [67795] = 4, + [69709] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3896), 1, - anon_sym_COMMA, - ACTIONS(4663), 1, - anon_sym_SEMI, - STATE(1769), 1, - aux_sym__declaration_declarator_repeat1, - [67808] = 4, - ACTIONS(3630), 1, + ACTIONS(4828), 1, + anon_sym_RPAREN, + ACTIONS(4830), 1, + anon_sym_COLON, + STATE(2276), 1, + sym_gnu_asm_goto_list, + [69722] = 4, + ACTIONS(3798), 1, sym_comment, - ACTIONS(4401), 1, + ACTIONS(4565), 1, aux_sym_preproc_arg_token1, - ACTIONS(4665), 1, + ACTIONS(4832), 1, aux_sym_preproc_include_token2, STATE(2011), 1, sym_preproc_arg, - [67821] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4667), 3, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_DOT, - [67830] = 4, - ACTIONS(3630), 1, + [69735] = 4, + ACTIONS(3798), 1, sym_comment, - ACTIONS(4401), 1, + ACTIONS(4565), 1, aux_sym_preproc_arg_token1, - ACTIONS(4669), 1, + ACTIONS(4834), 1, aux_sym_preproc_include_token2, - STATE(1950), 1, + STATE(2014), 1, sym_preproc_arg, - [67843] = 2, + [69748] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4671), 3, + ACTIONS(3514), 1, anon_sym_COMMA, + ACTIONS(3520), 1, anon_sym_RPAREN, - anon_sym_COLON, - [67852] = 2, + STATE(1769), 1, + aux_sym_argument_list_repeat1, + [69761] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4673), 3, + ACTIONS(4836), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - [67861] = 4, + [69770] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2112), 1, - anon_sym_RBRACE, - ACTIONS(4675), 1, - anon_sym_COMMA, - STATE(1829), 1, - aux_sym_initializer_list_repeat1, - [67874] = 4, + ACTIONS(4393), 1, + anon_sym_COLON, + ACTIONS(4401), 1, + anon_sym_RPAREN, + STATE(1773), 1, + sym_gnu_asm_output_operand_list, + [69783] = 4, + ACTIONS(3798), 1, + sym_comment, + ACTIONS(4565), 1, + aux_sym_preproc_arg_token1, + ACTIONS(4838), 1, + aux_sym_preproc_include_token2, + STATE(2017), 1, + sym_preproc_arg, + [69796] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3896), 1, + ACTIONS(4840), 1, anon_sym_COMMA, - ACTIONS(3900), 1, + ACTIONS(4843), 1, anon_sym_SEMI, - STATE(1772), 1, + STATE(1804), 1, aux_sym__declaration_declarator_repeat1, - [67887] = 4, + [69809] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4677), 1, + ACTIONS(4103), 1, anon_sym_COMMA, - ACTIONS(4680), 1, + ACTIONS(4845), 1, + anon_sym_SEMI, + STATE(1804), 1, + aux_sym__declaration_declarator_repeat1, + [69822] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4830), 1, + anon_sym_COLON, + ACTIONS(4847), 1, anon_sym_RPAREN, - STATE(1784), 1, - aux_sym_gnu_asm_goto_list_repeat1, - [67900] = 4, - ACTIONS(3630), 1, + STATE(2302), 1, + sym_gnu_asm_goto_list, + [69835] = 4, + ACTIONS(3798), 1, sym_comment, - ACTIONS(4401), 1, + ACTIONS(4565), 1, aux_sym_preproc_arg_token1, - ACTIONS(4682), 1, + ACTIONS(4849), 1, + aux_sym_preproc_include_token2, + STATE(2182), 1, + sym_preproc_arg, + [69848] = 4, + ACTIONS(3798), 1, + sym_comment, + ACTIONS(4565), 1, + aux_sym_preproc_arg_token1, + ACTIONS(4851), 1, aux_sym_preproc_include_token2, - STATE(2028), 1, + STATE(2020), 1, sym_preproc_arg, - [67913] = 4, + [69861] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4684), 1, + ACTIONS(4853), 1, anon_sym_RPAREN, - ACTIONS(4686), 1, + ACTIONS(4855), 1, anon_sym_COLON, - STATE(1811), 1, + STATE(1806), 1, sym_gnu_asm_clobber_list, - [67926] = 4, + [69874] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4688), 1, + ACTIONS(4811), 1, anon_sym_COMMA, - ACTIONS(4690), 1, - anon_sym_RPAREN, - STATE(1784), 1, - aux_sym_gnu_asm_goto_list_repeat1, - [67939] = 4, + ACTIONS(4857), 1, + anon_sym_RBRACK_RBRACK, + STATE(1842), 1, + aux_sym_attribute_declaration_repeat1, + [69887] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3369), 1, + ACTIONS(4811), 1, anon_sym_COMMA, - ACTIONS(4692), 1, - anon_sym_RPAREN, - STATE(1752), 1, - aux_sym_argument_list_repeat1, - [67952] = 4, + ACTIONS(4859), 1, + anon_sym_RBRACK_RBRACK, + STATE(1857), 1, + aux_sym_attribute_declaration_repeat1, + [69900] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4694), 1, - anon_sym_COMMA, - ACTIONS(4696), 1, + ACTIONS(4393), 1, + anon_sym_COLON, + ACTIONS(4405), 1, anon_sym_RPAREN, - STATE(1766), 1, - aux_sym__old_style_parameter_list_repeat1, - [67965] = 4, - ACTIONS(3630), 1, - sym_comment, - ACTIONS(4698), 1, - aux_sym_preproc_include_token2, - ACTIONS(4700), 1, - anon_sym_LPAREN2, - STATE(2121), 1, - sym_preproc_argument_list, - [67978] = 3, - ACTIONS(4702), 1, + STATE(1831), 1, + sym_gnu_asm_output_operand_list, + [69913] = 3, + ACTIONS(4861), 1, aux_sym_preproc_include_token2, - STATE(1817), 1, + STATE(1830), 1, aux_sym_preproc_arg_repeat1, - ACTIONS(4704), 2, + ACTIONS(4863), 2, aux_sym_preproc_arg_token2, sym_comment, - [67989] = 4, - ACTIONS(3), 1, + [69924] = 4, + ACTIONS(3798), 1, sym_comment, - ACTIONS(4706), 1, - anon_sym_RPAREN, - ACTIONS(4708), 1, - anon_sym_COLON, - STATE(1812), 1, - sym_gnu_asm_input_operand_list, - [68002] = 4, + ACTIONS(4565), 1, + aux_sym_preproc_arg_token1, + ACTIONS(4865), 1, + aux_sym_preproc_include_token2, + STATE(2238), 1, + sym_preproc_arg, + [69937] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4141), 1, - anon_sym_COLON, - ACTIONS(4143), 1, - anon_sym_RPAREN, - STATE(1809), 1, - sym_gnu_asm_output_operand_list, - [68015] = 4, + ACTIONS(4811), 1, + anon_sym_COMMA, + ACTIONS(4867), 1, + anon_sym_RBRACK_RBRACK, + STATE(1857), 1, + aux_sym_attribute_declaration_repeat1, + [69950] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4708), 1, + ACTIONS(4768), 1, anon_sym_COLON, - ACTIONS(4710), 1, + ACTIONS(4869), 1, anon_sym_RPAREN, - STATE(1815), 1, + STATE(1829), 1, sym_gnu_asm_input_operand_list, - [68028] = 4, + [69963] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3369), 1, + ACTIONS(3542), 1, + anon_sym_RBRACE, + ACTIONS(4871), 1, anon_sym_COMMA, - ACTIONS(4712), 1, - anon_sym_RPAREN, - STATE(1752), 1, - aux_sym_argument_list_repeat1, - [68041] = 2, + STATE(1817), 1, + aux_sym_initializer_list_repeat1, + [69976] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4714), 3, + ACTIONS(4103), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [68050] = 3, - ACTIONS(3630), 1, - sym_comment, - STATE(1719), 1, - aux_sym_char_literal_repeat1, - ACTIONS(4716), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [68061] = 3, + ACTIONS(4874), 1, + anon_sym_SEMI, + STATE(1804), 1, + aux_sym__declaration_declarator_repeat1, + [69989] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4720), 1, + ACTIONS(4855), 1, + anon_sym_COLON, + ACTIONS(4876), 1, anon_sym_RPAREN, - ACTIONS(4718), 2, - anon_sym_DOT_DOT_DOT, - sym_identifier, - [68072] = 4, + STATE(1856), 1, + sym_gnu_asm_clobber_list, + [70002] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3189), 1, + ACTIONS(4878), 3, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_DOT, + [70011] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2799), 1, anon_sym_LBRACE, - ACTIONS(4722), 1, + ACTIONS(4880), 1, sym_identifier, - STATE(1163), 1, - sym_enumerator_list, - [68085] = 4, - ACTIONS(3630), 1, + STATE(1012), 1, + sym_field_declaration_list, + [70024] = 3, + ACTIONS(3798), 1, sym_comment, - ACTIONS(4401), 1, - aux_sym_preproc_arg_token1, - ACTIONS(4724), 1, - aux_sym_preproc_include_token2, - STATE(2145), 1, - sym_preproc_arg, - [68098] = 4, - ACTIONS(3630), 1, + STATE(1752), 1, + aux_sym_char_literal_repeat1, + ACTIONS(4882), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [70035] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(4401), 1, + ACTIONS(4884), 1, + anon_sym_COMMA, + ACTIONS(4887), 1, + anon_sym_RPAREN, + STATE(1823), 1, + aux_sym__old_style_parameter_list_repeat1, + [70048] = 4, + ACTIONS(3798), 1, + sym_comment, + ACTIONS(4565), 1, aux_sym_preproc_arg_token1, - ACTIONS(4726), 1, + ACTIONS(4889), 1, aux_sym_preproc_include_token2, - STATE(1965), 1, + STATE(2026), 1, sym_preproc_arg, - [68111] = 4, - ACTIONS(3630), 1, - sym_comment, - ACTIONS(4700), 1, - anon_sym_LPAREN2, - ACTIONS(4728), 1, - aux_sym_preproc_include_token2, - STATE(2121), 1, - sym_preproc_argument_list, - [68124] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2106), 1, - anon_sym_RBRACE, - ACTIONS(4730), 1, - anon_sym_COMMA, - STATE(1829), 1, - aux_sym_initializer_list_repeat1, - [68137] = 4, + [70061] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4732), 1, + ACTIONS(3528), 1, anon_sym_COMMA, - ACTIONS(4735), 1, + ACTIONS(4891), 1, anon_sym_RPAREN, - STATE(1804), 1, - aux_sym_attribute_specifier_repeat1, - [68150] = 4, + STATE(1781), 1, + aux_sym_generic_expression_repeat1, + [70074] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2084), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(4737), 1, - sym_identifier, - STATE(1893), 1, - sym_variadic_parameter, - [68163] = 4, + ACTIONS(4855), 1, + anon_sym_COLON, + ACTIONS(4893), 1, + anon_sym_RPAREN, + STATE(1797), 1, + sym_gnu_asm_clobber_list, + [70087] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4739), 1, + ACTIONS(3514), 1, anon_sym_COMMA, - ACTIONS(4741), 1, + ACTIONS(3526), 1, anon_sym_RPAREN, - STATE(1764), 1, - aux_sym_parameter_list_repeat1, - [68176] = 4, + STATE(1836), 1, + aux_sym_argument_list_repeat1, + [70100] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4743), 1, - anon_sym_RPAREN, - ACTIONS(4745), 1, + ACTIONS(4830), 1, anon_sym_COLON, - STATE(2169), 1, + ACTIONS(4895), 1, + anon_sym_RPAREN, + STATE(2236), 1, sym_gnu_asm_goto_list, - [68189] = 4, + [70113] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4747), 1, - anon_sym_COMMA, - ACTIONS(4750), 1, + ACTIONS(4855), 1, + anon_sym_COLON, + ACTIONS(4897), 1, anon_sym_RPAREN, - STATE(1808), 1, - aux_sym_generic_expression_repeat1, - [68202] = 4, + STATE(1828), 1, + sym_gnu_asm_clobber_list, + [70126] = 3, + ACTIONS(4899), 1, + aux_sym_preproc_include_token2, + STATE(1830), 1, + aux_sym_preproc_arg_repeat1, + ACTIONS(4901), 2, + aux_sym_preproc_arg_token2, + sym_comment, + [70137] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4708), 1, + ACTIONS(4768), 1, anon_sym_COLON, - ACTIONS(4752), 1, + ACTIONS(4904), 1, anon_sym_RPAREN, - STATE(1810), 1, + STATE(1826), 1, sym_gnu_asm_input_operand_list, - [68215] = 4, + [70150] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4686), 1, - anon_sym_COLON, - ACTIONS(4754), 1, - anon_sym_RPAREN, - STATE(1844), 1, - sym_gnu_asm_clobber_list, - [68228] = 4, + ACTIONS(2037), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4906), 1, + sym_identifier, + STATE(1933), 1, + sym_variadic_parameter, + [70163] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4745), 1, - anon_sym_COLON, - ACTIONS(4756), 1, + ACTIONS(4908), 1, + anon_sym_COMMA, + ACTIONS(4910), 1, anon_sym_RPAREN, - STATE(2058), 1, - sym_gnu_asm_goto_list, - [68241] = 4, + STATE(1823), 1, + aux_sym__old_style_parameter_list_repeat1, + [70176] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4686), 1, - anon_sym_COLON, - ACTIONS(4758), 1, + ACTIONS(4912), 1, + anon_sym_COMMA, + ACTIONS(4914), 1, anon_sym_RPAREN, - STATE(1828), 1, - sym_gnu_asm_clobber_list, - [68254] = 4, + STATE(1867), 1, + aux_sym_attribute_specifier_repeat1, + [70189] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3598), 1, + ACTIONS(3514), 1, anon_sym_COMMA, - ACTIONS(4760), 1, + ACTIONS(4916), 1, anon_sym_RPAREN, - STATE(1748), 1, - aux_sym_preproc_argument_list_repeat1, - [68267] = 4, + STATE(1836), 1, + aux_sym_argument_list_repeat1, + [70202] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4141), 1, - anon_sym_COLON, - ACTIONS(4145), 1, + ACTIONS(3638), 1, anon_sym_RPAREN, - STATE(1794), 1, - sym_gnu_asm_output_operand_list, - [68280] = 4, + ACTIONS(4918), 1, + anon_sym_COMMA, + STATE(1836), 1, + aux_sym_argument_list_repeat1, + [70215] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4686), 1, - anon_sym_COLON, - ACTIONS(4762), 1, + ACTIONS(3756), 1, + anon_sym_COMMA, + ACTIONS(4921), 1, anon_sym_RPAREN, - STATE(1807), 1, - sym_gnu_asm_clobber_list, - [68293] = 4, - ACTIONS(3630), 1, - sym_comment, - ACTIONS(4401), 1, - aux_sym_preproc_arg_token1, - ACTIONS(4764), 1, - aux_sym_preproc_include_token2, - STATE(2000), 1, - sym_preproc_arg, - [68306] = 3, - ACTIONS(4766), 1, - aux_sym_preproc_include_token2, - STATE(1818), 1, - aux_sym_preproc_arg_repeat1, - ACTIONS(4768), 2, - aux_sym_preproc_arg_token2, - sym_comment, - [68317] = 3, - ACTIONS(4770), 1, - aux_sym_preproc_include_token2, - STATE(1818), 1, - aux_sym_preproc_arg_repeat1, - ACTIONS(4772), 2, - aux_sym_preproc_arg_token2, - sym_comment, - [68328] = 4, - ACTIONS(3630), 1, - sym_comment, - ACTIONS(4401), 1, - aux_sym_preproc_arg_token1, - ACTIONS(4775), 1, - aux_sym_preproc_include_token2, - STATE(1963), 1, - sym_preproc_arg, - [68341] = 2, + STATE(1844), 1, + aux_sym_preproc_argument_list_repeat1, + [70228] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4777), 3, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_DOT, - [68350] = 4, - ACTIONS(3630), 1, - sym_comment, - ACTIONS(4401), 1, - aux_sym_preproc_arg_token1, - ACTIONS(4779), 1, - aux_sym_preproc_include_token2, - STATE(1944), 1, - sym_preproc_arg, - [68363] = 4, - ACTIONS(3630), 1, - sym_comment, - ACTIONS(4401), 1, - aux_sym_preproc_arg_token1, - ACTIONS(4781), 1, - aux_sym_preproc_include_token2, - STATE(2105), 1, - sym_preproc_arg, - [68376] = 4, - ACTIONS(3630), 1, - sym_comment, - ACTIONS(4700), 1, - anon_sym_LPAREN2, - ACTIONS(4783), 1, - aux_sym_preproc_include_token2, - STATE(2121), 1, - sym_preproc_argument_list, - [68389] = 4, - ACTIONS(3630), 1, + ACTIONS(3528), 1, + anon_sym_COMMA, + ACTIONS(4923), 1, + anon_sym_RPAREN, + STATE(1781), 1, + aux_sym_generic_expression_repeat1, + [70241] = 4, + ACTIONS(3798), 1, sym_comment, - ACTIONS(4401), 1, + ACTIONS(4565), 1, aux_sym_preproc_arg_token1, - ACTIONS(4785), 1, + ACTIONS(4925), 1, aux_sym_preproc_include_token2, - STATE(2094), 1, + STATE(2261), 1, sym_preproc_arg, - [68402] = 2, + [70254] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4787), 3, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_DOT, - [68411] = 4, + ACTIONS(4929), 1, + anon_sym_RPAREN, + ACTIONS(4927), 2, + anon_sym_DOT_DOT_DOT, + sym_identifier, + [70265] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4739), 1, + ACTIONS(4811), 1, anon_sym_COMMA, - ACTIONS(4789), 1, - anon_sym_RPAREN, - STATE(1806), 1, - aux_sym_parameter_list_repeat1, - [68424] = 4, + ACTIONS(4931), 1, + anon_sym_RBRACK_RBRACK, + STATE(1811), 1, + aux_sym_attribute_declaration_repeat1, + [70278] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4688), 1, + ACTIONS(4811), 1, anon_sym_COMMA, - ACTIONS(4791), 1, + ACTIONS(4933), 1, + anon_sym_RBRACK_RBRACK, + STATE(1857), 1, + aux_sym_attribute_declaration_repeat1, + [70291] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4760), 1, + anon_sym_COMMA, + ACTIONS(4935), 1, anon_sym_RPAREN, - STATE(1787), 1, - aux_sym_gnu_asm_goto_list_repeat1, - [68437] = 4, + STATE(1770), 1, + aux_sym_parameter_list_repeat1, + [70304] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4745), 1, - anon_sym_COLON, - ACTIONS(4793), 1, + ACTIONS(3927), 1, anon_sym_RPAREN, - STATE(2057), 1, - sym_gnu_asm_goto_list, - [68450] = 4, + ACTIONS(4937), 1, + anon_sym_COMMA, + STATE(1844), 1, + aux_sym_preproc_argument_list_repeat1, + [70317] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3479), 1, - anon_sym_RBRACE, - ACTIONS(4795), 1, + ACTIONS(4940), 3, anon_sym_COMMA, - STATE(1829), 1, - aux_sym_initializer_list_repeat1, - [68463] = 4, + anon_sym_RPAREN, + anon_sym_COLON, + [70326] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3381), 1, + ACTIONS(4942), 1, anon_sym_COMMA, - ACTIONS(4798), 1, + ACTIONS(4945), 1, anon_sym_RPAREN, - STATE(1808), 1, - aux_sym_generic_expression_repeat1, - [68476] = 4, + STATE(1846), 1, + aux_sym_preproc_params_repeat1, + [70339] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3189), 1, + ACTIONS(2799), 1, anon_sym_LBRACE, - ACTIONS(4800), 1, + ACTIONS(4947), 1, sym_identifier, - STATE(1309), 1, - sym_enumerator_list, - [68489] = 3, - ACTIONS(3630), 1, - sym_comment, - STATE(1735), 1, - aux_sym_char_literal_repeat1, - ACTIONS(4802), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [68500] = 4, + STATE(938), 1, + sym_field_declaration_list, + [70352] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4804), 1, + ACTIONS(4949), 1, anon_sym_COMMA, - ACTIONS(4806), 1, + ACTIONS(4952), 1, anon_sym_RPAREN, - STATE(1846), 1, - aux_sym_attribute_specifier_repeat1, - [68513] = 4, + STATE(1848), 1, + aux_sym_parameter_list_repeat1, + [70365] = 4, + ACTIONS(3798), 1, + sym_comment, + ACTIONS(4565), 1, + aux_sym_preproc_arg_token1, + ACTIONS(4954), 1, + aux_sym_preproc_include_token2, + STATE(2239), 1, + sym_preproc_arg, + [70378] = 4, + ACTIONS(3798), 1, + sym_comment, + ACTIONS(4565), 1, + aux_sym_preproc_arg_token1, + ACTIONS(4956), 1, + aux_sym_preproc_include_token2, + STATE(2123), 1, + sym_preproc_arg, + [70391] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3387), 1, + ACTIONS(3538), 1, anon_sym_COMMA, - ACTIONS(3389), 1, + ACTIONS(3540), 1, anon_sym_RBRACE, - STATE(1782), 1, + STATE(1853), 1, aux_sym_initializer_list_repeat1, - [68526] = 4, + [70404] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4708), 1, - anon_sym_COLON, - ACTIONS(4808), 1, - anon_sym_RPAREN, - STATE(1786), 1, - sym_gnu_asm_input_operand_list, - [68539] = 4, + ACTIONS(4958), 3, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_DOT, + [70413] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3189), 1, + ACTIONS(2202), 1, + anon_sym_RBRACE, + ACTIONS(4960), 1, + anon_sym_COMMA, + STATE(1817), 1, + aux_sym_initializer_list_repeat1, + [70426] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2799), 1, anon_sym_LBRACE, - ACTIONS(4810), 1, + ACTIONS(4962), 1, sym_identifier, - STATE(1309), 1, - sym_enumerator_list, - [68552] = 2, + STATE(937), 1, + sym_field_declaration_list, + [70439] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4812), 3, + ACTIONS(4103), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [68561] = 4, + ACTIONS(4107), 1, + anon_sym_SEMI, + STATE(1859), 1, + aux_sym__declaration_declarator_repeat1, + [70452] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4141), 1, + ACTIONS(4830), 1, anon_sym_COLON, - ACTIONS(4181), 1, + ACTIONS(4964), 1, anon_sym_RPAREN, - STATE(1792), 1, - sym_gnu_asm_output_operand_list, - [68574] = 2, + STATE(2305), 1, + sym_gnu_asm_goto_list, + [70465] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4814), 3, + ACTIONS(4966), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [68583] = 4, + ACTIONS(4969), 1, + anon_sym_RBRACK_RBRACK, + STATE(1857), 1, + aux_sym_attribute_declaration_repeat1, + [70478] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3381), 1, + ACTIONS(4803), 1, anon_sym_COMMA, - ACTIONS(4816), 1, + ACTIONS(4971), 1, anon_sym_RPAREN, - STATE(1808), 1, - aux_sym_generic_expression_repeat1, - [68596] = 4, + STATE(1789), 1, + aux_sym_gnu_asm_goto_list_repeat1, + [70491] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4595), 1, + ACTIONS(4103), 1, anon_sym_COMMA, - ACTIONS(4818), 1, - anon_sym_RBRACK_RBRACK, - STATE(1852), 1, - aux_sym_attribute_declaration_repeat1, - [68609] = 4, - ACTIONS(3630), 1, + ACTIONS(4874), 1, + anon_sym_SEMI, + STATE(1804), 1, + aux_sym__declaration_declarator_repeat1, + [70504] = 4, + ACTIONS(3798), 1, sym_comment, - ACTIONS(4401), 1, - aux_sym_preproc_arg_token1, - ACTIONS(4820), 1, + ACTIONS(4749), 1, + anon_sym_LPAREN2, + ACTIONS(4973), 1, aux_sym_preproc_include_token2, - STATE(2042), 1, - sym_preproc_arg, - [68622] = 4, + STATE(2077), 1, + sym_preproc_argument_list, + [70517] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3598), 1, + ACTIONS(4975), 1, + anon_sym_EQ, + ACTIONS(4457), 2, anon_sym_COMMA, - ACTIONS(4822), 1, - anon_sym_RPAREN, - STATE(1748), 1, - aux_sym_preproc_argument_list_repeat1, - [68635] = 4, + anon_sym_RBRACE, + [70528] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4745), 1, - anon_sym_COLON, - ACTIONS(4824), 1, + ACTIONS(4977), 3, + anon_sym_COMMA, anon_sym_RPAREN, - STATE(2158), 1, - sym_gnu_asm_goto_list, - [68648] = 3, + anon_sym_COLON, + [70537] = 4, + ACTIONS(3798), 1, + sym_comment, + ACTIONS(4749), 1, + anon_sym_LPAREN2, + ACTIONS(4979), 1, + aux_sym_preproc_include_token2, + STATE(2077), 1, + sym_preproc_argument_list, + [70550] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4826), 1, - anon_sym_EQ, - ACTIONS(4219), 2, + ACTIONS(3532), 1, anon_sym_COMMA, + ACTIONS(3534), 1, + anon_sym_RBRACE, + STATE(1866), 1, + aux_sym_initializer_list_repeat1, + [70563] = 4, + ACTIONS(3798), 1, + sym_comment, + ACTIONS(4565), 1, + aux_sym_preproc_arg_token1, + ACTIONS(4981), 1, + aux_sym_preproc_include_token2, + STATE(2084), 1, + sym_preproc_arg, + [70576] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2218), 1, anon_sym_RBRACE, - [68659] = 4, + ACTIONS(4983), 1, + anon_sym_COMMA, + STATE(1817), 1, + aux_sym_initializer_list_repeat1, + [70589] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4804), 1, + ACTIONS(4912), 1, anon_sym_COMMA, - ACTIONS(4828), 1, + ACTIONS(4985), 1, anon_sym_RPAREN, - STATE(1804), 1, + STATE(1766), 1, aux_sym_attribute_specifier_repeat1, - [68672] = 4, + [70602] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3369), 1, + ACTIONS(3514), 1, anon_sym_COMMA, - ACTIONS(3385), 1, + ACTIONS(3518), 1, anon_sym_RPAREN, - STATE(1752), 1, + STATE(1827), 1, aux_sym_argument_list_repeat1, - [68685] = 4, - ACTIONS(3630), 1, + [70615] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(4700), 1, - anon_sym_LPAREN2, - ACTIONS(4830), 1, - aux_sym_preproc_include_token2, - STATE(2121), 1, - sym_preproc_argument_list, - [68698] = 4, - ACTIONS(3630), 1, + ACTIONS(3514), 1, + anon_sym_COMMA, + ACTIONS(4987), 1, + anon_sym_RPAREN, + STATE(1836), 1, + aux_sym_argument_list_repeat1, + [70628] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(4700), 1, - anon_sym_LPAREN2, - ACTIONS(4832), 1, - aux_sym_preproc_include_token2, - STATE(2121), 1, - sym_preproc_argument_list, - [68711] = 4, - ACTIONS(3630), 1, + ACTIONS(4768), 1, + anon_sym_COLON, + ACTIONS(4989), 1, + anon_sym_RPAREN, + STATE(1809), 1, + sym_gnu_asm_input_operand_list, + [70641] = 3, + ACTIONS(3798), 1, sym_comment, - ACTIONS(4401), 1, + STATE(1727), 1, + aux_sym_char_literal_repeat1, + ACTIONS(4991), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [70652] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3290), 1, + anon_sym_LBRACE, + ACTIONS(4993), 1, + sym_identifier, + STATE(1212), 1, + sym_enumerator_list, + [70665] = 4, + ACTIONS(3798), 1, + sym_comment, + ACTIONS(4565), 1, aux_sym_preproc_arg_token1, - ACTIONS(4834), 1, + ACTIONS(4995), 1, aux_sym_preproc_include_token2, - STATE(2037), 1, + STATE(2138), 1, sym_preproc_arg, - [68724] = 4, + [70678] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2845), 1, + ACTIONS(3290), 1, anon_sym_LBRACE, - ACTIONS(4836), 1, + ACTIONS(4997), 1, sym_identifier, - STATE(1008), 1, - sym_field_declaration_list, - [68737] = 4, + STATE(1171), 1, + sym_enumerator_list, + [70691] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4838), 1, + ACTIONS(3542), 2, anon_sym_COMMA, - ACTIONS(4841), 1, - anon_sym_RBRACK_RBRACK, - STATE(1852), 1, - aux_sym_attribute_declaration_repeat1, - [68750] = 4, + anon_sym_RBRACE, + [70699] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4595), 1, - anon_sym_COMMA, - ACTIONS(4843), 1, - anon_sym_RBRACK_RBRACK, - STATE(1841), 1, - aux_sym_attribute_declaration_repeat1, - [68763] = 2, + ACTIONS(4999), 1, + anon_sym_LPAREN2, + STATE(458), 1, + sym_parenthesized_expression, + [70709] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4845), 3, - anon_sym_COMMA, + ACTIONS(3524), 2, anon_sym_RPAREN, - anon_sym_COLON, - [68772] = 4, + anon_sym_SEMI, + [70717] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3369), 1, - anon_sym_COMMA, - ACTIONS(3373), 1, - anon_sym_RPAREN, - STATE(1847), 1, - aux_sym_argument_list_repeat1, - [68785] = 3, + ACTIONS(4999), 1, + anon_sym_LPAREN2, + STATE(452), 1, + sym_parenthesized_expression, + [70727] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(131), 1, + ACTIONS(205), 1, anon_sym_LBRACE, - STATE(96), 1, + STATE(189), 1, sym_compound_statement, - [68795] = 3, + [70737] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACE, - STATE(1737), 1, - sym_compound_statement, - [68805] = 3, + ACTIONS(5001), 1, + anon_sym_LPAREN2, + STATE(1959), 1, + sym_parenthesized_expression, + [70747] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4847), 1, + ACTIONS(4999), 1, anon_sym_LPAREN2, - STATE(421), 1, + STATE(463), 1, sym_parenthesized_expression, - [68815] = 3, + [70757] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(504), 1, - anon_sym_LBRACE, - STATE(345), 1, - sym_compound_statement, - [68825] = 3, + ACTIONS(4999), 1, + anon_sym_LPAREN2, + STATE(467), 1, + sym_parenthesized_expression, + [70767] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACE, - STATE(1722), 1, - sym_compound_statement, - [68835] = 3, + ACTIONS(4999), 1, + anon_sym_LPAREN2, + STATE(475), 1, + sym_parenthesized_expression, + [70777] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4849), 1, + ACTIONS(5003), 1, sym_identifier, - STATE(1770), 1, + STATE(1792), 1, sym_attribute, - [68845] = 3, + [70787] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4851), 1, - anon_sym_LPAREN2, - STATE(1879), 1, - sym_parenthesized_expression, - [68855] = 3, + ACTIONS(45), 1, + anon_sym_LBRACE, + STATE(322), 1, + sym_compound_statement, + [70797] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(504), 1, + ACTIONS(45), 1, anon_sym_LBRACE, - STATE(260), 1, + STATE(1755), 1, sym_compound_statement, - [68865] = 3, + [70807] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4851), 1, + ACTIONS(5001), 1, anon_sym_LPAREN2, - STATE(1921), 1, + STATE(2166), 1, sym_parenthesized_expression, - [68875] = 3, + [70817] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4851), 1, + ACTIONS(4209), 1, + anon_sym_RBRACE, + ACTIONS(5005), 1, + anon_sym_COMMA, + [70827] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2562), 1, anon_sym_LPAREN2, - STATE(1947), 1, + STATE(2213), 1, + sym_argument_list, + [70837] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5001), 1, + anon_sym_LPAREN2, + STATE(1915), 1, sym_parenthesized_expression, - [68885] = 3, + [70847] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4853), 1, + ACTIONS(2562), 1, + anon_sym_LPAREN2, + STATE(2214), 1, + sym_argument_list, + [70857] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2562), 1, + anon_sym_LPAREN2, + STATE(2284), 1, + sym_argument_list, + [70867] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5003), 1, sym_identifier, - ACTIONS(4855), 1, - anon_sym_RPAREN, - [68895] = 2, + STATE(1810), 1, + sym_attribute, + [70877] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4841), 2, + ACTIONS(4969), 2, anon_sym_COMMA, anon_sym_RBRACK_RBRACK, - [68903] = 3, + [70885] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2562), 1, + anon_sym_LPAREN2, + STATE(2215), 1, + sym_argument_list, + [70895] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5001), 1, + anon_sym_LPAREN2, + STATE(1973), 1, + sym_parenthesized_expression, + [70905] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5007), 1, + sym_identifier, + ACTIONS(5009), 1, + anon_sym_LPAREN2, + [70915] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(131), 1, + ACTIONS(631), 1, anon_sym_LBRACE, - STATE(115), 1, + STATE(272), 1, sym_compound_statement, - [68913] = 3, + [70925] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4857), 1, - sym_identifier, - ACTIONS(4859), 1, + ACTIONS(4999), 1, anon_sym_LPAREN2, - [68923] = 3, + STATE(459), 1, + sym_parenthesized_expression, + [70935] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4851), 1, + ACTIONS(5001), 1, anon_sym_LPAREN2, - STATE(1920), 1, + STATE(1879), 1, sym_parenthesized_expression, - [68933] = 3, + [70945] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3973), 1, - anon_sym_RBRACE, - ACTIONS(4861), 1, + ACTIONS(5005), 1, anon_sym_COMMA, - [68943] = 3, + ACTIONS(5011), 1, + anon_sym_RBRACE, + [70955] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4851), 1, + ACTIONS(2562), 1, anon_sym_LPAREN2, - STATE(1914), 1, - sym_parenthesized_expression, - [68953] = 3, - ACTIONS(3630), 1, - sym_comment, - ACTIONS(4863), 1, - aux_sym_preproc_include_token2, - ACTIONS(4865), 1, - aux_sym_preproc_arg_token1, - [68963] = 3, + STATE(2217), 1, + sym_argument_list, + [70965] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4847), 1, + ACTIONS(4999), 1, anon_sym_LPAREN2, - STATE(420), 1, + STATE(460), 1, sym_parenthesized_expression, - [68973] = 3, + [70975] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4849), 1, - sym_identifier, - STATE(1867), 1, - sym_attribute, - [68983] = 3, + ACTIONS(4952), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [70983] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(131), 1, + ACTIONS(45), 1, anon_sym_LBRACE, - STATE(102), 1, + STATE(1733), 1, sym_compound_statement, - [68993] = 2, + [70993] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4867), 2, - anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [69001] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4851), 1, + ACTIONS(2562), 1, anon_sym_LPAREN2, - STATE(2068), 1, - sym_parenthesized_expression, - [69011] = 3, + STATE(2221), 1, + sym_argument_list, + [71003] = 3, + ACTIONS(3798), 1, + sym_comment, + ACTIONS(5013), 1, + aux_sym_preproc_include_token2, + ACTIONS(5015), 1, + aux_sym_preproc_arg_token1, + [71013] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(656), 1, - anon_sym_LBRACE, - STATE(254), 1, - sym_compound_statement, - [69021] = 3, + ACTIONS(4945), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [71021] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4847), 1, + ACTIONS(2562), 1, anon_sym_LPAREN2, - STATE(466), 1, - sym_parenthesized_expression, - [69031] = 3, + STATE(2088), 1, + sym_argument_list, + [71031] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4851), 1, + ACTIONS(5001), 1, anon_sym_LPAREN2, - STATE(2022), 1, + STATE(1885), 1, sym_parenthesized_expression, - [69041] = 3, + [71041] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4851), 1, + ACTIONS(5001), 1, anon_sym_LPAREN2, - STATE(1992), 1, + STATE(2071), 1, sym_parenthesized_expression, - [69051] = 3, + [71051] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4847), 1, - anon_sym_LPAREN2, - STATE(465), 1, - sym_parenthesized_expression, - [69061] = 3, + ACTIONS(133), 1, + anon_sym_LBRACE, + STATE(109), 1, + sym_compound_statement, + [71061] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4861), 1, - anon_sym_COMMA, - ACTIONS(4869), 1, - anon_sym_RBRACE, - [69071] = 2, + ACTIONS(5001), 1, + anon_sym_LPAREN2, + STATE(1923), 1, + sym_parenthesized_expression, + [71071] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3479), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [69079] = 3, + ACTIONS(2562), 1, + anon_sym_LPAREN2, + STATE(2223), 1, + sym_argument_list, + [71081] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, + ACTIONS(45), 1, anon_sym_LBRACE, - STATE(1731), 1, + STATE(349), 1, sym_compound_statement, - [69089] = 2, + [71091] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3491), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [69097] = 3, + ACTIONS(5003), 1, + sym_identifier, + STATE(1894), 1, + sym_attribute, + [71101] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4851), 1, + ACTIONS(5001), 1, anon_sym_LPAREN2, - STATE(1927), 1, + STATE(2272), 1, sym_parenthesized_expression, - [69107] = 2, + [71111] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4871), 2, + ACTIONS(5017), 2, anon_sym_COMMA, - anon_sym_RPAREN, - [69115] = 3, + anon_sym_RBRACK_RBRACK, + [71119] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4847), 1, + ACTIONS(5001), 1, anon_sym_LPAREN2, - STATE(479), 1, + STATE(1952), 1, sym_parenthesized_expression, - [69125] = 3, + [71129] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4851), 1, + ACTIONS(2562), 1, anon_sym_LPAREN2, - STATE(1931), 1, - sym_parenthesized_expression, - [69135] = 2, + STATE(2044), 1, + sym_argument_list, + [71139] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4873), 2, + ACTIONS(3638), 2, anon_sym_COMMA, anon_sym_RPAREN, - [69143] = 2, + [71147] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4644), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [69151] = 2, + ACTIONS(5001), 1, + anon_sym_LPAREN2, + STATE(2045), 1, + sym_parenthesized_expression, + [71157] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3379), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - [69159] = 3, + ACTIONS(133), 1, + anon_sym_LBRACE, + STATE(93), 1, + sym_compound_statement, + [71167] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4851), 1, + ACTIONS(45), 1, + anon_sym_LBRACE, + STATE(1728), 1, + sym_compound_statement, + [71177] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(631), 1, + anon_sym_LBRACE, + STATE(327), 1, + sym_compound_statement, + [71187] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5001), 1, anon_sym_LPAREN2, - STATE(1901), 1, + STATE(1983), 1, sym_parenthesized_expression, - [69169] = 2, + [71197] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4876), 2, + ACTIONS(5019), 2, anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [69177] = 2, + anon_sym_RPAREN, + [71205] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4878), 2, - anon_sym_COMMA, - anon_sym_SEMI, - [69185] = 2, + ACTIONS(45), 1, + anon_sym_LBRACE, + STATE(312), 1, + sym_compound_statement, + [71215] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3467), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [69193] = 3, + ACTIONS(5001), 1, + anon_sym_LPAREN2, + STATE(1971), 1, + sym_parenthesized_expression, + [71225] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4851), 1, + ACTIONS(5001), 1, anon_sym_LPAREN2, - STATE(2235), 1, + STATE(1962), 1, sym_parenthesized_expression, - [69203] = 2, + [71235] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5021), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [71243] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4735), 2, + ACTIONS(2562), 1, + anon_sym_LPAREN2, + STATE(2151), 1, + sym_argument_list, + [71253] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4887), 2, anon_sym_COMMA, anon_sym_RPAREN, - [69211] = 3, + [71261] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(203), 1, - anon_sym_LBRACE, - STATE(188), 1, - sym_compound_statement, - [69221] = 3, + ACTIONS(2562), 1, + anon_sym_LPAREN2, + STATE(2148), 1, + sym_argument_list, + [71271] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, + ACTIONS(45), 1, anon_sym_LBRACE, - STATE(1741), 1, + STATE(1726), 1, sym_compound_statement, - [69231] = 3, + [71281] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2562), 1, + anon_sym_LPAREN2, + STATE(2124), 1, + sym_argument_list, + [71291] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2562), 1, + anon_sym_LPAREN2, + STATE(2118), 1, + sym_argument_list, + [71301] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, + ACTIONS(45), 1, anon_sym_LBRACE, - STATE(260), 1, + STATE(287), 1, sym_compound_statement, - [69241] = 3, + [71311] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4847), 1, + ACTIONS(4999), 1, anon_sym_LPAREN2, - STATE(422), 1, + STATE(456), 1, sym_parenthesized_expression, - [69251] = 3, + [71321] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4880), 1, - sym_identifier, - ACTIONS(4882), 1, + ACTIONS(5001), 1, + anon_sym_LPAREN2, + STATE(1925), 1, + sym_parenthesized_expression, + [71331] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4999), 1, anon_sym_LPAREN2, - [69261] = 2, + STATE(457), 1, + sym_parenthesized_expression, + [71341] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3425), 2, + ACTIONS(5023), 2, anon_sym_COMMA, anon_sym_RPAREN, - [69269] = 3, + [71349] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5003), 1, + sym_identifier, + STATE(1841), 1, + sym_attribute, + [71359] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3618), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [71367] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2548), 1, + ACTIONS(2562), 1, anon_sym_LPAREN2, - STATE(2126), 1, + STATE(2056), 1, sym_argument_list, - [69279] = 3, + [71377] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(203), 1, + ACTIONS(45), 1, anon_sym_LBRACE, - STATE(163), 1, + STATE(1731), 1, sym_compound_statement, - [69289] = 2, + [71387] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4884), 2, + ACTIONS(3616), 2, anon_sym_COMMA, - anon_sym_RPAREN, - [69297] = 3, + anon_sym_RBRACE, + [71395] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4851), 1, - anon_sym_LPAREN2, - STATE(1856), 1, - sym_parenthesized_expression, - [69307] = 3, + ACTIONS(45), 1, + anon_sym_LBRACE, + STATE(1732), 1, + sym_compound_statement, + [71405] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2548), 1, + ACTIONS(4239), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [71413] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5026), 1, + anon_sym_RPAREN, + ACTIONS(5028), 1, + sym_number_literal, + [71423] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2562), 1, anon_sym_LPAREN2, - STATE(2133), 1, + STATE(2058), 1, sym_argument_list, - [69317] = 3, + [71433] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4847), 1, - anon_sym_LPAREN2, - STATE(477), 1, - sym_parenthesized_expression, - [69327] = 2, + ACTIONS(511), 1, + anon_sym_LBRACE, + STATE(336), 1, + sym_compound_statement, + [71443] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4001), 2, + ACTIONS(3610), 2, anon_sym_COMMA, anon_sym_SEMI, - [69335] = 3, + [71451] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(203), 1, - anon_sym_LBRACE, - STATE(164), 1, - sym_compound_statement, - [69345] = 3, + ACTIONS(2562), 1, + anon_sym_LPAREN2, + STATE(2309), 1, + sym_argument_list, + [71461] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4847), 1, + ACTIONS(2562), 1, anon_sym_LPAREN2, - STATE(424), 1, - sym_parenthesized_expression, - [69355] = 3, + STATE(2307), 1, + sym_argument_list, + [71471] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4847), 1, + ACTIONS(2562), 1, anon_sym_LPAREN2, - STATE(415), 1, - sym_parenthesized_expression, - [69365] = 3, + STATE(2304), 1, + sym_argument_list, + [71481] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4849), 1, - sym_identifier, - STATE(1751), 1, - sym_attribute, - [69375] = 3, + ACTIONS(2562), 1, + anon_sym_LPAREN2, + STATE(2301), 1, + sym_argument_list, + [71491] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4886), 1, + ACTIONS(5030), 1, + sym_identifier, + ACTIONS(5032), 1, anon_sym_RPAREN, - ACTIONS(4888), 1, - sym_number_literal, - [69385] = 2, + [71501] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(133), 1, + anon_sym_LBRACE, + STATE(123), 1, + sym_compound_statement, + [71511] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3475), 2, + ACTIONS(5034), 2, anon_sym_COMMA, - anon_sym_SEMI, - [69393] = 3, + anon_sym_RPAREN, + [71519] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5036), 1, + sym_identifier, + ACTIONS(5038), 1, + anon_sym_LPAREN2, + [71529] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, + ACTIONS(511), 1, anon_sym_LBRACE, - STATE(297), 1, + STATE(301), 1, sym_compound_statement, - [69403] = 3, + [71539] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(504), 1, + ACTIONS(45), 1, anon_sym_LBRACE, - STATE(326), 1, + STATE(272), 1, sym_compound_statement, - [69413] = 3, + [71549] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, + ACTIONS(511), 1, anon_sym_LBRACE, - STATE(1742), 1, + STATE(261), 1, sym_compound_statement, - [69423] = 2, + [71559] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4637), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [69431] = 3, + ACTIONS(5040), 2, + anon_sym_DOT_DOT_DOT, + sym_identifier, + [71567] = 3, + ACTIONS(3798), 1, + sym_comment, + ACTIONS(5042), 1, + aux_sym_preproc_include_token2, + ACTIONS(5044), 1, + aux_sym_preproc_arg_token1, + [71577] = 3, + ACTIONS(3798), 1, + sym_comment, + ACTIONS(5046), 1, + aux_sym_preproc_include_token2, + ACTIONS(5048), 1, + aux_sym_preproc_arg_token1, + [71587] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4849), 1, - sym_identifier, - STATE(1853), 1, - sym_attribute, - [69441] = 3, + ACTIONS(2562), 1, + anon_sym_LPAREN2, + STATE(2268), 1, + sym_argument_list, + [71597] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4847), 1, + ACTIONS(4999), 1, anon_sym_LPAREN2, - STATE(436), 1, + STATE(438), 1, sym_parenthesized_expression, - [69451] = 3, + [71607] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(656), 1, - anon_sym_LBRACE, - STATE(279), 1, - sym_compound_statement, - [69461] = 3, + ACTIONS(4999), 1, + anon_sym_LPAREN2, + STATE(464), 1, + sym_parenthesized_expression, + [71617] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(656), 1, + ACTIONS(205), 1, anon_sym_LBRACE, - STATE(329), 1, + STATE(164), 1, sym_compound_statement, - [69471] = 3, - ACTIONS(3630), 1, - sym_comment, - ACTIONS(4890), 1, - aux_sym_preproc_include_token2, - ACTIONS(4892), 1, - aux_sym_preproc_arg_token1, - [69481] = 2, + [71627] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4894), 2, - anon_sym_DOT_DOT_DOT, - sym_identifier, - [69489] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4851), 1, + ACTIONS(4999), 1, anon_sym_LPAREN2, - STATE(1859), 1, + STATE(449), 1, sym_parenthesized_expression, - [69499] = 3, + [71637] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, + ACTIONS(631), 1, anon_sym_LBRACE, - STATE(326), 1, + STATE(322), 1, sym_compound_statement, - [69509] = 3, + [71647] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACE, - STATE(284), 1, - sym_compound_statement, - [69519] = 3, + ACTIONS(4754), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [71655] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4847), 1, + ACTIONS(5001), 1, anon_sym_LPAREN2, - STATE(428), 1, + STATE(1938), 1, sym_parenthesized_expression, - [69529] = 3, + [71665] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, + ACTIONS(205), 1, anon_sym_LBRACE, - STATE(1743), 1, + STATE(166), 1, sym_compound_statement, - [69539] = 3, - ACTIONS(3630), 1, + [71675] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5050), 2, + anon_sym_COMMA, + anon_sym_RBRACK_RBRACK, + [71683] = 2, + ACTIONS(3798), 1, sym_comment, - ACTIONS(4896), 1, + ACTIONS(5052), 1, aux_sym_preproc_include_token2, - ACTIONS(4898), 1, - aux_sym_preproc_arg_token1, - [69549] = 3, + [71690] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACE, - STATE(232), 1, - sym_compound_statement, - [69559] = 3, + ACTIONS(5054), 1, + sym_identifier, + [71697] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4851), 1, - anon_sym_LPAREN2, - STATE(1868), 1, - sym_parenthesized_expression, - [69569] = 2, + ACTIONS(3540), 1, + anon_sym_RBRACE, + [71704] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4626), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [69577] = 3, + ACTIONS(5056), 1, + aux_sym_preproc_if_token2, + [71711] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4847), 1, - anon_sym_LPAREN2, - STATE(410), 1, - sym_parenthesized_expression, - [69587] = 3, + ACTIONS(5058), 1, + sym_identifier, + [71718] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4851), 1, - anon_sym_LPAREN2, - STATE(1932), 1, - sym_parenthesized_expression, - [69597] = 2, + ACTIONS(5060), 1, + anon_sym_SEMI, + [71725] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4900), 1, - anon_sym_RPAREN, - [69604] = 2, + ACTIONS(5062), 1, + aux_sym_preproc_if_token2, + [71732] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4902), 1, + ACTIONS(5064), 1, aux_sym_preproc_if_token2, - [69611] = 2, + [71739] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4904), 1, - anon_sym_RPAREN, - [69618] = 2, - ACTIONS(3630), 1, + ACTIONS(5066), 1, + sym_identifier, + [71746] = 2, + ACTIONS(3798), 1, sym_comment, - ACTIONS(4906), 1, + ACTIONS(5068), 1, aux_sym_preproc_include_token2, - [69625] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4908), 1, - aux_sym_preproc_if_token2, - [69632] = 2, + [71753] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4910), 1, + ACTIONS(5070), 1, aux_sym_preproc_if_token2, - [69639] = 2, + [71760] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4912), 1, - anon_sym_SEMI, - [69646] = 2, + ACTIONS(5072), 1, + anon_sym_COLON, + [71767] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4914), 1, + ACTIONS(5074), 1, aux_sym_preproc_if_token2, - [69653] = 2, + [71774] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4916), 1, - anon_sym_COLON, - [69660] = 2, - ACTIONS(3630), 1, + ACTIONS(5076), 1, + aux_sym_preproc_if_token2, + [71781] = 2, + ACTIONS(3798), 1, sym_comment, - ACTIONS(4918), 1, + ACTIONS(5078), 1, aux_sym_preproc_include_token2, - [69667] = 2, + [71788] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5080), 1, + sym_identifier, + [71795] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4920), 1, + ACTIONS(5082), 1, anon_sym_SEMI, - [69674] = 2, - ACTIONS(3630), 1, + [71802] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5084), 1, + aux_sym_preproc_if_token2, + [71809] = 2, + ACTIONS(3798), 1, sym_comment, - ACTIONS(4922), 1, + ACTIONS(5086), 1, aux_sym_preproc_include_token2, - [69681] = 2, + [71816] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4924), 1, + ACTIONS(5088), 1, anon_sym_RPAREN, - [69688] = 2, - ACTIONS(3630), 1, + [71823] = 2, + ACTIONS(3798), 1, sym_comment, - ACTIONS(4926), 1, + ACTIONS(5090), 1, aux_sym_preproc_include_token2, - [69695] = 2, - ACTIONS(3630), 1, + [71830] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(4928), 1, - aux_sym_preproc_include_token2, - [69702] = 2, + ACTIONS(5092), 1, + anon_sym_RPAREN, + [71837] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4930), 1, - anon_sym_SEMI, - [69709] = 2, - ACTIONS(3630), 1, + ACTIONS(5094), 1, + aux_sym_preproc_if_token2, + [71844] = 2, + ACTIONS(3798), 1, sym_comment, - ACTIONS(4932), 1, + ACTIONS(5096), 1, aux_sym_preproc_include_token2, - [69716] = 2, + [71851] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4934), 1, - anon_sym_RPAREN, - [69723] = 2, - ACTIONS(3630), 1, - sym_comment, - ACTIONS(4936), 1, - aux_sym_preproc_include_token2, - [69730] = 2, - ACTIONS(3630), 1, + ACTIONS(5005), 1, + anon_sym_COMMA, + [71858] = 2, + ACTIONS(3798), 1, sym_comment, - ACTIONS(4938), 1, + ACTIONS(5098), 1, aux_sym_preproc_include_token2, - [69737] = 2, - ACTIONS(3630), 1, + [71865] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(4940), 1, - aux_sym_preproc_include_token2, - [69744] = 2, - ACTIONS(3630), 1, + ACTIONS(5100), 1, + anon_sym_SEMI, + [71872] = 2, + ACTIONS(3798), 1, sym_comment, - ACTIONS(4942), 1, + ACTIONS(3852), 1, aux_sym_preproc_include_token2, - [69751] = 2, - ACTIONS(3630), 1, + [71879] = 2, + ACTIONS(3798), 1, sym_comment, - ACTIONS(4944), 1, + ACTIONS(5102), 1, aux_sym_preproc_include_token2, - [69758] = 2, - ACTIONS(3630), 1, + [71886] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(4946), 1, - aux_sym_preproc_include_token2, - [69765] = 2, - ACTIONS(3630), 1, + ACTIONS(5104), 1, + anon_sym_RPAREN, + [71893] = 2, + ACTIONS(3798), 1, sym_comment, - ACTIONS(4948), 1, + ACTIONS(5106), 1, aux_sym_preproc_include_token2, - [69772] = 2, + [71900] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4950), 1, - sym_identifier, - [69779] = 2, + ACTIONS(3632), 1, + anon_sym_RPAREN, + [71907] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4952), 1, + ACTIONS(5108), 1, sym_identifier, - [69786] = 2, + [71914] = 2, + ACTIONS(3798), 1, + sym_comment, + ACTIONS(5110), 1, + aux_sym_preproc_include_token2, + [71921] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4954), 1, - sym_identifier, - [69793] = 2, + ACTIONS(5112), 1, + anon_sym_SEMI, + [71928] = 2, + ACTIONS(3798), 1, + sym_comment, + ACTIONS(5114), 1, + aux_sym_preproc_include_token2, + [71935] = 2, + ACTIONS(3798), 1, + sym_comment, + ACTIONS(5116), 1, + aux_sym_preproc_include_token2, + [71942] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4956), 1, - anon_sym_COLON, - [69800] = 2, + ACTIONS(5118), 1, + anon_sym_SEMI, + [71949] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4958), 1, - sym_identifier, - [69807] = 2, - ACTIONS(3630), 1, + ACTIONS(5120), 1, + aux_sym_preproc_if_token2, + [71956] = 2, + ACTIONS(3798), 1, sym_comment, - ACTIONS(4960), 1, + ACTIONS(5122), 1, aux_sym_preproc_include_token2, - [69814] = 2, + [71963] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4962), 1, + ACTIONS(3612), 1, anon_sym_SEMI, - [69821] = 2, + [71970] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4964), 1, + ACTIONS(3608), 1, anon_sym_SEMI, - [69828] = 2, + [71977] = 2, + ACTIONS(3798), 1, + sym_comment, + ACTIONS(5124), 1, + aux_sym_preproc_include_token2, + [71984] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3435), 1, + ACTIONS(5126), 1, anon_sym_SEMI, - [69835] = 2, + [71991] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4966), 1, - anon_sym_LPAREN2, - [69842] = 2, + ACTIONS(5128), 1, + sym_identifier, + [71998] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3439), 1, - anon_sym_SEMI, - [69849] = 2, + ACTIONS(5130), 1, + sym_identifier, + [72005] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4968), 1, + ACTIONS(5132), 1, anon_sym_SEMI, - [69856] = 2, + [72012] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4970), 1, + ACTIONS(5134), 1, anon_sym_RPAREN, - [69863] = 2, - ACTIONS(3630), 1, + [72019] = 2, + ACTIONS(3798), 1, sym_comment, - ACTIONS(4972), 1, + ACTIONS(5136), 1, aux_sym_preproc_include_token2, - [69870] = 2, + [72026] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4974), 1, - anon_sym_LPAREN2, - [69877] = 2, - ACTIONS(3630), 1, + ACTIONS(5138), 1, + sym_identifier, + [72033] = 2, + ACTIONS(3798), 1, sym_comment, - ACTIONS(4832), 1, + ACTIONS(4747), 1, aux_sym_preproc_include_token2, - [69884] = 2, + [72040] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5140), 1, + aux_sym_preproc_if_token2, + [72047] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5142), 1, + anon_sym_STAR, + [72054] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5144), 1, + sym_identifier, + [72061] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4976), 1, + ACTIONS(3604), 1, anon_sym_SEMI, - [69891] = 2, + [72068] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5146), 1, + sym_identifier, + [72075] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4978), 1, + ACTIONS(5148), 1, anon_sym_SEMI, - [69898] = 2, + [72082] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4980), 1, + ACTIONS(5150), 1, + anon_sym_LPAREN2, + [72089] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5152), 1, anon_sym_SEMI, - [69905] = 2, + [72096] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4982), 1, - aux_sym_preproc_if_token2, - [69912] = 2, + ACTIONS(5154), 1, + anon_sym_LPAREN2, + [72103] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4984), 1, - aux_sym_preproc_if_token2, - [69919] = 2, + ACTIONS(5156), 1, + anon_sym_LPAREN2, + [72110] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4986), 1, - aux_sym_preproc_if_token2, - [69926] = 2, + ACTIONS(5158), 1, + anon_sym_LPAREN2, + [72117] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5160), 1, + anon_sym_LPAREN2, + [72124] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4988), 1, + ACTIONS(3602), 1, anon_sym_SEMI, - [69933] = 2, + [72131] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4990), 1, - sym_identifier, - [69940] = 2, + ACTIONS(5162), 1, + anon_sym_COLON, + [72138] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4992), 1, - aux_sym_preproc_if_token2, - [69947] = 2, + ACTIONS(5164), 1, + anon_sym_LPAREN2, + [72145] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4994), 1, - aux_sym_preproc_if_token2, - [69954] = 2, + ACTIONS(5166), 1, + anon_sym_RPAREN, + [72152] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4996), 1, + ACTIONS(5168), 1, anon_sym_SEMI, - [69961] = 2, + [72159] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4998), 1, - sym_identifier, - [69968] = 2, + ACTIONS(3634), 1, + anon_sym_RPAREN, + [72166] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5170), 1, + anon_sym_LPAREN2, + [72173] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3393), 1, + ACTIONS(3636), 1, anon_sym_SEMI, - [69975] = 2, + [72180] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5000), 1, + ACTIONS(5172), 1, anon_sym_RPAREN, - [69982] = 2, + [72187] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5002), 1, - anon_sym_RPAREN, - [69989] = 2, + ACTIONS(5174), 1, + anon_sym_COLON, + [72194] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5176), 1, + sym_identifier, + [72201] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5178), 1, + anon_sym_SEMI, + [72208] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5004), 1, + ACTIONS(5180), 1, anon_sym_LPAREN2, - [69996] = 2, + [72215] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5006), 1, + ACTIONS(5182), 1, aux_sym_preproc_if_token2, - [70003] = 2, + [72222] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5008), 1, + ACTIONS(5184), 1, aux_sym_preproc_if_token2, - [70010] = 2, - ACTIONS(3630), 1, + [72229] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(5010), 1, - aux_sym_preproc_include_token2, - [70017] = 2, + ACTIONS(5186), 1, + anon_sym_RPAREN, + [72236] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5012), 1, + ACTIONS(5188), 1, + anon_sym_SEMI, + [72243] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4914), 1, anon_sym_RPAREN, - [70024] = 2, + [72250] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5014), 1, + ACTIONS(5190), 1, aux_sym_preproc_if_token2, - [70031] = 2, + [72257] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5016), 1, + ACTIONS(5192), 1, sym_identifier, - [70038] = 2, - ACTIONS(3630), 1, + [72264] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(5018), 1, - aux_sym_preproc_include_token2, - [70045] = 2, + ACTIONS(5194), 1, + anon_sym_LPAREN2, + [72271] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5020), 1, - anon_sym_SEMI, - [70052] = 2, + ACTIONS(5196), 1, + sym_identifier, + [72278] = 2, + ACTIONS(3798), 1, + sym_comment, + ACTIONS(5198), 1, + aux_sym_preproc_include_token2, + [72285] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5022), 1, - anon_sym_SEMI, - [70059] = 2, + ACTIONS(5200), 1, + anon_sym_LPAREN2, + [72292] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3471), 1, - anon_sym_SEMI, - [70066] = 2, + ACTIONS(5202), 1, + aux_sym_preproc_if_token2, + [72299] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3441), 1, - anon_sym_SEMI, - [70073] = 2, + ACTIONS(5204), 1, + sym_identifier, + [72306] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5024), 1, - anon_sym_SEMI, - [70080] = 2, + ACTIONS(5206), 1, + sym_identifier, + [72313] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5026), 1, + ACTIONS(5208), 1, anon_sym_RPAREN, - [70087] = 2, - ACTIONS(3630), 1, + [72320] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(5028), 1, - aux_sym_preproc_include_token2, - [70094] = 2, - ACTIONS(3630), 1, + ACTIONS(5210), 1, + anon_sym_RPAREN, + [72327] = 2, + ACTIONS(3798), 1, sym_comment, - ACTIONS(4698), 1, + ACTIONS(3907), 1, aux_sym_preproc_include_token2, - [70101] = 2, + [72334] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5030), 1, + ACTIONS(5212), 1, anon_sym_SEMI, - [70108] = 2, + [72341] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5032), 1, + ACTIONS(5214), 1, + anon_sym_LPAREN2, + [72348] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5216), 1, anon_sym_SEMI, - [70115] = 2, + [72355] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5034), 1, - anon_sym_COLON, - [70122] = 2, + ACTIONS(5218), 1, + anon_sym_LPAREN2, + [72362] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5036), 1, - aux_sym_preproc_if_token2, - [70129] = 2, + ACTIONS(5220), 1, + anon_sym_RPAREN, + [72369] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5038), 1, - aux_sym_preproc_if_token2, - [70136] = 2, + ACTIONS(5222), 1, + sym_identifier, + [72376] = 2, + ACTIONS(3798), 1, + sym_comment, + ACTIONS(3941), 1, + aux_sym_preproc_include_token2, + [72383] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5224), 1, + anon_sym_STAR, + [72390] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5040), 1, + ACTIONS(5226), 1, aux_sym_preproc_if_token2, - [70143] = 2, + [72397] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5042), 1, - anon_sym_SEMI, - [70150] = 2, + ACTIONS(5228), 1, + aux_sym_preproc_if_token2, + [72404] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5044), 1, + ACTIONS(5230), 1, aux_sym_preproc_if_token2, - [70157] = 2, + [72411] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5046), 1, + ACTIONS(5232), 1, aux_sym_preproc_if_token2, - [70164] = 2, + [72418] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5048), 1, - anon_sym_SEMI, - [70171] = 2, + ACTIONS(5234), 1, + sym_identifier, + [72425] = 2, + ACTIONS(3798), 1, + sym_comment, + ACTIONS(5236), 1, + aux_sym_preproc_include_token2, + [72432] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5050), 1, + ACTIONS(5238), 1, anon_sym_SEMI, - [70178] = 2, + [72439] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5052), 1, - aux_sym_preproc_if_token2, - [70185] = 2, + ACTIONS(5011), 1, + anon_sym_RBRACE, + [72446] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5054), 1, + ACTIONS(5240), 1, aux_sym_preproc_if_token2, - [70192] = 2, + [72453] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5056), 1, - sym_identifier, - [70199] = 2, + ACTIONS(5242), 1, + anon_sym_RPAREN, + [72460] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5058), 1, - sym_identifier, - [70206] = 2, - ACTIONS(3630), 1, + ACTIONS(5244), 1, + anon_sym_STAR, + [72467] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(5060), 1, - aux_sym_preproc_include_token2, - [70213] = 2, + ACTIONS(5246), 1, + anon_sym_SEMI, + [72474] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5062), 1, - anon_sym_RPAREN, - [70220] = 2, + ACTIONS(5248), 1, + aux_sym_preproc_if_token2, + [72481] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5064), 1, + ACTIONS(5250), 1, anon_sym_RPAREN, - [70227] = 2, + [72488] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5066), 1, - anon_sym_COLON, - [70234] = 2, + ACTIONS(5252), 1, + aux_sym_preproc_if_token2, + [72495] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5068), 1, + ACTIONS(5254), 1, aux_sym_preproc_if_token2, - [70241] = 2, - ACTIONS(3630), 1, + [72502] = 2, + ACTIONS(3798), 1, sym_comment, - ACTIONS(5070), 1, + ACTIONS(5256), 1, aux_sym_preproc_include_token2, - [70248] = 2, + [72509] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5072), 1, - anon_sym_SEMI, - [70255] = 2, + ACTIONS(5258), 1, + anon_sym_RBRACE, + [72516] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5074), 1, - sym_identifier, - [70262] = 2, + ACTIONS(4209), 1, + anon_sym_RBRACE, + [72523] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5076), 1, - anon_sym_SEMI, - [70269] = 2, - ACTIONS(3630), 1, + ACTIONS(5260), 1, + sym_identifier, + [72530] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(5078), 1, - aux_sym_preproc_include_token2, - [70276] = 2, + ACTIONS(5262), 1, + sym_identifier, + [72537] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3433), 1, - anon_sym_SEMI, - [70283] = 2, + ACTIONS(5264), 1, + sym_identifier, + [72544] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5080), 1, - anon_sym_SEMI, - [70290] = 2, + ACTIONS(4483), 1, + anon_sym_COMMA, + [72551] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5082), 1, - anon_sym_RPAREN, - [70297] = 2, + ACTIONS(5266), 1, + anon_sym_RBRACE, + [72558] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3465), 1, - anon_sym_RPAREN, - [70304] = 2, - ACTIONS(3630), 1, + ACTIONS(5268), 1, + sym_number_literal, + [72565] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(5084), 1, - aux_sym_preproc_include_token2, - [70311] = 2, + ACTIONS(5270), 1, + anon_sym_SEMI, + [72572] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5086), 1, - anon_sym_LPAREN2, - [70318] = 2, - ACTIONS(3630), 1, + ACTIONS(5272), 1, + sym_primitive_type, + [72579] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(4783), 1, - aux_sym_preproc_include_token2, - [70325] = 2, + ACTIONS(5274), 1, + anon_sym_SEMI, + [72586] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5088), 1, + ACTIONS(3600), 1, anon_sym_SEMI, - [70332] = 2, + [72593] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5090), 1, + ACTIONS(5276), 1, sym_identifier, - [70339] = 2, + [72600] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5092), 1, + ACTIONS(5278), 1, + anon_sym_COLON, + [72607] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3596), 1, anon_sym_SEMI, - [70346] = 2, + [72614] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5094), 1, - anon_sym_RPAREN, - [70353] = 2, + ACTIONS(5280), 1, + sym_identifier, + [72621] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5096), 1, - anon_sym_COLON, - [70360] = 2, + ACTIONS(5282), 1, + aux_sym_preproc_if_token2, + [72628] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5098), 1, + ACTIONS(5284), 1, + aux_sym_preproc_if_token2, + [72635] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5286), 1, anon_sym_SEMI, - [70367] = 2, + [72642] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5100), 1, + ACTIONS(5288), 1, anon_sym_SEMI, - [70374] = 2, + [72649] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5102), 1, - sym_identifier, - [70381] = 2, + ACTIONS(5290), 1, + aux_sym_preproc_if_token2, + [72656] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5104), 1, - anon_sym_LPAREN2, - [70388] = 2, + ACTIONS(5292), 1, + aux_sym_preproc_if_token2, + [72663] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5106), 1, + ACTIONS(5294), 1, + anon_sym_RPAREN, + [72670] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5296), 1, sym_identifier, - [70395] = 2, + [72677] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5108), 1, + ACTIONS(5298), 1, sym_identifier, - [70402] = 2, + [72684] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5110), 1, - anon_sym_LPAREN2, - [70409] = 2, + ACTIONS(5300), 1, + anon_sym_RPAREN, + [72691] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5112), 1, + ACTIONS(5302), 1, anon_sym_RPAREN, - [70416] = 2, + [72698] = 2, + ACTIONS(3798), 1, + sym_comment, + ACTIONS(5304), 1, + aux_sym_preproc_include_token2, + [72705] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5114), 1, + ACTIONS(5306), 1, anon_sym_RPAREN, - [70423] = 2, + [72712] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5116), 1, - aux_sym_preproc_if_token2, - [70430] = 2, + ACTIONS(5308), 1, + anon_sym_SEMI, + [72719] = 2, + ACTIONS(3798), 1, + sym_comment, + ACTIONS(4979), 1, + aux_sym_preproc_include_token2, + [72726] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5118), 1, - aux_sym_preproc_if_token2, - [70437] = 2, + ACTIONS(5310), 1, + sym_identifier, + [72733] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5120), 1, + ACTIONS(5312), 1, + sym_identifier, + [72740] = 2, + ACTIONS(3798), 1, + sym_comment, + ACTIONS(4973), 1, + aux_sym_preproc_include_token2, + [72747] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5314), 1, + anon_sym_LPAREN2, + [72754] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5316), 1, + anon_sym_LPAREN2, + [72761] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5318), 1, aux_sym_preproc_if_token2, - [70444] = 2, + [72768] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5122), 1, - sym_identifier, - [70451] = 2, + ACTIONS(5320), 1, + anon_sym_SEMI, + [72775] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5322), 1, + anon_sym_COLON, + [72782] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5124), 1, - anon_sym_RPAREN, - [70458] = 2, + ACTIONS(5324), 1, + sym_identifier, + [72789] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5126), 1, - anon_sym_SEMI, - [70465] = 2, + ACTIONS(5326), 1, + anon_sym_LPAREN2, + [72796] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5128), 1, - aux_sym_preproc_if_token2, - [70472] = 2, - ACTIONS(3), 1, + ACTIONS(4601), 1, + anon_sym_COMMA, + [72803] = 2, + ACTIONS(3798), 1, sym_comment, - ACTIONS(3367), 1, - anon_sym_RBRACE, - [70479] = 2, + ACTIONS(5328), 1, + aux_sym_preproc_include_token2, + [72810] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5130), 1, - aux_sym_preproc_if_token2, - [70486] = 2, + ACTIONS(5330), 1, + anon_sym_LPAREN2, + [72817] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5132), 1, - anon_sym_SEMI, - [70493] = 2, + ACTIONS(5332), 1, + anon_sym_LPAREN2, + [72824] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5134), 1, - anon_sym_SEMI, - [70500] = 2, + ACTIONS(3594), 1, + anon_sym_RPAREN, + [72831] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5136), 1, - anon_sym_LPAREN2, - [70507] = 2, + ACTIONS(5334), 1, + aux_sym_preproc_if_token2, + [72838] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5138), 1, + ACTIONS(5336), 1, aux_sym_preproc_if_token2, - [70514] = 2, + [72845] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5140), 1, - sym_identifier, - [70521] = 2, + ACTIONS(5338), 1, + anon_sym_LPAREN2, + [72852] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5142), 1, + ACTIONS(5340), 1, aux_sym_preproc_if_token2, - [70528] = 2, + [72859] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5144), 1, + ACTIONS(5342), 1, anon_sym_RPAREN, - [70535] = 2, + [72866] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5146), 1, + ACTIONS(5344), 1, anon_sym_RPAREN, - [70542] = 2, + [72873] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3421), 1, + ACTIONS(5346), 1, anon_sym_RPAREN, - [70549] = 2, + [72880] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5148), 1, - anon_sym_RPAREN, - [70556] = 2, + ACTIONS(5348), 1, + aux_sym_preproc_if_token2, + [72887] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5150), 1, + ACTIONS(5350), 1, + anon_sym_SEMI, + [72894] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5352), 1, anon_sym_RPAREN, - [70563] = 2, + [72901] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5152), 1, + ACTIONS(3544), 1, anon_sym_RPAREN, - [70570] = 2, + [72908] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5154), 1, + ACTIONS(5354), 1, sym_identifier, - [70577] = 2, + [72915] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5156), 1, + ACTIONS(5356), 1, sym_identifier, - [70584] = 2, + [72922] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5158), 1, - sym_primitive_type, - [70591] = 2, + ACTIONS(5358), 1, + anon_sym_SEMI, + [72929] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5160), 1, + ACTIONS(3624), 1, + anon_sym_RPAREN, + [72936] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5360), 1, aux_sym_preproc_if_token2, - [70598] = 2, - ACTIONS(3630), 1, + [72943] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(5162), 1, - aux_sym_preproc_include_token2, - [70605] = 2, + ACTIONS(3622), 1, + anon_sym_SEMI, + [72950] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5164), 1, + ACTIONS(5362), 1, sym_identifier, - [70612] = 2, + [72957] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5166), 1, - sym_identifier, - [70619] = 2, + ACTIONS(3630), 1, + anon_sym_RPAREN, + [72964] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5168), 1, - anon_sym_SEMI, - [70626] = 2, + ACTIONS(5364), 1, + anon_sym_RBRACK, + [72971] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5170), 1, + ACTIONS(5366), 1, anon_sym_SEMI, - [70633] = 2, + [72978] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3489), 1, - anon_sym_SEMI, - [70640] = 2, + ACTIONS(5368), 1, + aux_sym_preproc_if_token2, + [72985] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3437), 1, - anon_sym_SEMI, - [70647] = 2, + ACTIONS(5370), 1, + sym_identifier, + [72992] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5172), 1, - anon_sym_SEMI, - [70654] = 2, + ACTIONS(5372), 1, + sym_identifier, + [72999] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5174), 1, - anon_sym_RPAREN, - [70661] = 2, + ACTIONS(5374), 1, + anon_sym_SEMI, + [73006] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3485), 1, + ACTIONS(5376), 1, anon_sym_RPAREN, - [70668] = 2, - ACTIONS(3630), 1, - sym_comment, - ACTIONS(5176), 1, - aux_sym_preproc_include_token2, - [70675] = 2, + [73013] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5178), 1, - ts_builtin_sym_end, - [70682] = 2, - ACTIONS(3630), 1, + ACTIONS(5378), 1, + anon_sym_LPAREN2, + [73020] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(4830), 1, - aux_sym_preproc_include_token2, - [70689] = 2, + ACTIONS(5380), 1, + anon_sym_SEMI, + [73027] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5180), 1, + ACTIONS(3590), 1, anon_sym_SEMI, - [70696] = 2, + [73034] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5182), 1, + ACTIONS(5382), 1, sym_identifier, - [70703] = 2, + [73041] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5184), 1, - anon_sym_SEMI, - [70710] = 2, + ACTIONS(5384), 1, + anon_sym_while, + [73048] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5186), 1, - anon_sym_COLON, - [70717] = 2, + ACTIONS(3588), 1, + anon_sym_SEMI, + [73055] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5188), 1, + ACTIONS(5386), 1, sym_identifier, - [70724] = 2, + [73062] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5190), 1, + ACTIONS(5388), 1, sym_identifier, - [70731] = 2, + [73069] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5192), 1, + ACTIONS(5390), 1, sym_identifier, - [70738] = 2, - ACTIONS(3630), 1, - sym_comment, - ACTIONS(4728), 1, - aux_sym_preproc_include_token2, - [70745] = 2, - ACTIONS(3630), 1, - sym_comment, - ACTIONS(5194), 1, - aux_sym_preproc_include_token2, - [70752] = 2, + [73076] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3431), 1, + ACTIONS(5392), 1, anon_sym_SEMI, - [70759] = 2, + [73083] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5196), 1, + ACTIONS(5394), 1, + aux_sym_preproc_if_token2, + [73090] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5396), 1, anon_sym_RPAREN, - [70766] = 2, + [73097] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5198), 1, - anon_sym_LPAREN2, - [70773] = 2, + ACTIONS(5398), 1, + aux_sym_preproc_if_token2, + [73104] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5200), 1, - sym_identifier, - [70780] = 2, + ACTIONS(5400), 1, + anon_sym_LPAREN2, + [73111] = 2, + ACTIONS(3798), 1, + sym_comment, + ACTIONS(5402), 1, + aux_sym_preproc_include_token2, + [73118] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5202), 1, - anon_sym_SEMI, - [70787] = 2, + ACTIONS(5404), 1, + anon_sym_RPAREN, + [73125] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5204), 1, + ACTIONS(5406), 1, anon_sym_LPAREN2, - [70794] = 2, - ACTIONS(3), 1, + [73132] = 2, + ACTIONS(2318), 1, + aux_sym_preproc_include_token2, + ACTIONS(3798), 1, sym_comment, - ACTIONS(5206), 1, - sym_identifier, - [70801] = 2, + [73139] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5208), 1, - anon_sym_while, - [70808] = 2, + ACTIONS(5408), 1, + anon_sym_RPAREN, + [73146] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3447), 1, - anon_sym_SEMI, - [70815] = 2, + ACTIONS(5410), 1, + anon_sym_COMMA, + [73153] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5210), 1, + ACTIONS(5412), 1, anon_sym_RPAREN, - [70822] = 2, + [73160] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5212), 1, - anon_sym_SEMI, - [70829] = 2, + ACTIONS(5414), 1, + anon_sym_RPAREN, + [73167] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5214), 1, - anon_sym_SEMI, - [70836] = 2, + ACTIONS(5416), 1, + anon_sym_RPAREN, + [73174] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5216), 1, - anon_sym_STAR, - [70843] = 2, + ACTIONS(5418), 1, + anon_sym_SEMI, + [73181] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5218), 1, + ACTIONS(5420), 1, anon_sym_while, - [70850] = 2, + [73188] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5220), 1, + ACTIONS(5422), 1, sym_identifier, - [70857] = 2, - ACTIONS(3630), 1, - sym_comment, - ACTIONS(3656), 1, - aux_sym_preproc_include_token2, - [70864] = 2, - ACTIONS(3630), 1, + [73195] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(5222), 1, - aux_sym_preproc_include_token2, - [70871] = 2, + ACTIONS(5424), 1, + anon_sym_RBRACE, + [73202] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5224), 1, - sym_identifier, - [70878] = 2, + ACTIONS(5426), 1, + aux_sym_preproc_if_token2, + [73209] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5226), 1, - sym_identifier, - [70885] = 2, + ACTIONS(5428), 1, + anon_sym_RBRACE, + [73216] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5228), 1, - anon_sym_STAR, - [70892] = 2, + ACTIONS(5430), 1, + aux_sym_preproc_if_token2, + [73223] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4806), 1, - anon_sym_RPAREN, - [70899] = 2, + ACTIONS(3614), 1, + anon_sym_SEMI, + [73230] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5230), 1, - sym_identifier, - [70906] = 2, + ACTIONS(5432), 1, + aux_sym_preproc_if_token2, + [73237] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5232), 1, - anon_sym_RPAREN, - [70913] = 2, + ACTIONS(5434), 1, + anon_sym_SEMI, + [73244] = 2, + ACTIONS(3798), 1, + sym_comment, + ACTIONS(5436), 1, + aux_sym_preproc_include_token2, + [73251] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5234), 1, + ACTIONS(5438), 1, sym_identifier, - [70920] = 2, + [73258] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5236), 1, + ACTIONS(5440), 1, aux_sym_preproc_if_token2, - [70927] = 2, + [73265] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3973), 1, - anon_sym_RBRACE, - [70934] = 2, + ACTIONS(5442), 1, + aux_sym_preproc_if_token2, + [73272] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5238), 1, - sym_primitive_type, - [70941] = 2, + ACTIONS(5444), 1, + aux_sym_preproc_if_token2, + [73279] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5240), 1, - anon_sym_STAR, - [70948] = 2, + ACTIONS(5446), 1, + sym_identifier, + [73286] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5242), 1, - anon_sym_RPAREN, - [70955] = 2, + ACTIONS(5448), 1, + anon_sym_RBRACE, + [73293] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3473), 1, - anon_sym_SEMI, - [70962] = 2, + ACTIONS(5450), 1, + aux_sym_preproc_if_token2, + [73300] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4427), 1, - anon_sym_COMMA, - [70969] = 2, + ACTIONS(5452), 1, + aux_sym_preproc_if_token2, + [73307] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5244), 1, - anon_sym_RPAREN, - [70976] = 2, + ACTIONS(5454), 1, + aux_sym_preproc_if_token2, + [73314] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5246), 1, + ACTIONS(5456), 1, anon_sym_COMMA, - [70983] = 2, + [73321] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5248), 1, - anon_sym_COMMA, - [70990] = 2, + ACTIONS(5458), 1, + aux_sym_preproc_if_token2, + [73328] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5250), 1, + ACTIONS(5460), 1, anon_sym_RPAREN, - [70997] = 2, + [73335] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5252), 1, - aux_sym_preproc_if_token2, - [71004] = 2, + ACTIONS(5462), 1, + anon_sym_RPAREN, + [73342] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5254), 1, + ACTIONS(5464), 1, anon_sym_RPAREN, - [71011] = 2, - ACTIONS(2426), 1, - aux_sym_preproc_include_token2, - ACTIONS(3630), 1, - sym_comment, - [71018] = 2, - ACTIONS(3630), 1, + [73349] = 2, + ACTIONS(3798), 1, sym_comment, - ACTIONS(3688), 1, + ACTIONS(5466), 1, aux_sym_preproc_include_token2, - [71025] = 2, - ACTIONS(3630), 1, + [73356] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(5256), 1, - aux_sym_preproc_include_token2, - [71032] = 2, - ACTIONS(2422), 1, - aux_sym_preproc_include_token2, - ACTIONS(3630), 1, + ACTIONS(5468), 1, + anon_sym_RPAREN, + [73363] = 2, + ACTIONS(3), 1, sym_comment, - [71039] = 2, + ACTIONS(3592), 1, + anon_sym_SEMI, + [73370] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5258), 1, + ACTIONS(5470), 1, anon_sym_RPAREN, - [71046] = 2, + [73377] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5260), 1, - anon_sym_RBRACE, - [71053] = 2, + ACTIONS(5472), 1, + anon_sym_LPAREN2, + [73384] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5262), 1, + ACTIONS(5474), 1, anon_sym_RPAREN, - [71060] = 2, + [73391] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5264), 1, - sym_identifier, - [71067] = 2, + ACTIONS(5476), 1, + anon_sym_RPAREN, + [73398] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5266), 1, - anon_sym_LPAREN2, - [71074] = 2, + ACTIONS(5478), 1, + anon_sym_RPAREN, + [73405] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5268), 1, - sym_identifier, - [71081] = 2, + ACTIONS(3606), 1, + anon_sym_RPAREN, + [73412] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5270), 1, - anon_sym_COLON, - [71088] = 2, + ACTIONS(5480), 1, + anon_sym_RPAREN, + [73419] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5272), 1, - aux_sym_preproc_if_token2, - [71095] = 2, + ACTIONS(5482), 1, + anon_sym_SEMI, + [73426] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5274), 1, - anon_sym_COLON, - [71102] = 2, + ACTIONS(5484), 1, + anon_sym_RPAREN, + [73433] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5276), 1, - aux_sym_preproc_if_token2, - [71109] = 2, + ACTIONS(5486), 1, + anon_sym_COLON, + [73440] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5278), 1, - aux_sym_preproc_if_token2, - [71116] = 2, + ACTIONS(5488), 1, + anon_sym_RBRACK, + [73447] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5280), 1, + ACTIONS(5490), 1, anon_sym_RPAREN, - [71123] = 2, + [73454] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5282), 1, - anon_sym_LPAREN2, - [71130] = 2, + ACTIONS(5492), 1, + anon_sym_SEMI, + [73461] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5284), 1, - anon_sym_LPAREN2, - [71137] = 2, + ACTIONS(3586), 1, + anon_sym_SEMI, + [73468] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5286), 1, - aux_sym_preproc_if_token2, - [71144] = 2, + ACTIONS(5494), 1, + anon_sym_LPAREN2, + [73475] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5288), 1, - aux_sym_preproc_if_token2, - [71151] = 2, + ACTIONS(3598), 1, + anon_sym_RPAREN, + [73482] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5290), 1, - aux_sym_preproc_if_token2, - [71158] = 2, + ACTIONS(5496), 1, + anon_sym_RPAREN, + [73489] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5292), 1, - anon_sym_while, - [71165] = 2, + ACTIONS(5498), 1, + anon_sym_RPAREN, + [73496] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5294), 1, - aux_sym_preproc_if_token2, - [71172] = 2, - ACTIONS(3), 1, + ACTIONS(5500), 1, + anon_sym_while, + [73503] = 2, + ACTIONS(3798), 1, sym_comment, - ACTIONS(5296), 1, - aux_sym_preproc_if_token2, - [71179] = 2, - ACTIONS(3), 1, + ACTIONS(5502), 1, + aux_sym_preproc_include_token2, + [73510] = 2, + ACTIONS(3798), 1, sym_comment, - ACTIONS(5298), 1, - aux_sym_preproc_if_token2, - [71186] = 2, + ACTIONS(5504), 1, + aux_sym_preproc_include_token2, + [73517] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5300), 1, + ACTIONS(5506), 1, anon_sym_RBRACE, - [71193] = 2, + [73524] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5302), 1, - anon_sym_RPAREN, - [71200] = 2, + ACTIONS(5508), 1, + aux_sym_preproc_if_token2, + [73531] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5304), 1, - anon_sym_RBRACK, - [71207] = 2, + ACTIONS(5510), 1, + aux_sym_preproc_if_token2, + [73538] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3443), 1, + ACTIONS(5512), 1, anon_sym_RPAREN, - [71214] = 2, + [73545] = 2, + ACTIONS(2324), 1, + aux_sym_preproc_include_token2, + ACTIONS(3798), 1, + sym_comment, + [73552] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5306), 1, + ACTIONS(5514), 1, anon_sym_while, - [71221] = 2, + [73559] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5308), 1, - sym_identifier, - [71228] = 2, + ACTIONS(5516), 1, + aux_sym_preproc_if_token2, + [73566] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5310), 1, + ACTIONS(5518), 1, aux_sym_preproc_if_token2, - [71235] = 2, + [73573] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5312), 1, + ACTIONS(5520), 1, aux_sym_preproc_if_token2, - [71242] = 2, + [73580] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5314), 1, - anon_sym_RBRACE, - [71249] = 2, + ACTIONS(3584), 1, + anon_sym_SEMI, + [73587] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5316), 1, + ACTIONS(5522), 1, aux_sym_preproc_if_token2, - [71256] = 2, + [73594] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5318), 1, - aux_sym_preproc_if_token2, - [71263] = 2, + ACTIONS(5524), 1, + anon_sym_SEMI, + [73601] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5320), 1, - aux_sym_preproc_if_token2, - [71270] = 2, + ACTIONS(5526), 1, + anon_sym_RPAREN, + [73608] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5322), 1, + ACTIONS(5528), 1, anon_sym_while, - [71277] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5324), 1, - anon_sym_RBRACE, - [71284] = 2, + [73615] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5326), 1, + ACTIONS(5530), 1, aux_sym_preproc_if_token2, - [71291] = 2, - ACTIONS(3630), 1, - sym_comment, - ACTIONS(3662), 1, - aux_sym_preproc_include_token2, - [71298] = 2, + [73622] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5328), 1, - aux_sym_preproc_if_token2, - [71305] = 2, + ACTIONS(5532), 1, + anon_sym_RPAREN, + [73629] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5330), 1, - anon_sym_LPAREN2, - [71312] = 2, + ACTIONS(5534), 1, + sym_identifier, + [73636] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5332), 1, - sym_identifier, - [71319] = 2, + ACTIONS(3582), 1, + anon_sym_RPAREN, + [73643] = 2, + ACTIONS(3798), 1, + sym_comment, + ACTIONS(5536), 1, + aux_sym_preproc_include_token2, + [73650] = 2, + ACTIONS(3798), 1, + sym_comment, + ACTIONS(4801), 1, + aux_sym_preproc_include_token2, + [73657] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5334), 1, + ACTIONS(5538), 1, anon_sym_LPAREN2, - [71326] = 2, + [73664] = 2, + ACTIONS(3798), 1, + sym_comment, + ACTIONS(5540), 1, + aux_sym_preproc_include_token2, + [73671] = 2, + ACTIONS(3798), 1, + sym_comment, + ACTIONS(4797), 1, + aux_sym_preproc_include_token2, + [73678] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5336), 1, - sym_identifier, - [71333] = 2, + ACTIONS(5542), 1, + anon_sym_RPAREN, + [73685] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5338), 1, - anon_sym_RBRACK, - [71340] = 2, + ACTIONS(5544), 1, + anon_sym_LPAREN2, + [73692] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5340), 1, - anon_sym_RPAREN, - [71347] = 2, + ACTIONS(5546), 1, + sym_identifier, + [73699] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3469), 1, - anon_sym_RPAREN, - [71354] = 2, + ACTIONS(5548), 1, + anon_sym_SEMI, + [73706] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3463), 1, - anon_sym_RPAREN, - [71361] = 2, + ACTIONS(5550), 1, + anon_sym_COLON, + [73713] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3461), 1, + ACTIONS(5552), 1, anon_sym_RPAREN, - [71368] = 2, + [73720] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5342), 1, + ACTIONS(5554), 1, aux_sym_preproc_if_token2, - [71375] = 2, + [73727] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5344), 1, + ACTIONS(5556), 1, aux_sym_preproc_if_token2, - [71382] = 2, + [73734] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5346), 1, + ACTIONS(5558), 1, aux_sym_preproc_if_token2, - [71389] = 2, + [73741] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5348), 1, - sym_identifier, - [71396] = 2, + ACTIONS(5560), 1, + anon_sym_SEMI, + [73748] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5350), 1, - anon_sym_RBRACE, - [71403] = 2, + ACTIONS(5562), 1, + ts_builtin_sym_end, + [73755] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4259), 1, - anon_sym_COMMA, - [71410] = 2, + ACTIONS(5564), 1, + anon_sym_SEMI, + [73762] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5352), 1, - aux_sym_preproc_if_token2, - [71417] = 2, + ACTIONS(5566), 1, + anon_sym_SEMI, + [73769] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5354), 1, - sym_identifier, - [71424] = 2, + ACTIONS(5568), 1, + anon_sym_RPAREN, + [73776] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5356), 1, - anon_sym_RBRACE, - [71431] = 2, + ACTIONS(5570), 1, + anon_sym_LPAREN2, + [73783] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5358), 1, - aux_sym_preproc_if_token2, - [71438] = 2, + ACTIONS(5572), 1, + anon_sym_LPAREN2, + [73790] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5360), 1, - aux_sym_preproc_if_token2, - [71445] = 2, + ACTIONS(5574), 1, + anon_sym_LPAREN2, + [73797] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5362), 1, - aux_sym_preproc_if_token2, - [71452] = 2, + ACTIONS(5576), 1, + sym_identifier, + [73804] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5364), 1, - aux_sym_preproc_if_token2, - [71459] = 2, + ACTIONS(5578), 1, + anon_sym_SEMI, + [73811] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3389), 1, - anon_sym_RBRACE, - [71466] = 2, + ACTIONS(5580), 1, + anon_sym_SEMI, + [73818] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5366), 1, + ACTIONS(5582), 1, anon_sym_LPAREN2, - [71473] = 2, + [73825] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5368), 1, - sym_identifier, - [71480] = 2, + ACTIONS(5584), 1, + anon_sym_STAR, + [73832] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5370), 1, + ACTIONS(5586), 1, anon_sym_COLON, - [71487] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5372), 1, - anon_sym_RPAREN, - [71494] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3459), 1, - anon_sym_SEMI, - [71501] = 2, + [73839] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3481), 1, - anon_sym_RPAREN, - [71508] = 2, - ACTIONS(3), 1, + ACTIONS(5588), 1, + anon_sym_COLON, + [73846] = 2, + ACTIONS(3798), 1, sym_comment, - ACTIONS(3483), 1, - anon_sym_RPAREN, - [71515] = 2, + ACTIONS(3959), 1, + aux_sym_preproc_include_token2, + [73853] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5374), 1, + ACTIONS(5590), 1, aux_sym_preproc_if_token2, - [71522] = 2, + [73860] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5376), 1, - anon_sym_SEMI, - [71529] = 2, + ACTIONS(3534), 1, + anon_sym_RBRACE, + [73867] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5378), 1, + ACTIONS(5592), 1, aux_sym_preproc_if_token2, - [71536] = 2, + [73874] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5380), 1, - sym_identifier, - [71543] = 2, + ACTIONS(5594), 1, + anon_sym_SEMI, + [73881] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4861), 1, - anon_sym_COMMA, - [71550] = 2, + ACTIONS(5596), 1, + anon_sym_RPAREN, + [73888] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5382), 1, - sym_identifier, - [71557] = 2, + ACTIONS(5598), 1, + anon_sym_LPAREN2, + [73895] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5384), 1, + ACTIONS(5600), 1, aux_sym_preproc_if_token2, - [71564] = 2, + [73902] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5386), 1, - aux_sym_preproc_if_token2, - [71571] = 2, + ACTIONS(5602), 1, + anon_sym_LPAREN2, + [73909] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5388), 1, - sym_identifier, - [71578] = 2, + ACTIONS(5604), 1, + anon_sym_LPAREN2, + [73916] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5390), 1, + ACTIONS(5606), 1, anon_sym_RPAREN, - [71585] = 2, + [73923] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5392), 1, - sym_identifier, - [71592] = 2, + ACTIONS(5608), 1, + aux_sym_preproc_if_token2, + [73930] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5394), 1, - sym_number_literal, - [71599] = 2, + ACTIONS(5610), 1, + anon_sym_LPAREN2, + [73937] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5396), 1, - aux_sym_preproc_if_token2, - [71606] = 2, + ACTIONS(5612), 1, + sym_primitive_type, + [73944] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5398), 1, - aux_sym_preproc_if_token2, - [71613] = 2, - ACTIONS(3630), 1, + ACTIONS(5614), 1, + anon_sym_RPAREN, + [73951] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(3754), 1, - aux_sym_preproc_include_token2, - [71620] = 2, + ACTIONS(5616), 1, + anon_sym_RPAREN, + [73958] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5400), 1, + ACTIONS(5618), 1, anon_sym_LPAREN2, - [71627] = 2, + [73965] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5402), 1, - sym_identifier, - [71634] = 2, + ACTIONS(5620), 1, + anon_sym_RPAREN, + [73972] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3445), 1, - anon_sym_SEMI, - [71641] = 2, + ACTIONS(5622), 1, + anon_sym_RPAREN, + [73979] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5404), 1, + ACTIONS(5624), 1, anon_sym_LPAREN2, - [71648] = 2, + [73986] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3449), 1, - anon_sym_SEMI, - [71655] = 2, + ACTIONS(5626), 1, + anon_sym_RPAREN, + [73993] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5406), 1, - anon_sym_SEMI, - [71662] = 2, + ACTIONS(5628), 1, + sym_identifier, + [74000] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5408), 1, - anon_sym_STAR, - [71669] = 2, + ACTIONS(5630), 1, + anon_sym_RPAREN, + [74007] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5410), 1, + ACTIONS(5632), 1, anon_sym_LPAREN2, - [71676] = 2, + [74014] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5412), 1, - anon_sym_SEMI, - [71683] = 2, + ACTIONS(5634), 1, + aux_sym_preproc_if_token2, + [74021] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4869), 1, - anon_sym_RBRACE, - [71690] = 2, + ACTIONS(5636), 1, + sym_identifier, + [74028] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5414), 1, + ACTIONS(5638), 1, anon_sym_LPAREN2, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(558)] = 0, - [SMALL_STATE(559)] = 112, - [SMALL_STATE(560)] = 224, - [SMALL_STATE(561)] = 338, - [SMALL_STATE(562)] = 450, - [SMALL_STATE(563)] = 562, - [SMALL_STATE(564)] = 676, - [SMALL_STATE(565)] = 788, - [SMALL_STATE(566)] = 900, - [SMALL_STATE(567)] = 1017, - [SMALL_STATE(568)] = 1128, - [SMALL_STATE(569)] = 1236, - [SMALL_STATE(570)] = 1344, - [SMALL_STATE(571)] = 1452, - [SMALL_STATE(572)] = 1560, - [SMALL_STATE(573)] = 1668, - [SMALL_STATE(574)] = 1774, - [SMALL_STATE(575)] = 1880, - [SMALL_STATE(576)] = 1988, - [SMALL_STATE(577)] = 2096, - [SMALL_STATE(578)] = 2204, - [SMALL_STATE(579)] = 2310, - [SMALL_STATE(580)] = 2416, - [SMALL_STATE(581)] = 2524, - [SMALL_STATE(582)] = 2632, - [SMALL_STATE(583)] = 2740, - [SMALL_STATE(584)] = 2848, - [SMALL_STATE(585)] = 2956, - [SMALL_STATE(586)] = 3064, - [SMALL_STATE(587)] = 3172, - [SMALL_STATE(588)] = 3280, - [SMALL_STATE(589)] = 3388, - [SMALL_STATE(590)] = 3496, - [SMALL_STATE(591)] = 3604, - [SMALL_STATE(592)] = 3712, - [SMALL_STATE(593)] = 3820, - [SMALL_STATE(594)] = 3893, - [SMALL_STATE(595)] = 3996, - [SMALL_STATE(596)] = 4101, - [SMALL_STATE(597)] = 4206, - [SMALL_STATE(598)] = 4309, - [SMALL_STATE(599)] = 4414, - [SMALL_STATE(600)] = 4519, - [SMALL_STATE(601)] = 4622, - [SMALL_STATE(602)] = 4727, - [SMALL_STATE(603)] = 4832, - [SMALL_STATE(604)] = 4935, - [SMALL_STATE(605)] = 5038, - [SMALL_STATE(606)] = 5141, - [SMALL_STATE(607)] = 5246, - [SMALL_STATE(608)] = 5351, - [SMALL_STATE(609)] = 5454, - [SMALL_STATE(610)] = 5559, - [SMALL_STATE(611)] = 5632, - [SMALL_STATE(612)] = 5737, - [SMALL_STATE(613)] = 5842, - [SMALL_STATE(614)] = 5947, - [SMALL_STATE(615)] = 6052, - [SMALL_STATE(616)] = 6155, - [SMALL_STATE(617)] = 6228, - [SMALL_STATE(618)] = 6333, - [SMALL_STATE(619)] = 6438, - [SMALL_STATE(620)] = 6541, - [SMALL_STATE(621)] = 6646, - [SMALL_STATE(622)] = 6749, - [SMALL_STATE(623)] = 6851, - [SMALL_STATE(624)] = 6953, - [SMALL_STATE(625)] = 7055, - [SMALL_STATE(626)] = 7157, - [SMALL_STATE(627)] = 7259, - [SMALL_STATE(628)] = 7359, - [SMALL_STATE(629)] = 7461, - [SMALL_STATE(630)] = 7563, - [SMALL_STATE(631)] = 7665, - [SMALL_STATE(632)] = 7765, - [SMALL_STATE(633)] = 7865, - [SMALL_STATE(634)] = 7965, - [SMALL_STATE(635)] = 8065, - [SMALL_STATE(636)] = 8165, - [SMALL_STATE(637)] = 8265, - [SMALL_STATE(638)] = 8365, - [SMALL_STATE(639)] = 8465, - [SMALL_STATE(640)] = 8565, - [SMALL_STATE(641)] = 8665, - [SMALL_STATE(642)] = 8765, - [SMALL_STATE(643)] = 8867, - [SMALL_STATE(644)] = 8967, - [SMALL_STATE(645)] = 9067, - [SMALL_STATE(646)] = 9167, - [SMALL_STATE(647)] = 9267, - [SMALL_STATE(648)] = 9367, - [SMALL_STATE(649)] = 9467, - [SMALL_STATE(650)] = 9567, - [SMALL_STATE(651)] = 9669, - [SMALL_STATE(652)] = 9771, - [SMALL_STATE(653)] = 9873, - [SMALL_STATE(654)] = 9975, - [SMALL_STATE(655)] = 10045, - [SMALL_STATE(656)] = 10147, - [SMALL_STATE(657)] = 10247, - [SMALL_STATE(658)] = 10349, - [SMALL_STATE(659)] = 10451, - [SMALL_STATE(660)] = 10553, - [SMALL_STATE(661)] = 10655, - [SMALL_STATE(662)] = 10757, - [SMALL_STATE(663)] = 10859, - [SMALL_STATE(664)] = 10961, - [SMALL_STATE(665)] = 11063, - [SMALL_STATE(666)] = 11165, - [SMALL_STATE(667)] = 11267, - [SMALL_STATE(668)] = 11369, - [SMALL_STATE(669)] = 11469, - [SMALL_STATE(670)] = 11571, - [SMALL_STATE(671)] = 11673, - [SMALL_STATE(672)] = 11775, - [SMALL_STATE(673)] = 11877, - [SMALL_STATE(674)] = 11977, - [SMALL_STATE(675)] = 12079, - [SMALL_STATE(676)] = 12149, - [SMALL_STATE(677)] = 12251, - [SMALL_STATE(678)] = 12353, - [SMALL_STATE(679)] = 12441, - [SMALL_STATE(680)] = 12543, - [SMALL_STATE(681)] = 12645, - [SMALL_STATE(682)] = 12747, - [SMALL_STATE(683)] = 12847, - [SMALL_STATE(684)] = 12949, - [SMALL_STATE(685)] = 13049, - [SMALL_STATE(686)] = 13149, - [SMALL_STATE(687)] = 13251, - [SMALL_STATE(688)] = 13351, - [SMALL_STATE(689)] = 13453, - [SMALL_STATE(690)] = 13555, - [SMALL_STATE(691)] = 13657, - [SMALL_STATE(692)] = 13759, - [SMALL_STATE(693)] = 13861, - [SMALL_STATE(694)] = 13963, - [SMALL_STATE(695)] = 14065, - [SMALL_STATE(696)] = 14167, - [SMALL_STATE(697)] = 14267, - [SMALL_STATE(698)] = 14369, - [SMALL_STATE(699)] = 14471, - [SMALL_STATE(700)] = 14573, - [SMALL_STATE(701)] = 14675, - [SMALL_STATE(702)] = 14777, - [SMALL_STATE(703)] = 14877, - [SMALL_STATE(704)] = 14979, - [SMALL_STATE(705)] = 15079, - [SMALL_STATE(706)] = 15181, - [SMALL_STATE(707)] = 15283, - [SMALL_STATE(708)] = 15385, - [SMALL_STATE(709)] = 15487, - [SMALL_STATE(710)] = 15587, - [SMALL_STATE(711)] = 15687, - [SMALL_STATE(712)] = 15789, - [SMALL_STATE(713)] = 15891, - [SMALL_STATE(714)] = 15993, - [SMALL_STATE(715)] = 16095, - [SMALL_STATE(716)] = 16197, - [SMALL_STATE(717)] = 16299, - [SMALL_STATE(718)] = 16401, - [SMALL_STATE(719)] = 16503, - [SMALL_STATE(720)] = 16605, - [SMALL_STATE(721)] = 16707, - [SMALL_STATE(722)] = 16809, - [SMALL_STATE(723)] = 16911, - [SMALL_STATE(724)] = 17013, - [SMALL_STATE(725)] = 17115, - [SMALL_STATE(726)] = 17217, - [SMALL_STATE(727)] = 17319, - [SMALL_STATE(728)] = 17421, - [SMALL_STATE(729)] = 17523, - [SMALL_STATE(730)] = 17625, - [SMALL_STATE(731)] = 17727, - [SMALL_STATE(732)] = 17829, - [SMALL_STATE(733)] = 17929, - [SMALL_STATE(734)] = 18029, - [SMALL_STATE(735)] = 18131, - [SMALL_STATE(736)] = 18231, - [SMALL_STATE(737)] = 18333, - [SMALL_STATE(738)] = 18435, - [SMALL_STATE(739)] = 18537, - [SMALL_STATE(740)] = 18639, - [SMALL_STATE(741)] = 18739, - [SMALL_STATE(742)] = 18839, - [SMALL_STATE(743)] = 18939, - [SMALL_STATE(744)] = 19041, - [SMALL_STATE(745)] = 19141, - [SMALL_STATE(746)] = 19243, - [SMALL_STATE(747)] = 19343, - [SMALL_STATE(748)] = 19443, - [SMALL_STATE(749)] = 19543, - [SMALL_STATE(750)] = 19645, - [SMALL_STATE(751)] = 19745, - [SMALL_STATE(752)] = 19847, - [SMALL_STATE(753)] = 19947, - [SMALL_STATE(754)] = 20047, - [SMALL_STATE(755)] = 20147, - [SMALL_STATE(756)] = 20247, - [SMALL_STATE(757)] = 20347, - [SMALL_STATE(758)] = 20447, - [SMALL_STATE(759)] = 20547, - [SMALL_STATE(760)] = 20647, - [SMALL_STATE(761)] = 20747, - [SMALL_STATE(762)] = 20847, - [SMALL_STATE(763)] = 20947, - [SMALL_STATE(764)] = 21047, - [SMALL_STATE(765)] = 21147, - [SMALL_STATE(766)] = 21247, - [SMALL_STATE(767)] = 21347, - [SMALL_STATE(768)] = 21447, - [SMALL_STATE(769)] = 21547, - [SMALL_STATE(770)] = 21647, - [SMALL_STATE(771)] = 21747, - [SMALL_STATE(772)] = 21847, - [SMALL_STATE(773)] = 21947, - [SMALL_STATE(774)] = 22049, - [SMALL_STATE(775)] = 22151, - [SMALL_STATE(776)] = 22253, - [SMALL_STATE(777)] = 22353, - [SMALL_STATE(778)] = 22418, - [SMALL_STATE(779)] = 22483, - [SMALL_STATE(780)] = 22547, - [SMALL_STATE(781)] = 22611, - [SMALL_STATE(782)] = 22675, - [SMALL_STATE(783)] = 22739, - [SMALL_STATE(784)] = 22803, - [SMALL_STATE(785)] = 22867, - [SMALL_STATE(786)] = 22931, - [SMALL_STATE(787)] = 22995, - [SMALL_STATE(788)] = 23059, - [SMALL_STATE(789)] = 23123, - [SMALL_STATE(790)] = 23184, - [SMALL_STATE(791)] = 23244, - [SMALL_STATE(792)] = 23304, - [SMALL_STATE(793)] = 23364, - [SMALL_STATE(794)] = 23424, - [SMALL_STATE(795)] = 23484, - [SMALL_STATE(796)] = 23544, - [SMALL_STATE(797)] = 23604, - [SMALL_STATE(798)] = 23664, - [SMALL_STATE(799)] = 23762, - [SMALL_STATE(800)] = 23858, - [SMALL_STATE(801)] = 23918, - [SMALL_STATE(802)] = 24014, - [SMALL_STATE(803)] = 24074, - [SMALL_STATE(804)] = 24170, - [SMALL_STATE(805)] = 24266, - [SMALL_STATE(806)] = 24326, - [SMALL_STATE(807)] = 24422, - [SMALL_STATE(808)] = 24518, - [SMALL_STATE(809)] = 24614, - [SMALL_STATE(810)] = 24674, - [SMALL_STATE(811)] = 24770, - [SMALL_STATE(812)] = 24866, - [SMALL_STATE(813)] = 24962, - [SMALL_STATE(814)] = 25058, - [SMALL_STATE(815)] = 25154, - [SMALL_STATE(816)] = 25214, - [SMALL_STATE(817)] = 25310, - [SMALL_STATE(818)] = 25406, - [SMALL_STATE(819)] = 25466, - [SMALL_STATE(820)] = 25562, - [SMALL_STATE(821)] = 25658, - [SMALL_STATE(822)] = 25718, - [SMALL_STATE(823)] = 25814, - [SMALL_STATE(824)] = 25910, - [SMALL_STATE(825)] = 25970, - [SMALL_STATE(826)] = 26066, - [SMALL_STATE(827)] = 26162, - [SMALL_STATE(828)] = 26258, - [SMALL_STATE(829)] = 26317, - [SMALL_STATE(830)] = 26376, - [SMALL_STATE(831)] = 26435, - [SMALL_STATE(832)] = 26494, - [SMALL_STATE(833)] = 26563, - [SMALL_STATE(834)] = 26658, - [SMALL_STATE(835)] = 26727, - [SMALL_STATE(836)] = 26786, - [SMALL_STATE(837)] = 26855, - [SMALL_STATE(838)] = 26948, - [SMALL_STATE(839)] = 27007, - [SMALL_STATE(840)] = 27076, - [SMALL_STATE(841)] = 27143, - [SMALL_STATE(842)] = 27202, - [SMALL_STATE(843)] = 27295, - [SMALL_STATE(844)] = 27364, - [SMALL_STATE(845)] = 27430, - [SMALL_STATE(846)] = 27495, - [SMALL_STATE(847)] = 27557, - [SMALL_STATE(848)] = 27619, - [SMALL_STATE(849)] = 27705, - [SMALL_STATE(850)] = 27791, - [SMALL_STATE(851)] = 27877, - [SMALL_STATE(852)] = 27963, - [SMALL_STATE(853)] = 28025, - [SMALL_STATE(854)] = 28111, - [SMALL_STATE(855)] = 28197, - [SMALL_STATE(856)] = 28283, - [SMALL_STATE(857)] = 28369, - [SMALL_STATE(858)] = 28455, - [SMALL_STATE(859)] = 28541, - [SMALL_STATE(860)] = 28600, - [SMALL_STATE(861)] = 28669, - [SMALL_STATE(862)] = 28752, - [SMALL_STATE(863)] = 28811, - [SMALL_STATE(864)] = 28870, - [SMALL_STATE(865)] = 28933, - [SMALL_STATE(866)] = 28987, - [SMALL_STATE(867)] = 29041, - [SMALL_STATE(868)] = 29110, - [SMALL_STATE(869)] = 29189, - [SMALL_STATE(870)] = 29242, - [SMALL_STATE(871)] = 29307, - [SMALL_STATE(872)] = 29390, - [SMALL_STATE(873)] = 29453, - [SMALL_STATE(874)] = 29516, - [SMALL_STATE(875)] = 29579, - [SMALL_STATE(876)] = 29646, - [SMALL_STATE(877)] = 29709, - [SMALL_STATE(878)] = 29790, - [SMALL_STATE(879)] = 29877, - [SMALL_STATE(880)] = 29964, - [SMALL_STATE(881)] = 30041, - [SMALL_STATE(882)] = 30104, - [SMALL_STATE(883)] = 30167, - [SMALL_STATE(884)] = 30220, - [SMALL_STATE(885)] = 30273, - [SMALL_STATE(886)] = 30360, - [SMALL_STATE(887)] = 30413, - [SMALL_STATE(888)] = 30488, - [SMALL_STATE(889)] = 30551, - [SMALL_STATE(890)] = 30624, - [SMALL_STATE(891)] = 30684, - [SMALL_STATE(892)] = 30760, - [SMALL_STATE(893)] = 30838, - [SMALL_STATE(894)] = 30902, - [SMALL_STATE(895)] = 30988, - [SMALL_STATE(896)] = 31062, - [SMALL_STATE(897)] = 31142, - [SMALL_STATE(898)] = 31224, - [SMALL_STATE(899)] = 31290, - [SMALL_STATE(900)] = 31376, - [SMALL_STATE(901)] = 31462, - [SMALL_STATE(902)] = 31518, - [SMALL_STATE(903)] = 31586, - [SMALL_STATE(904)] = 31658, - [SMALL_STATE(905)] = 31709, - [SMALL_STATE(906)] = 31760, - [SMALL_STATE(907)] = 31811, - [SMALL_STATE(908)] = 31862, - [SMALL_STATE(909)] = 31913, - [SMALL_STATE(910)] = 31964, - [SMALL_STATE(911)] = 32015, - [SMALL_STATE(912)] = 32066, - [SMALL_STATE(913)] = 32117, - [SMALL_STATE(914)] = 32172, - [SMALL_STATE(915)] = 32223, - [SMALL_STATE(916)] = 32274, - [SMALL_STATE(917)] = 32325, - [SMALL_STATE(918)] = 32376, - [SMALL_STATE(919)] = 32427, - [SMALL_STATE(920)] = 32478, - [SMALL_STATE(921)] = 32529, - [SMALL_STATE(922)] = 32580, - [SMALL_STATE(923)] = 32631, - [SMALL_STATE(924)] = 32682, - [SMALL_STATE(925)] = 32733, - [SMALL_STATE(926)] = 32784, - [SMALL_STATE(927)] = 32835, - [SMALL_STATE(928)] = 32909, - [SMALL_STATE(929)] = 32975, - [SMALL_STATE(930)] = 33059, - [SMALL_STATE(931)] = 33135, - [SMALL_STATE(932)] = 33199, - [SMALL_STATE(933)] = 33279, - [SMALL_STATE(934)] = 33339, - [SMALL_STATE(935)] = 33417, - [SMALL_STATE(936)] = 33501, - [SMALL_STATE(937)] = 33561, - [SMALL_STATE(938)] = 33633, - [SMALL_STATE(939)] = 33693, - [SMALL_STATE(940)] = 33763, - [SMALL_STATE(941)] = 33823, - [SMALL_STATE(942)] = 33907, - [SMALL_STATE(943)] = 33969, - [SMALL_STATE(944)] = 34027, - [SMALL_STATE(945)] = 34087, - [SMALL_STATE(946)] = 34136, - [SMALL_STATE(947)] = 34185, - [SMALL_STATE(948)] = 34234, - [SMALL_STATE(949)] = 34283, - [SMALL_STATE(950)] = 34332, - [SMALL_STATE(951)] = 34381, - [SMALL_STATE(952)] = 34430, - [SMALL_STATE(953)] = 34479, - [SMALL_STATE(954)] = 34528, - [SMALL_STATE(955)] = 34581, - [SMALL_STATE(956)] = 34630, - [SMALL_STATE(957)] = 34689, - [SMALL_STATE(958)] = 34738, - [SMALL_STATE(959)] = 34787, - [SMALL_STATE(960)] = 34846, - [SMALL_STATE(961)] = 34895, - [SMALL_STATE(962)] = 34944, - [SMALL_STATE(963)] = 34993, - [SMALL_STATE(964)] = 35042, - [SMALL_STATE(965)] = 35091, - [SMALL_STATE(966)] = 35140, - [SMALL_STATE(967)] = 35199, - [SMALL_STATE(968)] = 35248, - [SMALL_STATE(969)] = 35297, - [SMALL_STATE(970)] = 35346, - [SMALL_STATE(971)] = 35395, - [SMALL_STATE(972)] = 35444, - [SMALL_STATE(973)] = 35493, - [SMALL_STATE(974)] = 35542, - [SMALL_STATE(975)] = 35591, - [SMALL_STATE(976)] = 35640, - [SMALL_STATE(977)] = 35699, - [SMALL_STATE(978)] = 35758, - [SMALL_STATE(979)] = 35813, - [SMALL_STATE(980)] = 35862, - [SMALL_STATE(981)] = 35911, - [SMALL_STATE(982)] = 35960, - [SMALL_STATE(983)] = 36009, - [SMALL_STATE(984)] = 36058, - [SMALL_STATE(985)] = 36107, - [SMALL_STATE(986)] = 36156, - [SMALL_STATE(987)] = 36205, - [SMALL_STATE(988)] = 36254, - [SMALL_STATE(989)] = 36303, - [SMALL_STATE(990)] = 36358, - [SMALL_STATE(991)] = 36407, - [SMALL_STATE(992)] = 36456, - [SMALL_STATE(993)] = 36505, - [SMALL_STATE(994)] = 36554, - [SMALL_STATE(995)] = 36603, - [SMALL_STATE(996)] = 36652, - [SMALL_STATE(997)] = 36701, - [SMALL_STATE(998)] = 36750, - [SMALL_STATE(999)] = 36799, - [SMALL_STATE(1000)] = 36848, - [SMALL_STATE(1001)] = 36896, - [SMALL_STATE(1002)] = 36944, - [SMALL_STATE(1003)] = 36992, - [SMALL_STATE(1004)] = 37040, - [SMALL_STATE(1005)] = 37088, - [SMALL_STATE(1006)] = 37139, - [SMALL_STATE(1007)] = 37196, - [SMALL_STATE(1008)] = 37249, - [SMALL_STATE(1009)] = 37302, - [SMALL_STATE(1010)] = 37353, - [SMALL_STATE(1011)] = 37406, - [SMALL_STATE(1012)] = 37453, - [SMALL_STATE(1013)] = 37500, - [SMALL_STATE(1014)] = 37547, - [SMALL_STATE(1015)] = 37594, - [SMALL_STATE(1016)] = 37645, - [SMALL_STATE(1017)] = 37704, - [SMALL_STATE(1018)] = 37751, - [SMALL_STATE(1019)] = 37798, - [SMALL_STATE(1020)] = 37845, - [SMALL_STATE(1021)] = 37892, - [SMALL_STATE(1022)] = 37939, - [SMALL_STATE(1023)] = 37986, - [SMALL_STATE(1024)] = 38047, - [SMALL_STATE(1025)] = 38094, - [SMALL_STATE(1026)] = 38147, - [SMALL_STATE(1027)] = 38194, - [SMALL_STATE(1028)] = 38241, - [SMALL_STATE(1029)] = 38302, - [SMALL_STATE(1030)] = 38353, - [SMALL_STATE(1031)] = 38406, - [SMALL_STATE(1032)] = 38465, - [SMALL_STATE(1033)] = 38512, - [SMALL_STATE(1034)] = 38565, - [SMALL_STATE(1035)] = 38612, - [SMALL_STATE(1036)] = 38659, - [SMALL_STATE(1037)] = 38712, - [SMALL_STATE(1038)] = 38759, - [SMALL_STATE(1039)] = 38806, - [SMALL_STATE(1040)] = 38867, - [SMALL_STATE(1041)] = 38928, - [SMALL_STATE(1042)] = 38975, - [SMALL_STATE(1043)] = 39022, - [SMALL_STATE(1044)] = 39069, - [SMALL_STATE(1045)] = 39116, - [SMALL_STATE(1046)] = 39163, - [SMALL_STATE(1047)] = 39210, - [SMALL_STATE(1048)] = 39293, - [SMALL_STATE(1049)] = 39340, - [SMALL_STATE(1050)] = 39401, - [SMALL_STATE(1051)] = 39448, - [SMALL_STATE(1052)] = 39495, - [SMALL_STATE(1053)] = 39542, - [SMALL_STATE(1054)] = 39621, - [SMALL_STATE(1055)] = 39698, - [SMALL_STATE(1056)] = 39745, - [SMALL_STATE(1057)] = 39820, - [SMALL_STATE(1058)] = 39893, - [SMALL_STATE(1059)] = 39964, - [SMALL_STATE(1060)] = 40017, - [SMALL_STATE(1061)] = 40064, - [SMALL_STATE(1062)] = 40117, - [SMALL_STATE(1063)] = 40186, - [SMALL_STATE(1064)] = 40251, - [SMALL_STATE(1065)] = 40310, - [SMALL_STATE(1066)] = 40369, - [SMALL_STATE(1067)] = 40448, - [SMALL_STATE(1068)] = 40499, - [SMALL_STATE(1069)] = 40546, - [SMALL_STATE(1070)] = 40593, - [SMALL_STATE(1071)] = 40640, - [SMALL_STATE(1072)] = 40699, - [SMALL_STATE(1073)] = 40762, - [SMALL_STATE(1074)] = 40845, - [SMALL_STATE(1075)] = 40898, - [SMALL_STATE(1076)] = 40945, - [SMALL_STATE(1077)] = 40992, - [SMALL_STATE(1078)] = 41039, - [SMALL_STATE(1079)] = 41090, - [SMALL_STATE(1080)] = 41173, - [SMALL_STATE(1081)] = 41219, - [SMALL_STATE(1082)] = 41265, - [SMALL_STATE(1083)] = 41315, - [SMALL_STATE(1084)] = 41361, - [SMALL_STATE(1085)] = 41407, - [SMALL_STATE(1086)] = 41457, - [SMALL_STATE(1087)] = 41503, - [SMALL_STATE(1088)] = 41549, - [SMALL_STATE(1089)] = 41595, - [SMALL_STATE(1090)] = 41641, - [SMALL_STATE(1091)] = 41687, - [SMALL_STATE(1092)] = 41739, - [SMALL_STATE(1093)] = 41785, - [SMALL_STATE(1094)] = 41831, - [SMALL_STATE(1095)] = 41877, - [SMALL_STATE(1096)] = 41923, - [SMALL_STATE(1097)] = 41969, - [SMALL_STATE(1098)] = 42019, - [SMALL_STATE(1099)] = 42065, + [SMALL_STATE(565)] = 0, + [SMALL_STATE(566)] = 77, + [SMALL_STATE(567)] = 154, + [SMALL_STATE(568)] = 231, + [SMALL_STATE(569)] = 342, + [SMALL_STATE(570)] = 453, + [SMALL_STATE(571)] = 564, + [SMALL_STATE(572)] = 675, + [SMALL_STATE(573)] = 786, + [SMALL_STATE(574)] = 860, + [SMALL_STATE(575)] = 974, + [SMALL_STATE(576)] = 1048, + [SMALL_STATE(577)] = 1162, + [SMALL_STATE(578)] = 1231, + [SMALL_STATE(579)] = 1342, + [SMALL_STATE(580)] = 1411, + [SMALL_STATE(581)] = 1519, + [SMALL_STATE(582)] = 1625, + [SMALL_STATE(583)] = 1731, + [SMALL_STATE(584)] = 1799, + [SMALL_STATE(585)] = 1867, + [SMALL_STATE(586)] = 1975, + [SMALL_STATE(587)] = 2083, + [SMALL_STATE(588)] = 2191, + [SMALL_STATE(589)] = 2299, + [SMALL_STATE(590)] = 2407, + [SMALL_STATE(591)] = 2475, + [SMALL_STATE(592)] = 2583, + [SMALL_STATE(593)] = 2691, + [SMALL_STATE(594)] = 2759, + [SMALL_STATE(595)] = 2827, + [SMALL_STATE(596)] = 2895, + [SMALL_STATE(597)] = 3003, + [SMALL_STATE(598)] = 3111, + [SMALL_STATE(599)] = 3219, + [SMALL_STATE(600)] = 3327, + [SMALL_STATE(601)] = 3395, + [SMALL_STATE(602)] = 3503, + [SMALL_STATE(603)] = 3611, + [SMALL_STATE(604)] = 3717, + [SMALL_STATE(605)] = 3825, + [SMALL_STATE(606)] = 3893, + [SMALL_STATE(607)] = 3961, + [SMALL_STATE(608)] = 4069, + [SMALL_STATE(609)] = 4177, + [SMALL_STATE(610)] = 4285, + [SMALL_STATE(611)] = 4393, + [SMALL_STATE(612)] = 4501, + [SMALL_STATE(613)] = 4609, + [SMALL_STATE(614)] = 4715, + [SMALL_STATE(615)] = 4783, + [SMALL_STATE(616)] = 4886, + [SMALL_STATE(617)] = 4991, + [SMALL_STATE(618)] = 5094, + [SMALL_STATE(619)] = 5199, + [SMALL_STATE(620)] = 5302, + [SMALL_STATE(621)] = 5407, + [SMALL_STATE(622)] = 5510, + [SMALL_STATE(623)] = 5613, + [SMALL_STATE(624)] = 5718, + [SMALL_STATE(625)] = 5821, + [SMALL_STATE(626)] = 5926, + [SMALL_STATE(627)] = 6029, + [SMALL_STATE(628)] = 6134, + [SMALL_STATE(629)] = 6237, + [SMALL_STATE(630)] = 6342, + [SMALL_STATE(631)] = 6447, + [SMALL_STATE(632)] = 6552, + [SMALL_STATE(633)] = 6655, + [SMALL_STATE(634)] = 6758, + [SMALL_STATE(635)] = 6863, + [SMALL_STATE(636)] = 6968, + [SMALL_STATE(637)] = 7070, + [SMALL_STATE(638)] = 7170, + [SMALL_STATE(639)] = 7270, + [SMALL_STATE(640)] = 7370, + [SMALL_STATE(641)] = 7470, + [SMALL_STATE(642)] = 7572, + [SMALL_STATE(643)] = 7674, + [SMALL_STATE(644)] = 7776, + [SMALL_STATE(645)] = 7878, + [SMALL_STATE(646)] = 7980, + [SMALL_STATE(647)] = 8082, + [SMALL_STATE(648)] = 8184, + [SMALL_STATE(649)] = 8286, + [SMALL_STATE(650)] = 8388, + [SMALL_STATE(651)] = 8488, + [SMALL_STATE(652)] = 8588, + [SMALL_STATE(653)] = 8688, + [SMALL_STATE(654)] = 8788, + [SMALL_STATE(655)] = 8888, + [SMALL_STATE(656)] = 8988, + [SMALL_STATE(657)] = 9088, + [SMALL_STATE(658)] = 9190, + [SMALL_STATE(659)] = 9290, + [SMALL_STATE(660)] = 9392, + [SMALL_STATE(661)] = 9494, + [SMALL_STATE(662)] = 9596, + [SMALL_STATE(663)] = 9698, + [SMALL_STATE(664)] = 9798, + [SMALL_STATE(665)] = 9898, + [SMALL_STATE(666)] = 10000, + [SMALL_STATE(667)] = 10100, + [SMALL_STATE(668)] = 10200, + [SMALL_STATE(669)] = 10300, + [SMALL_STATE(670)] = 10402, + [SMALL_STATE(671)] = 10504, + [SMALL_STATE(672)] = 10604, + [SMALL_STATE(673)] = 10704, + [SMALL_STATE(674)] = 10806, + [SMALL_STATE(675)] = 10906, + [SMALL_STATE(676)] = 11006, + [SMALL_STATE(677)] = 11108, + [SMALL_STATE(678)] = 11208, + [SMALL_STATE(679)] = 11308, + [SMALL_STATE(680)] = 11410, + [SMALL_STATE(681)] = 11512, + [SMALL_STATE(682)] = 11612, + [SMALL_STATE(683)] = 11712, + [SMALL_STATE(684)] = 11814, + [SMALL_STATE(685)] = 11916, + [SMALL_STATE(686)] = 12016, + [SMALL_STATE(687)] = 12118, + [SMALL_STATE(688)] = 12220, + [SMALL_STATE(689)] = 12322, + [SMALL_STATE(690)] = 12424, + [SMALL_STATE(691)] = 12526, + [SMALL_STATE(692)] = 12628, + [SMALL_STATE(693)] = 12730, + [SMALL_STATE(694)] = 12832, + [SMALL_STATE(695)] = 12932, + [SMALL_STATE(696)] = 13034, + [SMALL_STATE(697)] = 13136, + [SMALL_STATE(698)] = 13238, + [SMALL_STATE(699)] = 13326, + [SMALL_STATE(700)] = 13428, + [SMALL_STATE(701)] = 13530, + [SMALL_STATE(702)] = 13632, + [SMALL_STATE(703)] = 13734, + [SMALL_STATE(704)] = 13836, + [SMALL_STATE(705)] = 13938, + [SMALL_STATE(706)] = 14038, + [SMALL_STATE(707)] = 14138, + [SMALL_STATE(708)] = 14240, + [SMALL_STATE(709)] = 14342, + [SMALL_STATE(710)] = 14444, + [SMALL_STATE(711)] = 14544, + [SMALL_STATE(712)] = 14644, + [SMALL_STATE(713)] = 14746, + [SMALL_STATE(714)] = 14848, + [SMALL_STATE(715)] = 14950, + [SMALL_STATE(716)] = 15052, + [SMALL_STATE(717)] = 15152, + [SMALL_STATE(718)] = 15254, + [SMALL_STATE(719)] = 15356, + [SMALL_STATE(720)] = 15458, + [SMALL_STATE(721)] = 15560, + [SMALL_STATE(722)] = 15662, + [SMALL_STATE(723)] = 15764, + [SMALL_STATE(724)] = 15864, + [SMALL_STATE(725)] = 15966, + [SMALL_STATE(726)] = 16068, + [SMALL_STATE(727)] = 16170, + [SMALL_STATE(728)] = 16270, + [SMALL_STATE(729)] = 16370, + [SMALL_STATE(730)] = 16470, + [SMALL_STATE(731)] = 16570, + [SMALL_STATE(732)] = 16672, + [SMALL_STATE(733)] = 16772, + [SMALL_STATE(734)] = 16872, + [SMALL_STATE(735)] = 16972, + [SMALL_STATE(736)] = 17072, + [SMALL_STATE(737)] = 17172, + [SMALL_STATE(738)] = 17272, + [SMALL_STATE(739)] = 17372, + [SMALL_STATE(740)] = 17472, + [SMALL_STATE(741)] = 17572, + [SMALL_STATE(742)] = 17672, + [SMALL_STATE(743)] = 17772, + [SMALL_STATE(744)] = 17872, + [SMALL_STATE(745)] = 17974, + [SMALL_STATE(746)] = 18074, + [SMALL_STATE(747)] = 18174, + [SMALL_STATE(748)] = 18274, + [SMALL_STATE(749)] = 18376, + [SMALL_STATE(750)] = 18478, + [SMALL_STATE(751)] = 18578, + [SMALL_STATE(752)] = 18678, + [SMALL_STATE(753)] = 18780, + [SMALL_STATE(754)] = 18880, + [SMALL_STATE(755)] = 18980, + [SMALL_STATE(756)] = 19082, + [SMALL_STATE(757)] = 19184, + [SMALL_STATE(758)] = 19286, + [SMALL_STATE(759)] = 19386, + [SMALL_STATE(760)] = 19488, + [SMALL_STATE(761)] = 19588, + [SMALL_STATE(762)] = 19690, + [SMALL_STATE(763)] = 19790, + [SMALL_STATE(764)] = 19892, + [SMALL_STATE(765)] = 19992, + [SMALL_STATE(766)] = 20094, + [SMALL_STATE(767)] = 20196, + [SMALL_STATE(768)] = 20298, + [SMALL_STATE(769)] = 20400, + [SMALL_STATE(770)] = 20502, + [SMALL_STATE(771)] = 20604, + [SMALL_STATE(772)] = 20706, + [SMALL_STATE(773)] = 20808, + [SMALL_STATE(774)] = 20910, + [SMALL_STATE(775)] = 21012, + [SMALL_STATE(776)] = 21114, + [SMALL_STATE(777)] = 21216, + [SMALL_STATE(778)] = 21318, + [SMALL_STATE(779)] = 21420, + [SMALL_STATE(780)] = 21522, + [SMALL_STATE(781)] = 21622, + [SMALL_STATE(782)] = 21722, + [SMALL_STATE(783)] = 21822, + [SMALL_STATE(784)] = 21922, + [SMALL_STATE(785)] = 22024, + [SMALL_STATE(786)] = 22126, + [SMALL_STATE(787)] = 22228, + [SMALL_STATE(788)] = 22330, + [SMALL_STATE(789)] = 22432, + [SMALL_STATE(790)] = 22497, + [SMALL_STATE(791)] = 22561, + [SMALL_STATE(792)] = 22663, + [SMALL_STATE(793)] = 22727, + [SMALL_STATE(794)] = 22829, + [SMALL_STATE(795)] = 22931, + [SMALL_STATE(796)] = 23033, + [SMALL_STATE(797)] = 23135, + [SMALL_STATE(798)] = 23237, + [SMALL_STATE(799)] = 23301, + [SMALL_STATE(800)] = 23403, + [SMALL_STATE(801)] = 23505, + [SMALL_STATE(802)] = 23607, + [SMALL_STATE(803)] = 23671, + [SMALL_STATE(804)] = 23735, + [SMALL_STATE(805)] = 23837, + [SMALL_STATE(806)] = 23939, + [SMALL_STATE(807)] = 24041, + [SMALL_STATE(808)] = 24143, + [SMALL_STATE(809)] = 24207, + [SMALL_STATE(810)] = 24271, + [SMALL_STATE(811)] = 24335, + [SMALL_STATE(812)] = 24399, + [SMALL_STATE(813)] = 24501, + [SMALL_STATE(814)] = 24603, + [SMALL_STATE(815)] = 24705, + [SMALL_STATE(816)] = 24809, + [SMALL_STATE(817)] = 24911, + [SMALL_STATE(818)] = 24975, + [SMALL_STATE(819)] = 25039, + [SMALL_STATE(820)] = 25103, + [SMALL_STATE(821)] = 25205, + [SMALL_STATE(822)] = 25269, + [SMALL_STATE(823)] = 25371, + [SMALL_STATE(824)] = 25435, + [SMALL_STATE(825)] = 25499, + [SMALL_STATE(826)] = 25601, + [SMALL_STATE(827)] = 25665, + [SMALL_STATE(828)] = 25767, + [SMALL_STATE(829)] = 25830, + [SMALL_STATE(830)] = 25903, + [SMALL_STATE(831)] = 25966, + [SMALL_STATE(832)] = 26067, + [SMALL_STATE(833)] = 26166, + [SMALL_STATE(834)] = 26239, + [SMALL_STATE(835)] = 26302, + [SMALL_STATE(836)] = 26375, + [SMALL_STATE(837)] = 26438, + [SMALL_STATE(838)] = 26509, + [SMALL_STATE(839)] = 26582, + [SMALL_STATE(840)] = 26681, + [SMALL_STATE(841)] = 26754, + [SMALL_STATE(842)] = 26824, + [SMALL_STATE(843)] = 26916, + [SMALL_STATE(844)] = 27008, + [SMALL_STATE(845)] = 27100, + [SMALL_STATE(846)] = 27192, + [SMALL_STATE(847)] = 27284, + [SMALL_STATE(848)] = 27376, + [SMALL_STATE(849)] = 27468, + [SMALL_STATE(850)] = 27560, + [SMALL_STATE(851)] = 27652, + [SMALL_STATE(852)] = 27744, + [SMALL_STATE(853)] = 27819, + [SMALL_STATE(854)] = 27878, + [SMALL_STATE(855)] = 27937, + [SMALL_STATE(856)] = 28026, + [SMALL_STATE(857)] = 28085, + [SMALL_STATE(858)] = 28143, + [SMALL_STATE(859)] = 28201, + [SMALL_STATE(860)] = 28259, + [SMALL_STATE(861)] = 28317, + [SMALL_STATE(862)] = 28388, + [SMALL_STATE(863)] = 28467, + [SMALL_STATE(864)] = 28558, + [SMALL_STATE(865)] = 28639, + [SMALL_STATE(866)] = 28722, + [SMALL_STATE(867)] = 28807, + [SMALL_STATE(868)] = 28894, + [SMALL_STATE(869)] = 28959, + [SMALL_STATE(870)] = 29028, + [SMALL_STATE(871)] = 29105, + [SMALL_STATE(872)] = 29178, + [SMALL_STATE(873)] = 29269, + [SMALL_STATE(874)] = 29360, + [SMALL_STATE(875)] = 29422, + [SMALL_STATE(876)] = 29484, + [SMALL_STATE(877)] = 29546, + [SMALL_STATE(878)] = 29606, + [SMALL_STATE(879)] = 29661, + [SMALL_STATE(880)] = 29716, + [SMALL_STATE(881)] = 29771, + [SMALL_STATE(882)] = 29826, + [SMALL_STATE(883)] = 29881, + [SMALL_STATE(884)] = 29936, + [SMALL_STATE(885)] = 29995, + [SMALL_STATE(886)] = 30050, + [SMALL_STATE(887)] = 30105, + [SMALL_STATE(888)] = 30160, + [SMALL_STATE(889)] = 30215, + [SMALL_STATE(890)] = 30270, + [SMALL_STATE(891)] = 30325, + [SMALL_STATE(892)] = 30380, + [SMALL_STATE(893)] = 30435, + [SMALL_STATE(894)] = 30494, + [SMALL_STATE(895)] = 30553, + [SMALL_STATE(896)] = 30608, + [SMALL_STATE(897)] = 30663, + [SMALL_STATE(898)] = 30718, + [SMALL_STATE(899)] = 30773, + [SMALL_STATE(900)] = 30836, + [SMALL_STATE(901)] = 30904, + [SMALL_STATE(902)] = 30972, + [SMALL_STATE(903)] = 31026, + [SMALL_STATE(904)] = 31094, + [SMALL_STATE(905)] = 31148, + [SMALL_STATE(906)] = 31211, + [SMALL_STATE(907)] = 31264, + [SMALL_STATE(908)] = 31317, + [SMALL_STATE(909)] = 31370, + [SMALL_STATE(910)] = 31429, + [SMALL_STATE(911)] = 31482, + [SMALL_STATE(912)] = 31535, + [SMALL_STATE(913)] = 31588, + [SMALL_STATE(914)] = 31651, + [SMALL_STATE(915)] = 31714, + [SMALL_STATE(916)] = 31767, + [SMALL_STATE(917)] = 31820, + [SMALL_STATE(918)] = 31873, + [SMALL_STATE(919)] = 31926, + [SMALL_STATE(920)] = 31989, + [SMALL_STATE(921)] = 32052, + [SMALL_STATE(922)] = 32105, + [SMALL_STATE(923)] = 32168, + [SMALL_STATE(924)] = 32221, + [SMALL_STATE(925)] = 32286, + [SMALL_STATE(926)] = 32349, + [SMALL_STATE(927)] = 32408, + [SMALL_STATE(928)] = 32461, + [SMALL_STATE(929)] = 32514, + [SMALL_STATE(930)] = 32567, + [SMALL_STATE(931)] = 32620, + [SMALL_STATE(932)] = 32673, + [SMALL_STATE(933)] = 32726, + [SMALL_STATE(934)] = 32779, + [SMALL_STATE(935)] = 32844, + [SMALL_STATE(936)] = 32897, + [SMALL_STATE(937)] = 32950, + [SMALL_STATE(938)] = 33012, + [SMALL_STATE(939)] = 33074, + [SMALL_STATE(940)] = 33136, + [SMALL_STATE(941)] = 33198, + [SMALL_STATE(942)] = 33258, + [SMALL_STATE(943)] = 33320, + [SMALL_STATE(944)] = 33396, + [SMALL_STATE(945)] = 33448, + [SMALL_STATE(946)] = 33522, + [SMALL_STATE(947)] = 33574, + [SMALL_STATE(948)] = 33646, + [SMALL_STATE(949)] = 33724, + [SMALL_STATE(950)] = 33810, + [SMALL_STATE(951)] = 33872, + [SMALL_STATE(952)] = 33938, + [SMALL_STATE(953)] = 34020, + [SMALL_STATE(954)] = 34072, + [SMALL_STATE(955)] = 34124, + [SMALL_STATE(956)] = 34176, + [SMALL_STATE(957)] = 34262, + [SMALL_STATE(958)] = 34348, + [SMALL_STATE(959)] = 34416, + [SMALL_STATE(960)] = 34496, + [SMALL_STATE(961)] = 34560, + [SMALL_STATE(962)] = 34611, + [SMALL_STATE(963)] = 34662, + [SMALL_STATE(964)] = 34713, + [SMALL_STATE(965)] = 34764, + [SMALL_STATE(966)] = 34815, + [SMALL_STATE(967)] = 34870, + [SMALL_STATE(968)] = 34921, + [SMALL_STATE(969)] = 34972, + [SMALL_STATE(970)] = 35023, + [SMALL_STATE(971)] = 35078, + [SMALL_STATE(972)] = 35131, + [SMALL_STATE(973)] = 35182, + [SMALL_STATE(974)] = 35237, + [SMALL_STATE(975)] = 35304, + [SMALL_STATE(976)] = 35371, + [SMALL_STATE(977)] = 35438, + [SMALL_STATE(978)] = 35491, + [SMALL_STATE(979)] = 35550, + [SMALL_STATE(980)] = 35601, + [SMALL_STATE(981)] = 35654, + [SMALL_STATE(982)] = 35707, + [SMALL_STATE(983)] = 35762, + [SMALL_STATE(984)] = 35817, + [SMALL_STATE(985)] = 35868, + [SMALL_STATE(986)] = 35919, + [SMALL_STATE(987)] = 35970, + [SMALL_STATE(988)] = 36021, + [SMALL_STATE(989)] = 36072, + [SMALL_STATE(990)] = 36139, + [SMALL_STATE(991)] = 36190, + [SMALL_STATE(992)] = 36241, + [SMALL_STATE(993)] = 36292, + [SMALL_STATE(994)] = 36343, + [SMALL_STATE(995)] = 36394, + [SMALL_STATE(996)] = 36445, + [SMALL_STATE(997)] = 36496, + [SMALL_STATE(998)] = 36547, + [SMALL_STATE(999)] = 36598, + [SMALL_STATE(1000)] = 36649, + [SMALL_STATE(1001)] = 36700, + [SMALL_STATE(1002)] = 36751, + [SMALL_STATE(1003)] = 36802, + [SMALL_STATE(1004)] = 36853, + [SMALL_STATE(1005)] = 36908, + [SMALL_STATE(1006)] = 36959, + [SMALL_STATE(1007)] = 37010, + [SMALL_STATE(1008)] = 37061, + [SMALL_STATE(1009)] = 37112, + [SMALL_STATE(1010)] = 37163, + [SMALL_STATE(1011)] = 37214, + [SMALL_STATE(1012)] = 37265, + [SMALL_STATE(1013)] = 37324, + [SMALL_STATE(1014)] = 37383, + [SMALL_STATE(1015)] = 37438, + [SMALL_STATE(1016)] = 37491, + [SMALL_STATE(1017)] = 37544, + [SMALL_STATE(1018)] = 37595, + [SMALL_STATE(1019)] = 37646, + [SMALL_STATE(1020)] = 37697, + [SMALL_STATE(1021)] = 37750, + [SMALL_STATE(1022)] = 37801, + [SMALL_STATE(1023)] = 37854, + [SMALL_STATE(1024)] = 37907, + [SMALL_STATE(1025)] = 37966, + [SMALL_STATE(1026)] = 38017, + [SMALL_STATE(1027)] = 38068, + [SMALL_STATE(1028)] = 38118, + [SMALL_STATE(1029)] = 38190, + [SMALL_STATE(1030)] = 38240, + [SMALL_STATE(1031)] = 38290, + [SMALL_STATE(1032)] = 38340, + [SMALL_STATE(1033)] = 38390, + [SMALL_STATE(1034)] = 38444, + [SMALL_STATE(1035)] = 38494, + [SMALL_STATE(1036)] = 38544, + [SMALL_STATE(1037)] = 38594, + [SMALL_STATE(1038)] = 38648, + [SMALL_STATE(1039)] = 38702, + [SMALL_STATE(1040)] = 38758, + [SMALL_STATE(1041)] = 38808, + [SMALL_STATE(1042)] = 38866, + [SMALL_STATE(1043)] = 38926, + [SMALL_STATE(1044)] = 38982, + [SMALL_STATE(1045)] = 39032, + [SMALL_STATE(1046)] = 39086, + [SMALL_STATE(1047)] = 39136, + [SMALL_STATE(1048)] = 39186, + [SMALL_STATE(1049)] = 39236, + [SMALL_STATE(1050)] = 39296, + [SMALL_STATE(1051)] = 39356, + [SMALL_STATE(1052)] = 39406, + [SMALL_STATE(1053)] = 39460, + [SMALL_STATE(1054)] = 39510, + [SMALL_STATE(1055)] = 39570, + [SMALL_STATE(1056)] = 39654, + [SMALL_STATE(1057)] = 39704, + [SMALL_STATE(1058)] = 39766, + [SMALL_STATE(1059)] = 39846, + [SMALL_STATE(1060)] = 39924, + [SMALL_STATE(1061)] = 40000, + [SMALL_STATE(1062)] = 40074, + [SMALL_STATE(1063)] = 40124, + [SMALL_STATE(1064)] = 40194, + [SMALL_STATE(1065)] = 40244, + [SMALL_STATE(1066)] = 40294, + [SMALL_STATE(1067)] = 40360, + [SMALL_STATE(1068)] = 40410, + [SMALL_STATE(1069)] = 40474, + [SMALL_STATE(1070)] = 40524, + [SMALL_STATE(1071)] = 40574, + [SMALL_STATE(1072)] = 40624, + [SMALL_STATE(1073)] = 40674, + [SMALL_STATE(1074)] = 40758, + [SMALL_STATE(1075)] = 40808, + [SMALL_STATE(1076)] = 40858, + [SMALL_STATE(1077)] = 40908, + [SMALL_STATE(1078)] = 40958, + [SMALL_STATE(1079)] = 41008, + [SMALL_STATE(1080)] = 41092, + [SMALL_STATE(1081)] = 41142, + [SMALL_STATE(1082)] = 41192, + [SMALL_STATE(1083)] = 41252, + [SMALL_STATE(1084)] = 41306, + [SMALL_STATE(1085)] = 41360, + [SMALL_STATE(1086)] = 41418, + [SMALL_STATE(1087)] = 41468, + [SMALL_STATE(1088)] = 41518, + [SMALL_STATE(1089)] = 41568, + [SMALL_STATE(1090)] = 41617, + [SMALL_STATE(1091)] = 41666, + [SMALL_STATE(1092)] = 41715, + [SMALL_STATE(1093)] = 41764, + [SMALL_STATE(1094)] = 41813, + [SMALL_STATE(1095)] = 41862, + [SMALL_STATE(1096)] = 41911, + [SMALL_STATE(1097)] = 41960, + [SMALL_STATE(1098)] = 42009, + [SMALL_STATE(1099)] = 42062, [SMALL_STATE(1100)] = 42111, - [SMALL_STATE(1101)] = 42157, - [SMALL_STATE(1102)] = 42203, - [SMALL_STATE(1103)] = 42249, - [SMALL_STATE(1104)] = 42299, - [SMALL_STATE(1105)] = 42345, - [SMALL_STATE(1106)] = 42391, - [SMALL_STATE(1107)] = 42437, - [SMALL_STATE(1108)] = 42483, - [SMALL_STATE(1109)] = 42529, - [SMALL_STATE(1110)] = 42581, - [SMALL_STATE(1111)] = 42631, - [SMALL_STATE(1112)] = 42677, - [SMALL_STATE(1113)] = 42727, - [SMALL_STATE(1114)] = 42781, - [SMALL_STATE(1115)] = 42827, - [SMALL_STATE(1116)] = 42877, - [SMALL_STATE(1117)] = 42927, - [SMALL_STATE(1118)] = 42973, - [SMALL_STATE(1119)] = 43030, - [SMALL_STATE(1120)] = 43090, - [SMALL_STATE(1121)] = 43150, - [SMALL_STATE(1122)] = 43202, - [SMALL_STATE(1123)] = 43262, - [SMALL_STATE(1124)] = 43306, - [SMALL_STATE(1125)] = 43360, - [SMALL_STATE(1126)] = 43420, - [SMALL_STATE(1127)] = 43476, - [SMALL_STATE(1128)] = 43536, - [SMALL_STATE(1129)] = 43605, - [SMALL_STATE(1130)] = 43674, - [SMALL_STATE(1131)] = 43743, - [SMALL_STATE(1132)] = 43812, - [SMALL_STATE(1133)] = 43865, - [SMALL_STATE(1134)] = 43935, - [SMALL_STATE(1135)] = 43999, - [SMALL_STATE(1136)] = 44041, - [SMALL_STATE(1137)] = 44109, - [SMALL_STATE(1138)] = 44179, - [SMALL_STATE(1139)] = 44223, - [SMALL_STATE(1140)] = 44267, - [SMALL_STATE(1141)] = 44311, - [SMALL_STATE(1142)] = 44387, - [SMALL_STATE(1143)] = 44431, - [SMALL_STATE(1144)] = 44487, - [SMALL_STATE(1145)] = 44559, - [SMALL_STATE(1146)] = 44635, - [SMALL_STATE(1147)] = 44677, - [SMALL_STATE(1148)] = 44737, - [SMALL_STATE(1149)] = 44795, - [SMALL_STATE(1150)] = 44837, - [SMALL_STATE(1151)] = 44879, - [SMALL_STATE(1152)] = 44945, - [SMALL_STATE(1153)] = 45021, - [SMALL_STATE(1154)] = 45065, - [SMALL_STATE(1155)] = 45142, - [SMALL_STATE(1156)] = 45205, - [SMALL_STATE(1157)] = 45282, - [SMALL_STATE(1158)] = 45341, - [SMALL_STATE(1159)] = 45408, - [SMALL_STATE(1160)] = 45485, - [SMALL_STATE(1161)] = 45562, - [SMALL_STATE(1162)] = 45609, - [SMALL_STATE(1163)] = 45674, - [SMALL_STATE(1164)] = 45721, - [SMALL_STATE(1165)] = 45792, - [SMALL_STATE(1166)] = 45839, - [SMALL_STATE(1167)] = 45896, - [SMALL_STATE(1168)] = 45969, - [SMALL_STATE(1169)] = 46024, - [SMALL_STATE(1170)] = 46093, - [SMALL_STATE(1171)] = 46134, - [SMALL_STATE(1172)] = 46203, - [SMALL_STATE(1173)] = 46256, - [SMALL_STATE(1174)] = 46323, - [SMALL_STATE(1175)] = 46386, - [SMALL_STATE(1176)] = 46459, - [SMALL_STATE(1177)] = 46524, - [SMALL_STATE(1178)] = 46597, - [SMALL_STATE(1179)] = 46670, - [SMALL_STATE(1180)] = 46737, - [SMALL_STATE(1181)] = 46810, - [SMALL_STATE(1182)] = 46873, - [SMALL_STATE(1183)] = 46934, - [SMALL_STATE(1184)] = 47007, - [SMALL_STATE(1185)] = 47064, - [SMALL_STATE(1186)] = 47119, - [SMALL_STATE(1187)] = 47179, - [SMALL_STATE(1188)] = 47239, - [SMALL_STATE(1189)] = 47299, - [SMALL_STATE(1190)] = 47359, - [SMALL_STATE(1191)] = 47419, - [SMALL_STATE(1192)] = 47479, - [SMALL_STATE(1193)] = 47539, - [SMALL_STATE(1194)] = 47599, - [SMALL_STATE(1195)] = 47674, - [SMALL_STATE(1196)] = 47749, - [SMALL_STATE(1197)] = 47824, - [SMALL_STATE(1198)] = 47899, - [SMALL_STATE(1199)] = 47972, - [SMALL_STATE(1200)] = 48047, - [SMALL_STATE(1201)] = 48122, - [SMALL_STATE(1202)] = 48197, - [SMALL_STATE(1203)] = 48272, - [SMALL_STATE(1204)] = 48344, - [SMALL_STATE(1205)] = 48414, - [SMALL_STATE(1206)] = 48470, - [SMALL_STATE(1207)] = 48526, - [SMALL_STATE(1208)] = 48592, - [SMALL_STATE(1209)] = 48664, - [SMALL_STATE(1210)] = 48728, - [SMALL_STATE(1211)] = 48784, - [SMALL_STATE(1212)] = 48846, - [SMALL_STATE(1213)] = 48902, - [SMALL_STATE(1214)] = 48972, - [SMALL_STATE(1215)] = 49028, - [SMALL_STATE(1216)] = 49084, - [SMALL_STATE(1217)] = 49140, - [SMALL_STATE(1218)] = 49210, - [SMALL_STATE(1219)] = 49278, - [SMALL_STATE(1220)] = 49330, - [SMALL_STATE(1221)] = 49386, - [SMALL_STATE(1222)] = 49458, - [SMALL_STATE(1223)] = 49518, - [SMALL_STATE(1224)] = 49574, - [SMALL_STATE(1225)] = 49628, - [SMALL_STATE(1226)] = 49700, - [SMALL_STATE(1227)] = 49772, - [SMALL_STATE(1228)] = 49844, - [SMALL_STATE(1229)] = 49900, - [SMALL_STATE(1230)] = 49972, - [SMALL_STATE(1231)] = 50044, - [SMALL_STATE(1232)] = 50116, - [SMALL_STATE(1233)] = 50188, - [SMALL_STATE(1234)] = 50244, - [SMALL_STATE(1235)] = 50310, - [SMALL_STATE(1236)] = 50382, - [SMALL_STATE(1237)] = 50438, - [SMALL_STATE(1238)] = 50494, - [SMALL_STATE(1239)] = 50566, - [SMALL_STATE(1240)] = 50622, - [SMALL_STATE(1241)] = 50694, - [SMALL_STATE(1242)] = 50768, - [SMALL_STATE(1243)] = 50840, - [SMALL_STATE(1244)] = 50912, - [SMALL_STATE(1245)] = 50968, - [SMALL_STATE(1246)] = 51040, - [SMALL_STATE(1247)] = 51096, - [SMALL_STATE(1248)] = 51168, - [SMALL_STATE(1249)] = 51238, - [SMALL_STATE(1250)] = 51310, - [SMALL_STATE(1251)] = 51382, - [SMALL_STATE(1252)] = 51454, - [SMALL_STATE(1253)] = 51524, - [SMALL_STATE(1254)] = 51594, - [SMALL_STATE(1255)] = 51664, - [SMALL_STATE(1256)] = 51736, - [SMALL_STATE(1257)] = 51808, - [SMALL_STATE(1258)] = 51880, - [SMALL_STATE(1259)] = 51952, - [SMALL_STATE(1260)] = 52024, - [SMALL_STATE(1261)] = 52072, - [SMALL_STATE(1262)] = 52144, - [SMALL_STATE(1263)] = 52200, - [SMALL_STATE(1264)] = 52270, - [SMALL_STATE(1265)] = 52316, - [SMALL_STATE(1266)] = 52372, - [SMALL_STATE(1267)] = 52428, - [SMALL_STATE(1268)] = 52497, - [SMALL_STATE(1269)] = 52566, - [SMALL_STATE(1270)] = 52605, - [SMALL_STATE(1271)] = 52658, - [SMALL_STATE(1272)] = 52727, - [SMALL_STATE(1273)] = 52796, - [SMALL_STATE(1274)] = 52865, - [SMALL_STATE(1275)] = 52934, - [SMALL_STATE(1276)] = 52987, - [SMALL_STATE(1277)] = 53056, - [SMALL_STATE(1278)] = 53125, - [SMALL_STATE(1279)] = 53178, - [SMALL_STATE(1280)] = 53247, - [SMALL_STATE(1281)] = 53316, - [SMALL_STATE(1282)] = 53385, - [SMALL_STATE(1283)] = 53454, - [SMALL_STATE(1284)] = 53523, - [SMALL_STATE(1285)] = 53592, - [SMALL_STATE(1286)] = 53661, - [SMALL_STATE(1287)] = 53730, - [SMALL_STATE(1288)] = 53783, - [SMALL_STATE(1289)] = 53852, - [SMALL_STATE(1290)] = 53921, - [SMALL_STATE(1291)] = 53990, - [SMALL_STATE(1292)] = 54043, - [SMALL_STATE(1293)] = 54112, - [SMALL_STATE(1294)] = 54181, - [SMALL_STATE(1295)] = 54250, - [SMALL_STATE(1296)] = 54319, - [SMALL_STATE(1297)] = 54388, - [SMALL_STATE(1298)] = 54457, - [SMALL_STATE(1299)] = 54526, - [SMALL_STATE(1300)] = 54595, - [SMALL_STATE(1301)] = 54664, - [SMALL_STATE(1302)] = 54717, - [SMALL_STATE(1303)] = 54786, - [SMALL_STATE(1304)] = 54855, - [SMALL_STATE(1305)] = 54924, - [SMALL_STATE(1306)] = 54964, - [SMALL_STATE(1307)] = 55006, - [SMALL_STATE(1308)] = 55072, - [SMALL_STATE(1309)] = 55112, - [SMALL_STATE(1310)] = 55152, - [SMALL_STATE(1311)] = 55188, - [SMALL_STATE(1312)] = 55235, - [SMALL_STATE(1313)] = 55282, - [SMALL_STATE(1314)] = 55329, - [SMALL_STATE(1315)] = 55376, - [SMALL_STATE(1316)] = 55407, - [SMALL_STATE(1317)] = 55438, - [SMALL_STATE(1318)] = 55485, - [SMALL_STATE(1319)] = 55532, - [SMALL_STATE(1320)] = 55576, - [SMALL_STATE(1321)] = 55610, - [SMALL_STATE(1322)] = 55654, - [SMALL_STATE(1323)] = 55698, - [SMALL_STATE(1324)] = 55736, - [SMALL_STATE(1325)] = 55780, - [SMALL_STATE(1326)] = 55816, - [SMALL_STATE(1327)] = 55860, - [SMALL_STATE(1328)] = 55904, - [SMALL_STATE(1329)] = 55947, - [SMALL_STATE(1330)] = 55990, - [SMALL_STATE(1331)] = 56045, - [SMALL_STATE(1332)] = 56100, - [SMALL_STATE(1333)] = 56133, - [SMALL_STATE(1334)] = 56188, - [SMALL_STATE(1335)] = 56231, - [SMALL_STATE(1336)] = 56277, - [SMALL_STATE(1337)] = 56317, - [SMALL_STATE(1338)] = 56345, - [SMALL_STATE(1339)] = 56385, - [SMALL_STATE(1340)] = 56413, - [SMALL_STATE(1341)] = 56453, - [SMALL_STATE(1342)] = 56493, - [SMALL_STATE(1343)] = 56533, - [SMALL_STATE(1344)] = 56573, - [SMALL_STATE(1345)] = 56621, - [SMALL_STATE(1346)] = 56661, - [SMALL_STATE(1347)] = 56689, - [SMALL_STATE(1348)] = 56717, - [SMALL_STATE(1349)] = 56757, - [SMALL_STATE(1350)] = 56785, - [SMALL_STATE(1351)] = 56825, - [SMALL_STATE(1352)] = 56865, - [SMALL_STATE(1353)] = 56905, - [SMALL_STATE(1354)] = 56945, - [SMALL_STATE(1355)] = 56985, - [SMALL_STATE(1356)] = 57013, - [SMALL_STATE(1357)] = 57053, - [SMALL_STATE(1358)] = 57093, - [SMALL_STATE(1359)] = 57133, - [SMALL_STATE(1360)] = 57161, - [SMALL_STATE(1361)] = 57201, - [SMALL_STATE(1362)] = 57241, - [SMALL_STATE(1363)] = 57281, - [SMALL_STATE(1364)] = 57313, - [SMALL_STATE(1365)] = 57345, - [SMALL_STATE(1366)] = 57373, - [SMALL_STATE(1367)] = 57413, - [SMALL_STATE(1368)] = 57453, - [SMALL_STATE(1369)] = 57493, - [SMALL_STATE(1370)] = 57525, - [SMALL_STATE(1371)] = 57565, - [SMALL_STATE(1372)] = 57593, - [SMALL_STATE(1373)] = 57641, - [SMALL_STATE(1374)] = 57681, - [SMALL_STATE(1375)] = 57713, - [SMALL_STATE(1376)] = 57753, - [SMALL_STATE(1377)] = 57793, - [SMALL_STATE(1378)] = 57839, - [SMALL_STATE(1379)] = 57889, - [SMALL_STATE(1380)] = 57933, - [SMALL_STATE(1381)] = 57975, - [SMALL_STATE(1382)] = 58015, - [SMALL_STATE(1383)] = 58055, - [SMALL_STATE(1384)] = 58083, - [SMALL_STATE(1385)] = 58123, - [SMALL_STATE(1386)] = 58163, - [SMALL_STATE(1387)] = 58199, - [SMALL_STATE(1388)] = 58239, - [SMALL_STATE(1389)] = 58279, - [SMALL_STATE(1390)] = 58313, - [SMALL_STATE(1391)] = 58353, - [SMALL_STATE(1392)] = 58393, - [SMALL_STATE(1393)] = 58433, - [SMALL_STATE(1394)] = 58465, - [SMALL_STATE(1395)] = 58505, - [SMALL_STATE(1396)] = 58545, - [SMALL_STATE(1397)] = 58585, - [SMALL_STATE(1398)] = 58625, - [SMALL_STATE(1399)] = 58665, - [SMALL_STATE(1400)] = 58705, - [SMALL_STATE(1401)] = 58745, - [SMALL_STATE(1402)] = 58778, - [SMALL_STATE(1403)] = 58817, - [SMALL_STATE(1404)] = 58858, - [SMALL_STATE(1405)] = 58903, - [SMALL_STATE(1406)] = 58930, - [SMALL_STATE(1407)] = 58961, - [SMALL_STATE(1408)] = 58992, - [SMALL_STATE(1409)] = 59021, - [SMALL_STATE(1410)] = 59054, - [SMALL_STATE(1411)] = 59085, - [SMALL_STATE(1412)] = 59134, - [SMALL_STATE(1413)] = 59179, - [SMALL_STATE(1414)] = 59206, - [SMALL_STATE(1415)] = 59251, - [SMALL_STATE(1416)] = 59282, - [SMALL_STATE(1417)] = 59317, - [SMALL_STATE(1418)] = 59362, - [SMALL_STATE(1419)] = 59397, - [SMALL_STATE(1420)] = 59424, - [SMALL_STATE(1421)] = 59451, - [SMALL_STATE(1422)] = 59496, - [SMALL_STATE(1423)] = 59541, - [SMALL_STATE(1424)] = 59580, - [SMALL_STATE(1425)] = 59625, - [SMALL_STATE(1426)] = 59668, - [SMALL_STATE(1427)] = 59713, - [SMALL_STATE(1428)] = 59758, - [SMALL_STATE(1429)] = 59803, - [SMALL_STATE(1430)] = 59830, - [SMALL_STATE(1431)] = 59875, - [SMALL_STATE(1432)] = 59920, - [SMALL_STATE(1433)] = 59951, - [SMALL_STATE(1434)] = 59996, - [SMALL_STATE(1435)] = 60027, - [SMALL_STATE(1436)] = 60058, - [SMALL_STATE(1437)] = 60085, - [SMALL_STATE(1438)] = 60112, - [SMALL_STATE(1439)] = 60149, - [SMALL_STATE(1440)] = 60194, - [SMALL_STATE(1441)] = 60239, - [SMALL_STATE(1442)] = 60266, - [SMALL_STATE(1443)] = 60311, - [SMALL_STATE(1444)] = 60338, - [SMALL_STATE(1445)] = 60369, - [SMALL_STATE(1446)] = 60396, - [SMALL_STATE(1447)] = 60427, - [SMALL_STATE(1448)] = 60472, - [SMALL_STATE(1449)] = 60521, - [SMALL_STATE(1450)] = 60562, - [SMALL_STATE(1451)] = 60603, - [SMALL_STATE(1452)] = 60648, - [SMALL_STATE(1453)] = 60693, - [SMALL_STATE(1454)] = 60734, - [SMALL_STATE(1455)] = 60775, - [SMALL_STATE(1456)] = 60816, - [SMALL_STATE(1457)] = 60857, - [SMALL_STATE(1458)] = 60898, - [SMALL_STATE(1459)] = 60943, - [SMALL_STATE(1460)] = 60984, - [SMALL_STATE(1461)] = 61029, - [SMALL_STATE(1462)] = 61070, - [SMALL_STATE(1463)] = 61111, - [SMALL_STATE(1464)] = 61159, - [SMALL_STATE(1465)] = 61193, - [SMALL_STATE(1466)] = 61241, - [SMALL_STATE(1467)] = 61289, - [SMALL_STATE(1468)] = 61337, - [SMALL_STATE(1469)] = 61385, - [SMALL_STATE(1470)] = 61413, - [SMALL_STATE(1471)] = 61451, - [SMALL_STATE(1472)] = 61489, - [SMALL_STATE(1473)] = 61534, - [SMALL_STATE(1474)] = 61563, - [SMALL_STATE(1475)] = 61608, - [SMALL_STATE(1476)] = 61653, - [SMALL_STATE(1477)] = 61698, - [SMALL_STATE(1478)] = 61737, - [SMALL_STATE(1479)] = 61766, - [SMALL_STATE(1480)] = 61795, - [SMALL_STATE(1481)] = 61824, - [SMALL_STATE(1482)] = 61869, - [SMALL_STATE(1483)] = 61891, - [SMALL_STATE(1484)] = 61929, - [SMALL_STATE(1485)] = 61951, - [SMALL_STATE(1486)] = 61989, - [SMALL_STATE(1487)] = 62027, - [SMALL_STATE(1488)] = 62065, - [SMALL_STATE(1489)] = 62103, - [SMALL_STATE(1490)] = 62125, - [SMALL_STATE(1491)] = 62163, - [SMALL_STATE(1492)] = 62198, - [SMALL_STATE(1493)] = 62233, - [SMALL_STATE(1494)] = 62268, - [SMALL_STATE(1495)] = 62297, - [SMALL_STATE(1496)] = 62326, - [SMALL_STATE(1497)] = 62355, - [SMALL_STATE(1498)] = 62390, - [SMALL_STATE(1499)] = 62425, - [SMALL_STATE(1500)] = 62458, - [SMALL_STATE(1501)] = 62487, - [SMALL_STATE(1502)] = 62516, - [SMALL_STATE(1503)] = 62551, - [SMALL_STATE(1504)] = 62586, - [SMALL_STATE(1505)] = 62615, - [SMALL_STATE(1506)] = 62644, - [SMALL_STATE(1507)] = 62679, - [SMALL_STATE(1508)] = 62712, - [SMALL_STATE(1509)] = 62751, - [SMALL_STATE(1510)] = 62786, - [SMALL_STATE(1511)] = 62819, - [SMALL_STATE(1512)] = 62854, - [SMALL_STATE(1513)] = 62889, - [SMALL_STATE(1514)] = 62918, - [SMALL_STATE(1515)] = 62953, - [SMALL_STATE(1516)] = 62985, - [SMALL_STATE(1517)] = 63017, - [SMALL_STATE(1518)] = 63049, - [SMALL_STATE(1519)] = 63081, - [SMALL_STATE(1520)] = 63105, - [SMALL_STATE(1521)] = 63133, - [SMALL_STATE(1522)] = 63167, - [SMALL_STATE(1523)] = 63199, - [SMALL_STATE(1524)] = 63227, - [SMALL_STATE(1525)] = 63259, - [SMALL_STATE(1526)] = 63283, - [SMALL_STATE(1527)] = 63311, - [SMALL_STATE(1528)] = 63339, - [SMALL_STATE(1529)] = 63371, - [SMALL_STATE(1530)] = 63400, - [SMALL_STATE(1531)] = 63433, - [SMALL_STATE(1532)] = 63456, - [SMALL_STATE(1533)] = 63485, - [SMALL_STATE(1534)] = 63514, - [SMALL_STATE(1535)] = 63543, - [SMALL_STATE(1536)] = 63570, - [SMALL_STATE(1537)] = 63603, - [SMALL_STATE(1538)] = 63632, - [SMALL_STATE(1539)] = 63665, - [SMALL_STATE(1540)] = 63696, - [SMALL_STATE(1541)] = 63725, - [SMALL_STATE(1542)] = 63754, - [SMALL_STATE(1543)] = 63783, - [SMALL_STATE(1544)] = 63812, - [SMALL_STATE(1545)] = 63843, - [SMALL_STATE(1546)] = 63872, - [SMALL_STATE(1547)] = 63890, - [SMALL_STATE(1548)] = 63908, - [SMALL_STATE(1549)] = 63926, - [SMALL_STATE(1550)] = 63944, - [SMALL_STATE(1551)] = 63962, - [SMALL_STATE(1552)] = 63980, - [SMALL_STATE(1553)] = 63998, - [SMALL_STATE(1554)] = 64016, - [SMALL_STATE(1555)] = 64034, - [SMALL_STATE(1556)] = 64058, - [SMALL_STATE(1557)] = 64076, - [SMALL_STATE(1558)] = 64094, - [SMALL_STATE(1559)] = 64112, - [SMALL_STATE(1560)] = 64136, - [SMALL_STATE(1561)] = 64154, - [SMALL_STATE(1562)] = 64172, - [SMALL_STATE(1563)] = 64201, - [SMALL_STATE(1564)] = 64218, - [SMALL_STATE(1565)] = 64247, - [SMALL_STATE(1566)] = 64264, - [SMALL_STATE(1567)] = 64281, - [SMALL_STATE(1568)] = 64304, - [SMALL_STATE(1569)] = 64327, - [SMALL_STATE(1570)] = 64350, - [SMALL_STATE(1571)] = 64379, - [SMALL_STATE(1572)] = 64400, - [SMALL_STATE(1573)] = 64417, - [SMALL_STATE(1574)] = 64434, - [SMALL_STATE(1575)] = 64451, - [SMALL_STATE(1576)] = 64472, - [SMALL_STATE(1577)] = 64489, - [SMALL_STATE(1578)] = 64518, - [SMALL_STATE(1579)] = 64547, - [SMALL_STATE(1580)] = 64564, - [SMALL_STATE(1581)] = 64585, - [SMALL_STATE(1582)] = 64608, - [SMALL_STATE(1583)] = 64625, - [SMALL_STATE(1584)] = 64646, - [SMALL_STATE(1585)] = 64675, - [SMALL_STATE(1586)] = 64696, - [SMALL_STATE(1587)] = 64716, - [SMALL_STATE(1588)] = 64742, - [SMALL_STATE(1589)] = 64762, - [SMALL_STATE(1590)] = 64786, - [SMALL_STATE(1591)] = 64812, - [SMALL_STATE(1592)] = 64838, - [SMALL_STATE(1593)] = 64862, - [SMALL_STATE(1594)] = 64888, - [SMALL_STATE(1595)] = 64912, - [SMALL_STATE(1596)] = 64938, - [SMALL_STATE(1597)] = 64958, - [SMALL_STATE(1598)] = 64978, - [SMALL_STATE(1599)] = 65002, - [SMALL_STATE(1600)] = 65022, - [SMALL_STATE(1601)] = 65042, - [SMALL_STATE(1602)] = 65066, - [SMALL_STATE(1603)] = 65084, - [SMALL_STATE(1604)] = 65110, - [SMALL_STATE(1605)] = 65136, - [SMALL_STATE(1606)] = 65162, - [SMALL_STATE(1607)] = 65188, - [SMALL_STATE(1608)] = 65214, - [SMALL_STATE(1609)] = 65232, - [SMALL_STATE(1610)] = 65254, - [SMALL_STATE(1611)] = 65274, - [SMALL_STATE(1612)] = 65298, - [SMALL_STATE(1613)] = 65324, - [SMALL_STATE(1614)] = 65347, - [SMALL_STATE(1615)] = 65366, - [SMALL_STATE(1616)] = 65385, - [SMALL_STATE(1617)] = 65402, - [SMALL_STATE(1618)] = 65425, - [SMALL_STATE(1619)] = 65448, - [SMALL_STATE(1620)] = 65466, - [SMALL_STATE(1621)] = 65482, - [SMALL_STATE(1622)] = 65500, - [SMALL_STATE(1623)] = 65518, - [SMALL_STATE(1624)] = 65536, - [SMALL_STATE(1625)] = 65554, - [SMALL_STATE(1626)] = 65572, - [SMALL_STATE(1627)] = 65590, - [SMALL_STATE(1628)] = 65604, - [SMALL_STATE(1629)] = 65620, - [SMALL_STATE(1630)] = 65634, - [SMALL_STATE(1631)] = 65652, - [SMALL_STATE(1632)] = 65670, - [SMALL_STATE(1633)] = 65688, - [SMALL_STATE(1634)] = 65704, - [SMALL_STATE(1635)] = 65722, - [SMALL_STATE(1636)] = 65740, - [SMALL_STATE(1637)] = 65758, - [SMALL_STATE(1638)] = 65772, - [SMALL_STATE(1639)] = 65790, - [SMALL_STATE(1640)] = 65804, - [SMALL_STATE(1641)] = 65818, - [SMALL_STATE(1642)] = 65836, - [SMALL_STATE(1643)] = 65852, - [SMALL_STATE(1644)] = 65870, - [SMALL_STATE(1645)] = 65884, - [SMALL_STATE(1646)] = 65898, - [SMALL_STATE(1647)] = 65914, - [SMALL_STATE(1648)] = 65930, - [SMALL_STATE(1649)] = 65944, - [SMALL_STATE(1650)] = 65960, - [SMALL_STATE(1651)] = 65974, - [SMALL_STATE(1652)] = 65990, - [SMALL_STATE(1653)] = 66008, - [SMALL_STATE(1654)] = 66026, - [SMALL_STATE(1655)] = 66042, - [SMALL_STATE(1656)] = 66060, - [SMALL_STATE(1657)] = 66074, - [SMALL_STATE(1658)] = 66088, - [SMALL_STATE(1659)] = 66104, - [SMALL_STATE(1660)] = 66122, - [SMALL_STATE(1661)] = 66140, - [SMALL_STATE(1662)] = 66158, - [SMALL_STATE(1663)] = 66174, - [SMALL_STATE(1664)] = 66188, - [SMALL_STATE(1665)] = 66202, - [SMALL_STATE(1666)] = 66220, - [SMALL_STATE(1667)] = 66238, - [SMALL_STATE(1668)] = 66254, - [SMALL_STATE(1669)] = 66268, - [SMALL_STATE(1670)] = 66282, - [SMALL_STATE(1671)] = 66296, - [SMALL_STATE(1672)] = 66314, - [SMALL_STATE(1673)] = 66332, - [SMALL_STATE(1674)] = 66346, - [SMALL_STATE(1675)] = 66364, - [SMALL_STATE(1676)] = 66375, - [SMALL_STATE(1677)] = 66386, - [SMALL_STATE(1678)] = 66405, - [SMALL_STATE(1679)] = 66422, - [SMALL_STATE(1680)] = 66433, - [SMALL_STATE(1681)] = 66450, - [SMALL_STATE(1682)] = 66461, - [SMALL_STATE(1683)] = 66480, - [SMALL_STATE(1684)] = 66499, - [SMALL_STATE(1685)] = 66518, - [SMALL_STATE(1686)] = 66535, - [SMALL_STATE(1687)] = 66554, - [SMALL_STATE(1688)] = 66573, - [SMALL_STATE(1689)] = 66590, - [SMALL_STATE(1690)] = 66603, - [SMALL_STATE(1691)] = 66614, - [SMALL_STATE(1692)] = 66625, - [SMALL_STATE(1693)] = 66636, - [SMALL_STATE(1694)] = 66655, - [SMALL_STATE(1695)] = 66674, - [SMALL_STATE(1696)] = 66685, - [SMALL_STATE(1697)] = 66696, - [SMALL_STATE(1698)] = 66707, - [SMALL_STATE(1699)] = 66718, - [SMALL_STATE(1700)] = 66737, - [SMALL_STATE(1701)] = 66756, - [SMALL_STATE(1702)] = 66767, - [SMALL_STATE(1703)] = 66786, - [SMALL_STATE(1704)] = 66805, - [SMALL_STATE(1705)] = 66822, - [SMALL_STATE(1706)] = 66839, - [SMALL_STATE(1707)] = 66850, - [SMALL_STATE(1708)] = 66864, - [SMALL_STATE(1709)] = 66880, - [SMALL_STATE(1710)] = 66894, - [SMALL_STATE(1711)] = 66908, - [SMALL_STATE(1712)] = 66918, - [SMALL_STATE(1713)] = 66932, - [SMALL_STATE(1714)] = 66946, - [SMALL_STATE(1715)] = 66960, - [SMALL_STATE(1716)] = 66974, - [SMALL_STATE(1717)] = 66984, - [SMALL_STATE(1718)] = 67000, - [SMALL_STATE(1719)] = 67016, - [SMALL_STATE(1720)] = 67030, - [SMALL_STATE(1721)] = 67046, - [SMALL_STATE(1722)] = 67060, - [SMALL_STATE(1723)] = 67074, - [SMALL_STATE(1724)] = 67090, - [SMALL_STATE(1725)] = 67104, - [SMALL_STATE(1726)] = 67118, - [SMALL_STATE(1727)] = 67134, - [SMALL_STATE(1728)] = 67150, - [SMALL_STATE(1729)] = 67166, - [SMALL_STATE(1730)] = 67182, - [SMALL_STATE(1731)] = 67198, - [SMALL_STATE(1732)] = 67212, - [SMALL_STATE(1733)] = 67228, - [SMALL_STATE(1734)] = 67242, - [SMALL_STATE(1735)] = 67256, - [SMALL_STATE(1736)] = 67270, - [SMALL_STATE(1737)] = 67284, - [SMALL_STATE(1738)] = 67298, - [SMALL_STATE(1739)] = 67312, - [SMALL_STATE(1740)] = 67328, - [SMALL_STATE(1741)] = 67342, - [SMALL_STATE(1742)] = 67356, - [SMALL_STATE(1743)] = 67370, - [SMALL_STATE(1744)] = 67384, - [SMALL_STATE(1745)] = 67400, - [SMALL_STATE(1746)] = 67413, - [SMALL_STATE(1747)] = 67426, - [SMALL_STATE(1748)] = 67439, - [SMALL_STATE(1749)] = 67452, - [SMALL_STATE(1750)] = 67465, - [SMALL_STATE(1751)] = 67478, - [SMALL_STATE(1752)] = 67491, - [SMALL_STATE(1753)] = 67504, - [SMALL_STATE(1754)] = 67517, - [SMALL_STATE(1755)] = 67530, - [SMALL_STATE(1756)] = 67543, - [SMALL_STATE(1757)] = 67554, - [SMALL_STATE(1758)] = 67567, - [SMALL_STATE(1759)] = 67580, - [SMALL_STATE(1760)] = 67593, - [SMALL_STATE(1761)] = 67606, - [SMALL_STATE(1762)] = 67619, - [SMALL_STATE(1763)] = 67628, - [SMALL_STATE(1764)] = 67641, - [SMALL_STATE(1765)] = 67654, - [SMALL_STATE(1766)] = 67667, - [SMALL_STATE(1767)] = 67680, - [SMALL_STATE(1768)] = 67693, - [SMALL_STATE(1769)] = 67706, - [SMALL_STATE(1770)] = 67719, - [SMALL_STATE(1771)] = 67732, - [SMALL_STATE(1772)] = 67745, - [SMALL_STATE(1773)] = 67758, - [SMALL_STATE(1774)] = 67769, - [SMALL_STATE(1775)] = 67782, - [SMALL_STATE(1776)] = 67795, - [SMALL_STATE(1777)] = 67808, - [SMALL_STATE(1778)] = 67821, - [SMALL_STATE(1779)] = 67830, - [SMALL_STATE(1780)] = 67843, - [SMALL_STATE(1781)] = 67852, - [SMALL_STATE(1782)] = 67861, - [SMALL_STATE(1783)] = 67874, - [SMALL_STATE(1784)] = 67887, - [SMALL_STATE(1785)] = 67900, - [SMALL_STATE(1786)] = 67913, - [SMALL_STATE(1787)] = 67926, - [SMALL_STATE(1788)] = 67939, - [SMALL_STATE(1789)] = 67952, - [SMALL_STATE(1790)] = 67965, - [SMALL_STATE(1791)] = 67978, - [SMALL_STATE(1792)] = 67989, - [SMALL_STATE(1793)] = 68002, - [SMALL_STATE(1794)] = 68015, - [SMALL_STATE(1795)] = 68028, - [SMALL_STATE(1796)] = 68041, - [SMALL_STATE(1797)] = 68050, - [SMALL_STATE(1798)] = 68061, - [SMALL_STATE(1799)] = 68072, - [SMALL_STATE(1800)] = 68085, - [SMALL_STATE(1801)] = 68098, - [SMALL_STATE(1802)] = 68111, - [SMALL_STATE(1803)] = 68124, - [SMALL_STATE(1804)] = 68137, - [SMALL_STATE(1805)] = 68150, - [SMALL_STATE(1806)] = 68163, - [SMALL_STATE(1807)] = 68176, - [SMALL_STATE(1808)] = 68189, - [SMALL_STATE(1809)] = 68202, - [SMALL_STATE(1810)] = 68215, - [SMALL_STATE(1811)] = 68228, - [SMALL_STATE(1812)] = 68241, - [SMALL_STATE(1813)] = 68254, - [SMALL_STATE(1814)] = 68267, - [SMALL_STATE(1815)] = 68280, - [SMALL_STATE(1816)] = 68293, - [SMALL_STATE(1817)] = 68306, - [SMALL_STATE(1818)] = 68317, - [SMALL_STATE(1819)] = 68328, - [SMALL_STATE(1820)] = 68341, - [SMALL_STATE(1821)] = 68350, - [SMALL_STATE(1822)] = 68363, - [SMALL_STATE(1823)] = 68376, - [SMALL_STATE(1824)] = 68389, - [SMALL_STATE(1825)] = 68402, - [SMALL_STATE(1826)] = 68411, - [SMALL_STATE(1827)] = 68424, - [SMALL_STATE(1828)] = 68437, - [SMALL_STATE(1829)] = 68450, - [SMALL_STATE(1830)] = 68463, - [SMALL_STATE(1831)] = 68476, - [SMALL_STATE(1832)] = 68489, - [SMALL_STATE(1833)] = 68500, - [SMALL_STATE(1834)] = 68513, - [SMALL_STATE(1835)] = 68526, - [SMALL_STATE(1836)] = 68539, - [SMALL_STATE(1837)] = 68552, - [SMALL_STATE(1838)] = 68561, - [SMALL_STATE(1839)] = 68574, - [SMALL_STATE(1840)] = 68583, - [SMALL_STATE(1841)] = 68596, - [SMALL_STATE(1842)] = 68609, - [SMALL_STATE(1843)] = 68622, - [SMALL_STATE(1844)] = 68635, - [SMALL_STATE(1845)] = 68648, - [SMALL_STATE(1846)] = 68659, - [SMALL_STATE(1847)] = 68672, - [SMALL_STATE(1848)] = 68685, - [SMALL_STATE(1849)] = 68698, - [SMALL_STATE(1850)] = 68711, - [SMALL_STATE(1851)] = 68724, - [SMALL_STATE(1852)] = 68737, - [SMALL_STATE(1853)] = 68750, - [SMALL_STATE(1854)] = 68763, - [SMALL_STATE(1855)] = 68772, - [SMALL_STATE(1856)] = 68785, - [SMALL_STATE(1857)] = 68795, - [SMALL_STATE(1858)] = 68805, - [SMALL_STATE(1859)] = 68815, - [SMALL_STATE(1860)] = 68825, - [SMALL_STATE(1861)] = 68835, - [SMALL_STATE(1862)] = 68845, - [SMALL_STATE(1863)] = 68855, - [SMALL_STATE(1864)] = 68865, - [SMALL_STATE(1865)] = 68875, - [SMALL_STATE(1866)] = 68885, - [SMALL_STATE(1867)] = 68895, - [SMALL_STATE(1868)] = 68903, - [SMALL_STATE(1869)] = 68913, - [SMALL_STATE(1870)] = 68923, - [SMALL_STATE(1871)] = 68933, - [SMALL_STATE(1872)] = 68943, - [SMALL_STATE(1873)] = 68953, - [SMALL_STATE(1874)] = 68963, - [SMALL_STATE(1875)] = 68973, - [SMALL_STATE(1876)] = 68983, - [SMALL_STATE(1877)] = 68993, - [SMALL_STATE(1878)] = 69001, - [SMALL_STATE(1879)] = 69011, - [SMALL_STATE(1880)] = 69021, - [SMALL_STATE(1881)] = 69031, - [SMALL_STATE(1882)] = 69041, - [SMALL_STATE(1883)] = 69051, - [SMALL_STATE(1884)] = 69061, - [SMALL_STATE(1885)] = 69071, - [SMALL_STATE(1886)] = 69079, - [SMALL_STATE(1887)] = 69089, - [SMALL_STATE(1888)] = 69097, - [SMALL_STATE(1889)] = 69107, - [SMALL_STATE(1890)] = 69115, - [SMALL_STATE(1891)] = 69125, - [SMALL_STATE(1892)] = 69135, - [SMALL_STATE(1893)] = 69143, - [SMALL_STATE(1894)] = 69151, - [SMALL_STATE(1895)] = 69159, - [SMALL_STATE(1896)] = 69169, - [SMALL_STATE(1897)] = 69177, - [SMALL_STATE(1898)] = 69185, - [SMALL_STATE(1899)] = 69193, - [SMALL_STATE(1900)] = 69203, - [SMALL_STATE(1901)] = 69211, - [SMALL_STATE(1902)] = 69221, - [SMALL_STATE(1903)] = 69231, - [SMALL_STATE(1904)] = 69241, - [SMALL_STATE(1905)] = 69251, - [SMALL_STATE(1906)] = 69261, - [SMALL_STATE(1907)] = 69269, - [SMALL_STATE(1908)] = 69279, - [SMALL_STATE(1909)] = 69289, - [SMALL_STATE(1910)] = 69297, - [SMALL_STATE(1911)] = 69307, - [SMALL_STATE(1912)] = 69317, - [SMALL_STATE(1913)] = 69327, - [SMALL_STATE(1914)] = 69335, - [SMALL_STATE(1915)] = 69345, - [SMALL_STATE(1916)] = 69355, - [SMALL_STATE(1917)] = 69365, - [SMALL_STATE(1918)] = 69375, - [SMALL_STATE(1919)] = 69385, - [SMALL_STATE(1920)] = 69393, - [SMALL_STATE(1921)] = 69403, - [SMALL_STATE(1922)] = 69413, - [SMALL_STATE(1923)] = 69423, - [SMALL_STATE(1924)] = 69431, - [SMALL_STATE(1925)] = 69441, - [SMALL_STATE(1926)] = 69451, - [SMALL_STATE(1927)] = 69461, - [SMALL_STATE(1928)] = 69471, - [SMALL_STATE(1929)] = 69481, - [SMALL_STATE(1930)] = 69489, - [SMALL_STATE(1931)] = 69499, - [SMALL_STATE(1932)] = 69509, - [SMALL_STATE(1933)] = 69519, - [SMALL_STATE(1934)] = 69529, - [SMALL_STATE(1935)] = 69539, - [SMALL_STATE(1936)] = 69549, - [SMALL_STATE(1937)] = 69559, - [SMALL_STATE(1938)] = 69569, - [SMALL_STATE(1939)] = 69577, - [SMALL_STATE(1940)] = 69587, - [SMALL_STATE(1941)] = 69597, - [SMALL_STATE(1942)] = 69604, - [SMALL_STATE(1943)] = 69611, - [SMALL_STATE(1944)] = 69618, - [SMALL_STATE(1945)] = 69625, - [SMALL_STATE(1946)] = 69632, - [SMALL_STATE(1947)] = 69639, - [SMALL_STATE(1948)] = 69646, - [SMALL_STATE(1949)] = 69653, - [SMALL_STATE(1950)] = 69660, - [SMALL_STATE(1951)] = 69667, - [SMALL_STATE(1952)] = 69674, - [SMALL_STATE(1953)] = 69681, - [SMALL_STATE(1954)] = 69688, - [SMALL_STATE(1955)] = 69695, - [SMALL_STATE(1956)] = 69702, - [SMALL_STATE(1957)] = 69709, - [SMALL_STATE(1958)] = 69716, - [SMALL_STATE(1959)] = 69723, - [SMALL_STATE(1960)] = 69730, - [SMALL_STATE(1961)] = 69737, - [SMALL_STATE(1962)] = 69744, - [SMALL_STATE(1963)] = 69751, - [SMALL_STATE(1964)] = 69758, - [SMALL_STATE(1965)] = 69765, - [SMALL_STATE(1966)] = 69772, - [SMALL_STATE(1967)] = 69779, - [SMALL_STATE(1968)] = 69786, - [SMALL_STATE(1969)] = 69793, - [SMALL_STATE(1970)] = 69800, - [SMALL_STATE(1971)] = 69807, - [SMALL_STATE(1972)] = 69814, - [SMALL_STATE(1973)] = 69821, - [SMALL_STATE(1974)] = 69828, - [SMALL_STATE(1975)] = 69835, - [SMALL_STATE(1976)] = 69842, - [SMALL_STATE(1977)] = 69849, - [SMALL_STATE(1978)] = 69856, - [SMALL_STATE(1979)] = 69863, - [SMALL_STATE(1980)] = 69870, - [SMALL_STATE(1981)] = 69877, - [SMALL_STATE(1982)] = 69884, - [SMALL_STATE(1983)] = 69891, - [SMALL_STATE(1984)] = 69898, - [SMALL_STATE(1985)] = 69905, - [SMALL_STATE(1986)] = 69912, - [SMALL_STATE(1987)] = 69919, - [SMALL_STATE(1988)] = 69926, - [SMALL_STATE(1989)] = 69933, - [SMALL_STATE(1990)] = 69940, - [SMALL_STATE(1991)] = 69947, - [SMALL_STATE(1992)] = 69954, - [SMALL_STATE(1993)] = 69961, - [SMALL_STATE(1994)] = 69968, - [SMALL_STATE(1995)] = 69975, - [SMALL_STATE(1996)] = 69982, - [SMALL_STATE(1997)] = 69989, - [SMALL_STATE(1998)] = 69996, - [SMALL_STATE(1999)] = 70003, - [SMALL_STATE(2000)] = 70010, - [SMALL_STATE(2001)] = 70017, - [SMALL_STATE(2002)] = 70024, - [SMALL_STATE(2003)] = 70031, - [SMALL_STATE(2004)] = 70038, - [SMALL_STATE(2005)] = 70045, - [SMALL_STATE(2006)] = 70052, - [SMALL_STATE(2007)] = 70059, - [SMALL_STATE(2008)] = 70066, - [SMALL_STATE(2009)] = 70073, - [SMALL_STATE(2010)] = 70080, - [SMALL_STATE(2011)] = 70087, - [SMALL_STATE(2012)] = 70094, - [SMALL_STATE(2013)] = 70101, - [SMALL_STATE(2014)] = 70108, - [SMALL_STATE(2015)] = 70115, - [SMALL_STATE(2016)] = 70122, - [SMALL_STATE(2017)] = 70129, - [SMALL_STATE(2018)] = 70136, - [SMALL_STATE(2019)] = 70143, - [SMALL_STATE(2020)] = 70150, - [SMALL_STATE(2021)] = 70157, - [SMALL_STATE(2022)] = 70164, - [SMALL_STATE(2023)] = 70171, - [SMALL_STATE(2024)] = 70178, - [SMALL_STATE(2025)] = 70185, - [SMALL_STATE(2026)] = 70192, - [SMALL_STATE(2027)] = 70199, - [SMALL_STATE(2028)] = 70206, - [SMALL_STATE(2029)] = 70213, - [SMALL_STATE(2030)] = 70220, - [SMALL_STATE(2031)] = 70227, - [SMALL_STATE(2032)] = 70234, - [SMALL_STATE(2033)] = 70241, - [SMALL_STATE(2034)] = 70248, - [SMALL_STATE(2035)] = 70255, - [SMALL_STATE(2036)] = 70262, - [SMALL_STATE(2037)] = 70269, - [SMALL_STATE(2038)] = 70276, - [SMALL_STATE(2039)] = 70283, - [SMALL_STATE(2040)] = 70290, - [SMALL_STATE(2041)] = 70297, - [SMALL_STATE(2042)] = 70304, - [SMALL_STATE(2043)] = 70311, - [SMALL_STATE(2044)] = 70318, - [SMALL_STATE(2045)] = 70325, - [SMALL_STATE(2046)] = 70332, - [SMALL_STATE(2047)] = 70339, - [SMALL_STATE(2048)] = 70346, - [SMALL_STATE(2049)] = 70353, - [SMALL_STATE(2050)] = 70360, - [SMALL_STATE(2051)] = 70367, - [SMALL_STATE(2052)] = 70374, - [SMALL_STATE(2053)] = 70381, - [SMALL_STATE(2054)] = 70388, - [SMALL_STATE(2055)] = 70395, - [SMALL_STATE(2056)] = 70402, - [SMALL_STATE(2057)] = 70409, - [SMALL_STATE(2058)] = 70416, - [SMALL_STATE(2059)] = 70423, - [SMALL_STATE(2060)] = 70430, - [SMALL_STATE(2061)] = 70437, - [SMALL_STATE(2062)] = 70444, - [SMALL_STATE(2063)] = 70451, - [SMALL_STATE(2064)] = 70458, - [SMALL_STATE(2065)] = 70465, - [SMALL_STATE(2066)] = 70472, - [SMALL_STATE(2067)] = 70479, - [SMALL_STATE(2068)] = 70486, - [SMALL_STATE(2069)] = 70493, - [SMALL_STATE(2070)] = 70500, - [SMALL_STATE(2071)] = 70507, - [SMALL_STATE(2072)] = 70514, - [SMALL_STATE(2073)] = 70521, - [SMALL_STATE(2074)] = 70528, - [SMALL_STATE(2075)] = 70535, - [SMALL_STATE(2076)] = 70542, - [SMALL_STATE(2077)] = 70549, - [SMALL_STATE(2078)] = 70556, - [SMALL_STATE(2079)] = 70563, - [SMALL_STATE(2080)] = 70570, - [SMALL_STATE(2081)] = 70577, - [SMALL_STATE(2082)] = 70584, - [SMALL_STATE(2083)] = 70591, - [SMALL_STATE(2084)] = 70598, - [SMALL_STATE(2085)] = 70605, - [SMALL_STATE(2086)] = 70612, - [SMALL_STATE(2087)] = 70619, - [SMALL_STATE(2088)] = 70626, - [SMALL_STATE(2089)] = 70633, - [SMALL_STATE(2090)] = 70640, - [SMALL_STATE(2091)] = 70647, - [SMALL_STATE(2092)] = 70654, - [SMALL_STATE(2093)] = 70661, - [SMALL_STATE(2094)] = 70668, - [SMALL_STATE(2095)] = 70675, - [SMALL_STATE(2096)] = 70682, - [SMALL_STATE(2097)] = 70689, - [SMALL_STATE(2098)] = 70696, - [SMALL_STATE(2099)] = 70703, - [SMALL_STATE(2100)] = 70710, - [SMALL_STATE(2101)] = 70717, - [SMALL_STATE(2102)] = 70724, - [SMALL_STATE(2103)] = 70731, - [SMALL_STATE(2104)] = 70738, - [SMALL_STATE(2105)] = 70745, - [SMALL_STATE(2106)] = 70752, - [SMALL_STATE(2107)] = 70759, - [SMALL_STATE(2108)] = 70766, - [SMALL_STATE(2109)] = 70773, - [SMALL_STATE(2110)] = 70780, - [SMALL_STATE(2111)] = 70787, - [SMALL_STATE(2112)] = 70794, - [SMALL_STATE(2113)] = 70801, - [SMALL_STATE(2114)] = 70808, - [SMALL_STATE(2115)] = 70815, - [SMALL_STATE(2116)] = 70822, - [SMALL_STATE(2117)] = 70829, - [SMALL_STATE(2118)] = 70836, - [SMALL_STATE(2119)] = 70843, - [SMALL_STATE(2120)] = 70850, - [SMALL_STATE(2121)] = 70857, - [SMALL_STATE(2122)] = 70864, - [SMALL_STATE(2123)] = 70871, - [SMALL_STATE(2124)] = 70878, - [SMALL_STATE(2125)] = 70885, - [SMALL_STATE(2126)] = 70892, - [SMALL_STATE(2127)] = 70899, - [SMALL_STATE(2128)] = 70906, - [SMALL_STATE(2129)] = 70913, - [SMALL_STATE(2130)] = 70920, - [SMALL_STATE(2131)] = 70927, - [SMALL_STATE(2132)] = 70934, - [SMALL_STATE(2133)] = 70941, - [SMALL_STATE(2134)] = 70948, - [SMALL_STATE(2135)] = 70955, - [SMALL_STATE(2136)] = 70962, - [SMALL_STATE(2137)] = 70969, - [SMALL_STATE(2138)] = 70976, - [SMALL_STATE(2139)] = 70983, - [SMALL_STATE(2140)] = 70990, - [SMALL_STATE(2141)] = 70997, - [SMALL_STATE(2142)] = 71004, - [SMALL_STATE(2143)] = 71011, - [SMALL_STATE(2144)] = 71018, - [SMALL_STATE(2145)] = 71025, - [SMALL_STATE(2146)] = 71032, - [SMALL_STATE(2147)] = 71039, - [SMALL_STATE(2148)] = 71046, - [SMALL_STATE(2149)] = 71053, - [SMALL_STATE(2150)] = 71060, - [SMALL_STATE(2151)] = 71067, - [SMALL_STATE(2152)] = 71074, - [SMALL_STATE(2153)] = 71081, - [SMALL_STATE(2154)] = 71088, - [SMALL_STATE(2155)] = 71095, - [SMALL_STATE(2156)] = 71102, - [SMALL_STATE(2157)] = 71109, - [SMALL_STATE(2158)] = 71116, - [SMALL_STATE(2159)] = 71123, - [SMALL_STATE(2160)] = 71130, - [SMALL_STATE(2161)] = 71137, - [SMALL_STATE(2162)] = 71144, - [SMALL_STATE(2163)] = 71151, - [SMALL_STATE(2164)] = 71158, - [SMALL_STATE(2165)] = 71165, - [SMALL_STATE(2166)] = 71172, - [SMALL_STATE(2167)] = 71179, - [SMALL_STATE(2168)] = 71186, - [SMALL_STATE(2169)] = 71193, - [SMALL_STATE(2170)] = 71200, - [SMALL_STATE(2171)] = 71207, - [SMALL_STATE(2172)] = 71214, - [SMALL_STATE(2173)] = 71221, - [SMALL_STATE(2174)] = 71228, - [SMALL_STATE(2175)] = 71235, - [SMALL_STATE(2176)] = 71242, - [SMALL_STATE(2177)] = 71249, - [SMALL_STATE(2178)] = 71256, - [SMALL_STATE(2179)] = 71263, - [SMALL_STATE(2180)] = 71270, - [SMALL_STATE(2181)] = 71277, - [SMALL_STATE(2182)] = 71284, - [SMALL_STATE(2183)] = 71291, - [SMALL_STATE(2184)] = 71298, - [SMALL_STATE(2185)] = 71305, - [SMALL_STATE(2186)] = 71312, - [SMALL_STATE(2187)] = 71319, - [SMALL_STATE(2188)] = 71326, - [SMALL_STATE(2189)] = 71333, - [SMALL_STATE(2190)] = 71340, - [SMALL_STATE(2191)] = 71347, - [SMALL_STATE(2192)] = 71354, - [SMALL_STATE(2193)] = 71361, - [SMALL_STATE(2194)] = 71368, - [SMALL_STATE(2195)] = 71375, - [SMALL_STATE(2196)] = 71382, - [SMALL_STATE(2197)] = 71389, - [SMALL_STATE(2198)] = 71396, - [SMALL_STATE(2199)] = 71403, - [SMALL_STATE(2200)] = 71410, - [SMALL_STATE(2201)] = 71417, - [SMALL_STATE(2202)] = 71424, - [SMALL_STATE(2203)] = 71431, - [SMALL_STATE(2204)] = 71438, - [SMALL_STATE(2205)] = 71445, - [SMALL_STATE(2206)] = 71452, - [SMALL_STATE(2207)] = 71459, - [SMALL_STATE(2208)] = 71466, - [SMALL_STATE(2209)] = 71473, - [SMALL_STATE(2210)] = 71480, - [SMALL_STATE(2211)] = 71487, - [SMALL_STATE(2212)] = 71494, - [SMALL_STATE(2213)] = 71501, - [SMALL_STATE(2214)] = 71508, - [SMALL_STATE(2215)] = 71515, - [SMALL_STATE(2216)] = 71522, - [SMALL_STATE(2217)] = 71529, - [SMALL_STATE(2218)] = 71536, - [SMALL_STATE(2219)] = 71543, - [SMALL_STATE(2220)] = 71550, - [SMALL_STATE(2221)] = 71557, - [SMALL_STATE(2222)] = 71564, - [SMALL_STATE(2223)] = 71571, - [SMALL_STATE(2224)] = 71578, - [SMALL_STATE(2225)] = 71585, - [SMALL_STATE(2226)] = 71592, - [SMALL_STATE(2227)] = 71599, - [SMALL_STATE(2228)] = 71606, - [SMALL_STATE(2229)] = 71613, - [SMALL_STATE(2230)] = 71620, - [SMALL_STATE(2231)] = 71627, - [SMALL_STATE(2232)] = 71634, - [SMALL_STATE(2233)] = 71641, - [SMALL_STATE(2234)] = 71648, - [SMALL_STATE(2235)] = 71655, - [SMALL_STATE(2236)] = 71662, - [SMALL_STATE(2237)] = 71669, - [SMALL_STATE(2238)] = 71676, - [SMALL_STATE(2239)] = 71683, - [SMALL_STATE(2240)] = 71690, + [SMALL_STATE(1101)] = 42160, + [SMALL_STATE(1102)] = 42209, + [SMALL_STATE(1103)] = 42258, + [SMALL_STATE(1104)] = 42307, + [SMALL_STATE(1105)] = 42356, + [SMALL_STATE(1106)] = 42405, + [SMALL_STATE(1107)] = 42454, + [SMALL_STATE(1108)] = 42503, + [SMALL_STATE(1109)] = 42552, + [SMALL_STATE(1110)] = 42601, + [SMALL_STATE(1111)] = 42650, + [SMALL_STATE(1112)] = 42699, + [SMALL_STATE(1113)] = 42748, + [SMALL_STATE(1114)] = 42797, + [SMALL_STATE(1115)] = 42846, + [SMALL_STATE(1116)] = 42895, + [SMALL_STATE(1117)] = 42956, + [SMALL_STATE(1118)] = 43005, + [SMALL_STATE(1119)] = 43071, + [SMALL_STATE(1120)] = 43137, + [SMALL_STATE(1121)] = 43195, + [SMALL_STATE(1122)] = 43261, + [SMALL_STATE(1123)] = 43327, + [SMALL_STATE(1124)] = 43383, + [SMALL_STATE(1125)] = 43449, + [SMALL_STATE(1126)] = 43511, + [SMALL_STATE(1127)] = 43568, + [SMALL_STATE(1128)] = 43647, + [SMALL_STATE(1129)] = 43726, + [SMALL_STATE(1130)] = 43801, + [SMALL_STATE(1131)] = 43872, + [SMALL_STATE(1132)] = 43931, + [SMALL_STATE(1133)] = 44008, + [SMALL_STATE(1134)] = 44071, + [SMALL_STATE(1135)] = 44130, + [SMALL_STATE(1136)] = 44189, + [SMALL_STATE(1137)] = 44248, + [SMALL_STATE(1138)] = 44313, + [SMALL_STATE(1139)] = 44372, + [SMALL_STATE(1140)] = 44431, + [SMALL_STATE(1141)] = 44504, + [SMALL_STATE(1142)] = 44587, + [SMALL_STATE(1143)] = 44656, + [SMALL_STATE(1144)] = 44739, + [SMALL_STATE(1145)] = 44800, + [SMALL_STATE(1146)] = 44883, + [SMALL_STATE(1147)] = 44959, + [SMALL_STATE(1148)] = 45007, + [SMALL_STATE(1149)] = 45087, + [SMALL_STATE(1150)] = 45135, + [SMALL_STATE(1151)] = 45215, + [SMALL_STATE(1152)] = 45289, + [SMALL_STATE(1153)] = 45361, + [SMALL_STATE(1154)] = 45441, + [SMALL_STATE(1155)] = 45491, + [SMALL_STATE(1156)] = 45555, + [SMALL_STATE(1157)] = 45615, + [SMALL_STATE(1158)] = 45663, + [SMALL_STATE(1159)] = 45709, + [SMALL_STATE(1160)] = 45777, + [SMALL_STATE(1161)] = 45847, + [SMALL_STATE(1162)] = 45921, + [SMALL_STATE(1163)] = 45969, + [SMALL_STATE(1164)] = 46017, + [SMALL_STATE(1165)] = 46063, + [SMALL_STATE(1166)] = 46109, + [SMALL_STATE(1167)] = 46171, + [SMALL_STATE(1168)] = 46217, + [SMALL_STATE(1169)] = 46270, + [SMALL_STATE(1170)] = 46323, + [SMALL_STATE(1171)] = 46368, + [SMALL_STATE(1172)] = 46421, + [SMALL_STATE(1173)] = 46465, + [SMALL_STATE(1174)] = 46534, + [SMALL_STATE(1175)] = 46603, + [SMALL_STATE(1176)] = 46672, + [SMALL_STATE(1177)] = 46749, + [SMALL_STATE(1178)] = 46818, + [SMALL_STATE(1179)] = 46883, + [SMALL_STATE(1180)] = 46956, + [SMALL_STATE(1181)] = 47013, + [SMALL_STATE(1182)] = 47090, + [SMALL_STATE(1183)] = 47161, + [SMALL_STATE(1184)] = 47238, + [SMALL_STATE(1185)] = 47315, + [SMALL_STATE(1186)] = 47392, + [SMALL_STATE(1187)] = 47461, + [SMALL_STATE(1188)] = 47528, + [SMALL_STATE(1189)] = 47583, + [SMALL_STATE(1190)] = 47646, + [SMALL_STATE(1191)] = 47705, + [SMALL_STATE(1192)] = 47757, + [SMALL_STATE(1193)] = 47811, + [SMALL_STATE(1194)] = 47878, + [SMALL_STATE(1195)] = 47945, + [SMALL_STATE(1196)] = 48014, + [SMALL_STATE(1197)] = 48067, + [SMALL_STATE(1198)] = 48140, + [SMALL_STATE(1199)] = 48213, + [SMALL_STATE(1200)] = 48286, + [SMALL_STATE(1201)] = 48359, + [SMALL_STATE(1202)] = 48414, + [SMALL_STATE(1203)] = 48471, + [SMALL_STATE(1204)] = 48532, + [SMALL_STATE(1205)] = 48595, + [SMALL_STATE(1206)] = 48658, + [SMALL_STATE(1207)] = 48723, + [SMALL_STATE(1208)] = 48783, + [SMALL_STATE(1209)] = 48843, + [SMALL_STATE(1210)] = 48903, + [SMALL_STATE(1211)] = 48963, + [SMALL_STATE(1212)] = 49023, + [SMALL_STATE(1213)] = 49069, + [SMALL_STATE(1214)] = 49129, + [SMALL_STATE(1215)] = 49175, + [SMALL_STATE(1216)] = 49235, + [SMALL_STATE(1217)] = 49281, + [SMALL_STATE(1218)] = 49341, + [SMALL_STATE(1219)] = 49416, + [SMALL_STATE(1220)] = 49491, + [SMALL_STATE(1221)] = 49566, + [SMALL_STATE(1222)] = 49639, + [SMALL_STATE(1223)] = 49714, + [SMALL_STATE(1224)] = 49789, + [SMALL_STATE(1225)] = 49864, + [SMALL_STATE(1226)] = 49939, + [SMALL_STATE(1227)] = 50014, + [SMALL_STATE(1228)] = 50084, + [SMALL_STATE(1229)] = 50156, + [SMALL_STATE(1230)] = 50212, + [SMALL_STATE(1231)] = 50268, + [SMALL_STATE(1232)] = 50340, + [SMALL_STATE(1233)] = 50396, + [SMALL_STATE(1234)] = 50452, + [SMALL_STATE(1235)] = 50508, + [SMALL_STATE(1236)] = 50564, + [SMALL_STATE(1237)] = 50636, + [SMALL_STATE(1238)] = 50706, + [SMALL_STATE(1239)] = 50778, + [SMALL_STATE(1240)] = 50850, + [SMALL_STATE(1241)] = 50904, + [SMALL_STATE(1242)] = 50960, + [SMALL_STATE(1243)] = 51020, + [SMALL_STATE(1244)] = 51082, + [SMALL_STATE(1245)] = 51146, + [SMALL_STATE(1246)] = 51212, + [SMALL_STATE(1247)] = 51278, + [SMALL_STATE(1248)] = 51346, + [SMALL_STATE(1249)] = 51398, + [SMALL_STATE(1250)] = 51470, + [SMALL_STATE(1251)] = 51542, + [SMALL_STATE(1252)] = 51614, + [SMALL_STATE(1253)] = 51686, + [SMALL_STATE(1254)] = 51758, + [SMALL_STATE(1255)] = 51814, + [SMALL_STATE(1256)] = 51886, + [SMALL_STATE(1257)] = 51942, + [SMALL_STATE(1258)] = 51998, + [SMALL_STATE(1259)] = 52070, + [SMALL_STATE(1260)] = 52126, + [SMALL_STATE(1261)] = 52182, + [SMALL_STATE(1262)] = 52254, + [SMALL_STATE(1263)] = 52310, + [SMALL_STATE(1264)] = 52366, + [SMALL_STATE(1265)] = 52438, + [SMALL_STATE(1266)] = 52510, + [SMALL_STATE(1267)] = 52582, + [SMALL_STATE(1268)] = 52638, + [SMALL_STATE(1269)] = 52710, + [SMALL_STATE(1270)] = 52782, + [SMALL_STATE(1271)] = 52852, + [SMALL_STATE(1272)] = 52924, + [SMALL_STATE(1273)] = 52996, + [SMALL_STATE(1274)] = 53066, + [SMALL_STATE(1275)] = 53122, + [SMALL_STATE(1276)] = 53192, + [SMALL_STATE(1277)] = 53262, + [SMALL_STATE(1278)] = 53332, + [SMALL_STATE(1279)] = 53404, + [SMALL_STATE(1280)] = 53476, + [SMALL_STATE(1281)] = 53550, + [SMALL_STATE(1282)] = 53622, + [SMALL_STATE(1283)] = 53678, + [SMALL_STATE(1284)] = 53750, + [SMALL_STATE(1285)] = 53806, + [SMALL_STATE(1286)] = 53878, + [SMALL_STATE(1287)] = 53934, + [SMALL_STATE(1288)] = 54006, + [SMALL_STATE(1289)] = 54076, + [SMALL_STATE(1290)] = 54145, + [SMALL_STATE(1291)] = 54214, + [SMALL_STATE(1292)] = 54283, + [SMALL_STATE(1293)] = 54352, + [SMALL_STATE(1294)] = 54421, + [SMALL_STATE(1295)] = 54490, + [SMALL_STATE(1296)] = 54559, + [SMALL_STATE(1297)] = 54628, + [SMALL_STATE(1298)] = 54697, + [SMALL_STATE(1299)] = 54766, + [SMALL_STATE(1300)] = 54819, + [SMALL_STATE(1301)] = 54888, + [SMALL_STATE(1302)] = 54941, + [SMALL_STATE(1303)] = 55010, + [SMALL_STATE(1304)] = 55079, + [SMALL_STATE(1305)] = 55132, + [SMALL_STATE(1306)] = 55201, + [SMALL_STATE(1307)] = 55254, + [SMALL_STATE(1308)] = 55323, + [SMALL_STATE(1309)] = 55362, + [SMALL_STATE(1310)] = 55415, + [SMALL_STATE(1311)] = 55484, + [SMALL_STATE(1312)] = 55553, + [SMALL_STATE(1313)] = 55622, + [SMALL_STATE(1314)] = 55691, + [SMALL_STATE(1315)] = 55760, + [SMALL_STATE(1316)] = 55829, + [SMALL_STATE(1317)] = 55898, + [SMALL_STATE(1318)] = 55967, + [SMALL_STATE(1319)] = 56036, + [SMALL_STATE(1320)] = 56105, + [SMALL_STATE(1321)] = 56174, + [SMALL_STATE(1322)] = 56243, + [SMALL_STATE(1323)] = 56312, + [SMALL_STATE(1324)] = 56381, + [SMALL_STATE(1325)] = 56450, + [SMALL_STATE(1326)] = 56519, + [SMALL_STATE(1327)] = 56572, + [SMALL_STATE(1328)] = 56614, + [SMALL_STATE(1329)] = 56650, + [SMALL_STATE(1330)] = 56716, + [SMALL_STATE(1331)] = 56763, + [SMALL_STATE(1332)] = 56794, + [SMALL_STATE(1333)] = 56841, + [SMALL_STATE(1334)] = 56888, + [SMALL_STATE(1335)] = 56935, + [SMALL_STATE(1336)] = 56982, + [SMALL_STATE(1337)] = 57027, + [SMALL_STATE(1338)] = 57058, + [SMALL_STATE(1339)] = 57105, + [SMALL_STATE(1340)] = 57143, + [SMALL_STATE(1341)] = 57187, + [SMALL_STATE(1342)] = 57231, + [SMALL_STATE(1343)] = 57275, + [SMALL_STATE(1344)] = 57319, + [SMALL_STATE(1345)] = 57353, + [SMALL_STATE(1346)] = 57397, + [SMALL_STATE(1347)] = 57433, + [SMALL_STATE(1348)] = 57477, + [SMALL_STATE(1349)] = 57520, + [SMALL_STATE(1350)] = 57563, + [SMALL_STATE(1351)] = 57614, + [SMALL_STATE(1352)] = 57669, + [SMALL_STATE(1353)] = 57720, + [SMALL_STATE(1354)] = 57771, + [SMALL_STATE(1355)] = 57814, + [SMALL_STATE(1356)] = 57869, + [SMALL_STATE(1357)] = 57920, + [SMALL_STATE(1358)] = 57953, + [SMALL_STATE(1359)] = 58008, + [SMALL_STATE(1360)] = 58048, + [SMALL_STATE(1361)] = 58088, + [SMALL_STATE(1362)] = 58128, + [SMALL_STATE(1363)] = 58168, + [SMALL_STATE(1364)] = 58196, + [SMALL_STATE(1365)] = 58224, + [SMALL_STATE(1366)] = 58252, + [SMALL_STATE(1367)] = 58292, + [SMALL_STATE(1368)] = 58332, + [SMALL_STATE(1369)] = 58372, + [SMALL_STATE(1370)] = 58412, + [SMALL_STATE(1371)] = 58452, + [SMALL_STATE(1372)] = 58492, + [SMALL_STATE(1373)] = 58532, + [SMALL_STATE(1374)] = 58572, + [SMALL_STATE(1375)] = 58612, + [SMALL_STATE(1376)] = 58640, + [SMALL_STATE(1377)] = 58680, + [SMALL_STATE(1378)] = 58712, + [SMALL_STATE(1379)] = 58752, + [SMALL_STATE(1380)] = 58792, + [SMALL_STATE(1381)] = 58832, + [SMALL_STATE(1382)] = 58864, + [SMALL_STATE(1383)] = 58892, + [SMALL_STATE(1384)] = 58932, + [SMALL_STATE(1385)] = 58972, + [SMALL_STATE(1386)] = 59012, + [SMALL_STATE(1387)] = 59052, + [SMALL_STATE(1388)] = 59100, + [SMALL_STATE(1389)] = 59140, + [SMALL_STATE(1390)] = 59172, + [SMALL_STATE(1391)] = 59212, + [SMALL_STATE(1392)] = 59252, + [SMALL_STATE(1393)] = 59292, + [SMALL_STATE(1394)] = 59332, + [SMALL_STATE(1395)] = 59372, + [SMALL_STATE(1396)] = 59412, + [SMALL_STATE(1397)] = 59444, + [SMALL_STATE(1398)] = 59472, + [SMALL_STATE(1399)] = 59512, + [SMALL_STATE(1400)] = 59552, + [SMALL_STATE(1401)] = 59592, + [SMALL_STATE(1402)] = 59632, + [SMALL_STATE(1403)] = 59672, + [SMALL_STATE(1404)] = 59712, + [SMALL_STATE(1405)] = 59752, + [SMALL_STATE(1406)] = 59792, + [SMALL_STATE(1407)] = 59842, + [SMALL_STATE(1408)] = 59876, + [SMALL_STATE(1409)] = 59912, + [SMALL_STATE(1410)] = 59952, + [SMALL_STATE(1411)] = 59994, + [SMALL_STATE(1412)] = 60038, + [SMALL_STATE(1413)] = 60084, + [SMALL_STATE(1414)] = 60130, + [SMALL_STATE(1415)] = 60178, + [SMALL_STATE(1416)] = 60218, + [SMALL_STATE(1417)] = 60246, + [SMALL_STATE(1418)] = 60278, + [SMALL_STATE(1419)] = 60310, + [SMALL_STATE(1420)] = 60350, + [SMALL_STATE(1421)] = 60378, + [SMALL_STATE(1422)] = 60418, + [SMALL_STATE(1423)] = 60458, + [SMALL_STATE(1424)] = 60498, + [SMALL_STATE(1425)] = 60526, + [SMALL_STATE(1426)] = 60554, + [SMALL_STATE(1427)] = 60594, + [SMALL_STATE(1428)] = 60639, + [SMALL_STATE(1429)] = 60684, + [SMALL_STATE(1430)] = 60733, + [SMALL_STATE(1431)] = 60772, + [SMALL_STATE(1432)] = 60817, + [SMALL_STATE(1433)] = 60848, + [SMALL_STATE(1434)] = 60889, + [SMALL_STATE(1435)] = 60920, + [SMALL_STATE(1436)] = 60955, + [SMALL_STATE(1437)] = 60982, + [SMALL_STATE(1438)] = 61009, + [SMALL_STATE(1439)] = 61058, + [SMALL_STATE(1440)] = 61085, + [SMALL_STATE(1441)] = 61128, + [SMALL_STATE(1442)] = 61155, + [SMALL_STATE(1443)] = 61186, + [SMALL_STATE(1444)] = 61217, + [SMALL_STATE(1445)] = 61262, + [SMALL_STATE(1446)] = 61307, + [SMALL_STATE(1447)] = 61352, + [SMALL_STATE(1448)] = 61397, + [SMALL_STATE(1449)] = 61424, + [SMALL_STATE(1450)] = 61455, + [SMALL_STATE(1451)] = 61484, + [SMALL_STATE(1452)] = 61511, + [SMALL_STATE(1453)] = 61556, + [SMALL_STATE(1454)] = 61583, + [SMALL_STATE(1455)] = 61628, + [SMALL_STATE(1456)] = 61673, + [SMALL_STATE(1457)] = 61708, + [SMALL_STATE(1458)] = 61743, + [SMALL_STATE(1459)] = 61770, + [SMALL_STATE(1460)] = 61815, + [SMALL_STATE(1461)] = 61852, + [SMALL_STATE(1462)] = 61897, + [SMALL_STATE(1463)] = 61924, + [SMALL_STATE(1464)] = 61969, + [SMALL_STATE(1465)] = 62000, + [SMALL_STATE(1466)] = 62035, + [SMALL_STATE(1467)] = 62080, + [SMALL_STATE(1468)] = 62113, + [SMALL_STATE(1469)] = 62158, + [SMALL_STATE(1470)] = 62191, + [SMALL_STATE(1471)] = 62218, + [SMALL_STATE(1472)] = 62253, + [SMALL_STATE(1473)] = 62284, + [SMALL_STATE(1474)] = 62329, + [SMALL_STATE(1475)] = 62364, + [SMALL_STATE(1476)] = 62395, + [SMALL_STATE(1477)] = 62426, + [SMALL_STATE(1478)] = 62471, + [SMALL_STATE(1479)] = 62513, + [SMALL_STATE(1480)] = 62539, + [SMALL_STATE(1481)] = 62565, + [SMALL_STATE(1482)] = 62591, + [SMALL_STATE(1483)] = 62624, + [SMALL_STATE(1484)] = 62665, + [SMALL_STATE(1485)] = 62706, + [SMALL_STATE(1486)] = 62739, + [SMALL_STATE(1487)] = 62780, + [SMALL_STATE(1488)] = 62821, + [SMALL_STATE(1489)] = 62854, + [SMALL_STATE(1490)] = 62895, + [SMALL_STATE(1491)] = 62936, + [SMALL_STATE(1492)] = 62969, + [SMALL_STATE(1493)] = 63010, + [SMALL_STATE(1494)] = 63051, + [SMALL_STATE(1495)] = 63092, + [SMALL_STATE(1496)] = 63129, + [SMALL_STATE(1497)] = 63170, + [SMALL_STATE(1498)] = 63218, + [SMALL_STATE(1499)] = 63250, + [SMALL_STATE(1500)] = 63288, + [SMALL_STATE(1501)] = 63324, + [SMALL_STATE(1502)] = 63372, + [SMALL_STATE(1503)] = 63400, + [SMALL_STATE(1504)] = 63432, + [SMALL_STATE(1505)] = 63464, + [SMALL_STATE(1506)] = 63512, + [SMALL_STATE(1507)] = 63560, + [SMALL_STATE(1508)] = 63592, + [SMALL_STATE(1509)] = 63630, + [SMALL_STATE(1510)] = 63678, + [SMALL_STATE(1511)] = 63723, + [SMALL_STATE(1512)] = 63754, + [SMALL_STATE(1513)] = 63799, + [SMALL_STATE(1514)] = 63838, + [SMALL_STATE(1515)] = 63883, + [SMALL_STATE(1516)] = 63928, + [SMALL_STATE(1517)] = 63955, + [SMALL_STATE(1518)] = 64000, + [SMALL_STATE(1519)] = 64022, + [SMALL_STATE(1520)] = 64044, + [SMALL_STATE(1521)] = 64066, + [SMALL_STATE(1522)] = 64088, + [SMALL_STATE(1523)] = 64110, + [SMALL_STATE(1524)] = 64148, + [SMALL_STATE(1525)] = 64186, + [SMALL_STATE(1526)] = 64208, + [SMALL_STATE(1527)] = 64246, + [SMALL_STATE(1528)] = 64268, + [SMALL_STATE(1529)] = 64306, + [SMALL_STATE(1530)] = 64328, + [SMALL_STATE(1531)] = 64366, + [SMALL_STATE(1532)] = 64401, + [SMALL_STATE(1533)] = 64422, + [SMALL_STATE(1534)] = 64457, + [SMALL_STATE(1535)] = 64492, + [SMALL_STATE(1536)] = 64527, + [SMALL_STATE(1537)] = 64562, + [SMALL_STATE(1538)] = 64597, + [SMALL_STATE(1539)] = 64618, + [SMALL_STATE(1540)] = 64657, + [SMALL_STATE(1541)] = 64692, + [SMALL_STATE(1542)] = 64725, + [SMALL_STATE(1543)] = 64760, + [SMALL_STATE(1544)] = 64781, + [SMALL_STATE(1545)] = 64816, + [SMALL_STATE(1546)] = 64845, + [SMALL_STATE(1547)] = 64866, + [SMALL_STATE(1548)] = 64901, + [SMALL_STATE(1549)] = 64936, + [SMALL_STATE(1550)] = 64971, + [SMALL_STATE(1551)] = 65000, + [SMALL_STATE(1552)] = 65033, + [SMALL_STATE(1553)] = 65054, + [SMALL_STATE(1554)] = 65075, + [SMALL_STATE(1555)] = 65096, + [SMALL_STATE(1556)] = 65125, + [SMALL_STATE(1557)] = 65154, + [SMALL_STATE(1558)] = 65189, + [SMALL_STATE(1559)] = 65210, + [SMALL_STATE(1560)] = 65231, + [SMALL_STATE(1561)] = 65263, + [SMALL_STATE(1562)] = 65295, + [SMALL_STATE(1563)] = 65319, + [SMALL_STATE(1564)] = 65351, + [SMALL_STATE(1565)] = 65383, + [SMALL_STATE(1566)] = 65415, + [SMALL_STATE(1567)] = 65449, + [SMALL_STATE(1568)] = 65481, + [SMALL_STATE(1569)] = 65510, + [SMALL_STATE(1570)] = 65543, + [SMALL_STATE(1571)] = 65572, + [SMALL_STATE(1572)] = 65601, + [SMALL_STATE(1573)] = 65630, + [SMALL_STATE(1574)] = 65661, + [SMALL_STATE(1575)] = 65690, + [SMALL_STATE(1576)] = 65719, + [SMALL_STATE(1577)] = 65748, + [SMALL_STATE(1578)] = 65777, + [SMALL_STATE(1579)] = 65806, + [SMALL_STATE(1580)] = 65835, + [SMALL_STATE(1581)] = 65866, + [SMALL_STATE(1582)] = 65899, + [SMALL_STATE(1583)] = 65932, + [SMALL_STATE(1584)] = 65950, + [SMALL_STATE(1585)] = 65974, + [SMALL_STATE(1586)] = 65998, + [SMALL_STATE(1587)] = 66018, + [SMALL_STATE(1588)] = 66042, + [SMALL_STATE(1589)] = 66060, + [SMALL_STATE(1590)] = 66084, + [SMALL_STATE(1591)] = 66108, + [SMALL_STATE(1592)] = 66132, + [SMALL_STATE(1593)] = 66152, + [SMALL_STATE(1594)] = 66176, + [SMALL_STATE(1595)] = 66200, + [SMALL_STATE(1596)] = 66224, + [SMALL_STATE(1597)] = 66242, + [SMALL_STATE(1598)] = 66262, + [SMALL_STATE(1599)] = 66286, + [SMALL_STATE(1600)] = 66306, + [SMALL_STATE(1601)] = 66324, + [SMALL_STATE(1602)] = 66348, + [SMALL_STATE(1603)] = 66372, + [SMALL_STATE(1604)] = 66396, + [SMALL_STATE(1605)] = 66420, + [SMALL_STATE(1606)] = 66444, + [SMALL_STATE(1607)] = 66468, + [SMALL_STATE(1608)] = 66492, + [SMALL_STATE(1609)] = 66516, + [SMALL_STATE(1610)] = 66540, + [SMALL_STATE(1611)] = 66560, + [SMALL_STATE(1612)] = 66580, + [SMALL_STATE(1613)] = 66604, + [SMALL_STATE(1614)] = 66628, + [SMALL_STATE(1615)] = 66652, + [SMALL_STATE(1616)] = 66670, + [SMALL_STATE(1617)] = 66688, + [SMALL_STATE(1618)] = 66717, + [SMALL_STATE(1619)] = 66740, + [SMALL_STATE(1620)] = 66761, + [SMALL_STATE(1621)] = 66784, + [SMALL_STATE(1622)] = 66805, + [SMALL_STATE(1623)] = 66834, + [SMALL_STATE(1624)] = 66863, + [SMALL_STATE(1625)] = 66884, + [SMALL_STATE(1626)] = 66907, + [SMALL_STATE(1627)] = 66930, + [SMALL_STATE(1628)] = 66959, + [SMALL_STATE(1629)] = 66982, + [SMALL_STATE(1630)] = 66997, + [SMALL_STATE(1631)] = 67020, + [SMALL_STATE(1632)] = 67043, + [SMALL_STATE(1633)] = 67066, + [SMALL_STATE(1634)] = 67087, + [SMALL_STATE(1635)] = 67108, + [SMALL_STATE(1636)] = 67137, + [SMALL_STATE(1637)] = 67163, + [SMALL_STATE(1638)] = 67189, + [SMALL_STATE(1639)] = 67215, + [SMALL_STATE(1640)] = 67235, + [SMALL_STATE(1641)] = 67259, + [SMALL_STATE(1642)] = 67285, + [SMALL_STATE(1643)] = 67311, + [SMALL_STATE(1644)] = 67331, + [SMALL_STATE(1645)] = 67357, + [SMALL_STATE(1646)] = 67381, + [SMALL_STATE(1647)] = 67407, + [SMALL_STATE(1648)] = 67429, + [SMALL_STATE(1649)] = 67453, + [SMALL_STATE(1650)] = 67473, + [SMALL_STATE(1651)] = 67497, + [SMALL_STATE(1652)] = 67517, + [SMALL_STATE(1653)] = 67543, + [SMALL_STATE(1654)] = 67563, + [SMALL_STATE(1655)] = 67583, + [SMALL_STATE(1656)] = 67603, + [SMALL_STATE(1657)] = 67627, + [SMALL_STATE(1658)] = 67651, + [SMALL_STATE(1659)] = 67677, + [SMALL_STATE(1660)] = 67703, + [SMALL_STATE(1661)] = 67729, + [SMALL_STATE(1662)] = 67747, + [SMALL_STATE(1663)] = 67765, + [SMALL_STATE(1664)] = 67788, + [SMALL_STATE(1665)] = 67811, + [SMALL_STATE(1666)] = 67830, + [SMALL_STATE(1667)] = 67849, + [SMALL_STATE(1668)] = 67872, + [SMALL_STATE(1669)] = 67889, + [SMALL_STATE(1670)] = 67905, + [SMALL_STATE(1671)] = 67919, + [SMALL_STATE(1672)] = 67933, + [SMALL_STATE(1673)] = 67949, + [SMALL_STATE(1674)] = 67965, + [SMALL_STATE(1675)] = 67979, + [SMALL_STATE(1676)] = 67993, + [SMALL_STATE(1677)] = 68007, + [SMALL_STATE(1678)] = 68021, + [SMALL_STATE(1679)] = 68039, + [SMALL_STATE(1680)] = 68053, + [SMALL_STATE(1681)] = 68067, + [SMALL_STATE(1682)] = 68083, + [SMALL_STATE(1683)] = 68097, + [SMALL_STATE(1684)] = 68111, + [SMALL_STATE(1685)] = 68129, + [SMALL_STATE(1686)] = 68143, + [SMALL_STATE(1687)] = 68161, + [SMALL_STATE(1688)] = 68179, + [SMALL_STATE(1689)] = 68193, + [SMALL_STATE(1690)] = 68207, + [SMALL_STATE(1691)] = 68225, + [SMALL_STATE(1692)] = 68239, + [SMALL_STATE(1693)] = 68253, + [SMALL_STATE(1694)] = 68271, + [SMALL_STATE(1695)] = 68285, + [SMALL_STATE(1696)] = 68303, + [SMALL_STATE(1697)] = 68319, + [SMALL_STATE(1698)] = 68333, + [SMALL_STATE(1699)] = 68349, + [SMALL_STATE(1700)] = 68360, + [SMALL_STATE(1701)] = 68371, + [SMALL_STATE(1702)] = 68382, + [SMALL_STATE(1703)] = 68401, + [SMALL_STATE(1704)] = 68420, + [SMALL_STATE(1705)] = 68431, + [SMALL_STATE(1706)] = 68442, + [SMALL_STATE(1707)] = 68461, + [SMALL_STATE(1708)] = 68480, + [SMALL_STATE(1709)] = 68499, + [SMALL_STATE(1710)] = 68518, + [SMALL_STATE(1711)] = 68529, + [SMALL_STATE(1712)] = 68546, + [SMALL_STATE(1713)] = 68565, + [SMALL_STATE(1714)] = 68582, + [SMALL_STATE(1715)] = 68601, + [SMALL_STATE(1716)] = 68612, + [SMALL_STATE(1717)] = 68623, + [SMALL_STATE(1718)] = 68634, + [SMALL_STATE(1719)] = 68653, + [SMALL_STATE(1720)] = 68672, + [SMALL_STATE(1721)] = 68685, + [SMALL_STATE(1722)] = 68704, + [SMALL_STATE(1723)] = 68723, + [SMALL_STATE(1724)] = 68734, + [SMALL_STATE(1725)] = 68745, + [SMALL_STATE(1726)] = 68756, + [SMALL_STATE(1727)] = 68770, + [SMALL_STATE(1728)] = 68784, + [SMALL_STATE(1729)] = 68798, + [SMALL_STATE(1730)] = 68814, + [SMALL_STATE(1731)] = 68828, + [SMALL_STATE(1732)] = 68842, + [SMALL_STATE(1733)] = 68856, + [SMALL_STATE(1734)] = 68870, + [SMALL_STATE(1735)] = 68884, + [SMALL_STATE(1736)] = 68900, + [SMALL_STATE(1737)] = 68914, + [SMALL_STATE(1738)] = 68930, + [SMALL_STATE(1739)] = 68946, + [SMALL_STATE(1740)] = 68960, + [SMALL_STATE(1741)] = 68974, + [SMALL_STATE(1742)] = 68988, + [SMALL_STATE(1743)] = 69004, + [SMALL_STATE(1744)] = 69018, + [SMALL_STATE(1745)] = 69032, + [SMALL_STATE(1746)] = 69048, + [SMALL_STATE(1747)] = 69064, + [SMALL_STATE(1748)] = 69074, + [SMALL_STATE(1749)] = 69084, + [SMALL_STATE(1750)] = 69100, + [SMALL_STATE(1751)] = 69114, + [SMALL_STATE(1752)] = 69130, + [SMALL_STATE(1753)] = 69144, + [SMALL_STATE(1754)] = 69158, + [SMALL_STATE(1755)] = 69172, + [SMALL_STATE(1756)] = 69186, + [SMALL_STATE(1757)] = 69200, + [SMALL_STATE(1758)] = 69216, + [SMALL_STATE(1759)] = 69230, + [SMALL_STATE(1760)] = 69246, + [SMALL_STATE(1761)] = 69262, + [SMALL_STATE(1762)] = 69276, + [SMALL_STATE(1763)] = 69290, + [SMALL_STATE(1764)] = 69306, + [SMALL_STATE(1765)] = 69317, + [SMALL_STATE(1766)] = 69330, + [SMALL_STATE(1767)] = 69343, + [SMALL_STATE(1768)] = 69356, + [SMALL_STATE(1769)] = 69369, + [SMALL_STATE(1770)] = 69382, + [SMALL_STATE(1771)] = 69395, + [SMALL_STATE(1772)] = 69408, + [SMALL_STATE(1773)] = 69421, + [SMALL_STATE(1774)] = 69434, + [SMALL_STATE(1775)] = 69447, + [SMALL_STATE(1776)] = 69460, + [SMALL_STATE(1777)] = 69473, + [SMALL_STATE(1778)] = 69486, + [SMALL_STATE(1779)] = 69497, + [SMALL_STATE(1780)] = 69506, + [SMALL_STATE(1781)] = 69519, + [SMALL_STATE(1782)] = 69532, + [SMALL_STATE(1783)] = 69545, + [SMALL_STATE(1784)] = 69554, + [SMALL_STATE(1785)] = 69563, + [SMALL_STATE(1786)] = 69576, + [SMALL_STATE(1787)] = 69589, + [SMALL_STATE(1788)] = 69602, + [SMALL_STATE(1789)] = 69615, + [SMALL_STATE(1790)] = 69628, + [SMALL_STATE(1791)] = 69641, + [SMALL_STATE(1792)] = 69654, + [SMALL_STATE(1793)] = 69667, + [SMALL_STATE(1794)] = 69680, + [SMALL_STATE(1795)] = 69689, + [SMALL_STATE(1796)] = 69698, + [SMALL_STATE(1797)] = 69709, + [SMALL_STATE(1798)] = 69722, + [SMALL_STATE(1799)] = 69735, + [SMALL_STATE(1800)] = 69748, + [SMALL_STATE(1801)] = 69761, + [SMALL_STATE(1802)] = 69770, + [SMALL_STATE(1803)] = 69783, + [SMALL_STATE(1804)] = 69796, + [SMALL_STATE(1805)] = 69809, + [SMALL_STATE(1806)] = 69822, + [SMALL_STATE(1807)] = 69835, + [SMALL_STATE(1808)] = 69848, + [SMALL_STATE(1809)] = 69861, + [SMALL_STATE(1810)] = 69874, + [SMALL_STATE(1811)] = 69887, + [SMALL_STATE(1812)] = 69900, + [SMALL_STATE(1813)] = 69913, + [SMALL_STATE(1814)] = 69924, + [SMALL_STATE(1815)] = 69937, + [SMALL_STATE(1816)] = 69950, + [SMALL_STATE(1817)] = 69963, + [SMALL_STATE(1818)] = 69976, + [SMALL_STATE(1819)] = 69989, + [SMALL_STATE(1820)] = 70002, + [SMALL_STATE(1821)] = 70011, + [SMALL_STATE(1822)] = 70024, + [SMALL_STATE(1823)] = 70035, + [SMALL_STATE(1824)] = 70048, + [SMALL_STATE(1825)] = 70061, + [SMALL_STATE(1826)] = 70074, + [SMALL_STATE(1827)] = 70087, + [SMALL_STATE(1828)] = 70100, + [SMALL_STATE(1829)] = 70113, + [SMALL_STATE(1830)] = 70126, + [SMALL_STATE(1831)] = 70137, + [SMALL_STATE(1832)] = 70150, + [SMALL_STATE(1833)] = 70163, + [SMALL_STATE(1834)] = 70176, + [SMALL_STATE(1835)] = 70189, + [SMALL_STATE(1836)] = 70202, + [SMALL_STATE(1837)] = 70215, + [SMALL_STATE(1838)] = 70228, + [SMALL_STATE(1839)] = 70241, + [SMALL_STATE(1840)] = 70254, + [SMALL_STATE(1841)] = 70265, + [SMALL_STATE(1842)] = 70278, + [SMALL_STATE(1843)] = 70291, + [SMALL_STATE(1844)] = 70304, + [SMALL_STATE(1845)] = 70317, + [SMALL_STATE(1846)] = 70326, + [SMALL_STATE(1847)] = 70339, + [SMALL_STATE(1848)] = 70352, + [SMALL_STATE(1849)] = 70365, + [SMALL_STATE(1850)] = 70378, + [SMALL_STATE(1851)] = 70391, + [SMALL_STATE(1852)] = 70404, + [SMALL_STATE(1853)] = 70413, + [SMALL_STATE(1854)] = 70426, + [SMALL_STATE(1855)] = 70439, + [SMALL_STATE(1856)] = 70452, + [SMALL_STATE(1857)] = 70465, + [SMALL_STATE(1858)] = 70478, + [SMALL_STATE(1859)] = 70491, + [SMALL_STATE(1860)] = 70504, + [SMALL_STATE(1861)] = 70517, + [SMALL_STATE(1862)] = 70528, + [SMALL_STATE(1863)] = 70537, + [SMALL_STATE(1864)] = 70550, + [SMALL_STATE(1865)] = 70563, + [SMALL_STATE(1866)] = 70576, + [SMALL_STATE(1867)] = 70589, + [SMALL_STATE(1868)] = 70602, + [SMALL_STATE(1869)] = 70615, + [SMALL_STATE(1870)] = 70628, + [SMALL_STATE(1871)] = 70641, + [SMALL_STATE(1872)] = 70652, + [SMALL_STATE(1873)] = 70665, + [SMALL_STATE(1874)] = 70678, + [SMALL_STATE(1875)] = 70691, + [SMALL_STATE(1876)] = 70699, + [SMALL_STATE(1877)] = 70709, + [SMALL_STATE(1878)] = 70717, + [SMALL_STATE(1879)] = 70727, + [SMALL_STATE(1880)] = 70737, + [SMALL_STATE(1881)] = 70747, + [SMALL_STATE(1882)] = 70757, + [SMALL_STATE(1883)] = 70767, + [SMALL_STATE(1884)] = 70777, + [SMALL_STATE(1885)] = 70787, + [SMALL_STATE(1886)] = 70797, + [SMALL_STATE(1887)] = 70807, + [SMALL_STATE(1888)] = 70817, + [SMALL_STATE(1889)] = 70827, + [SMALL_STATE(1890)] = 70837, + [SMALL_STATE(1891)] = 70847, + [SMALL_STATE(1892)] = 70857, + [SMALL_STATE(1893)] = 70867, + [SMALL_STATE(1894)] = 70877, + [SMALL_STATE(1895)] = 70885, + [SMALL_STATE(1896)] = 70895, + [SMALL_STATE(1897)] = 70905, + [SMALL_STATE(1898)] = 70915, + [SMALL_STATE(1899)] = 70925, + [SMALL_STATE(1900)] = 70935, + [SMALL_STATE(1901)] = 70945, + [SMALL_STATE(1902)] = 70955, + [SMALL_STATE(1903)] = 70965, + [SMALL_STATE(1904)] = 70975, + [SMALL_STATE(1905)] = 70983, + [SMALL_STATE(1906)] = 70993, + [SMALL_STATE(1907)] = 71003, + [SMALL_STATE(1908)] = 71013, + [SMALL_STATE(1909)] = 71021, + [SMALL_STATE(1910)] = 71031, + [SMALL_STATE(1911)] = 71041, + [SMALL_STATE(1912)] = 71051, + [SMALL_STATE(1913)] = 71061, + [SMALL_STATE(1914)] = 71071, + [SMALL_STATE(1915)] = 71081, + [SMALL_STATE(1916)] = 71091, + [SMALL_STATE(1917)] = 71101, + [SMALL_STATE(1918)] = 71111, + [SMALL_STATE(1919)] = 71119, + [SMALL_STATE(1920)] = 71129, + [SMALL_STATE(1921)] = 71139, + [SMALL_STATE(1922)] = 71147, + [SMALL_STATE(1923)] = 71157, + [SMALL_STATE(1924)] = 71167, + [SMALL_STATE(1925)] = 71177, + [SMALL_STATE(1926)] = 71187, + [SMALL_STATE(1927)] = 71197, + [SMALL_STATE(1928)] = 71205, + [SMALL_STATE(1929)] = 71215, + [SMALL_STATE(1930)] = 71225, + [SMALL_STATE(1931)] = 71235, + [SMALL_STATE(1932)] = 71243, + [SMALL_STATE(1933)] = 71253, + [SMALL_STATE(1934)] = 71261, + [SMALL_STATE(1935)] = 71271, + [SMALL_STATE(1936)] = 71281, + [SMALL_STATE(1937)] = 71291, + [SMALL_STATE(1938)] = 71301, + [SMALL_STATE(1939)] = 71311, + [SMALL_STATE(1940)] = 71321, + [SMALL_STATE(1941)] = 71331, + [SMALL_STATE(1942)] = 71341, + [SMALL_STATE(1943)] = 71349, + [SMALL_STATE(1944)] = 71359, + [SMALL_STATE(1945)] = 71367, + [SMALL_STATE(1946)] = 71377, + [SMALL_STATE(1947)] = 71387, + [SMALL_STATE(1948)] = 71395, + [SMALL_STATE(1949)] = 71405, + [SMALL_STATE(1950)] = 71413, + [SMALL_STATE(1951)] = 71423, + [SMALL_STATE(1952)] = 71433, + [SMALL_STATE(1953)] = 71443, + [SMALL_STATE(1954)] = 71451, + [SMALL_STATE(1955)] = 71461, + [SMALL_STATE(1956)] = 71471, + [SMALL_STATE(1957)] = 71481, + [SMALL_STATE(1958)] = 71491, + [SMALL_STATE(1959)] = 71501, + [SMALL_STATE(1960)] = 71511, + [SMALL_STATE(1961)] = 71519, + [SMALL_STATE(1962)] = 71529, + [SMALL_STATE(1963)] = 71539, + [SMALL_STATE(1964)] = 71549, + [SMALL_STATE(1965)] = 71559, + [SMALL_STATE(1966)] = 71567, + [SMALL_STATE(1967)] = 71577, + [SMALL_STATE(1968)] = 71587, + [SMALL_STATE(1969)] = 71597, + [SMALL_STATE(1970)] = 71607, + [SMALL_STATE(1971)] = 71617, + [SMALL_STATE(1972)] = 71627, + [SMALL_STATE(1973)] = 71637, + [SMALL_STATE(1974)] = 71647, + [SMALL_STATE(1975)] = 71655, + [SMALL_STATE(1976)] = 71665, + [SMALL_STATE(1977)] = 71675, + [SMALL_STATE(1978)] = 71683, + [SMALL_STATE(1979)] = 71690, + [SMALL_STATE(1980)] = 71697, + [SMALL_STATE(1981)] = 71704, + [SMALL_STATE(1982)] = 71711, + [SMALL_STATE(1983)] = 71718, + [SMALL_STATE(1984)] = 71725, + [SMALL_STATE(1985)] = 71732, + [SMALL_STATE(1986)] = 71739, + [SMALL_STATE(1987)] = 71746, + [SMALL_STATE(1988)] = 71753, + [SMALL_STATE(1989)] = 71760, + [SMALL_STATE(1990)] = 71767, + [SMALL_STATE(1991)] = 71774, + [SMALL_STATE(1992)] = 71781, + [SMALL_STATE(1993)] = 71788, + [SMALL_STATE(1994)] = 71795, + [SMALL_STATE(1995)] = 71802, + [SMALL_STATE(1996)] = 71809, + [SMALL_STATE(1997)] = 71816, + [SMALL_STATE(1998)] = 71823, + [SMALL_STATE(1999)] = 71830, + [SMALL_STATE(2000)] = 71837, + [SMALL_STATE(2001)] = 71844, + [SMALL_STATE(2002)] = 71851, + [SMALL_STATE(2003)] = 71858, + [SMALL_STATE(2004)] = 71865, + [SMALL_STATE(2005)] = 71872, + [SMALL_STATE(2006)] = 71879, + [SMALL_STATE(2007)] = 71886, + [SMALL_STATE(2008)] = 71893, + [SMALL_STATE(2009)] = 71900, + [SMALL_STATE(2010)] = 71907, + [SMALL_STATE(2011)] = 71914, + [SMALL_STATE(2012)] = 71921, + [SMALL_STATE(2013)] = 71928, + [SMALL_STATE(2014)] = 71935, + [SMALL_STATE(2015)] = 71942, + [SMALL_STATE(2016)] = 71949, + [SMALL_STATE(2017)] = 71956, + [SMALL_STATE(2018)] = 71963, + [SMALL_STATE(2019)] = 71970, + [SMALL_STATE(2020)] = 71977, + [SMALL_STATE(2021)] = 71984, + [SMALL_STATE(2022)] = 71991, + [SMALL_STATE(2023)] = 71998, + [SMALL_STATE(2024)] = 72005, + [SMALL_STATE(2025)] = 72012, + [SMALL_STATE(2026)] = 72019, + [SMALL_STATE(2027)] = 72026, + [SMALL_STATE(2028)] = 72033, + [SMALL_STATE(2029)] = 72040, + [SMALL_STATE(2030)] = 72047, + [SMALL_STATE(2031)] = 72054, + [SMALL_STATE(2032)] = 72061, + [SMALL_STATE(2033)] = 72068, + [SMALL_STATE(2034)] = 72075, + [SMALL_STATE(2035)] = 72082, + [SMALL_STATE(2036)] = 72089, + [SMALL_STATE(2037)] = 72096, + [SMALL_STATE(2038)] = 72103, + [SMALL_STATE(2039)] = 72110, + [SMALL_STATE(2040)] = 72117, + [SMALL_STATE(2041)] = 72124, + [SMALL_STATE(2042)] = 72131, + [SMALL_STATE(2043)] = 72138, + [SMALL_STATE(2044)] = 72145, + [SMALL_STATE(2045)] = 72152, + [SMALL_STATE(2046)] = 72159, + [SMALL_STATE(2047)] = 72166, + [SMALL_STATE(2048)] = 72173, + [SMALL_STATE(2049)] = 72180, + [SMALL_STATE(2050)] = 72187, + [SMALL_STATE(2051)] = 72194, + [SMALL_STATE(2052)] = 72201, + [SMALL_STATE(2053)] = 72208, + [SMALL_STATE(2054)] = 72215, + [SMALL_STATE(2055)] = 72222, + [SMALL_STATE(2056)] = 72229, + [SMALL_STATE(2057)] = 72236, + [SMALL_STATE(2058)] = 72243, + [SMALL_STATE(2059)] = 72250, + [SMALL_STATE(2060)] = 72257, + [SMALL_STATE(2061)] = 72264, + [SMALL_STATE(2062)] = 72271, + [SMALL_STATE(2063)] = 72278, + [SMALL_STATE(2064)] = 72285, + [SMALL_STATE(2065)] = 72292, + [SMALL_STATE(2066)] = 72299, + [SMALL_STATE(2067)] = 72306, + [SMALL_STATE(2068)] = 72313, + [SMALL_STATE(2069)] = 72320, + [SMALL_STATE(2070)] = 72327, + [SMALL_STATE(2071)] = 72334, + [SMALL_STATE(2072)] = 72341, + [SMALL_STATE(2073)] = 72348, + [SMALL_STATE(2074)] = 72355, + [SMALL_STATE(2075)] = 72362, + [SMALL_STATE(2076)] = 72369, + [SMALL_STATE(2077)] = 72376, + [SMALL_STATE(2078)] = 72383, + [SMALL_STATE(2079)] = 72390, + [SMALL_STATE(2080)] = 72397, + [SMALL_STATE(2081)] = 72404, + [SMALL_STATE(2082)] = 72411, + [SMALL_STATE(2083)] = 72418, + [SMALL_STATE(2084)] = 72425, + [SMALL_STATE(2085)] = 72432, + [SMALL_STATE(2086)] = 72439, + [SMALL_STATE(2087)] = 72446, + [SMALL_STATE(2088)] = 72453, + [SMALL_STATE(2089)] = 72460, + [SMALL_STATE(2090)] = 72467, + [SMALL_STATE(2091)] = 72474, + [SMALL_STATE(2092)] = 72481, + [SMALL_STATE(2093)] = 72488, + [SMALL_STATE(2094)] = 72495, + [SMALL_STATE(2095)] = 72502, + [SMALL_STATE(2096)] = 72509, + [SMALL_STATE(2097)] = 72516, + [SMALL_STATE(2098)] = 72523, + [SMALL_STATE(2099)] = 72530, + [SMALL_STATE(2100)] = 72537, + [SMALL_STATE(2101)] = 72544, + [SMALL_STATE(2102)] = 72551, + [SMALL_STATE(2103)] = 72558, + [SMALL_STATE(2104)] = 72565, + [SMALL_STATE(2105)] = 72572, + [SMALL_STATE(2106)] = 72579, + [SMALL_STATE(2107)] = 72586, + [SMALL_STATE(2108)] = 72593, + [SMALL_STATE(2109)] = 72600, + [SMALL_STATE(2110)] = 72607, + [SMALL_STATE(2111)] = 72614, + [SMALL_STATE(2112)] = 72621, + [SMALL_STATE(2113)] = 72628, + [SMALL_STATE(2114)] = 72635, + [SMALL_STATE(2115)] = 72642, + [SMALL_STATE(2116)] = 72649, + [SMALL_STATE(2117)] = 72656, + [SMALL_STATE(2118)] = 72663, + [SMALL_STATE(2119)] = 72670, + [SMALL_STATE(2120)] = 72677, + [SMALL_STATE(2121)] = 72684, + [SMALL_STATE(2122)] = 72691, + [SMALL_STATE(2123)] = 72698, + [SMALL_STATE(2124)] = 72705, + [SMALL_STATE(2125)] = 72712, + [SMALL_STATE(2126)] = 72719, + [SMALL_STATE(2127)] = 72726, + [SMALL_STATE(2128)] = 72733, + [SMALL_STATE(2129)] = 72740, + [SMALL_STATE(2130)] = 72747, + [SMALL_STATE(2131)] = 72754, + [SMALL_STATE(2132)] = 72761, + [SMALL_STATE(2133)] = 72768, + [SMALL_STATE(2134)] = 72775, + [SMALL_STATE(2135)] = 72782, + [SMALL_STATE(2136)] = 72789, + [SMALL_STATE(2137)] = 72796, + [SMALL_STATE(2138)] = 72803, + [SMALL_STATE(2139)] = 72810, + [SMALL_STATE(2140)] = 72817, + [SMALL_STATE(2141)] = 72824, + [SMALL_STATE(2142)] = 72831, + [SMALL_STATE(2143)] = 72838, + [SMALL_STATE(2144)] = 72845, + [SMALL_STATE(2145)] = 72852, + [SMALL_STATE(2146)] = 72859, + [SMALL_STATE(2147)] = 72866, + [SMALL_STATE(2148)] = 72873, + [SMALL_STATE(2149)] = 72880, + [SMALL_STATE(2150)] = 72887, + [SMALL_STATE(2151)] = 72894, + [SMALL_STATE(2152)] = 72901, + [SMALL_STATE(2153)] = 72908, + [SMALL_STATE(2154)] = 72915, + [SMALL_STATE(2155)] = 72922, + [SMALL_STATE(2156)] = 72929, + [SMALL_STATE(2157)] = 72936, + [SMALL_STATE(2158)] = 72943, + [SMALL_STATE(2159)] = 72950, + [SMALL_STATE(2160)] = 72957, + [SMALL_STATE(2161)] = 72964, + [SMALL_STATE(2162)] = 72971, + [SMALL_STATE(2163)] = 72978, + [SMALL_STATE(2164)] = 72985, + [SMALL_STATE(2165)] = 72992, + [SMALL_STATE(2166)] = 72999, + [SMALL_STATE(2167)] = 73006, + [SMALL_STATE(2168)] = 73013, + [SMALL_STATE(2169)] = 73020, + [SMALL_STATE(2170)] = 73027, + [SMALL_STATE(2171)] = 73034, + [SMALL_STATE(2172)] = 73041, + [SMALL_STATE(2173)] = 73048, + [SMALL_STATE(2174)] = 73055, + [SMALL_STATE(2175)] = 73062, + [SMALL_STATE(2176)] = 73069, + [SMALL_STATE(2177)] = 73076, + [SMALL_STATE(2178)] = 73083, + [SMALL_STATE(2179)] = 73090, + [SMALL_STATE(2180)] = 73097, + [SMALL_STATE(2181)] = 73104, + [SMALL_STATE(2182)] = 73111, + [SMALL_STATE(2183)] = 73118, + [SMALL_STATE(2184)] = 73125, + [SMALL_STATE(2185)] = 73132, + [SMALL_STATE(2186)] = 73139, + [SMALL_STATE(2187)] = 73146, + [SMALL_STATE(2188)] = 73153, + [SMALL_STATE(2189)] = 73160, + [SMALL_STATE(2190)] = 73167, + [SMALL_STATE(2191)] = 73174, + [SMALL_STATE(2192)] = 73181, + [SMALL_STATE(2193)] = 73188, + [SMALL_STATE(2194)] = 73195, + [SMALL_STATE(2195)] = 73202, + [SMALL_STATE(2196)] = 73209, + [SMALL_STATE(2197)] = 73216, + [SMALL_STATE(2198)] = 73223, + [SMALL_STATE(2199)] = 73230, + [SMALL_STATE(2200)] = 73237, + [SMALL_STATE(2201)] = 73244, + [SMALL_STATE(2202)] = 73251, + [SMALL_STATE(2203)] = 73258, + [SMALL_STATE(2204)] = 73265, + [SMALL_STATE(2205)] = 73272, + [SMALL_STATE(2206)] = 73279, + [SMALL_STATE(2207)] = 73286, + [SMALL_STATE(2208)] = 73293, + [SMALL_STATE(2209)] = 73300, + [SMALL_STATE(2210)] = 73307, + [SMALL_STATE(2211)] = 73314, + [SMALL_STATE(2212)] = 73321, + [SMALL_STATE(2213)] = 73328, + [SMALL_STATE(2214)] = 73335, + [SMALL_STATE(2215)] = 73342, + [SMALL_STATE(2216)] = 73349, + [SMALL_STATE(2217)] = 73356, + [SMALL_STATE(2218)] = 73363, + [SMALL_STATE(2219)] = 73370, + [SMALL_STATE(2220)] = 73377, + [SMALL_STATE(2221)] = 73384, + [SMALL_STATE(2222)] = 73391, + [SMALL_STATE(2223)] = 73398, + [SMALL_STATE(2224)] = 73405, + [SMALL_STATE(2225)] = 73412, + [SMALL_STATE(2226)] = 73419, + [SMALL_STATE(2227)] = 73426, + [SMALL_STATE(2228)] = 73433, + [SMALL_STATE(2229)] = 73440, + [SMALL_STATE(2230)] = 73447, + [SMALL_STATE(2231)] = 73454, + [SMALL_STATE(2232)] = 73461, + [SMALL_STATE(2233)] = 73468, + [SMALL_STATE(2234)] = 73475, + [SMALL_STATE(2235)] = 73482, + [SMALL_STATE(2236)] = 73489, + [SMALL_STATE(2237)] = 73496, + [SMALL_STATE(2238)] = 73503, + [SMALL_STATE(2239)] = 73510, + [SMALL_STATE(2240)] = 73517, + [SMALL_STATE(2241)] = 73524, + [SMALL_STATE(2242)] = 73531, + [SMALL_STATE(2243)] = 73538, + [SMALL_STATE(2244)] = 73545, + [SMALL_STATE(2245)] = 73552, + [SMALL_STATE(2246)] = 73559, + [SMALL_STATE(2247)] = 73566, + [SMALL_STATE(2248)] = 73573, + [SMALL_STATE(2249)] = 73580, + [SMALL_STATE(2250)] = 73587, + [SMALL_STATE(2251)] = 73594, + [SMALL_STATE(2252)] = 73601, + [SMALL_STATE(2253)] = 73608, + [SMALL_STATE(2254)] = 73615, + [SMALL_STATE(2255)] = 73622, + [SMALL_STATE(2256)] = 73629, + [SMALL_STATE(2257)] = 73636, + [SMALL_STATE(2258)] = 73643, + [SMALL_STATE(2259)] = 73650, + [SMALL_STATE(2260)] = 73657, + [SMALL_STATE(2261)] = 73664, + [SMALL_STATE(2262)] = 73671, + [SMALL_STATE(2263)] = 73678, + [SMALL_STATE(2264)] = 73685, + [SMALL_STATE(2265)] = 73692, + [SMALL_STATE(2266)] = 73699, + [SMALL_STATE(2267)] = 73706, + [SMALL_STATE(2268)] = 73713, + [SMALL_STATE(2269)] = 73720, + [SMALL_STATE(2270)] = 73727, + [SMALL_STATE(2271)] = 73734, + [SMALL_STATE(2272)] = 73741, + [SMALL_STATE(2273)] = 73748, + [SMALL_STATE(2274)] = 73755, + [SMALL_STATE(2275)] = 73762, + [SMALL_STATE(2276)] = 73769, + [SMALL_STATE(2277)] = 73776, + [SMALL_STATE(2278)] = 73783, + [SMALL_STATE(2279)] = 73790, + [SMALL_STATE(2280)] = 73797, + [SMALL_STATE(2281)] = 73804, + [SMALL_STATE(2282)] = 73811, + [SMALL_STATE(2283)] = 73818, + [SMALL_STATE(2284)] = 73825, + [SMALL_STATE(2285)] = 73832, + [SMALL_STATE(2286)] = 73839, + [SMALL_STATE(2287)] = 73846, + [SMALL_STATE(2288)] = 73853, + [SMALL_STATE(2289)] = 73860, + [SMALL_STATE(2290)] = 73867, + [SMALL_STATE(2291)] = 73874, + [SMALL_STATE(2292)] = 73881, + [SMALL_STATE(2293)] = 73888, + [SMALL_STATE(2294)] = 73895, + [SMALL_STATE(2295)] = 73902, + [SMALL_STATE(2296)] = 73909, + [SMALL_STATE(2297)] = 73916, + [SMALL_STATE(2298)] = 73923, + [SMALL_STATE(2299)] = 73930, + [SMALL_STATE(2300)] = 73937, + [SMALL_STATE(2301)] = 73944, + [SMALL_STATE(2302)] = 73951, + [SMALL_STATE(2303)] = 73958, + [SMALL_STATE(2304)] = 73965, + [SMALL_STATE(2305)] = 73972, + [SMALL_STATE(2306)] = 73979, + [SMALL_STATE(2307)] = 73986, + [SMALL_STATE(2308)] = 73993, + [SMALL_STATE(2309)] = 74000, + [SMALL_STATE(2310)] = 74007, + [SMALL_STATE(2311)] = 74014, + [SMALL_STATE(2312)] = 74021, + [SMALL_STATE(2313)] = 74028, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -134229,2451 +139151,2557 @@ static const TSParseActionEntry ts_parse_actions[] = { [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), [5] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_translation_unit, 0), - [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(517), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1583), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2173), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1400), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1970), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1822), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(630), - [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1140), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1215), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1078), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1975), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1980), - [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1997), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1170), - [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1113), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1000), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(946), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1082), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1799), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1562), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1693), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1939), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1940), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(712), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2031), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1915), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2043), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(592), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2050), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2051), - [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2052), - [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(670), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2053), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2056), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2070), - [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1658), - [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), - [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), - [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), - [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1310), - [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(821), - [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(510), - [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1580), - [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2026), - [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1396), - [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(215), - [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2027), - [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(43), - [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1362), - [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2124), - [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1842), - [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1138), - [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1212), - [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1067), - [131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1925), - [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1910), - [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(661), - [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2015), - [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1933), - [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(469), - [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2187), - [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(591), - [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2047), - [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2045), - [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2035), - [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1857), - [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2039), - [159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(792), - [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(471), - [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(474), - [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(361), - [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(366), - [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(142), - [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(516), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1621), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2312), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1366), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2308), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1849), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(699), + [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1147), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1229), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(982), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2296), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2295), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(859), + [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2293), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1170), + [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1085), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(953), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(923), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1045), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1874), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1534), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1712), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1882), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1975), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(766), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2285), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1970), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(444), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2283), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(601), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2282), + [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2281), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2280), + [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(756), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2279), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2278), + [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2277), + [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1672), + [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), + [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), + [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), + [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1328), + [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(824), + [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(515), + [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1633), + [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2099), + [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1405), + [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(391), + [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2100), + [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(28), + [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1362), + [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2033), + [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1771), + [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1149), + [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1262), + [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(970), + [133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1941), + [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1880), + [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), + [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2134), + [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1939), + [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(473), + [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2260), + [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(607), + [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2275), + [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2274), + [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2108), + [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1886), + [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2251), + [161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(809), + [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140), + [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(359), + [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), + [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), + [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), - [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(393), - [179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), - [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(509), - [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1571), - [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2080), - [187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1397), - [189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(358), - [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2055), - [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1745), - [195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1139), - [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1239), - [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1009), - [203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1916), - [207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1895), - [209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(626), - [211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1969), - [213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1904), - [215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(480), - [217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2230), - [219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), - [221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2014), - [223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2013), - [225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2062), - [227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1886), - [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2009), - [231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), - [233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(395), - [235] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(510), - [238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1580), - [241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2026), - [244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1396), - [247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), - [249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2027), - [252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1842), - [255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(484), - [258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(630), - [261] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(630), - [264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(649), - [267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(128), - [270] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1138), - [273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1212), - [276] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1067), - [279] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1975), - [282] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1980), - [285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1861), - [288] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1997), - [291] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1170), - [294] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(31), - [297] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1113), - [300] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1000), - [303] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(946), - [306] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1082), - [309] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1799), - [312] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1562), - [315] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1693), - [318] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1925), - [321] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1910), - [324] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(661), - [327] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2015), - [330] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1933), - [333] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(469), - [336] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2187), - [339] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(591), - [342] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2047), - [345] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2045), - [348] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2035), - [351] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1857), - [354] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2039), - [357] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(629), - [360] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(670), - [363] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2053), - [366] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2056), - [369] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2070), - [372] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1658), - [375] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(792), - [378] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1832), - [381] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1718), - [384] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(792), - [387] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(821), - [390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(433), - [392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif, 4, .production_id = 41), - [394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(228), - [396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), - [398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef, 2, .production_id = 17), - [400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(214), - [402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef, 3, .production_id = 17), - [404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif, 3, .production_id = 41), - [406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), - [408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(375), - [410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(386), - [412] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(509), - [415] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1571), - [418] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2080), - [421] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1397), - [424] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2055), - [427] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1745), - [430] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(182), - [433] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1139), - [436] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1239), - [439] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1009), - [442] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(49), - [445] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1916), - [448] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1895), - [451] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(626), - [454] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1969), - [457] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1904), - [460] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(480), - [463] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2230), - [466] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(572), - [469] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2014), - [472] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2013), - [475] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2062), - [478] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1886), - [481] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2009), - [484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(507), - [486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1575), - [488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1966), - [490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1352), - [492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1967), - [494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1824), - [496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1153), - [500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1216), - [502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1029), - [504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1858), - [510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1930), - [512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(628), - [514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2100), - [516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1874), - [518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(478), - [520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2108), - [522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(583), - [524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2099), - [526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2097), - [528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1968), - [530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1922), - [532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2110), - [534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [548] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(507), - [551] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1575), - [554] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1966), - [557] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1352), - [560] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1967), - [563] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1824), - [566] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(268), - [569] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1153), - [572] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1216), - [575] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1029), - [578] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(28), - [581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), - [583] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1858), - [586] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1930), - [589] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(628), - [592] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2100), - [595] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1874), - [598] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(478), - [601] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2108), - [604] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(583), - [607] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2099), - [610] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2097), - [613] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1968), - [616] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1922), - [619] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2110), - [622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(506), - [636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1585), - [638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2098), - [640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1340), - [642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else, 1), - [644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2081), - [646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1779), - [648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1142), - [652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1233), - [654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1005), - [656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1890), - [660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1862), - [662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(642), - [664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1949), - [666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1912), - [668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(459), - [670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2233), - [672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(569), - [674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1983), - [676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1982), - [678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2086), - [680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1860), - [682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1977), - [684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [686] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(506), - [689] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1585), - [692] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2098), - [695] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1340), - [698] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2081), - [701] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1779), - [704] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(236), - [707] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1142), - [710] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1233), - [713] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1005), - [716] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(34), - [719] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1890), - [722] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1862), - [725] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(642), - [728] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1949), - [731] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1912), - [734] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(459), - [737] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2233), - [740] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(569), - [743] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1983), - [746] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1982), - [749] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2086), - [752] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1860), - [755] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1977), - [758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else, 2), - [762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), - [772] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(517), - [775] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1583), - [778] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2173), - [781] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1400), - [784] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1970), - [787] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1822), - [790] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(484), - [793] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(630), - [796] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(630), - [799] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(649), - [802] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1140), - [805] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1215), - [808] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1078), - [811] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1975), - [814] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1980), - [817] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1861), - [820] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1997), - [823] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1170), - [826] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(51), - [829] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1113), - [832] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1000), - [835] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(946), - [838] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1082), - [841] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1799), - [844] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1562), - [847] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1693), - [850] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1939), - [853] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1940), - [856] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(712), - [859] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2031), - [862] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1915), - [865] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(411), - [868] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2043), - [871] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(592), - [874] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2050), - [877] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2051), - [880] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2052), - [883] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(629), - [886] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(670), - [889] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2053), - [892] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2056), - [895] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2070), - [898] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1658), - [901] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1310), - [904] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1832), - [907] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1718), - [910] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1310), - [913] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(821), - [916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_translation_unit, 1), - [918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(512), - [920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 2), - [922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 3, .production_id = 9), - [924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 4, .production_id = 9), - [926] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 3), - [928] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(512), - [931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), - [933] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(484), - [936] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(630), - [939] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(630), - [942] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(649), - [945] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(128), - [948] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1138), - [951] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1212), - [954] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1000), - [957] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1975), - [960] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1980), - [963] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1861), - [966] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1997), - [969] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(31), - [972] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1113), - [975] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(946), - [978] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1082), - [981] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1799), - [984] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1562), - [987] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1693), - [990] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1925), - [993] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1910), - [996] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1933), - [999] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(469), - [1002] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2187), - [1005] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(591), - [1008] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2047), - [1011] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2045), - [1014] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2035), - [1017] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1857), - [1020] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2039), - [1023] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(629), - [1026] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(670), - [1029] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2053), - [1032] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2056), - [1035] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2070), - [1038] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1658), - [1041] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(792), - [1044] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1832), - [1047] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1718), - [1050] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(792), - [1053] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(821), - [1056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(508), - [1058] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(508), - [1061] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(182), - [1064] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1139), - [1067] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1239), - [1070] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(49), - [1073] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1916), - [1076] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1895), - [1079] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1904), - [1082] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(480), - [1085] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2230), - [1088] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(572), - [1091] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2014), - [1094] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2013), - [1097] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2062), - [1100] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1886), - [1103] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2009), - [1106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 2), - [1108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(511), - [1110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [1112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1934), - [1114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2091), - [1116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), - [1118] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(511), - [1121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(327), - [1124] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1140), - [1127] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1215), - [1130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(51), - [1133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1939), - [1136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1940), - [1139] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1915), - [1142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(411), - [1145] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2043), - [1148] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(592), - [1151] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2050), - [1154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2051), - [1157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2052), - [1160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1934), - [1163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2091), - [1166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 4, .production_id = 9), - [1168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(515), - [1170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3, .production_id = 9), - [1172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3), - [1174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(515), - [1177] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(268), - [1180] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1153), - [1183] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1216), - [1186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(28), - [1189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1858), - [1192] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1930), - [1195] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1874), - [1198] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(478), - [1201] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2108), - [1204] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(583), - [1207] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2099), - [1210] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2097), - [1213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1968), - [1216] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1922), - [1219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2110), - [1222] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(514), - [1225] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(236), - [1228] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1142), - [1231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1233), - [1234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(34), - [1237] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1890), - [1240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1862), - [1243] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1912), - [1246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(459), - [1249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2233), - [1252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(569), - [1255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1983), - [1258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1982), - [1261] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2086), - [1264] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1860), - [1267] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1977), - [1270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), - [1272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(513), - [1274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1880), - [1276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1883), - [1278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2160), - [1280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1902), - [1282] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(513), - [1285] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1880), - [1288] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1883), - [1291] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2160), - [1294] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1902), - [1297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(516), - [1299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [1301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), - [1303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, .production_id = 26), - [1305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, .production_id = 26), - [1307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(452), - [1309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 2), - [1311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 2), - [1313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 5, .production_id = 83), - [1315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 5, .production_id = 83), - [1317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2), - [1319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2), - [1321] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 3), - [1323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 3), - [1325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, .production_id = 27), - [1327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, .production_id = 27), - [1329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, .production_id = 27), - [1331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, .production_id = 27), - [1333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3), - [1335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3), - [1337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_goto_statement, 3, .production_id = 28), - [1339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_goto_statement, 3, .production_id = 28), - [1341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3, .production_id = 30), - [1343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3, .production_id = 30), - [1345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 3, .production_id = 32), - [1347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 3, .production_id = 32), - [1349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_finally_clause, 2, .production_id = 8), - [1351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_finally_clause, 2, .production_id = 8), - [1353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 6, .production_id = 75), - [1355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 6, .production_id = 75), - [1357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_leave_statement, 2), - [1359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_leave_statement, 2), - [1361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_except_clause, 3, .production_id = 95), - [1363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_except_clause, 3, .production_id = 95), - [1365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 4, .production_id = 48), - [1367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 4, .production_id = 48), - [1369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_statement, 2), - [1371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_statement, 2), - [1373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_try_statement, 3, .production_id = 8), - [1375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_try_statement, 3, .production_id = 8), - [1377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 55), - [1379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 55), - [1381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2), - [1383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2), - [1385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2), - [1387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2), - [1389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2), - [1391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2), - [1393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1), - [1395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1), - [1397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, .production_id = 79), - [1399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, .production_id = 79), - [1401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, .production_id = 75), - [1403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, .production_id = 75), - [1405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, .production_id = 48), - [1407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, .production_id = 48), - [1409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2), - [1411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2), - [1413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 3, .production_id = 33), - [1415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 3, .production_id = 33), - [1417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, .production_id = 41), - [1419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, .production_id = 41), - [1421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 5, .production_id = 71), - [1423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 5, .production_id = 71), - [1425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 1, .production_id = 2), - [1427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 1, .production_id = 2), - [1429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call, 2, .production_id = 4), - [1431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call, 2, .production_id = 4), - [1433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__empty_declaration, 2), - [1435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__empty_declaration, 2), - [1437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_include, 3, .production_id = 16), - [1439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_include, 3, .production_id = 16), - [1441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_def, 3, .production_id = 17), - [1443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_def, 3, .production_id = 17), - [1445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 3, .production_id = 17), - [1447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 3, .production_id = 17), - [1449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call, 3, .production_id = 18), - [1451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call, 3, .production_id = 18), - [1453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_linkage_specification, 3, .production_id = 22), - [1455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_linkage_specification, 3, .production_id = 22), - [1457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_function_definition, 3, .production_id = 37), - [1459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_function_definition, 3, .production_id = 37), - [1461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_function_def, 4, .production_id = 39), - [1463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_function_def, 4, .production_id = 39), - [1465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_def, 4, .production_id = 40), - [1467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_def, 4, .production_id = 40), - [1469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 4, .production_id = 41), - [1471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 4, .production_id = 41), - [1473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 42), - [1475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 42), - [1477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_function_definition, 5, .production_id = 90), - [1479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_function_definition, 5, .production_id = 90), - [1481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 6, .production_id = 92), - [1483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 6, .production_id = 92), - [1485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 17), - [1487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 17), - [1489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2), - [1491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2), - [1493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_function_definition, 4, .production_id = 64), - [1495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_function_definition, 4, .production_id = 64), - [1497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 4, .production_id = 65), - [1499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 4, .production_id = 65), - [1501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(441), - [1503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_function_definition, 4, .production_id = 66), - [1505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_function_definition, 4, .production_id = 66), - [1507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_function_def, 5, .production_id = 69), - [1509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_function_def, 5, .production_id = 69), - [1511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3), - [1513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3), - [1515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, .production_id = 70), - [1517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, .production_id = 70), - [1519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(456), - [1521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(475), - [1523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), - [1525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(654), - [1527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 4, .production_id = 57), - [1529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(648), - [1531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [1533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 4, .production_id = 57), - [1535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [1537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(635), - [1539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(645), - [1541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [1543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(673), - [1545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(754), - [1547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [1549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [1551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(759), - [1553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2111), - [1555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2237), - [1557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2240), - [1559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1628), - [1561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [1563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), - [1565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), - [1567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(963), - [1569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(968), - [1571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(872), - [1573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), - [1575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(881), - [1577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(706), - [1579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2049), - [1581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(882), - [1583] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(876), - [1586] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(484), - [1589] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(630), - [1592] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(630), - [1595] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(649), - [1598] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(268), - [1601] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1924), - [1604] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(28), - [1607] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1858), - [1610] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1930), - [1613] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(628), - [1616] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2100), - [1619] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1874), - [1622] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(478), - [1625] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2108), - [1628] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(583), - [1631] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2099), - [1634] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2097), - [1637] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1968), - [1640] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1922), - [1643] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2110), - [1646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(629), - [1649] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(670), - [1652] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2053), - [1655] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2056), - [1658] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2070), - [1661] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1658), - [1664] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(792), - [1667] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1832), - [1670] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1718), - [1673] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(792), - [1676] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(821), - [1679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(873), - [1681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(874), - [1683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(876), - [1685] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(882), - [1688] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(128), - [1691] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(31), - [1694] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1925), - [1697] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1910), - [1700] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(661), - [1703] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2015), - [1706] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1933), - [1709] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(469), - [1712] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2187), - [1715] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(591), - [1718] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2047), - [1721] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2045), - [1724] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2035), - [1727] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1857), - [1730] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2039), - [1733] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(873), - [1736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(182), - [1739] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(49), - [1742] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1916), - [1745] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1895), - [1748] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(626), - [1751] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1969), - [1754] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1904), - [1757] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(480), - [1760] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2230), - [1763] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(572), - [1766] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2014), - [1769] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2013), - [1772] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2062), - [1775] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1886), - [1778] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2009), - [1781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__top_level_expression_statement, 2), - [1783] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__top_level_expression_statement, 2), - [1785] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(872), - [1788] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(327), - [1791] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(51), - [1794] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1939), - [1797] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1940), - [1800] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(712), - [1803] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2031), - [1806] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1915), - [1809] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(411), - [1812] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2043), - [1815] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(592), - [1818] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2050), - [1821] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2051), - [1824] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2052), - [1827] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1934), - [1830] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2091), - [1833] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(881), - [1836] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1880), - [1839] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(706), - [1842] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2049), - [1845] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1883), - [1848] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2160), - [1851] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1902), - [1854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 1, .production_id = 2), - [1856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 1, .production_id = 2), - [1858] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(874), - [1861] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(236), - [1864] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(34), - [1867] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1890), - [1870] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1862), - [1873] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(642), - [1876] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1949), - [1879] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1912), - [1882] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(459), - [1885] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2233), - [1888] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(569), - [1891] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1983), - [1894] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1982), - [1897] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2086), - [1900] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1860), - [1903] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1977), - [1906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(744), - [1908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), - [1910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(740), - [1912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_declaration, 4), - [1914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_declaration, 4), - [1916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_declaration, 3), - [1918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_declaration, 3), - [1920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(678), - [1922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1323), - [1924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1831), - [1926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(844), - [1928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(676), - [1930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [1932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(681), - [1934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(457), - [1936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(677), - [1938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [1940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(698), - [1942] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declaration_modifiers, 1), REDUCE(aux_sym_attributed_declarator_repeat1, 1), - [1945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 1), - [1947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 1), - [1949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_modifiers, 1), - [1951] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declaration_modifiers, 1), REDUCE(aux_sym_attributed_declarator_repeat1, 1), - [1954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(890), - [1956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(679), - [1958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [1960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(692), - [1962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_specifier, 1, .production_id = 1), - [1964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_not_binary, 1), - [1966] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression_not_binary, 1), SHIFT(1246), - [1970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_not_binary, 1), - [1972] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression_not_binary, 1), - [1975] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression_not_binary, 1), - [1978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), - [1980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1085), - [1982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(713), - [1984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [1986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [1988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [1990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [1992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [1994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [1996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [1998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [2000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [2002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [2004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(884), - [2006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), - [2008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [2010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [2012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), - [2014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [2016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), - [2018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [2020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), - [2022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [2024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), - [2026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), - [2028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), - [2030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [2032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), - [2034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [2036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), - [2038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [2040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), - [2042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [2044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), - [2046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1091), - [2048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2101), - [2050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1381), - [2052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1017), - [2054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1993), - [2056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(562), - [2058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1338), - [2060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2218), - [2062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1760), - [2064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(910), - [2066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1046), - [2068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1043), - [2070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(888), - [2072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), - [2074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), - [2076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [2078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2225), - [2080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(995), - [2082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1124), - [2084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), - [2086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), - [2088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [2090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), - [2092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1911), - [2094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(523), - [2096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1035), - [2098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(923), - [2100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(982), - [2102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2207), - [2104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [2106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), - [2108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [2110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), - [2112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [2114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2102), - [2116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1336), - [2118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(992), - [2120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2046), - [2122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1755), - [2124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(905), - [2126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(998), - [2128] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1091), - [2131] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2101), - [2134] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1381), - [2137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), - [2139] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1993), - [2142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1760), - [2145] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(946), - [2148] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1000), - [2151] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1975), - [2154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1980), - [2157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1917), - [2160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1997), - [2163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1113), - [2166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1082), - [2169] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1799), - [2172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1562), - [2175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1693), - [2178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1027), - [2180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, .production_id = 41), - [2182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(926), - [2184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 2, .production_id = 17), - [2186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1020), - [2188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1048), - [2190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 3, .production_id = 17), - [2192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1041), - [2194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 3, .production_id = 41), - [2196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2102), - [2199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1336), - [2202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2046), - [2205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1755), - [2208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2054), - [2210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1357), - [2212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2120), - [2214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1777), - [2216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), - [2218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), - [2220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), - [2222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(650), - [2224] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2054), - [2227] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1357), - [2230] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2120), - [2233] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1777), - [2236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), - [2238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2103), - [2240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1354), - [2242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_field_declaration_list, 1), - [2244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2072), - [2246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1819), - [2248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [2250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(719), - [2252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_field_declaration_list, 2), - [2254] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2103), - [2257] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1354), - [2260] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2072), - [2263] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1819), - [2266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [2268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), - [2270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(690), - [2272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [2274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [2276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(845), - [2278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [2280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [2282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [2284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [2286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [2288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [2290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [2292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [2294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, .production_id = 56), - [2296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [2298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [2300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [2302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(863), - [2304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [2306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [2308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [2310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [2312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, .production_id = 100), - [2314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [2316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 2, .production_id = 56), - [2318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 2), - [2320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, .production_id = 41), - [2322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, .production_id = 82), - [2324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(864), - [2326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [2328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [2330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [2332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [2334] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(593), - [2337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), - [2339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), - [2341] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(1718), - [2344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), - [2346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [2348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [2350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), - [2352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [2354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [2356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), - [2358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [2360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), - [2362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), - [2364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), - [2366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [2368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), - [2370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [2372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(616), - [2374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 2), - [2376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 2), - [2378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [2380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [2382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [2384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), - [2386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(593), - [2388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 3), - [2390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 3), - [2392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [2394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [2396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), - [2398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [2400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), - [2402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [2404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [2406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [2408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), - [2410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [2412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [2414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [2416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [2418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [2420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2), - [2422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2), - [2424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3), - [2426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3), - [2428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 4, .production_id = 58), - [2430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 4, .production_id = 58), - [2432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 6, .production_id = 103), - [2434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 6, .production_id = 103), - [2436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 6, .production_id = 104), - [2438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 6, .production_id = 104), - [2440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 7, .production_id = 112), - [2442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 7, .production_id = 112), - [2444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 7, .production_id = 113), - [2446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 7, .production_id = 113), - [2448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 8, .production_id = 117), - [2450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 8, .production_id = 117), - [2452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 8, .production_id = 118), - [2454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 8, .production_id = 118), - [2456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 5, .production_id = 86), - [2458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 5, .production_id = 86), - [2460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 5, .production_id = 85), - [2462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 5, .production_id = 85), - [2464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 9, .production_id = 122), - [2466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 9, .production_id = 122), - [2468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), - [2470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), - [2472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4, .production_id = 67), - [2474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4, .production_id = 67), - [2476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 13), - [2478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 13), - [2480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), - [2482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), - [2484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alignof_expression, 4, .production_id = 57), - [2486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alignof_expression, 4, .production_id = 57), - [2488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_literal_expression, 4, .production_id = 46), - [2490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_literal_expression, 4, .production_id = 46), - [2492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_expression, 8), - [2494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_expression, 8), - [2496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_char_literal, 3), - [2498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_char_literal, 3), - [2500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_expression, 9), - [2502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_expression, 9), - [2504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1118), - [2506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), - [2508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 5), - [2510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 5), - [2512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 2), - [2514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 2), - [2516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 38), - [2518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, .production_id = 38), - [2520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 3), - [2522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 3), - [2524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 12), - [2526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 12), - [2528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 4), - [2530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 4), - [2532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null, 1), - [2534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null, 1), - [2536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_offsetof_expression, 6, .production_id = 101), - [2538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_offsetof_expression, 6, .production_id = 101), - [2540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3), - [2542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3), - [2544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 29), - [2546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 29), - [2548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [2550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [2552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [2554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2112), - [2556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1121), - [2558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 5), - [2560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 5), - [2562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 5), - [2564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 5), - [2566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 2, .production_id = 9), - [2568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 2, .production_id = 9), - [2570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4), - [2572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4), - [2574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_expression, 2, .production_id = 5), - [2576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_expression, 2, .production_id = 5), - [2578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 5), - [2580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, .production_id = 5), - [2582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2), - [2584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2), - [2586] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), SHIFT_REPEAT(1091), - [2589] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), SHIFT_REPEAT(946), - [2592] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), SHIFT_REPEAT(1000), - [2595] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), SHIFT_REPEAT(1975), - [2598] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), SHIFT_REPEAT(1980), - [2601] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), SHIFT_REPEAT(1917), - [2604] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), SHIFT_REPEAT(1997), - [2607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), - [2609] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), SHIFT_REPEAT(1113), - [2612] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), SHIFT_REPEAT(1082), - [2615] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), SHIFT_REPEAT(1799), - [2618] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), SHIFT_REPEAT(1562), - [2621] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), SHIFT_REPEAT(1693), - [2624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 4, .production_id = 46), - [2626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 4, .production_id = 46), - [2628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(773), - [2630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [2632] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(846), - [2635] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(1708), - [2638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(852), - [2640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(846), - [2642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), - [2644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), - [2646] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(946), - [2649] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(1000), - [2652] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(1975), - [2655] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(1980), - [2658] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(1917), - [2661] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(1997), - [2664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2), - [2666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_definition_type_repeat1, 2), - [2668] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2), SHIFT_REPEAT(884), - [2671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(699), - [2673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), - [2675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(646), - [2677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(644), - [2679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(631), - [2681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(638), - [2683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(637), - [2685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [2687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(632), - [2689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [2691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_specifier, 3), - [2693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_specifier, 3), - [2695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [2697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(639), - [2699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 29), - [2701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [2703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, .production_id = 29), - [2705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [2707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 5, .production_id = 91), - [2709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 5, .production_id = 91), - [2711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_specifier, 4), - [2713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_specifier, 4), - [2715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_qualifier, 1), - [2717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_qualifier, 1), - [2719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 4, .production_id = 68), - [2721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 4, .production_id = 68), - [2723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_specifier, 5), - [2725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_specifier, 5), - [2727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [2729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(652), - [2731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [2733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(750), - [2735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(748), - [2737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(732), - [2739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [2741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(702), - [2743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [2745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(696), - [2747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(733), - [2749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [2751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [2753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(741), - [2755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [2757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, .production_id = 41), - [2759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, .production_id = 41), - [2761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 6, .production_id = 92), - [2763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 6, .production_id = 92), - [2765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, .production_id = 32), - [2767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, .production_id = 32), - [2769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 17), - [2771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 17), - [2773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 42), - [2775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 42), - [2777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, .production_id = 71), - [2779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, .production_id = 71), - [2781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, .production_id = 32), - [2783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 32), - [2785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, .production_id = 43), - [2787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 43), - [2789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, .production_id = 17), - [2791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, .production_id = 17), - [2793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 70), - [2795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 70), - [2797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 2, .production_id = 43), - [2799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 2, .production_id = 43), - [2801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 41), - [2803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 41), - [2805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [2807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(772), - [2809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(771), - [2811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(766), - [2813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [2815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(764), - [2817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [2819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(762), - [2821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [2823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), - [2825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), - [2827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [2829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [2831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(768), - [2833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(767), - [2835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [2837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_declspec_modifier, 4), - [2839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_declspec_modifier, 4), - [2841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 2, .production_id = 7), - [2843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 2, .production_id = 7), - [2845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [2847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 24), - [2849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 24), - [2851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 24), - [2853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 24), - [2855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, .production_id = 53), - [2857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, .production_id = 53), - [2859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 2, .production_id = 7), - [2861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 2, .production_id = 7), - [2863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_parameter_list, 2), - [2865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 2), - [2867] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_parameter_list, 2), REDUCE(sym__old_style_parameter_list, 2), - [2870] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameter_list, 2), REDUCE(sym__old_style_parameter_list, 2), - [2873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 2), - [2875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_parameter_list, 3), - [2877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 3), - [2879] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_parameter_list, 3), REDUCE(sym__old_style_parameter_list, 3), - [2882] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameter_list, 3), REDUCE(sym__old_style_parameter_list, 3), - [2885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 3), - [2887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_storage_class_specifier, 1), - [2889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_storage_class_specifier, 1), - [2891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), - [2893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2112), - [2895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, .production_id = 52), - [2897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, .production_id = 52), - [2899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, .production_id = 54), - [2901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, .production_id = 54), - [2903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, .production_id = 52), - [2905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, .production_id = 52), - [2907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), - [2909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), - [2911] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(1015), - [2914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 14), - [2916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 14), - [2918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 23), - [2920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 23), - [2922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 3, .production_id = 14), - [2924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 3, .production_id = 14), - [2926] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 25), - [2928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 25), - [2930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 23), - [2932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 23), - [2934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 25), - [2936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 25), - [2938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 3), - [2940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 3), - [2942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 1, .production_id = 3), - [2944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 1, .production_id = 3), - [2946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(684), - [2948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(668), - [2950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [2952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [2954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(763), - [2956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(761), - [2958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(760), - [2960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [2962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(756), - [2964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [2966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(755), - [2968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [2970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 2, .production_id = 8), - [2972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 2, .production_id = 8), - [2974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 2, .production_id = 8), - [2976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 2, .production_id = 8), - [2978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1548), - [2980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 1, .dynamic_precedence = 1), - [2982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1315), - [2984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1316), - [2986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [2988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, .production_id = 78), - [2990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, .production_id = 78), - [2992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2), - [2994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2), - [2996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_type_specifier, 4, .dynamic_precedence = -1, .production_id = 59), - [2998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_type_specifier, 4, .dynamic_precedence = -1, .production_id = 59), - [3000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_specifier, 1), - [3002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_specifier, 1), - [3004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1103), - [3006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, .production_id = 24), - [3008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, .production_id = 24), - [3010] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, .production_id = 52), - [3012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, .production_id = 52), - [3014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 10), - [3016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 10), - [3018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1015), - [3020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, .production_id = 53), - [3022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, .production_id = 53), - [3024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, .production_id = 25), - [3026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, .production_id = 25), - [3028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, .production_id = 23), - [3030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, .production_id = 23), - [3032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 5, .production_id = 50), - [3034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 5, .production_id = 50), - [3036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, .production_id = 54), - [3038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, .production_id = 54), - [3040] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), SHIFT(1246), - [3043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 2), - [3045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 2), - [3047] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 5, .production_id = 52), - [3049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 5, .production_id = 52), - [3051] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 3), - [3053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 3), - [3055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 8), - [3057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 8), - [3059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, .production_id = 23), - [3061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, .production_id = 23), - [3063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, .production_id = 25), - [3065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, .production_id = 25), - [3067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 7), - [3069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 7), - [3071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, .production_id = 23), - [3073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, .production_id = 23), - [3075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3), - [3077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3), - [3079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 6, .production_id = 78), - [3081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 6, .production_id = 78), - [3083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .production_id = 3), - [3085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, .production_id = 3), - [3087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 4), - [3089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 4), - [3091] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 7), - [3093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 7), - [3095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 8), - [3097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 8), - [3099] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, .production_id = 24), - [3101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, .production_id = 24), - [3103] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2), REDUCE(aux_sym_sized_type_specifier_repeat1, 2), - [3106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2), REDUCE(aux_sym_sized_type_specifier_repeat1, 2), - [3109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 15), - [3111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 15), - [3113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1116), - [3115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 6, .production_id = 77), - [3117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 6, .production_id = 77), - [3119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, .production_id = 14), - [3121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 3, .production_id = 14), - [3123] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), SHIFT(1110), - [3126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 1), - [3128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), - [3130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1109), - [3132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1115), - [3134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, .production_id = 7), - [3136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, .production_id = 7), - [3138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .production_id = 14), - [3140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, .production_id = 14), - [3142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1112), - [3144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, .dynamic_precedence = -1, .production_id = 15), - [3146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 3, .dynamic_precedence = -1, .production_id = 15), - [3148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, .production_id = 8), - [3150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, .production_id = 8), - [3152] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), SHIFT(1805), - [3155] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), SHIFT(1150), - [3158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [3160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [3162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(aux_sym__old_style_parameter_list_repeat1, 2), - [3165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [3167] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), - [3170] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), SHIFT(1246), - [3174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), - [3177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [3179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 2, .production_id = 7), - [3181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 2, .production_id = 7), - [3183] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 2, .production_id = 7), SHIFT(1975), - [3186] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 2, .production_id = 7), SHIFT(1980), - [3189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), - [3191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), - [3193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [3195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1573), - [3197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), - [3199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), - [3201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1565), - [3203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1566), - [3205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, .production_id = 50), - [3207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, .production_id = 50), - [3209] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 4, .production_id = 50), SHIFT(1975), - [3212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 4, .production_id = 50), SHIFT(1980), - [3215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(724), - [3217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [3219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(725), - [3221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [3223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(731), - [3225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [3227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(737), - [3229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), - [3231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), - [3233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(729), - [3235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1262), - [3237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1220), - [3239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1206), - [3241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [3245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [3247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1237), - [3249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_function_declarator, 2, .production_id = 34), - [3251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_function_declarator, 2, .production_id = 34), - [3253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_parameter_list, 4), - [3255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_parameter_list, 4), - [3257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_parameter_list, 3), - [3259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1236), - [3261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(669), - [3263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [3265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(663), - [3267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [3269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [3271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(743), - [3273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), - [3275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(723), - [3277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [3279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(721), - [3281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [3283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), - [3285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [3287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator, 3, .production_id = 76), - [3289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator, 3, .production_id = 76), - [3291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, .production_id = 23), - [3293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, .production_id = 23), - [3295] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 3, .production_id = 23), SHIFT(1975), - [3298] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 3, .production_id = 23), SHIFT(1980), - [3301] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 2, .production_id = 8), - [3303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 2, .production_id = 8), - [3305] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 2, .production_id = 8), SHIFT(1975), - [3308] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 2, .production_id = 8), SHIFT(1980), - [3311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 5, .production_id = 77), - [3313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 5, .production_id = 77), - [3315] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 5, .production_id = 77), SHIFT(1975), - [3318] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 5, .production_id = 77), SHIFT(1980), - [3321] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_call_modifier, 1), - [3323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_call_modifier, 1), - [3325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(700), - [3327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [3329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(701), - [3331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [3333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(707), - [3335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), - [3337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(714), - [3339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [3341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(716), - [3343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [3345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [3347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 2, .dynamic_precedence = 1), - [3349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [3351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [3353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bitfield_clause, 2), - [3355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1550), - [3357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), - [3359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), - [3361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), - [3363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), - [3365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [3367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), - [3369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [3371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [3373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [3375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [3377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [3379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comma_expression, 3, .production_id = 45), - [3381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), - [3383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [3385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), - [3387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [3389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [3391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [3393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [3395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1836), - [3397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1401), - [3399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1416), - [3401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1432), - [3403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(653), - [3405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [3407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(655), - [3409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [3411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(749), - [3413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [3415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(694), - [3417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [3419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [3421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [3423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 3), - [3425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), - [3427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [3429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(665), - [3431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [3433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [3435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [3437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [3439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [3441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [3443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 5, .production_id = 109), - [3445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), - [3447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [3449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [3451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [3453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [3455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [3457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), - [3459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [3461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, .production_id = 97), - [3463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, .production_id = 98), - [3465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [3467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_pair, 3, .production_id = 108), - [3469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, .production_id = 99), - [3471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [3473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [3475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_declarator, 3, .production_id = 61), - [3477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 4), - [3479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2), - [3481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, .production_id = 81), - [3483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, .production_id = 80), - [3485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [3487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), - [3489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [3491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_pair, 3, .production_id = 107), - [3493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), - [3495] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2), SHIFT_REPEAT(946), - [3498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [3500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [3502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [3504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [3506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), - [3508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [3510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [3512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [3514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [3516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), - [3518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [3520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [3522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [3524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), - [3526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), - [3528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [3530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [3532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), - [3534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [3536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [3538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), - [3540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), - [3542] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), SHIFT_REPEAT(1315), - [3545] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), SHIFT_REPEAT(1316), - [3548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [3550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [3552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, .production_id = 3), - [3554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, .production_id = 14), - [3556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 1, .production_id = 3), - [3558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_pointer_modifier, 1), - [3560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_pointer_modifier, 1), - [3562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_unaligned_ptr_modifier, 1), - [3564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_unaligned_ptr_modifier, 1), - [3566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, .production_id = 14), - [3568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__preproc_expression, 1), - [3570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), - [3572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__preproc_expression, 1), - [3574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1110), - [3576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1325), - [3578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1320), - [3580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), - [3582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), - [3584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1869), - [3586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), - [3588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1398), - [3590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), - [3592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), - [3594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), - [3596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), - [3598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), - [3600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), - [3602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), - [3604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), - [3606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1353), - [3608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), - [3610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), - [3612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1384), - [3614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), - [3616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1392), - [3618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), - [3620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1342), - [3622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), - [3624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), - [3626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), - [3628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1334), - [3630] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), - [3632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2229), - [3634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), - [3636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), - [3638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_binary_expression, 3, .production_id = 29), - [3640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_binary_expression, 3, .production_id = 29), - [3642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1332), - [3644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), - [3646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1905), - [3648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), - [3650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1350), - [3652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), - [3654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), - [3656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call_expression, 2, .production_id = 13), - [3658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call_expression, 2, .production_id = 13), - [3660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), - [3662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 4), - [3664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 4), - [3666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), - [3668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), - [3670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), - [3672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), - [3674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 1, .production_id = 43), - [3676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), - [3678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_defined, 2), - [3680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_defined, 2), - [3682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_unary_expression, 2, .production_id = 5), - [3684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_unary_expression, 2, .production_id = 5), - [3686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), - [3688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 2), - [3690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 2), - [3692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), - [3694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), - [3696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), - [3698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), - [3700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), - [3702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), - [3704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), - [3706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), - [3708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_defined, 4), - [3710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_defined, 4), - [3712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), - [3714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), - [3716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), - [3718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 2, .production_id = 3), - [3720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 2, .production_id = 3), - [3722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 1, .production_id = 3), - [3724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 1, .production_id = 3), - [3726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_parenthesized_expression, 3), - [3728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_parenthesized_expression, 3), - [3730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), - [3732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), - [3734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), - [3736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), - [3738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), - [3740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 2, .production_id = 14), - [3742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 2, .production_id = 14), - [3744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), - [3746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), - [3748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_argument_list_repeat1, 2), - [3750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), - [3752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), - [3754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 3), - [3756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 3), - [3758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), - [3760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), - [3762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), - [3764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), - [3766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), - [3768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), - [3770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 3, .production_id = 14), - [3772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 3, .production_id = 14), - [3774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), + [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(207), + [179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), + [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(370), + [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(509), + [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1634), + [187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2153), + [189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1401), + [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(412), + [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2128), + [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1824), + [197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1157), + [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1257), + [203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(966), + [205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1883), + [209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1900), + [211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(683), + [213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2042), + [215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1878), + [217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(468), + [219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2303), + [221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(602), + [223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2133), + [225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2052), + [227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2135), + [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1905), + [231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2115), + [233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), + [235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(395), + [237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif, 4, .production_id = 41), + [239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), + [241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(361), + [243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), + [245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(227), + [247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(396), + [249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif, 3, .production_id = 41), + [251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(369), + [253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(515), + [256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1633), + [259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2099), + [262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1405), + [265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), + [267] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2100), + [270] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1771), + [273] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(490), + [276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(699), + [279] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(699), + [282] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(730), + [285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(100), + [288] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1149), + [291] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1262), + [294] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(970), + [297] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2296), + [300] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2295), + [303] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(859), + [306] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1893), + [309] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2293), + [312] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1170), + [315] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(49), + [318] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1085), + [321] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(953), + [324] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(923), + [327] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1045), + [330] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1874), + [333] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1534), + [336] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1712), + [339] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1941), + [342] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1880), + [345] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(695), + [348] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2134), + [351] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1939), + [354] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(473), + [357] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2260), + [360] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(607), + [363] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2275), + [366] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2274), + [369] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2108), + [372] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1886), + [375] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2251), + [378] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(757), + [381] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(756), + [384] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2279), + [387] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2278), + [390] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2277), + [393] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1672), + [396] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(809), + [399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1778), + [402] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1763), + [405] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(809), + [408] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(824), + [411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef, 3, .production_id = 17), + [413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(213), + [415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef, 2, .production_id = 17), + [417] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(509), + [420] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1634), + [423] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2153), + [426] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1401), + [429] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2128), + [432] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1824), + [435] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(182), + [438] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1157), + [441] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1257), + [444] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(966), + [447] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(48), + [450] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1883), + [453] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1900), + [456] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(683), + [459] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2042), + [462] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1878), + [465] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(468), + [468] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2303), + [471] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(602), + [474] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2133), + [477] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2052), + [480] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2135), + [483] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1905), + [486] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2115), + [489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(505), + [491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1624), + [493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2171), + [495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1423), + [497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else, 1), + [499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2154), + [501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1775), + [503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1162), + [507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1235), + [509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(973), + [511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1899), + [515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1919), + [517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(680), + [519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1989), + [521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1903), + [523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(461), + [525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2306), + [527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(592), + [529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2036), + [531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2034), + [533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2159), + [535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1924), + [537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2024), + [539] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(505), + [542] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1624), + [545] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2171), + [548] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1423), + [551] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2154), + [554] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1775), + [557] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(329), + [560] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1162), + [563] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1235), + [566] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(973), + [569] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(37), + [572] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1899), + [575] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1919), + [578] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(680), + [581] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1989), + [584] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1903), + [587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(461), + [590] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2306), + [593] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(592), + [596] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2036), + [599] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2034), + [602] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2159), + [605] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1924), + [608] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2024), + [611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(507), + [613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1619), + [615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2022), + [617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1399), + [619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2023), + [621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1873), + [623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1163), + [627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1284), + [629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(983), + [631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1881), + [637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1940), + [639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(657), + [641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2109), + [643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1876), + [645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(446), + [647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2181), + [649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(612), + [651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2114), + [653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2125), + [655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2031), + [657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1948), + [659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2200), + [661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [681] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(507), + [684] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1619), + [687] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2022), + [690] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1399), + [693] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2023), + [696] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1873), + [699] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(241), + [702] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1163), + [705] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1284), + [708] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(983), + [711] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(39), + [714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), + [716] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1881), + [719] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1940), + [722] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(657), + [725] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2109), + [728] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1876), + [731] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(446), + [734] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2181), + [737] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(612), + [740] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2114), + [743] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2125), + [746] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2031), + [749] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1948), + [752] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2200), + [755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else, 2), + [767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_translation_unit, 1), + [777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), + [779] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(516), + [782] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1621), + [785] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2312), + [788] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1366), + [791] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2308), + [794] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1849), + [797] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(490), + [800] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(699), + [803] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(699), + [806] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(730), + [809] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1147), + [812] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1229), + [815] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(982), + [818] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2296), + [821] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2295), + [824] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(859), + [827] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1893), + [830] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2293), + [833] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1170), + [836] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(46), + [839] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1085), + [842] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(953), + [845] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(923), + [848] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1045), + [851] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1874), + [854] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1534), + [857] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1712), + [860] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1882), + [863] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1975), + [866] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(766), + [869] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2285), + [872] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1970), + [875] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(444), + [878] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2283), + [881] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(601), + [884] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2282), + [887] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2281), + [890] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2280), + [893] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(757), + [896] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(756), + [899] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2279), + [902] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2278), + [905] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2277), + [908] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1672), + [911] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1328), + [914] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1778), + [917] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1763), + [920] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1328), + [923] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(824), + [926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(513), + [928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 3, .production_id = 9), + [930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 4, .production_id = 9), + [932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 3), + [934] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(513), + [937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), + [939] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(490), + [942] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(699), + [945] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(699), + [948] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(730), + [951] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(100), + [954] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1149), + [957] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1262), + [960] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(953), + [963] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2296), + [966] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2295), + [969] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(859), + [972] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1893), + [975] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2293), + [978] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(49), + [981] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1085), + [984] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(923), + [987] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1045), + [990] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1874), + [993] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1534), + [996] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1712), + [999] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1941), + [1002] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1880), + [1005] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1939), + [1008] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(473), + [1011] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2260), + [1014] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(607), + [1017] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2275), + [1020] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2274), + [1023] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2108), + [1026] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1886), + [1029] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2251), + [1032] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(757), + [1035] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(756), + [1038] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2279), + [1041] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2278), + [1044] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2277), + [1047] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1672), + [1050] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(809), + [1053] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1778), + [1056] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1763), + [1059] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(809), + [1062] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(824), + [1065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 2), + [1067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(511), + [1069] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(511), + [1072] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(182), + [1075] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1157), + [1078] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1257), + [1081] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(48), + [1084] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1883), + [1087] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1900), + [1090] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1878), + [1093] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(468), + [1096] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2303), + [1099] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(602), + [1102] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2133), + [1105] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2052), + [1108] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2135), + [1111] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1905), + [1114] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2115), + [1117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), + [1119] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(514), + [1122] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(329), + [1125] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1162), + [1128] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1235), + [1131] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(37), + [1134] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1899), + [1137] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1919), + [1140] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1903), + [1143] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(461), + [1146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2306), + [1149] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(592), + [1152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2036), + [1155] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2034), + [1158] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2159), + [1161] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1924), + [1164] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2024), + [1167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 2), + [1169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(512), + [1171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [1173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1935), + [1175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2162), + [1177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3), + [1179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(506), + [1182] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(241), + [1185] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1163), + [1188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1284), + [1191] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(39), + [1194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), + [1196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1881), + [1199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1940), + [1202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1876), + [1205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(446), + [1208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2181), + [1211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(612), + [1214] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2114), + [1217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2125), + [1220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2031), + [1223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1948), + [1226] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2200), + [1229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3, .production_id = 9), + [1231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(506), + [1233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 4, .production_id = 9), + [1235] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(512), + [1238] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(257), + [1241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1147), + [1244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1229), + [1247] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(46), + [1250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1882), + [1253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1975), + [1256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1970), + [1259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(444), + [1262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2283), + [1265] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(601), + [1268] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2282), + [1271] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2281), + [1274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2280), + [1277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1935), + [1280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2162), + [1283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(510), + [1285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1972), + [1287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1969), + [1289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2233), + [1291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1946), + [1293] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(510), + [1296] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1972), + [1299] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1969), + [1302] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2233), + [1305] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1946), + [1308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(517), + [1310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [1312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), + [1314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, .production_id = 26), + [1316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, .production_id = 26), + [1318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(477), + [1320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 5, .production_id = 83), + [1322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 5, .production_id = 83), + [1324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, .production_id = 75), + [1326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, .production_id = 75), + [1328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_except_clause, 3, .production_id = 95), + [1330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_except_clause, 3, .production_id = 95), + [1332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 2), + [1334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 2), + [1336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1), + [1338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1), + [1340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, .production_id = 79), + [1342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, .production_id = 79), + [1344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2), + [1346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2), + [1348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_finally_clause, 2, .production_id = 8), + [1350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_finally_clause, 2, .production_id = 8), + [1352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, .production_id = 48), + [1354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, .production_id = 48), + [1356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 6, .production_id = 75), + [1358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 6, .production_id = 75), + [1360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 55), + [1362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 55), + [1364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_try_statement, 3, .production_id = 8), + [1366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_try_statement, 3, .production_id = 8), + [1368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 4, .production_id = 48), + [1370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 4, .production_id = 48), + [1372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 3, .production_id = 32), + [1374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 3, .production_id = 32), + [1376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3, .production_id = 30), + [1378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3, .production_id = 30), + [1380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_goto_statement, 3, .production_id = 28), + [1382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_goto_statement, 3, .production_id = 28), + [1384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3), + [1386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3), + [1388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, .production_id = 27), + [1390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, .production_id = 27), + [1392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, .production_id = 27), + [1394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, .production_id = 27), + [1396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 3), + [1398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 3), + [1400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2), + [1402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2), + [1404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_leave_statement, 2), + [1406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_leave_statement, 2), + [1408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_statement, 2), + [1410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_statement, 2), + [1412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2), + [1414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2), + [1416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2), + [1418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2), + [1420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2), + [1422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2), + [1424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_function_def, 5, .production_id = 69), + [1426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_function_def, 5, .production_id = 69), + [1428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 1, .production_id = 2), + [1430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 1, .production_id = 2), + [1432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call, 2, .production_id = 4), + [1434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call, 2, .production_id = 4), + [1436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__empty_declaration, 2), + [1438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__empty_declaration, 2), + [1440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_include, 3, .production_id = 16), + [1442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_include, 3, .production_id = 16), + [1444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_def, 3, .production_id = 17), + [1446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_def, 3, .production_id = 17), + [1448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 3, .production_id = 17), + [1450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 3, .production_id = 17), + [1452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call, 3, .production_id = 18), + [1454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call, 3, .production_id = 18), + [1456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_linkage_specification, 3, .production_id = 22), + [1458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_linkage_specification, 3, .production_id = 22), + [1460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 3, .production_id = 33), + [1462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 3, .production_id = 33), + [1464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_function_definition, 3, .production_id = 37), + [1466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_function_definition, 3, .production_id = 37), + [1468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_function_def, 4, .production_id = 39), + [1470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_function_def, 4, .production_id = 39), + [1472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_def, 4, .production_id = 40), + [1474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_def, 4, .production_id = 40), + [1476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 4, .production_id = 41), + [1478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 4, .production_id = 41), + [1480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 42), + [1482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 42), + [1484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 17), + [1486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 17), + [1488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2), + [1490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2), + [1492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_function_definition, 4, .production_id = 64), + [1494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_function_definition, 4, .production_id = 64), + [1496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 4, .production_id = 65), + [1498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 4, .production_id = 65), + [1500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_function_definition, 4, .production_id = 66), + [1502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_function_definition, 4, .production_id = 66), + [1504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, .production_id = 70), + [1506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, .production_id = 70), + [1508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, .production_id = 41), + [1510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, .production_id = 41), + [1512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 5, .production_id = 71), + [1514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 5, .production_id = 71), + [1516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3), + [1518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3), + [1520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_function_definition, 5, .production_id = 90), + [1522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_function_definition, 5, .production_id = 90), + [1524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 6, .production_id = 92), + [1526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 6, .production_id = 92), + [1528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(447), + [1530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(441), + [1532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(471), + [1534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), + [1536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), + [1538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 4, .production_id = 57), + [1540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(762), + [1542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [1544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 4, .production_id = 57), + [1546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [1548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(732), + [1550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 1, .production_id = 2), + [1552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 1, .production_id = 2), + [1554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__top_level_expression_statement, 2), + [1556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__top_level_expression_statement, 2), + [1558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(782), + [1560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [1562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(685), + [1564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(905), + [1566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), + [1568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(922), + [1570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(709), + [1572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2286), + [1574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(913), + [1576] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(914), + [1579] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(490), + [1582] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(699), + [1585] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(699), + [1588] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(730), + [1591] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(257), + [1594] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1943), + [1597] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(46), + [1600] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1882), + [1603] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1975), + [1606] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(766), + [1609] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2285), + [1612] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1970), + [1615] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(444), + [1618] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2283), + [1621] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(601), + [1624] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2282), + [1627] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2281), + [1630] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2280), + [1633] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1935), + [1636] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2162), + [1639] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(757), + [1642] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(756), + [1645] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2279), + [1648] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2278), + [1651] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2277), + [1654] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1672), + [1657] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(809), + [1660] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1778), + [1663] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1763), + [1666] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(809), + [1669] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(824), + [1672] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(905), + [1675] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(241), + [1678] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(39), + [1681] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1881), + [1684] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1940), + [1687] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(657), + [1690] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2109), + [1693] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1876), + [1696] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(446), + [1699] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2181), + [1702] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(612), + [1705] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2114), + [1708] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2125), + [1711] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2031), + [1714] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1948), + [1717] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2200), + [1720] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(920), + [1723] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(182), + [1726] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(48), + [1729] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1883), + [1732] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1900), + [1735] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(683), + [1738] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2042), + [1741] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1878), + [1744] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(468), + [1747] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2303), + [1750] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(602), + [1753] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2133), + [1756] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2052), + [1759] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2135), + [1762] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1905), + [1765] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2115), + [1768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(914), + [1770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(920), + [1772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(919), + [1774] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(913), + [1777] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(100), + [1780] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(49), + [1783] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1941), + [1786] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1880), + [1789] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(695), + [1792] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2134), + [1795] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1939), + [1798] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(473), + [1801] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2260), + [1804] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(607), + [1807] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2275), + [1810] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2274), + [1813] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2108), + [1816] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1886), + [1819] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2251), + [1822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(652), + [1824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [1826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [1828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(650), + [1830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2184), + [1832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2310), + [1834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2313), + [1836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1673), + [1838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), + [1840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), + [1842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), + [1844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1110), + [1846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1102), + [1848] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(919), + [1851] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(329), + [1854] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(37), + [1857] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1899), + [1860] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1919), + [1863] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(680), + [1866] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1989), + [1869] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1903), + [1872] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(461), + [1875] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2306), + [1878] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(592), + [1881] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2036), + [1884] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2034), + [1887] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2159), + [1890] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1924), + [1893] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2024), + [1896] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(922), + [1899] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1972), + [1902] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(709), + [1905] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2286), + [1908] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1969), + [1911] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2233), + [1914] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1946), + [1917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(728), + [1919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [1921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(723), + [1923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_declaration, 4), + [1925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_declaration, 4), + [1927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_declaration, 3), + [1929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_declaration, 3), + [1931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(841), + [1933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(453), + [1935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(698), + [1937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1339), + [1939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1872), + [1941] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declaration_modifiers, 1), REDUCE(aux_sym_attributed_declarator_repeat1, 1), + [1944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 1), + [1946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 1), + [1948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_modifiers, 1), + [1950] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declaration_modifiers, 1), REDUCE(aux_sym_attributed_declarator_repeat1, 1), + [1953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(715), + [1955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [1957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(696), + [1959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(691), + [1961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [1963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(688), + [1965] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_specifier, 1, .production_id = 1), + [1967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_not_binary, 1), + [1969] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression_not_binary, 1), SHIFT(1256), + [1973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_not_binary, 1), + [1975] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression_not_binary, 1), + [1978] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression_not_binary, 1), + [1981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), + [1983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1033), + [1985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(718), + [1987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [1989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [1991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [1993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(941), + [1995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(679), + [1997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [1999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(673), + [2001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [2003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [2005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [2007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [2009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1043), + [2011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2174), + [2013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1391), + [2015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1003), + [2017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2066), + [2019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(559), + [2021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1390), + [2023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2010), + [2025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1790), + [2027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(967), + [2029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(929), + [2031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(888), + [2033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(988), + [2035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1120), + [2037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), + [2039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), + [2041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [2043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), + [2045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1892), + [2047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(549), + [2049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(898), + [2051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(912), + [2053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(994), + [2055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2175), + [2057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1403), + [2059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(935), + [2061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2119), + [2063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1798), + [2065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(998), + [2067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(883), + [2069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(927), + [2071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 3, .production_id = 41), + [2073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [2075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [2077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [2079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(916), + [2081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), + [2083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [2085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 3, .production_id = 17), + [2087] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1043), + [2090] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2174), + [2093] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1391), + [2096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), + [2098] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2066), + [2101] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1790), + [2104] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(923), + [2107] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(953), + [2110] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2296), + [2113] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2295), + [2116] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(859), + [2119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1884), + [2122] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2293), + [2125] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1085), + [2128] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1045), + [2131] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1874), + [2134] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1534), + [2137] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1712), + [2140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [2142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), + [2144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, .production_id = 41), + [2146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 2, .production_id = 17), + [2148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [2150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), + [2152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [2154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), + [2156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(999), + [2158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [2160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), + [2162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1007), + [2164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [2166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), + [2168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [2170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), + [2172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [2174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), + [2176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(969), + [2178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(897), + [2180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [2182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), + [2184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [2186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), + [2188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(925), + [2190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), + [2192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [2194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [2196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1982), + [2198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2289), + [2200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), + [2202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [2204] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2175), + [2207] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1403), + [2210] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2119), + [2213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1798), + [2216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [2218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), + [2220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), + [2222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2127), + [2224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1360), + [2226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2120), + [2228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1850), + [2230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [2232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2176), + [2234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1426), + [2236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_field_declaration_list, 1), + [2238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1979), + [2240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1803), + [2242] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2127), + [2245] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1360), + [2248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2120), + [2251] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1850), + [2254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), + [2256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2176), + [2259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1426), + [2262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1979), + [2265] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1803), + [2268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_field_declaration_list, 2), + [2270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), + [2272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [2274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), + [2276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), + [2278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 3), + [2280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 3), + [2282] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(566), + [2285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), + [2287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), + [2289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(1763), + [2292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), + [2294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 2), + [2296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 2), + [2298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [2300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [2302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [2304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [2306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [2308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [2310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(702), + [2312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [2314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(720), + [2316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3), + [2318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3), + [2320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(712), + [2322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2), + [2324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2), + [2326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(884), + [2328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [2330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [2332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [2334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [2336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [2338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 5, .production_id = 86), + [2340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 5, .production_id = 86), + [2342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 5, .production_id = 85), + [2344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 5, .production_id = 85), + [2346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, .production_id = 82), + [2348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(868), + [2350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [2352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [2354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [2356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(899), + [2358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [2360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [2362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, .production_id = 41), + [2364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 9, .production_id = 122), + [2366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 9, .production_id = 122), + [2368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [2370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 8, .production_id = 118), + [2372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 8, .production_id = 118), + [2374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 7, .production_id = 113), + [2376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 7, .production_id = 113), + [2378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 4, .production_id = 58), + [2380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 4, .production_id = 58), + [2382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [2384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, .production_id = 56), + [2386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [2388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 8, .production_id = 117), + [2390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 8, .production_id = 117), + [2392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [2394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [2396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [2398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [2400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 2), + [2402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 7, .production_id = 112), + [2404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 7, .production_id = 112), + [2406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 6, .production_id = 103), + [2408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 6, .production_id = 103), + [2410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [2412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, .production_id = 100), + [2414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [2416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 2, .production_id = 56), + [2418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [2420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [2422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [2424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 6, .production_id = 104), + [2426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 6, .production_id = 104), + [2428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), + [2430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), + [2432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [2434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), + [2436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [2438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), + [2440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), + [2442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [2444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), + [2446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [2448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), + [2450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [2452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), + [2454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [2456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [2458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), + [2460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), + [2462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [2464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [2466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [2468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [2470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [2472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [2474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [2476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [2478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [2480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [2482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), + [2484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), + [2486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 38), + [2488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, .production_id = 38), + [2490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_expression, 9), + [2492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_expression, 9), + [2494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_expression, 8), + [2496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_expression, 8), + [2498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 5), + [2500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 5), + [2502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4, .production_id = 67), + [2504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4, .production_id = 67), + [2506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_char_literal, 3), + [2508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_char_literal, 3), + [2510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), + [2512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), + [2514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 3), + [2516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 3), + [2518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_literal_expression, 4, .production_id = 46), + [2520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_literal_expression, 4, .production_id = 46), + [2522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1116), + [2524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [2526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 4), + [2528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 4), + [2530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 12), + [2532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 12), + [2534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alignof_expression, 4, .production_id = 57), + [2536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alignof_expression, 4, .production_id = 57), + [2538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 13), + [2540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 13), + [2542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_offsetof_expression, 6, .production_id = 101), + [2544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_offsetof_expression, 6, .production_id = 101), + [2546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null, 1), + [2548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null, 1), + [2550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 2), + [2552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 2), + [2554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4), + [2556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4), + [2558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 29), + [2560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 29), + [2562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [2564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [2566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [2568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), + [2570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2), + [2572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2), + [2574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1123), + [2576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 2, .production_id = 9), + [2578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 2, .production_id = 9), + [2580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3), + [2582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3), + [2584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 4, .production_id = 46), + [2586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 4, .production_id = 46), + [2588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 5), + [2590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 5), + [2592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 5), + [2594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, .production_id = 5), + [2596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_expression, 2, .production_id = 5), + [2598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_expression, 2, .production_id = 5), + [2600] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), SHIFT_REPEAT(1043), + [2603] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), SHIFT_REPEAT(923), + [2606] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), SHIFT_REPEAT(953), + [2609] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), SHIFT_REPEAT(2296), + [2612] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), SHIFT_REPEAT(2295), + [2615] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), SHIFT_REPEAT(859), + [2618] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), SHIFT_REPEAT(1884), + [2621] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), SHIFT_REPEAT(2293), + [2624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), + [2626] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), SHIFT_REPEAT(1085), + [2629] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), SHIFT_REPEAT(1045), + [2632] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), SHIFT_REPEAT(1874), + [2635] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), SHIFT_REPEAT(1534), + [2638] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), SHIFT_REPEAT(1712), + [2641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 5), + [2643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 5), + [2645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), + [2647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), + [2649] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(923), + [2652] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(953), + [2655] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(2296), + [2658] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(2295), + [2661] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(859), + [2664] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(1884), + [2667] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(2293), + [2670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_specifier, 4), + [2672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_specifier, 4), + [2674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_specifier, 3), + [2676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_specifier, 3), + [2678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_specifier, 1), + [2680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_specifier, 1), + [2682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_specifier, 5), + [2684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_specifier, 5), + [2686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(653), + [2688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(654), + [2690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [2692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(678), + [2694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [2696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(682), + [2698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 4, .production_id = 68), + [2700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [2702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [2704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(658), + [2706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(672), + [2708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(674), + [2710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 4, .production_id = 68), + [2712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [2714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(644), + [2716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [2718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 29), + [2720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, .production_id = 29), + [2722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 5, .production_id = 91), + [2724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 5, .production_id = 91), + [2726] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(874), + [2729] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(1746), + [2732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(874), + [2734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(875), + [2736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 6, .production_id = 92), + [2738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 6, .production_id = 92), + [2740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, .production_id = 71), + [2742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, .production_id = 71), + [2744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 41), + [2746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 41), + [2748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 70), + [2750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 70), + [2752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, .production_id = 32), + [2754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, .production_id = 32), + [2756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 17), + [2758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 17), + [2760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, .production_id = 32), + [2762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 32), + [2764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 2, .production_id = 43), + [2766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 2, .production_id = 43), + [2768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2), + [2770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_definition_type_repeat1, 2), + [2772] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2), SHIFT_REPEAT(916), + [2775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 42), + [2777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 42), + [2779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, .production_id = 43), + [2781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 43), + [2783] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, .production_id = 41), + [2785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, .production_id = 41), + [2787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, .production_id = 17), + [2789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, .production_id = 17), + [2791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(779), + [2793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [2795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, .production_id = 53), + [2797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, .production_id = 53), + [2799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [2801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2039), + [2803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 2, .production_id = 7), + [2805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 2, .production_id = 7), + [2807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2131), + [2809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 24), + [2811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 24), + [2813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2064), + [2815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_declspec_modifier, 4), + [2817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_declspec_modifier, 4), + [2819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_parameter_list, 2), + [2821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 2), + [2823] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_parameter_list, 2), REDUCE(sym__old_style_parameter_list, 2), + [2826] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameter_list, 2), REDUCE(sym__old_style_parameter_list, 2), + [2829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 2), + [2831] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_qualifier, 1), + [2833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_qualifier, 1), + [2835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 2, .production_id = 7), + [2837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 2, .production_id = 7), + [2839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [2841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_parameter_list, 3), + [2843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 3), + [2845] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_parameter_list, 3), REDUCE(sym__old_style_parameter_list, 3), + [2848] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameter_list, 3), REDUCE(sym__old_style_parameter_list, 3), + [2851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 3), + [2853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 24), + [2855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 24), + [2857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, .production_id = 54), + [2859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, .production_id = 54), + [2861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2040), + [2863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 25), + [2865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 25), + [2867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2061), + [2869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 2, .production_id = 8), + [2871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 2, .production_id = 8), + [2873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2136), + [2875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 23), + [2877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 23), + [2879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2072), + [2881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(684), + [2883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [2885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, .production_id = 78), + [2887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, .production_id = 78), + [2889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2140), + [2891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(729), + [2893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(736), + [2895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(751), + [2897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [2899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(754), + [2901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [2903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(758), + [2905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(750), + [2907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [2909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [2911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(747), + [2913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [2915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, .production_id = 52), + [2917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, .production_id = 52), + [2919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2038), + [2921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_storage_class_specifier, 1), + [2923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_storage_class_specifier, 1), + [2925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), + [2927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 6, .production_id = 78), + [2929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 6, .production_id = 78), + [2931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2220), + [2933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 1, .production_id = 3), + [2935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 1, .production_id = 3), + [2937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 3), + [2939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 3), + [2941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 14), + [2943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 14), + [2945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, .production_id = 54), + [2947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, .production_id = 54), + [2949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2144), + [2951] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 2, .production_id = 8), + [2953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 2, .production_id = 8), + [2955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, .production_id = 53), + [2957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, .production_id = 53), + [2959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2139), + [2961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, .production_id = 52), + [2963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, .production_id = 52), + [2965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2130), + [2967] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 3, .production_id = 14), + [2969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 3, .production_id = 14), + [2971] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 25), + [2973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 25), + [2975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 23), + [2977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 23), + [2979] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), + [2981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), + [2983] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(1014), + [2986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 8), + [2988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 8), + [2990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2047), + [2992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 7), + [2994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 7), + [2996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2074), + [2998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3), + [3000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3), + [3002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, .production_id = 23), + [3004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, .production_id = 23), + [3006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2035), + [3008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2), + [3010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2), + [3012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, .production_id = 24), + [3014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, .production_id = 24), + [3016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2037), + [3018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, .production_id = 25), + [3020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, .production_id = 25), + [3022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2043), + [3024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, .production_id = 52), + [3026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, .production_id = 52), + [3028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 7, .production_id = 7), + [3030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 7, .production_id = 7), + [3032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [3034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(640), + [3036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(639), + [3038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [3040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(664), + [3042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [3044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(663), + [3046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [3048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), + [3050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), + [3052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 8, .production_id = 23), + [3054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 8, .production_id = 23), + [3056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 8, .production_id = 24), + [3058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 8, .production_id = 24), + [3060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 6, .production_id = 77), + [3062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 6, .production_id = 77), + [3064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 8, .production_id = 52), + [3066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 8, .production_id = 52), + [3068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 10), + [3070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 10), + [3072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1014), + [3074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 8, .production_id = 53), + [3076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 8, .production_id = 53), + [3078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 6, .production_id = 8), + [3080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 6, .production_id = 8), + [3082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 8, .production_id = 54), + [3084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 8, .production_id = 54), + [3086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .production_id = 14), + [3088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, .production_id = 14), + [3090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1083), + [3092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 15), + [3094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 15), + [3096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1084), + [3098] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2), REDUCE(aux_sym_sized_type_specifier_repeat1, 2), + [3101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2), REDUCE(aux_sym_sized_type_specifier_repeat1, 2), + [3104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 5, .production_id = 52), + [3106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 5, .production_id = 52), + [3108] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), SHIFT(1256), + [3111] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 8, .production_id = 25), + [3113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 8, .production_id = 25), + [3115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_specifier, 1), + [3117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_specifier, 1), + [3119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1052), + [3121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 5, .production_id = 50), + [3123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 5, .production_id = 50), + [3125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 8), + [3127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 8), + [3129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 7), + [3131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 7), + [3133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 4), + [3135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 4), + [3137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .production_id = 3), + [3139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, .production_id = 3), + [3141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, .production_id = 8), + [3143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, .production_id = 8), + [3145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [3147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [3149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(671), + [3151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(668), + [3153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(667), + [3155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [3157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, .production_id = 7), + [3159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, .production_id = 7), + [3161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 10, .production_id = 78), + [3163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 10, .production_id = 78), + [3165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 2), + [3167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 2), + [3169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 3), + [3171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 3), + [3173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, .production_id = 23), + [3175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, .production_id = 23), + [3177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, .production_id = 23), + [3179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, .production_id = 23), + [3181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, .production_id = 24), + [3183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, .production_id = 24), + [3185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, .production_id = 25), + [3187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, .production_id = 25), + [3189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 9, .production_id = 52), + [3191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 9, .production_id = 52), + [3193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_type_specifier, 4, .dynamic_precedence = -1, .production_id = 59), + [3195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_type_specifier, 4, .dynamic_precedence = -1, .production_id = 59), + [3197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 7, .production_id = 8), + [3199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 7, .production_id = 8), + [3201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 9, .production_id = 53), + [3203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 9, .production_id = 53), + [3205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 7, .production_id = 25), + [3207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 7, .production_id = 25), + [3209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 9, .production_id = 78), + [3211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 9, .production_id = 78), + [3213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 9, .production_id = 54), + [3215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 9, .production_id = 54), + [3217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, .production_id = 14), + [3219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 3, .production_id = 14), + [3221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, .dynamic_precedence = -1, .production_id = 15), + [3223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 3, .dynamic_precedence = -1, .production_id = 15), + [3225] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), SHIFT(1038), + [3228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 1), + [3230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), + [3232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1039), + [3234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1037), + [3236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 6, .production_id = 7), + [3238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 6, .production_id = 7), + [3240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 7, .production_id = 23), + [3242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 7, .production_id = 23), + [3244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 7, .production_id = 24), + [3246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 7, .production_id = 24), + [3248] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), SHIFT(1832), + [3251] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), SHIFT(1167), + [3254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [3256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [3258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), + [3261] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), SHIFT(1256), + [3265] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), + [3268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [3270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [3272] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(aux_sym__old_style_parameter_list_repeat1, 2), + [3275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [3277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 2, .production_id = 7), + [3279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 2, .production_id = 7), + [3281] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 2, .production_id = 7), SHIFT(2296), + [3284] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 2, .production_id = 7), SHIFT(2295), + [3287] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 2, .production_id = 7), SHIFT(859), + [3290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), + [3292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2105), + [3294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2083), + [3296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(737), + [3298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(706), + [3300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [3302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(705), + [3304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(745), + [3306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(743), + [3308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [3310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(741), + [3312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [3314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(738), + [3316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1616), + [3318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 1, .dynamic_precedence = 1), + [3320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1331), + [3322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1337), + [3324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [3326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, .production_id = 50), + [3328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, .production_id = 50), + [3330] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 4, .production_id = 50), SHIFT(2296), + [3333] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 4, .production_id = 50), SHIFT(2295), + [3336] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 4, .production_id = 50), SHIFT(859), + [3339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [3341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [3343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(749), + [3345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [3347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(752), + [3349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [3351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(763), + [3353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [3355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(784), + [3357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [3359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(786), + [3361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [3363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [3365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1263), + [3367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [3369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [3371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1259), + [3373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1254), + [3375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_function_declarator, 2, .production_id = 34), + [3377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_function_declarator, 2, .production_id = 34), + [3379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1234), + [3381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1274), + [3383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_parameter_list, 4), + [3385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_parameter_list, 4), + [3387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_parameter_list, 3), + [3389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, .production_id = 23), + [3391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, .production_id = 23), + [3393] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 3, .production_id = 23), SHIFT(2296), + [3396] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 3, .production_id = 23), SHIFT(2295), + [3399] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 3, .production_id = 23), SHIFT(859), + [3402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 5, .production_id = 77), + [3404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 5, .production_id = 77), + [3406] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 5, .production_id = 77), SHIFT(2296), + [3409] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 5, .production_id = 77), SHIFT(2295), + [3412] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 5, .production_id = 77), SHIFT(859), + [3415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_call_modifier, 1), + [3417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_call_modifier, 1), + [3419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 2, .production_id = 8), + [3421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 2, .production_id = 8), + [3423] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 2, .production_id = 8), SHIFT(2296), + [3426] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 2, .production_id = 8), SHIFT(2295), + [3429] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 2, .production_id = 8), SHIFT(859), + [3432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1546), + [3434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), + [3436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), + [3438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1552), + [3440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1558), + [3442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bitfield_clause, 2), + [3444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(659), + [3446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [3448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(660), + [3450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [3452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(662), + [3454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [3456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [3458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [3460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(645), + [3462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [3464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(648), + [3466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [3468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [3470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator, 3, .production_id = 76), + [3472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator, 3, .production_id = 76), + [3474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2300), + [3476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(778), + [3478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [3480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(777), + [3482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(773), + [3484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [3486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(771), + [3488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [3490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(770), + [3492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [3494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [3496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [3498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [3500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [3502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 2, .dynamic_precedence = 1), + [3504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1519), + [3506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), + [3508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), + [3510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), + [3512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), + [3514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [3516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [3518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [3520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [3522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [3524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comma_expression, 3, .production_id = 45), + [3526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [3528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), + [3530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [3532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [3534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), + [3536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [3538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [3540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [3542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2), + [3544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, .production_id = 97), + [3546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1467), + [3548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1457), + [3550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1449), + [3552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1774), + [3554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(649), + [3556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [3558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(686), + [3560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [3562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [3564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(701), + [3566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [3568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(704), + [3570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [3572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(713), + [3574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [3576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [3578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [3580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 4), + [3582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), + [3584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [3586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [3588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [3590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [3592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [3594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [3596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [3598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [3600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [3602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [3604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [3606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 5, .production_id = 109), + [3608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [3610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_declarator, 3, .production_id = 61), + [3612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [3614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [3616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_pair, 3, .production_id = 108), + [3618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_pair, 3, .production_id = 107), + [3620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 3), + [3622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [3624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, .production_id = 98), + [3626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [3628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), + [3630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, .production_id = 99), + [3632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, .production_id = 81), + [3634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, .production_id = 80), + [3636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [3638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), + [3640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [3642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), + [3644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [3646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [3648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), + [3650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [3652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [3654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [3656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), + [3658] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2), SHIFT_REPEAT(923), + [3661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), + [3663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [3665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), + [3667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [3669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [3671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), + [3673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [3675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [3677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [3679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [3681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [3683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [3685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), + [3687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), + [3689] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), SHIFT_REPEAT(1331), + [3692] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), SHIFT_REPEAT(1337), + [3695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [3697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [3699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_pointer_modifier, 1), + [3701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_pointer_modifier, 1), + [3703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, .production_id = 14), + [3705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 1, .production_id = 3), + [3707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, .production_id = 3), + [3709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2296), + [3711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2295), + [3713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [3715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_enum_specifier, 2, .production_id = 7), SHIFT(2300), + [3718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_unaligned_ptr_modifier, 1), + [3720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_unaligned_ptr_modifier, 1), + [3722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, .production_id = 14), + [3724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1038), + [3726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1346), + [3728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__preproc_expression, 1), + [3730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), + [3732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__preproc_expression, 1), + [3734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1344), + [3736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), + [3738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), + [3740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1897), + [3742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), + [3744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1398), + [3746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), + [3748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), + [3750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), + [3752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), + [3754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [3756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), + [3758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), + [3760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), + [3762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), + [3764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1368), + [3766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), + [3768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), + [3770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1373), + [3772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), + [3774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1359), [3776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), - [3778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), - [3780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), - [3782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), - [3784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), - [3786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), - [3788] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type_specifier, 1, .production_id = 1), SHIFT(1407), - [3791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1387), - [3793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1388), - [3795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1373), - [3797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1370), - [3799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1367), - [3801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1366), - [3803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1375), - [3805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [3807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1399), - [3809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1394), - [3811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1391), - [3813] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 10), SHIFT(1015), - [3816] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .production_id = 3), SHIFT(1015), - [3819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), - [3821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [3823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [3825] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 15), SHIFT(1435), - [3828] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), SHIFT(1415), - [3831] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), SHIFT(1444), - [3834] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), SHIFT(1446), - [3837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), - [3839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), - [3841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [3843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), - [3845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), - [3847] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_enum_specifier, 2, .production_id = 7), SHIFT(2082), - [3850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), - [3852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), - [3854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [3856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [3858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [3860] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type_specifier, 1), SHIFT(1410), - [3863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [3865] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, .production_id = 14), SHIFT(1015), - [3868] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, .dynamic_precedence = -1, .production_id = 15), SHIFT(1015), - [3871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [3873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [3875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [3877] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2), REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT(1015), - [3881] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .production_id = 14), SHIFT(1434), - [3884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), - [3886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), - [3888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [3890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [3892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), - [3894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), - [3896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), - [3898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [3900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_declarator, 1, .production_id = 11), - [3902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(527), - [3904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [3906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), - [3908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 2, .production_id = 34), - [3910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 2, .production_id = 34), - [3912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), - [3914] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT_REPEAT(1861), - [3917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), - [3919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [3921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 4, .production_id = 34), - [3923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 4, .production_id = 34), - [3925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), - [3927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), - [3929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), - [3931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1382), - [3933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), - [3935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 3, .production_id = 34), - [3937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 3, .production_id = 34), - [3939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2), - [3941] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(1975), - [3944] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(1980), - [3947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2), - [3949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 4), - [3951] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 4), - [3953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), - [3955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declaration_declarator, 1, .production_id = 11), - [3957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(524), - [3959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [3961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 4, .dynamic_precedence = 1, .production_id = 87), - [3963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 3, .dynamic_precedence = 1, .production_id = 60), - [3965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 2, .dynamic_precedence = 1, .production_id = 31), - [3967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), - [3969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1345), - [3971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2129), - [3973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), - [3975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 2, .dynamic_precedence = 1, .production_id = 31), - [3977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 4, .dynamic_precedence = 1, .production_id = 87), - [3979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 3, .dynamic_precedence = 1, .production_id = 60), - [3981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 5, .dynamic_precedence = 1, .production_id = 105), - [3983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__field_declaration_declarator_repeat1, 2, .production_id = 31), - [3985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), - [3987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 5, .dynamic_precedence = 1, .production_id = 105), - [3989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), - [3991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_declarators, 1, .production_id = 11), - [3993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(525), - [3995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_declarator, 2), - [3997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_declarator, 2), - [3999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 5, .dynamic_precedence = 1, .production_id = 105), - [4001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__declaration_declarator_repeat1, 2, .production_id = 31), - [4003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 4, .dynamic_precedence = 1, .production_id = 87), - [4005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_field_declarator, 2), - [4007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_field_declarator, 2), - [4009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 3, .dynamic_precedence = 1, .production_id = 60), - [4011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 2, .dynamic_precedence = 1, .production_id = 31), - [4013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), - [4015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 3, .production_id = 41), - [4017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), - [4019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_type_declarator, 2), - [4021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_type_declarator, 2), - [4023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_definition_declarators_repeat1, 2, .production_id = 31), - [4025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 2, .production_id = 17), - [4027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), - [4029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), - [4031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), - [4033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1361), - [4035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2201), - [4037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), - [4039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), - [4041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1356), - [4043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2197), - [4045] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enumerator_list_repeat1, 2), SHIFT_REPEAT(1845), - [4048] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2), SHIFT_REPEAT(1358), - [4051] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2), SHIFT_REPEAT(2220), - [4054] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2), SHIFT_REPEAT(1822), - [4057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enumerator_list_repeat1, 2), - [4059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), - [4061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 3, .production_id = 11), - [4063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 3, .production_id = 11), - [4065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 4, .production_id = 11), - [4067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 4, .production_id = 11), - [4069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declarator, 1), - [4071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declarator, 1), - [4073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 4, .production_id = 89), - [4075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 4, .production_id = 89), - [4077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declarator, 1, .production_id = 51), - [4079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declarator, 1, .production_id = 51), - [4081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 4, .production_id = 11), - [4083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 4, .production_id = 11), - [4085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 4, .production_id = 89), - [4087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 4, .production_id = 89), - [4089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 5, .production_id = 106), - [4091] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 5, .production_id = 106), - [4093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 5, .production_id = 106), - [4095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 5, .production_id = 106), - [4097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 1), - [4099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), - [4101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_field_declarator, 2, .production_id = 34), - [4103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_field_declarator, 2, .production_id = 34), - [4105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_field_declarator, 3, .dynamic_precedence = -10), - [4107] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_field_declarator, 3, .dynamic_precedence = -10), - [4109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 3, .production_id = 11), - [4111] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 3, .production_id = 11), - [4113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 1), - [4115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2186), - [4117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declarator, 1), - [4119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declarator, 1), - [4121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_declarator, 3, .dynamic_precedence = -10), - [4123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_declarator, 3, .dynamic_precedence = -10), - [4125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(956), - [4127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type_declarator, 3, .dynamic_precedence = -10), - [4129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type_declarator, 3, .dynamic_precedence = -10), - [4131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1, .production_id = 21), - [4133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1, .production_id = 21), - [4135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1), - [4137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1), - [4139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [4141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), - [4143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [4145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [4147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1790), - [4149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), - [4151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), - [4153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 3, .production_id = 11), - [4155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 3, .production_id = 11), - [4157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1, .production_id = 1), - [4159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1, .production_id = 1), - [4161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 4, .production_id = 11), - [4163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 4, .production_id = 11), - [4165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1848), - [4167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), - [4169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type_declarator, 2, .production_id = 34), - [4171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type_declarator, 2, .production_id = 34), - [4173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 4, .production_id = 89), - [4175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 4, .production_id = 89), - [4177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1823), - [4179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), - [4181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [4183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 5, .production_id = 106), - [4185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 5, .production_id = 106), - [4187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1802), - [4189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), - [4191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1849), - [4193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), - [4195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1644), - [4197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), - [4199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 4, .production_id = 41), - [4201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), - [4203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 3, .production_id = 41), - [4205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 3, .production_id = 17), - [4207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 2, .production_id = 72), - [4209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 4, .production_id = 41), - [4211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 3, .production_id = 17), - [4213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), - [4215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 1), - [4217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), - [4219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator, 1, .production_id = 6), - [4221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator, 1, .production_id = 6), - [4223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [4225] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_repeat1, 2), SHIFT_REPEAT(1845), - [4228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_repeat1, 2), - [4230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_repeat1, 2), - [4232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 2), SHIFT_REPEAT(1608), - [4235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 2), - [4237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 2), - [4239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 2, .production_id = 17), - [4241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), - [4243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), - [4245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [4247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2225), - [4249] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2), SHIFT_REPEAT(689), - [4252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2), - [4254] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2), SHIFT_REPEAT(2225), - [4257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 1), - [4259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), - [4261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 1), - [4263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), - [4265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), - [4267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 3, .dynamic_precedence = 1, .production_id = 60), - [4269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [4271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), - [4273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), - [4275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, .production_id = 47), - [4277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [4279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [4281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [4283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [4285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [4287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [4289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), - [4291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 3, .production_id = 17), - [4293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 3, .production_id = 17), - [4295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [4297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [4299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [4301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), - [4303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [4305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [4307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [4309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 4, .production_id = 41), - [4311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 4, .production_id = 41), - [4313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [4315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, .production_id = 42), - [4317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, .production_id = 42), - [4319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, .production_id = 44), - [4321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_expression_repeat1, 2), - [4323] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_expression_repeat1, 2), SHIFT_REPEAT(1716), - [4326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [4328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, .production_id = 17), - [4330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, .production_id = 17), - [4332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declaration_declarator, 3, .production_id = 96), - [4334] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__field_declaration_declarator_repeat1, 2, .production_id = 63), SHIFT_REPEAT(1543), - [4337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__field_declaration_declarator_repeat1, 2, .production_id = 63), - [4339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 6, .production_id = 92), - [4341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 6, .production_id = 92), - [4343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_declarators, 2, .production_id = 36), - [4345] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_definition_declarators_repeat1, 2, .production_id = 63), SHIFT_REPEAT(1471), - [4348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_definition_declarators_repeat1, 2, .production_id = 63), - [4350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [4352] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 2), SHIFT_REPEAT(1627), - [4355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, .production_id = 19), - [4357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), - [4359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [4361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 2, .dynamic_precedence = 1, .production_id = 31), - [4363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [4365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declaration_declarator, 2, .production_id = 36), - [4367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, .production_id = 70), - [4369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, .production_id = 70), - [4371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, .production_id = 41), - [4373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, .production_id = 41), - [4375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [4377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [4379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declaration_declarator, 2, .production_id = 11), - [4381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2), - [4383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 5, .production_id = 71), - [4385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 5, .production_id = 71), - [4387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 4, .production_id = 74), - [4389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [4391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [4393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 2, .production_id = 34), - [4395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__field_declaration_declarator_repeat1, 3, .production_id = 31), - [4397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [4399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), - [4401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1791), - [4403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), - [4405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 2), - [4407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), - [4409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 93), - [4411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [4413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(966), - [4415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [4417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), - [4419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [4421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [4423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, .production_id = 6), - [4425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), - [4427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), - [4429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 89), - [4431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, .production_id = 11), - [4433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 11), - [4435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(977), - [4437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), - [4439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 5, .production_id = 106), - [4441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3), - [4443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, .production_id = 73), - [4445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 1, .production_id = 20), - [4447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [4449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list, 1), - [4451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__abstract_declarator, 1), - [4453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), - [4455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [4457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [4459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_parenthesized_declarator, 3), - [4461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), - [4463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 3, .production_id = 102), - [4465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(866), - [4467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), - [4469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1726), - [4471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(988), - [4473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1724), - [4475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), - [4477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 2, .production_id = 84), - [4479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), - [4481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 3, .production_id = 115), - [4483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 2, .production_id = 84), - [4485] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, .production_id = 110), SHIFT_REPEAT(1600), - [4488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, .production_id = 110), - [4490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list_no_comma, 1), - [4492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_qualifier, 1), - [4494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(777), - [4496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), - [4498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1732), - [4500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1355), - [4502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1002), - [4504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), - [4506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1728), - [4508] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, .production_id = 110), SHIFT_REPEAT(1599), - [4511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, .production_id = 110), - [4513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), - [4515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), - [4517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), - [4519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_char_literal_repeat1, 2), - [4521] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_char_literal_repeat1, 2), SHIFT_REPEAT(1724), - [4524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list_no_comma, 2), - [4526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(865), - [4528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list, 2), - [4530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2), - [4532] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(1728), - [4535] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(1728), - [4538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1004), - [4540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), - [4542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1720), - [4544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [4546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), - [4548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), - [4550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), - [4552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(778), - [4554] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, .production_id = 120), SHIFT_REPEAT(1650), - [4557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, .production_id = 120), - [4559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, .production_id = 49), - [4561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(796), - [4563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 2, .production_id = 111), - [4565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), - [4567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), - [4569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 3, .production_id = 102), - [4571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2143), - [4573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1429), - [4575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), - [4577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), - [4579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), - [4581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), - [4583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), - [4585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), - [4587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2146), - [4589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), - [4591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1739), - [4593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [4595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), - [4597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [4599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [4601] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_argument_list_repeat1, 2), SHIFT_REPEAT(1395), - [4604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), - [4606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), - [4608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [4610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), - [4612] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(567), - [4615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [4617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [4619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1740), - [4621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), - [4623] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_params_repeat1, 2), SHIFT_REPEAT(1929), - [4626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_params_repeat1, 2), - [4628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [4630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, .production_id = 111), - [4632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), - [4634] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2), SHIFT_REPEAT(837), - [4637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2), - [4639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [4641] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__old_style_parameter_list_repeat1, 2), SHIFT_REPEAT(1805), - [4644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__old_style_parameter_list_repeat1, 2), - [4646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_declarator_repeat1, 2, .production_id = 63), SHIFT_REPEAT(1524), - [4649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__declaration_declarator_repeat1, 2, .production_id = 63), - [4651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_declarator, 3, .production_id = 62), - [4653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [4655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), - [4657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_declarator, 2, .production_id = 36), - [4659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1709), - [4661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), - [4663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_declarator, 2, .production_id = 35), - [4665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), - [4667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_designator, 2, .production_id = 94), - [4669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [4671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand, 7, .production_id = 124), - [4673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand, 7, .production_id = 124), - [4675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [4677] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, .production_id = 123), SHIFT_REPEAT(2150), - [4680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, .production_id = 123), - [4682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [4684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [4686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), - [4688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2150), - [4690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 3, .production_id = 121), - [4692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [4694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), - [4696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), - [4698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [4700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1329), - [4702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_arg, 1), - [4704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1817), - [4706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), - [4708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), - [4710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [4712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [4714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand, 4, .production_id = 114), - [4716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1719), - [4718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), - [4720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), - [4722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), - [4724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [4726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), - [4728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [4730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [4732] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_specifier_repeat1, 2), SHIFT_REPEAT(2226), - [4735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_specifier_repeat1, 2), - [4737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), - [4739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [4741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), - [4743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [4745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), - [4747] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 2), SHIFT_REPEAT(1210), - [4750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 2), - [4752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [4754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [4756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), - [4758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [4760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), - [4762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [4764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [4766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_arg, 2), - [4768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1818), - [4770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_arg_repeat1, 2), - [4772] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_arg_repeat1, 2), SHIFT_REPEAT(1818), - [4775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), - [4777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_range_designator, 5, .production_id = 119), - [4779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [4781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [4783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [4785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [4787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_designator, 3), - [4789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), - [4791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 2, .production_id = 116), - [4793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [4795] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2), SHIFT_REPEAT(543), - [4798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [4800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), - [4802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1735), - [4804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2226), - [4806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [4808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), - [4810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), - [4812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, .production_id = 84), - [4814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand, 4, .production_id = 114), - [4816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [4818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [4820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [4822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2183), - [4824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [4826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [4828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [4830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [4832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [4834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [4836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), - [4838] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_declaration_repeat1, 2), SHIFT_REPEAT(1875), - [4841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_declaration_repeat1, 2), - [4843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [4845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, .production_id = 84), - [4847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [4849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), - [4851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [4853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), - [4855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 1), - [4857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), - [4859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), - [4861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), - [4863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_params, 2), - [4865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 2), - [4867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, .production_id = 6), - [4869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), - [4871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 1), - [4873] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2), REDUCE(aux_sym__old_style_parameter_list_repeat1, 2), - [4876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 4, .production_id = 49), - [4878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__declaration_declarator_repeat1, 3, .production_id = 88), - [4880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), - [4882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), - [4884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, .production_id = 116), - [4886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [4888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), - [4890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_params, 3), - [4892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 3), - [4894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), - [4896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_params, 4), - [4898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 4), - [4900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), - [4902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [4904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [4906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [4908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [4910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [4912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [4914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [4916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [4918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [4920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [4922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [4924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [4926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [4928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [4930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [4932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [4934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [4936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [4938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [4940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [4942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [4944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), - [4946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), - [4948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), - [4950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), - [4952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [4954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), - [4956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [4958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [4960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [4962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), - [4964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [4966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), - [4968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [4970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [4972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [4974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), - [4976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [4978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [4980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), - [4982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), - [4984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), - [4986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), - [4988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), - [4990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), - [4992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), - [4994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [4996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [4998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [5000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [5002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [5004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), - [5006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [5008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [5010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), - [5012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [5014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [5016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2063), - [5018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), - [5020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), - [5022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [5024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [5026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [5028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), - [5030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [5032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [5034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [5036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), - [5038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), - [5040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), - [5042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), - [5044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), - [5046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [5048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [5050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), - [5052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [5054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [5056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), - [5058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [5060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [5062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [5064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [5066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [5068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [5070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [5072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [5074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), - [5076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [5078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [5080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [5082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [5084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [5086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [5088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [5090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [5092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [5094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [5096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [5098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [5100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [5102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), - [5104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), - [5106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), - [5108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [5110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), - [5112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [5114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [5116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [5118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [5120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [5122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), - [5124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [5126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [5128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [5130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [5132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [5134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [5136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), - [5138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [5140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [5142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [5144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [5146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), - [5148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [5150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [5152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [5154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), - [5156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [5158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), - [5160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [5162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [5164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [5166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), - [5168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [5170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [5172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [5174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [5176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [5178] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [5180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [5182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), - [5184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [5186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [5188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), - [5190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), - [5192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), - [5194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [5196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [5198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [5200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), - [5202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [5204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), - [5206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [5208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), - [5210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [5212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [5214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [5216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), - [5218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), - [5220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [5222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [5224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), - [5226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [5228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), - [5230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), - [5232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [5234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), - [5236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [5238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), - [5240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_based_modifier, 2), - [5242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [5244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [5246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), - [5248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231), - [5250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), - [5252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [5254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [5256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [5258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), - [5260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list_no_comma, 5, .production_id = 70), - [5262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), - [5264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), - [5266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [5268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2149), - [5270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [5272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 5, .production_id = 92), - [5274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [5276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 5, .production_id = 92), - [5278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 5, .production_id = 92), - [5280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [5282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), - [5284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [5286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 4, .production_id = 71), - [5288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, .production_id = 70), - [5290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 4, .production_id = 71), - [5292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), - [5294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 4, .production_id = 71), - [5296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 4, .production_id = 70), - [5298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 4, .production_id = 70), - [5300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list_no_comma, 6, .production_id = 92), - [5302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [5304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), - [5306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), - [5308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), - [5310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 3, .production_id = 42), - [5312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), - [5314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list_no_comma, 5, .production_id = 71), - [5316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 3, .production_id = 42), - [5318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 3, .production_id = 42), - [5320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), - [5322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), - [5324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list_no_comma, 5, .production_id = 41), - [5326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), - [5328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 5, .production_id = 92), - [5330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [5332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), - [5334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [5336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), - [5338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), - [5340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [5342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), - [5344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), - [5346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), - [5348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), - [5350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list_no_comma, 4, .production_id = 17), - [5352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), - [5354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), - [5356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list_no_comma, 4, .production_id = 42), - [5358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), - [5360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), - [5362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef, 4, .production_id = 71), - [5364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 4, .production_id = 70), - [5366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), - [5368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), - [5370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [5372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [5374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [5376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), - [5378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), - [5380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [5382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), - [5384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), - [5386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), - [5388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), - [5390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [5392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), - [5394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), - [5396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef, 3, .production_id = 42), - [5398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [5400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [5402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), - [5404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [5406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [5408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), - [5410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), - [5412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), - [5414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [3778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1379), + [3780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), + [3782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), + [3784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), + [3786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [3788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2287), + [3790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), + [3792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), + [3794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [3796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1348), + [3798] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), + [3800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), + [3802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), + [3804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1357), + [3806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), + [3808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1961), + [3810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), + [3812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1404), + [3814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), + [3816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), + [3818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), + [3820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), + [3822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_defined, 2), + [3824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_defined, 2), + [3826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_defined, 4), + [3828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_defined, 4), + [3830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_unary_expression, 2, .production_id = 5), + [3832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_unary_expression, 2, .production_id = 5), + [3834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), + [3836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), + [3838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), + [3840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), + [3842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), + [3844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), + [3846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), + [3848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), + [3850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), + [3852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 3), + [3854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 3), + [3856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), + [3858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 2, .production_id = 3), + [3860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 2, .production_id = 3), + [3862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), + [3864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), + [3866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), + [3868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 2, .production_id = 14), + [3870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 2, .production_id = 14), + [3872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), + [3874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), + [3876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), + [3878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), + [3880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 1, .production_id = 43), + [3882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), + [3884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), + [3886] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT_REPEAT(1893), + [3889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), + [3891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), + [3893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), + [3895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), + [3897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), + [3899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), + [3901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), + [3903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 1, .production_id = 3), + [3905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 1, .production_id = 3), + [3907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 4), + [3909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 4), + [3911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), + [3913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), + [3915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), + [3917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), + [3919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), + [3921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), + [3923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), + [3925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), + [3927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_argument_list_repeat1, 2), + [3929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_binary_expression, 3, .production_id = 29), + [3931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_binary_expression, 3, .production_id = 29), + [3933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), + [3935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 3, .production_id = 14), + [3937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 3, .production_id = 14), + [3939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), + [3941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call_expression, 2, .production_id = 13), + [3943] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call_expression, 2, .production_id = 13), + [3945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), + [3947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 2, .production_id = 34), + [3949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 2, .production_id = 34), + [3951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), + [3953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), + [3955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_parenthesized_expression, 3), + [3957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_parenthesized_expression, 3), + [3959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 2), + [3961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 2), + [3963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), + [3965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), + [3967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1376), + [3969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1370), + [3971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1383), + [3973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1384), + [3975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1385), + [3977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1386), + [3979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1388), + [3981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1419), + [3983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1402), + [3985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1421), + [3987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), + [3989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), + [3991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), + [3993] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 10), SHIFT(1014), + [3996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2), + [3998] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(2296), + [4001] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(2295), + [4004] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(859), + [4007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2), + [4009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), + [4011] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, .dynamic_precedence = -1, .production_id = 15), SHIFT(1014), + [4014] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, .production_id = 14), SHIFT(1014), + [4017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [4019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [4021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [4023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), + [4025] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type_specifier, 1), SHIFT(1464), + [4028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [4030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [4032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [4034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 4, .production_id = 34), + [4036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 4, .production_id = 34), + [4038] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), SHIFT(1476), + [4041] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), SHIFT(1475), + [4044] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), SHIFT(1472), + [4047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [4049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), + [4051] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .production_id = 3), SHIFT(1014), + [4054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [4056] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type_specifier, 1, .production_id = 1), SHIFT(1432), + [4059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [4061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 3, .production_id = 34), + [4063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 3, .production_id = 34), + [4065] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .production_id = 14), SHIFT(1443), + [4068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [4070] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2), REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT(1014), + [4074] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 15), SHIFT(1442), + [4077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [4079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), + [4081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [4083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declaration_declarator, 1, .production_id = 11), + [4085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(543), + [4087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [4089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 4), + [4091] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 4), + [4093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 2, .dynamic_precedence = 1, .production_id = 31), + [4095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 5, .dynamic_precedence = 1, .production_id = 105), + [4097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 4, .dynamic_precedence = 1, .production_id = 87), + [4099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 3, .dynamic_precedence = 1, .production_id = 60), + [4101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__field_declaration_declarator_repeat1, 2, .production_id = 31), + [4103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), + [4105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [4107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_declarator, 1, .production_id = 11), + [4109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(545), + [4111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [4113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 5, .dynamic_precedence = 1, .production_id = 105), + [4115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539), + [4117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), + [4119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_declarators, 1, .production_id = 11), + [4121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_field_declarator, 2), + [4123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_field_declarator, 2), + [4125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 3, .dynamic_precedence = 1, .production_id = 60), + [4127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 2, .dynamic_precedence = 1, .production_id = 31), + [4129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 4, .dynamic_precedence = 1, .production_id = 87), + [4131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_definition_declarators_repeat1, 2, .production_id = 31), + [4133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), + [4135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), + [4137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), + [4139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1415), + [4141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), + [4143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_type_declarator, 2), + [4145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_type_declarator, 2), + [4147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_field_declarator, 3, .dynamic_precedence = -10), + [4149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_field_declarator, 3, .dynamic_precedence = -10), + [4151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declarator, 1, .production_id = 51), + [4153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declarator, 1, .production_id = 51), + [4155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declarator, 1), + [4157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declarator, 1), + [4159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_field_declarator, 2, .production_id = 34), + [4161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_field_declarator, 2, .production_id = 34), + [4163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 5, .production_id = 106), + [4165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 5, .production_id = 106), + [4167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 4, .production_id = 11), + [4169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 4, .production_id = 11), + [4171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 3, .production_id = 11), + [4173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 3, .production_id = 11), + [4175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 4, .production_id = 89), + [4177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 4, .production_id = 89), + [4179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 3, .production_id = 11), + [4181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 3, .production_id = 11), + [4183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(901), + [4185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 5, .production_id = 106), + [4187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 5, .production_id = 106), + [4189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), + [4191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1361), + [4193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2206), + [4195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), + [4197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 4, .production_id = 89), + [4199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 4, .production_id = 89), + [4201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 5, .dynamic_precedence = 1, .production_id = 105), + [4203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1, .production_id = 1), + [4205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1, .production_id = 1), + [4207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 2, .dynamic_precedence = 1, .production_id = 31), + [4209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), + [4211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1, .production_id = 21), + [4213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1, .production_id = 21), + [4215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 4, .production_id = 11), + [4217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 4, .production_id = 11), + [4219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type_declarator, 3, .dynamic_precedence = -10), + [4221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type_declarator, 3, .dynamic_precedence = -10), + [4223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 3, .dynamic_precedence = 1, .production_id = 60), + [4225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 4, .dynamic_precedence = 1, .production_id = 87), + [4227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1), + [4229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1), + [4231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type_declarator, 2, .production_id = 34), + [4233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type_declarator, 2, .production_id = 34), + [4235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_declarator, 2), + [4237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_declarator, 2), + [4239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__declaration_declarator_repeat1, 2, .production_id = 31), + [4241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), + [4243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), + [4245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), + [4247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), + [4249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), + [4251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1393), + [4253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), + [4255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enumerator_list_repeat1, 2), SHIFT_REPEAT(1861), + [4258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2), SHIFT_REPEAT(1395), + [4261] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2), SHIFT_REPEAT(1993), + [4264] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2), SHIFT_REPEAT(1849), + [4267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enumerator_list_repeat1, 2), + [4269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2102), + [4271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), + [4273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1400), + [4275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), + [4277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), + [4279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 3, .production_id = 41), + [4281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 2, .production_id = 17), + [4283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 5, .production_id = 106), + [4285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 5, .production_id = 106), + [4287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [4289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 1), + [4291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), + [4293] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_definition_declarators_repeat1, 2, .production_id = 63), SHIFT_REPEAT(1508), + [4296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_definition_declarators_repeat1, 2, .production_id = 63), + [4298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [4300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 4, .production_id = 89), + [4302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 4, .production_id = 89), + [4304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [4306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [4308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [4310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declaration_declarator, 3, .production_id = 96), + [4312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [4314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [4316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 1), + [4318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2165), + [4320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 4, .production_id = 11), + [4322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 4, .production_id = 11), + [4324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_declarators, 2, .production_id = 36), + [4326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [4328] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__field_declaration_declarator_repeat1, 2, .production_id = 63), SHIFT_REPEAT(1574), + [4331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__field_declaration_declarator_repeat1, 2, .production_id = 63), + [4333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_declarator, 3, .dynamic_precedence = -10), + [4335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_declarator, 3, .dynamic_precedence = -10), + [4337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [4339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [4341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [4343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [4345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [4347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [4349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [4351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [4353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [4355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declaration_declarator, 2, .production_id = 11), + [4357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declaration_declarator, 2, .production_id = 36), + [4359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [4361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [4363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [4365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 3, .production_id = 11), + [4367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 3, .production_id = 11), + [4369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declarator, 1), + [4371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declarator, 1), + [4373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), + [4375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1860), + [4377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), + [4379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), + [4381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [4383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1787), + [4385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2259), + [4387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1765), + [4389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), + [4391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), + [4393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), + [4395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [4397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), + [4399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__field_declaration_declarator_repeat1, 3, .production_id = 31), + [4401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), + [4403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [4405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [4407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1785), + [4409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2262), + [4411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1863), + [4413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), + [4415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 3, .production_id = 17), + [4417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), + [4419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), + [4421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1697), + [4423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), + [4425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), + [4427] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 2), SHIFT_REPEAT(1662), + [4430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 2), + [4432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 2), + [4434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 3, .production_id = 17), + [4436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), + [4438] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_repeat1, 2), SHIFT_REPEAT(1861), + [4441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_repeat1, 2), + [4443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_repeat1, 2), + [4445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 3, .production_id = 41), + [4447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 2, .production_id = 72), + [4449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 2, .production_id = 17), + [4451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 4, .production_id = 41), + [4453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 4, .production_id = 41), + [4455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 1), + [4457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator, 1, .production_id = 6), + [4459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator, 1, .production_id = 6), + [4461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [4463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), + [4465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), + [4467] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2), SHIFT_REPEAT(714), + [4470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2), + [4472] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2), SHIFT_REPEAT(1982), + [4475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [4477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), + [4479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), + [4481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 1), + [4483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), + [4485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 1), + [4487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_expression_repeat1, 2), + [4489] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_expression_repeat1, 2), SHIFT_REPEAT(1747), + [4492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 3, .production_id = 17), + [4494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 3, .production_id = 17), + [4496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), + [4498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), + [4500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), + [4502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 4, .production_id = 41), + [4504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 4, .production_id = 41), + [4506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, .production_id = 70), + [4508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, .production_id = 70), + [4510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 3, .dynamic_precedence = 1, .production_id = 60), + [4512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [4514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, .production_id = 42), + [4516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, .production_id = 42), + [4518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, .production_id = 17), + [4520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, .production_id = 17), + [4522] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 2), SHIFT_REPEAT(1688), + [4525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 4, .production_id = 74), + [4527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 5, .production_id = 71), + [4529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 5, .production_id = 71), + [4531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 2, .dynamic_precedence = 1, .production_id = 31), + [4533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [4535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2), + [4537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, .production_id = 19), + [4539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, .production_id = 41), + [4541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, .production_id = 41), + [4543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, .production_id = 47), + [4545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 6, .production_id = 92), + [4547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 6, .production_id = 92), + [4549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, .production_id = 44), + [4551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), + [4553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), + [4555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, .production_id = 73), + [4557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, .production_id = 11), + [4559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__abstract_declarator, 1), + [4561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [4563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), + [4565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1796), + [4567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [4569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 1, .production_id = 20), + [4571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3), + [4573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [4575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [4577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [4579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [4581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_parenthesized_declarator, 3), + [4583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(924), + [4585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, .production_id = 6), + [4587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2067), + [4589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(903), + [4591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 11), + [4593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 89), + [4595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 93), + [4597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), + [4599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list, 1), + [4601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), + [4603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [4605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [4607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 2, .production_id = 34), + [4609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 2), + [4611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 5, .production_id = 106), + [4613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), + [4615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), + [4617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1382), + [4619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1750), + [4621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), + [4623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), + [4625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [4627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [4629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), + [4631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 2, .production_id = 84), + [4633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), + [4635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), + [4637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), + [4639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), + [4641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), + [4643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), + [4645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, .production_id = 49), + [4647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list, 2), + [4649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list_no_comma, 2), + [4651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(902), + [4653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), + [4655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1759), + [4657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1109), + [4659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list_no_comma, 1), + [4661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, .production_id = 110), SHIFT_REPEAT(1649), + [4664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, .production_id = 110), + [4666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(577), + [4668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), + [4670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 3, .production_id = 115), + [4672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(808), + [4674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2244), + [4676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), + [4678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1757), + [4680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(904), + [4682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), + [4684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1738), + [4686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_qualifier, 1), + [4688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(955), + [4690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_char_literal_repeat1, 2), + [4692] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_char_literal_repeat1, 2), SHIFT_REPEAT(1750), + [4695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(944), + [4697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), + [4699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1749), + [4701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1470), + [4703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 3, .production_id = 102), + [4705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), + [4707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 2, .production_id = 84), + [4709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), + [4711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), + [4713] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, .production_id = 120), SHIFT_REPEAT(1670), + [4716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, .production_id = 120), + [4718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2185), + [4720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 2, .production_id = 111), + [4722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2), + [4724] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(1759), + [4727] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(1759), + [4730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), + [4732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 3, .production_id = 102), + [4734] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, .production_id = 110), SHIFT_REPEAT(1653), + [4737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, .production_id = 110), + [4739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(579), + [4741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), + [4743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1742), + [4745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1739), + [4747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [4749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1354), + [4751] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_specifier_repeat1, 2), SHIFT_REPEAT(2103), + [4754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_specifier_repeat1, 2), + [4756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), + [4758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_declarator, 2, .production_id = 35), + [4760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [4762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), + [4764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [4766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), + [4768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), + [4770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), + [4772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [4774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [4776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), + [4778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), + [4780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1744), + [4782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_range_designator, 5, .production_id = 119), + [4784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), + [4786] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 2), SHIFT_REPEAT(1230), + [4789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 2), + [4791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2070), + [4793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand, 4, .production_id = 114), + [4795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, .production_id = 111), + [4797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [4799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [4801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [4803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2256), + [4805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 3, .production_id = 121), + [4807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [4809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [4811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), + [4813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [4815] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, .production_id = 123), SHIFT_REPEAT(2256), + [4818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, .production_id = 123), + [4820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand, 7, .production_id = 124), + [4822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand, 7, .production_id = 124), + [4824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_arg, 1), + [4826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1813), + [4828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [4830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), + [4832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [4834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [4836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, .production_id = 84), + [4838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [4840] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_declarator_repeat1, 2, .production_id = 63), SHIFT_REPEAT(1561), + [4843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__declaration_declarator_repeat1, 2, .production_id = 63), + [4845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_declarator, 3, .production_id = 62), + [4847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), + [4849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [4851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), + [4853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), + [4855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), + [4857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [4859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [4861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_arg, 2), + [4863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1830), + [4865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [4867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [4869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [4871] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2), SHIFT_REPEAT(557), + [4874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_declarator, 2, .production_id = 36), + [4876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), + [4878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_designator, 3), + [4880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [4882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1752), + [4884] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__old_style_parameter_list_repeat1, 2), SHIFT_REPEAT(1832), + [4887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__old_style_parameter_list_repeat1, 2), + [4889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [4891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), + [4893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [4895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [4897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [4899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_arg_repeat1, 2), + [4901] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_arg_repeat1, 2), SHIFT_REPEAT(1830), + [4904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [4906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), + [4908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), + [4910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), + [4912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), + [4914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [4916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [4918] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(578), + [4921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), + [4923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [4925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [4927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), + [4929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), + [4931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [4933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [4935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), + [4937] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_argument_list_repeat1, 2), SHIFT_REPEAT(1392), + [4940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand, 4, .production_id = 114), + [4942] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_params_repeat1, 2), SHIFT_REPEAT(1965), + [4945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_params_repeat1, 2), + [4947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [4949] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2), SHIFT_REPEAT(832), + [4952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2), + [4954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [4956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), + [4958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_designator, 2, .production_id = 94), + [4960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [4962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [4964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), + [4966] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_declaration_repeat1, 2), SHIFT_REPEAT(1916), + [4969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_declaration_repeat1, 2), + [4971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 2, .production_id = 116), + [4973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [4975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [4977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, .production_id = 84), + [4979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [4981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [4983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [4985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [4987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [4989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), + [4991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1727), + [4993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), + [4995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [4997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), + [4999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [5001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [5003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), + [5005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), + [5007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), + [5009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), + [5011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), + [5013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_params, 4), + [5015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 4), + [5017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, .production_id = 6), + [5019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 1), + [5021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__declaration_declarator_repeat1, 3, .production_id = 88), + [5023] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2), REDUCE(aux_sym__old_style_parameter_list_repeat1, 2), + [5026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [5028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), + [5030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), + [5032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 1), + [5034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, .production_id = 116), + [5036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), + [5038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), + [5040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), + [5042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_params, 3), + [5044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 3), + [5046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_params, 2), + [5048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 2), + [5050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 4, .production_id = 49), + [5052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [5054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [5056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [5058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), + [5060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [5062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [5064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [5066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), + [5068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [5070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef, 3, .production_id = 42), + [5072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [5074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), + [5076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), + [5078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [5080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), + [5082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [5084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [5086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [5088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [5090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [5092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [5094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [5096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [5098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [5100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [5102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [5104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [5106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [5108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [5110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [5112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), + [5114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [5116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [5118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [5120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [5122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [5124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), + [5126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [5128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), + [5130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [5132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [5134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [5136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [5138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), + [5140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [5142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), + [5144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), + [5146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [5148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [5150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), + [5152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [5154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), + [5156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), + [5158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), + [5160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), + [5162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [5164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), + [5166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [5168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [5170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), + [5172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [5174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [5176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2161), + [5178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [5180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), + [5182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), + [5184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [5186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), + [5188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [5190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [5192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2183), + [5194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), + [5196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2243), + [5198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [5200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), + [5202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [5204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [5206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), + [5208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [5210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [5212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [5214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), + [5216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [5218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), + [5220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [5222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2292), + [5224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), + [5226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [5228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 4, .production_id = 70), + [5230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef, 4, .production_id = 71), + [5232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [5234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [5236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), + [5238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), + [5240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [5242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), + [5244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), + [5246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [5248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), + [5250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [5252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), + [5254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [5256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [5258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list_no_comma, 4, .production_id = 42), + [5260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), + [5262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), + [5264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [5266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list_no_comma, 4, .production_id = 17), + [5268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), + [5270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), + [5272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), + [5274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [5276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231), + [5278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [5280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), + [5282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2207), + [5284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), + [5286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [5288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [5290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [5292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), + [5294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), + [5296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [5298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [5300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [5302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [5304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), + [5306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), + [5308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [5310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), + [5312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [5314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), + [5316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), + [5318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [5320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [5322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [5324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), + [5326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), + [5328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [5330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), + [5332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), + [5334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [5336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [5338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), + [5340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [5342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [5344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [5346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), + [5348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [5350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [5352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), + [5354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), + [5356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [5358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [5360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [5362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), + [5364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), + [5366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [5368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [5370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), + [5372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2229), + [5374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [5376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [5378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [5380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [5382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), + [5384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), + [5386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), + [5388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), + [5390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), + [5392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [5394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [5396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [5398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [5400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [5402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [5404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), + [5406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), + [5408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [5410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), + [5412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [5414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [5416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [5418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [5420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), + [5422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), + [5424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list_no_comma, 5, .production_id = 70), + [5426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), + [5428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list_no_comma, 5, .production_id = 41), + [5430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2240), + [5432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 3, .production_id = 42), + [5434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [5436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [5438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), + [5440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [5442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 3, .production_id = 42), + [5444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [5446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), + [5448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list_no_comma, 5, .production_id = 71), + [5450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [5452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 3, .production_id = 42), + [5454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 5, .production_id = 92), + [5456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), + [5458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, .production_id = 70), + [5460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), + [5462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), + [5464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), + [5466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [5468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), + [5470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [5472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), + [5474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [5476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [5478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), + [5480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), + [5482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [5484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), + [5486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [5488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), + [5490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [5492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [5494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [5496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), + [5498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [5500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), + [5502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [5504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [5506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list_no_comma, 6, .production_id = 92), + [5508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 4, .production_id = 70), + [5510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 4, .production_id = 70), + [5512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), + [5514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), + [5516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 4, .production_id = 71), + [5518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 4, .production_id = 71), + [5520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [5522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [5524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [5526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), + [5528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), + [5530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [5532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [5534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), + [5536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [5538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [5540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [5542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [5544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [5546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2252), + [5548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [5550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [5552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), + [5554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 5, .production_id = 92), + [5556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 5, .production_id = 92), + [5558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 5, .production_id = 92), + [5560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [5562] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [5564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [5566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [5568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [5570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [5572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), + [5574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), + [5576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), + [5578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [5580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [5582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [5584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_based_modifier, 2), + [5586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [5588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [5590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [5592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [5594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [5596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), + [5598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), + [5600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [5602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), + [5604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), + [5606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [5608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [5610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), + [5612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), + [5614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), + [5616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), + [5618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [5620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), + [5622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), + [5624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [5626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), + [5628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [5630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), + [5632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), + [5634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 4, .production_id = 71), + [5636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), + [5638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), }; #ifdef __cplusplus